:root {
  --bg: #000074;
  --pink: #ff9fc2;
  --fg: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Outfit, system-ui, sans-serif;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 5vw;
  background: rgba(0, 0, 116, 0.92);
  border-bottom: 1px solid rgba(255, 159, 194, 0.35);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--fg);
  text-decoration: none;
}

nav { display: flex; gap: 22px; }
nav a, .switch, footer a, .ig {
  color: var(--fg);
  text-decoration: none;
}

nav a { font-size: 0.86rem; opacity: 0.75; }
nav a:hover { opacity: 1; color: var(--pink); }

.switch {
  font-size: 0.75rem;
  border: 1px solid var(--pink);
  color: var(--pink);
  padding: 6px 10px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: end start;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  padding: 10vh 6vw 8vh;
  max-width: 20ch;
}

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: 2rem; margin-bottom: 8px; }

.lede { margin: 14px 0 20px; max-width: 34ch; font-weight: 300; }

.ig {
  display: inline-block;
  border-bottom: 1px solid var(--pink);
  color: var(--pink);
}

.strip {
  padding: 56px 6vw;
  border-top: 1px solid rgba(255, 159, 194, 0.28);
}

.strip p { opacity: 0.75; }

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 6vw 48px;
  border-top: 1px solid rgba(255, 159, 194, 0.35);
  font-size: 0.85rem;
}

.edit-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.45);
  padding: 24px;
}

.edit-modal[hidden] { display: none; }

.edit-modal-card {
  width: min(420px, 100%);
  border: 1px solid var(--pink);
  background: var(--bg);
  padding: 32px 28px;
  text-align: center;
}

.edit-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.edit-modal-card h2 { font-size: 1.8rem; margin-bottom: 10px; }
.edit-modal-card p { margin-bottom: 22px; }
.edit-modal-card button {
  width: 100%;
  background: var(--pink);
  color: var(--bg);
  border: none;
  padding: 12px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 800px) {
  .site-nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  nav {
    order: 3;
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-copy { max-width: none; }
  .hero { min-height: 60vh; }
}
