/* Marlaina. Navy, cream, gold. Photographic magazine. Concept, not a booking site. */

:root {
  --navy: #0b1218;
  --navy-soft: #121b24;
  --cream: #f4efe6;
  --cream-dim: #c9c2b4;
  --gold: #c4a46a;
  --gold-deep: #9a7d45;
  --ink: #0b1218;
  --line: rgba(196, 164, 106, 0.35);
  --line-soft: rgba(244, 239, 230, 0.12);
  --ink-line: rgba(11, 18, 24, 0.12);
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Outfit", "Source Sans 3", "Segoe UI", sans-serif;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --wide: 1180px;
  --measure: 38rem;
  --header-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.small-caps {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wrap {
  width: min(var(--wide), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.measure {
  width: min(var(--measure), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}
.skip:focus { top: 1rem; }

/* Header. Sticky, translucent, blurs on scroll. */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.9rem var(--pad);
  background: rgba(11, 18, 24, 0.18);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 18, 24, 0.72);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 40px rgba(11, 18, 24, 0.18);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--gold);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  font-variant-ligatures: none;
  color: var(--gold);
  padding-right: 0.12em;
}

.wordmark:hover, .brand:hover { color: var(--gold); }

.concept-mark {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.88;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--cream);
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--cream);
  margin: 0 auto;
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.2s ease, top 0.25s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.site-header.is-open .nav-toggle span { background: transparent; }
.site-header.is-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.site-header.is-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--cream);
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-dot {
  color: var(--gold);
  opacity: 0.7;
  pointer-events: none;
}

.nav-item { position: relative; }

.nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.85rem);
  min-width: 17.5rem;
  max-height: min(70vh, 32rem);
  overflow: auto;
  padding: 0.85rem 0;
  background: rgba(16, 24, 32, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 30;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-item.is-open .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 0.45rem 1.1rem;
  border-bottom: 0;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
}

.nav-menu a:hover { background: rgba(196, 164, 106, 0.08); }

.nav-menu .menu-note {
  display: block;
  padding: 0.45rem 1.1rem 0.4rem;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

/* Cream pages */

.page-cream { background: var(--cream); color: var(--ink); }
.page-cream .site-header {
  background: rgba(244, 239, 230, 0.72);
}
.page-cream .site-header.is-scrolled {
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom-color: var(--ink-line);
  box-shadow: none;
}
.page-cream .wordmark { color: var(--navy); }
.page-cream .concept-mark { color: var(--gold); }
.page-cream .site-nav a { color: var(--navy); }
.page-cream .site-nav a:hover,
.page-cream .site-nav a.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.page-cream .nav-toggle { border-color: rgba(11,18,24,0.18); }
.page-cream .nav-toggle span,
.page-cream .nav-toggle span::before,
.page-cream .nav-toggle span::after { background: var(--navy); }
.page-cream .site-header.is-open .nav-toggle span { background: transparent; }

/* Photo heroes. Full-bleed, overlay the sticky header. */

.hero,
.night-hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--header-h));
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + clamp(3rem, 8vw, 7rem)) var(--pad) clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
  background: var(--navy);
}

.night-hero { min-height: 92vh; }

.hero-photo,
.photo-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(11, 18, 24, 0.74) 0%, rgba(11, 18, 24, 0.28) 48%, rgba(11, 18, 24, 0.08) 78%);
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.kicker, .concept-kicker, .crumb {
  color: var(--gold);
  margin: 0 0 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.crumb { letter-spacing: 0.18em; }
.crumb a:hover { color: var(--cream); }

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  color: var(--cream);
  text-shadow: 0 10px 40px rgba(11, 18, 24, 0.55);
}

.night-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(3.2rem, 8.4vw, 6.4rem);
  color: var(--cream);
  text-shadow: 0 10px 40px rgba(11, 18, 24, 0.55);
}

.lede {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  color: var(--cream-dim);
  max-width: 34rem;
  font-weight: 300;
  line-height: 1.55;
}

/* Buttons. Thin gold outline, letter-spaced, hover fill. */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.78rem 1.55rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.68rem;
  cursor: pointer;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--navy); }

.btn-solid {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-solid:hover { background: #16202a; color: var(--gold); border-color: #16202a; }
.btn-block { width: 100%; }

/* Cream band / beats */

.band {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.band h2 { margin: 0 0 0.6rem; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.band .mute, .mute { color: #4a453c; }

.beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.beat { min-width: 0; }
.beat .beat-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.15rem;
}
.beat h3 { margin: 0 0 0.7rem; font-size: 1.7rem; }
.beat p { margin: 0; color: #3d3830; max-width: 22rem; }

.beat-num {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
}

/* Split */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
}

.split-visual {
  min-height: 22rem;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.split-visual .hero-photo { object-position: center; }

.split-copy {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.6rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}

.split-copy .lede { color: #3d3830; margin-bottom: 1.4rem; }
.split-copy .mute { margin: 0 0 1.6rem; max-width: 28rem; }

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink-line);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4a453c;
}
.spec-row span + span::before {
  content: "|";
  margin-right: 1.1rem;
  color: var(--gold);
}

/* Intro on cream */

.intro { padding: clamp(3rem, 7vw, 5.5rem) 0 2rem; }
.intro.cream { background: var(--cream); color: var(--ink); }
.intro h1 { margin: 0 0 0.9rem; font-size: clamp(2.6rem, 6vw, 4.4rem); }
.intro .lede { color: #4a453c; }

/* Photo cards */

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.card-grid.tight { margin-top: 2.5rem; }

.card {
  position: relative;
  min-height: 18rem;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem 1.3rem;
  color: var(--cream);
  overflow: hidden;
}

.card .hero-photo,
.card img.photo-fill { z-index: 0; }

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 24, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.scene-label {
  position: relative;
  z-index: 3;
  color: var(--cream);
  text-shadow: 0 6px 24px rgba(11, 18, 24, 0.7);
}
.scene-label h3 { margin: 0 0 0.3rem; font-size: 1.65rem; }
.scene-label p {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nights { margin-top: 4.2rem; }
.nights h2 { margin: 0 0 0.4rem; }
.nights .mute { margin: 0 0 1.8rem; max-width: 36rem; }

.night-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.night-link {
  display: block;
  padding: 1.2rem 1rem 1.15rem;
  border: 1px solid rgba(11, 18, 24, 0.1);
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  min-height: 8.2rem;
}
.night-link:hover { border-color: var(--gold); color: var(--ink); }
.night-link strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.night-link span { font-size: 0.78rem; color: #5a5448; }

/* Magazine experience index */

.mag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 2.6rem;
}

.mag-card {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 1.35rem;
  overflow: hidden;
  color: var(--cream);
}

.mag-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 18, 24, 0.76) 100%);
  z-index: 1;
  pointer-events: none;
}

.mag-card .photo-fill { z-index: 0; }

.mag-card .scene-label { z-index: 3; }

.mag-card.wide { grid-column: 1 / -1; min-height: 26rem; }

/* Boat */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.4rem 0 0;
}
.gallery figure { margin: 0; overflow: hidden; }
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
}

.feature-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 2.4rem;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  color: #3d3830;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}
.feature-bar span {
  padding: 1.15rem 0.4rem;
  border-right: 1px solid var(--ink-line);
}
.feature-bar span:last-child { border-right: 0; }

.boat-prose {
  max-width: 40rem;
  margin: 3rem auto 0;
  text-align: center;
}
.boat-prose p { color: #3d3830; }

/* Inquire / back this */

.inquire-hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
}
.inquire-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0 0 1rem;
  text-shadow: 0 10px 40px rgba(11, 18, 24, 0.55);
}

.form-card {
  background: #fffdf8;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(11, 18, 24, 0.06);
}
.form-card h2 { margin: 0 0 0.6rem; font-size: 2rem; }

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
}
.field.full { grid-column: 1 / -1; }

.field label {
  display: block;
  margin: 0 0 0.4rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(11, 18, 24, 0.22);
  padding: 0.55rem 0 0.65rem;
  color: var(--ink);
  border-radius: 0;
}
.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field textarea { min-height: 7rem; resize: vertical; }

.form-note {
  margin: 1.1rem 0 1.2rem;
  color: #5a5448;
  font-size: 0.95rem;
}

.sent {
  display: none;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  background: rgba(196, 164, 106, 0.1);
  color: var(--ink);
}
.sent.is-on { display: block; }

/* Night trio. Even crops. */

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.trio figure { overflow: hidden; }
.trio img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}
.trio figcaption { margin-top: 0.95rem; }
.trio h3 { margin: 0 0 0.25rem; font-size: 1.45rem; }
.trio h3:empty { display: none; }
.trio p { margin: 0; color: #4a453c; }
.trio .beat-num {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-family: var(--sans);
}
.trio .cap {
  margin-top: 0.45rem;
  color: #6a6458;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

figure { margin: 0; }

/* Cream meta bar with hairline rules. */

.meta-bar {
  background: var(--cream);
  color: var(--ink);
  padding: 0 0 clamp(2.8rem, 6vw, 4rem);
}

.gold-rule,
.meta-rule {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin: 0;
  color: #3d3830;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-content: center;
  text-align: center;
}
.gold-rule::before,
.gold-rule::after,
.meta-rule::before,
.meta-rule::after {
  content: "";
  height: 1px;
  background: rgba(11, 18, 24, 0.16);
  flex: 1;
}

.gold-rule.gold {
  color: var(--gold);
}
.gold-rule.gold::before,
.gold-rule.gold::after {
  background: var(--line);
}

/* Essay / full concept copy */

.essay {
  background: var(--cream);
  color: var(--ink);
  padding: 0 0 clamp(4rem, 8vw, 6.5rem);
}

.essay .block {
  margin: 0 0 2.6rem;
}

.essay .block:last-child { margin-bottom: 0; }

.essay h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
}

.essay p {
  margin: 0 0 0.95rem;
  color: #3d3830;
  font-size: 1.08rem;
  line-height: 1.75;
}

.essay p:last-child { margin-bottom: 0; }

.essay .kicker { margin-bottom: 0.7rem; }

.close-band {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(3.2rem, 7vw, 5.2rem) 0;
  text-align: center;
}
.close-band h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
}
.close-band p {
  margin: 0 auto 1.6rem;
  max-width: 28rem;
  color: var(--cream-dim);
  font-weight: 300;
}

/* Image hover scale (tasteful) */

.zoom,
.trio figure,
.beat,
.card,
.mag-card,
.gallery figure {
  overflow: hidden;
}

.zoom img,
.trio img,
.beat .beat-photo,
.card img,
.mag-card img,
.gallery img {
  transition: transform 0.9s var(--ease);
}

.zoom:hover img,
.trio figure:hover img,
.beat:hover .beat-photo,
.card:hover img,
.mag-card:hover img,
.gallery figure:hover img {
  transform: scale(1.035);
}

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* Footer */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 2.4rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.site-footer .ports {
  margin: 0;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.site-footer a.wordmark { font-size: 0.78rem; color: var(--gold); }
.site-footer .foot-link {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.site-footer .foot-link:hover { color: var(--gold); }

.foot-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

/* Home / campaign hero text link */

.hero-link {
  margin: 1.15rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-link a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
}

.hero-link a:hover {
  color: var(--cream);
  border-bottom-color: var(--gold);
}

/* Kickstarter campaign page */

.campaign {
  max-width: 42rem;
  margin: 0 auto;
}

.campaign h2 {
  margin: 2.7rem 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.campaign > h2:first-child { margin-top: 0; }

.campaign p {
  color: #3d3830;
  margin: 0 0 0.95rem;
}

.campaign ul {
  margin: 0 0 1.15rem;
  padding: 0 0 0 1.15rem;
  color: #3d3830;
}

.campaign li { margin: 0 0 0.4rem; }

.campaign a.text-link {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.campaign a.text-link:hover { color: var(--navy); }

.campaign-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.4rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
  margin: 0 0 1.6rem;
}

.campaign-meta p {
  margin: 0;
  font-size: 0.95rem;
  color: #3d3830;
}

.blank {
  display: inline-block;
  min-width: 6.5rem;
  border-bottom: 1px solid var(--navy);
  color: #6a6458;
  font-style: italic;
  padding: 0 0.15rem;
}

.campaign-note {
  background: rgba(196, 164, 106, 0.12);
  border-left: 3px solid var(--gold);
  padding: 0.85rem 1rem;
  margin: 0 0 2rem;
  color: #3d3830;
  font-size: 0.95rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 1.2rem;
}

.rewards {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rewards th,
.rewards td {
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 0.55rem;
  border-bottom: 1px solid var(--ink-line);
  color: #3d3830;
}

.rewards th {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rewards .when {
  color: #5c564c;
  font-style: italic;
  font-weight: 400;
}

.reward-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.reward-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--ink-line);
}

.reward-list strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.reward-list span {
  color: #5c564c;
  font-style: italic;
}

.ask-block {
  background: var(--navy);
  color: var(--cream);
  padding: 1.8rem 1.6rem 1.6rem;
  margin: 2.6rem 0 0;
}

.ask-block h2 {
  color: var(--cream);
  margin: 0 0 0.85rem;
}

.ask-block p { color: #e7e0d4; }

.ask-block .sign {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.2rem;
  margin: 1rem 0 1.35rem;
}

.ask-block .text-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.ask-block .text-link:hover { color: var(--cream); }

.ask-block .btn { margin: 0 0 1rem; }

@media (max-width: 980px) {
  .feature-bar { grid-template-columns: repeat(3, 1fr); }
  .feature-bar span:nth-child(3) { border-right: 0; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.6rem var(--pad) 1.4rem;
    background: rgba(16, 24, 32, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }
  .page-cream .site-nav { background: rgba(239, 232, 220, 0.98); }
  .site-header.is-open .site-nav { display: flex; }
  .nav-dot { display: none; }
  .site-nav a, .nav-item { width: 100%; }
  .site-nav > a, .nav-item > a { display: block; padding: 0.75rem 0; }
  .nav-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    padding: 0 0 0.6rem 0.4rem;
    display: none;
    min-width: 0;
    max-height: none;
    overflow: visible;
    backdrop-filter: none;
  }
  .nav-item.is-open .nav-menu { display: block; }

  .beats, .trio, .gallery, .card-grid, .split, .fields, .night-list, .mag-grid {
    grid-template-columns: 1fr;
  }
  .night-list { grid-template-columns: 1fr 1fr; }
  .mag-card, .mag-card.wide { min-height: 18rem; }
  .split-copy { padding: 2.4rem 1.4rem 3rem; }
  .hero, .night-hero { min-height: 86vh; }
  .gold-rule, .meta-rule, .feature-bar { line-height: 1.8; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .feature-bar { grid-template-columns: 1fr 1fr; }
  .feature-bar span { border-right: 0; border-bottom: 1px solid var(--ink-line); }
  .feature-bar span:nth-child(3) { border-right: 0; }
}

@media (max-width: 520px) {
  .night-list { grid-template-columns: 1fr; }
  .wordmark { letter-spacing: 0.36em; font-size: 0.78rem; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .night-hero h1 { font-size: clamp(2.8rem, 13vw, 3.8rem); }
}

@media (min-width: 861px) {
  .split-visual {
    position: sticky;
    top: var(--header-h);
    align-self: start;
    height: calc(100vh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
  }
  .inquire-hero { height: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-menu,
  .btn,
  .site-header,
  .reveal,
  .zoom img,
  .trio img,
  .beat .beat-photo,
  .card img,
  .mag-card img,
  .gallery img {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .zoom:hover img,
  .trio figure:hover img,
  .beat:hover .beat-photo,
  .card:hover img,
  .mag-card:hover img,
  .gallery figure:hover img {
    transform: none;
  }
}

/* FAQ and how-it-works */

.faq details {
  border-bottom: 1px solid var(--ink-line);
  padding: 1.05rem 0;
}

.faq summary {
  font-family: var(--serif);
  font-size: 1.28rem;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
}

.faq details[open] summary::after { content: "-"; }

.faq details p {
  margin: 0.7rem 0 0.2rem;
  color: #3d3830;
  max-width: 38rem;
  line-height: 1.7;
}

.steps {
  display: grid;
  gap: 1.6rem;
  margin: 2rem 0 0;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.7rem;
}

.step p { margin: 0; color: #3d3830; max-width: 36rem; }

.path-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.path-row .btn { min-width: 12rem; }
