/* ==========================================================================
   A Beautiful Wedding in Florida — Design System
   Lane #9: "Gulf Coastal" — warm sand cream + sea-glass dusty teal + sunset
   coral + driftwood grey + linen white + warm ink. Light palette, distinctly
   different color story from Memphis JoP (boxwood/magnolia garden) and
   Wallace (kraft/walnut timber). The Gulf-coast-at-golden-hour palette.
   Type: Bodoni Moda (fashion-magazine elegant display) + Spectral (humanist
   body with italics) + Inter (sans accents). Fresh combo, no overlap.
   ========================================================================== */

:root {
  /* Palette — sand / sea / coral / driftwood / linen / ink */
  --sand:        #f0e8d6;       /* warm sand cream */
  --sand-deep:   #e2d3b6;       /* deeper sand for hovers */
  --sand-warm:   #ead9b8;
  --linen:       #faf5ec;       /* lightest, linen white */

  --ink:         #1f1a14;       /* warm near-black */
  --ink-soft:    #3a342a;
  --ink-muted:   #6e6557;
  --ink-quiet:   #998f7e;
  --ink-faint:   #c2b9a8;

  --sea:         #6b9b9e;       /* sea glass dusty teal */
  --sea-bright:  #8ab6b8;
  --sea-deep:    #3e6f73;

  --coral:       #d6856b;       /* sunset coral, warm */
  --coral-bright:#e89e85;
  --coral-deep:  #a45c44;

  --gold-sand:   #b8945c;       /* sand gold accent */
  --gold-bright: #d4ad75;

  --driftwood:   #8a7d6a;       /* weathered grey-brown */
  --driftwood-deep: #5e5447;

  --border:        rgba(31, 26, 20, 0.12);
  --border-strong: rgba(31, 26, 20, 0.24);
  --border-sea:    rgba(107, 155, 158, 0.35);
  --border-coral:  rgba(214, 133, 107, 0.35);
  --border-gold:   rgba(184, 148, 92, 0.36);

  /* Typography */
  --f-display: "Bodoni Moda", "Playfair Display", Georgia, serif;
  --f-serif:   "Spectral", "EB Garamond", Georgia, serif;
  --f-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --container-prose: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 2px;
  --r-md: 6px;
  --r-lg: 12px;

  --shadow-1: 0 1px 2px rgba(31,26,20,0.06), 0 10px 30px rgba(31,26,20,0.10);
  --shadow-2: 0 2px 4px rgba(31,26,20,0.08), 0 28px 64px rgba(31,26,20,0.18);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-serif);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.72;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--sea-deep); text-decoration: none; transition: color .2s var(--ease); border-bottom: 1px solid transparent; }
a:hover { color: var(--coral-deep); border-bottom-color: var(--coral); }

::selection { background: var(--coral); color: var(--linen); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink); color: var(--linen);
  padding: 8px 14px;
  font-family: var(--f-sans);
  font-weight: 700;
  transition: top .2s; z-index: 100;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.prose {
  width: min(100% - var(--gutter)*2, var(--container-prose));
  margin-inline: auto;
}

/* =======================  HEADER  ======================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(240, 232, 214, 0.93);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.brand:hover { color: var(--ink); border-bottom: 0; }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--sea-deep);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--linen);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: var(--ink);
}
.brand-name em { font-style: italic; color: var(--coral-deep); font-weight: 500; }
.brand-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-sand);
  margin-top: 6px;
}

.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(10px, 1.8vw, 26px);
  justify-content: center;
}
.primary-nav a {
  color: var(--ink-soft);
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  border-bottom: 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { transform: scaleX(1); }

.hdr-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border-radius: var(--r-sm);
}
.btn:hover { transform: translateY(-1px); border-bottom: 1.5px solid transparent; }
.btn-primary {
  background: var(--sea-deep);
  color: var(--linen);
  border-color: var(--sea-deep);
}
.btn-primary:hover {
  background: var(--sea);
  border-color: var(--sea);
  color: var(--linen);
  box-shadow: 0 10px 28px -6px rgba(62, 111, 115, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--coral);
  background: rgba(214, 133, 107, 0.08);
  color: var(--ink);
}
.btn-coral {
  background: var(--coral);
  color: var(--linen);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-bright);
  border-color: var(--coral-bright);
  box-shadow: 0 10px 28px -6px rgba(214, 133, 107, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  appearance: none; background: transparent;
  border: 1px solid var(--border-strong);
  width: 44px; height: 44px; border-radius: 4px;
  cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(240, 232, 214, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 14px 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.m-call { color: var(--sea-deep); }

/* =======================  HERO  ======================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  filter: saturate(0.96) brightness(0.90);
  animation: heroDrift 30s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03) translateX(-0.5%); }
  to   { transform: scale(1.09) translateX(0.7%); }
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(110% 70% at 50% 35%, rgba(240,232,214,0) 0%, rgba(240,232,214,0.40) 60%, rgba(240,232,214,0.94) 100%),
    linear-gradient(180deg, rgba(240,232,214,0.62) 0%, rgba(240,232,214,0.22) 30%, rgba(240,232,214,0.74) 78%, rgba(240,232,214,0.98) 100%);
}

.hero-inner {
  width: min(100% - var(--gutter)*2, 1100px);
  margin-inline: auto;
  text-align: center;
  padding: 140px 0 80px;
}

.hero-frame {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  border-top: 1px solid var(--border-coral);
  border-bottom: 1px solid var(--border-coral);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 auto 36px;
  background: rgba(250, 245, 236, 0.7);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 7.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
  color: var(--ink);
}
.hero-title em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}
.hero-title .ampersand { font-style: italic; color: var(--gold-sand); font-weight: 500; }

.hero-tag {
  max-width: 720px;
  margin: 28px auto 8px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 400;
}
.hero-tag em { color: var(--sea-deep); font-style: italic; }

.hero-sub {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 16.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero-meta {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(22px, 4vw, 56px);
  justify-content: center;
  padding: 22px clamp(28px, 4vw, 64px);
  background: rgba(250, 245, 236, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-coral);
  width: fit-content;
}
.meta-item { text-align: center; }
.meta-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--sea-deep);
  line-height: 1;
  letter-spacing: -0.005em;
}
.meta-num em { font-style: italic; color: var(--coral-deep); font-weight: 500; }
.meta-lbl {
  display: block;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 10px;
}

/* =======================  AWARDS WALL  ======================= */
.band-awards {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-warm) 100%);
  border-top: 1px solid var(--border-coral);
  border-bottom: 1px solid var(--border-coral);
  padding: clamp(72px, 8vw, 110px) 0;
  text-align: center;
}
.awards-head { max-width: 760px; margin: 0 auto 48px; }
.awards-head .display { color: var(--ink); }

.awards-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 36px);
  justify-content: center;
  align-items: flex-end;
  max-width: 1100px;
  margin: 0 auto;
}
.award-year {
  text-align: center;
  padding: 28px 24px;
  background: var(--linen);
  border: 1px solid var(--border-coral);
  border-top: 3px solid var(--coral);
  min-width: 130px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.award-year:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}
.award-year .a-year {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--coral-deep);
  line-height: 1;
}
.award-year .a-eyebrow {
  display: block;
  margin-top: 10px;
  font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.4;
}
.awards-caption {
  margin: 40px auto 0;
  max-width: 720px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
  line-height: 1.55;
}
.awards-caption strong {
  font-family: var(--f-display);
  font-weight: 600;
  font-style: normal;
  color: var(--coral-deep);
}

/* =======================  GENERIC BAND  ======================= */
.band { padding: clamp(80px, 10vw, 130px) 0; position: relative; }
.band-sand  { background: var(--sand); }
.band-warm  { background: var(--sand-warm); }
.band-linen { background: var(--linen); }
.band-sea   { background: var(--sea-deep); color: var(--linen); }
.band-sea h2, .band-sea h3, .band-sea h4, .band-sea .display { color: var(--linen); }
.band-sea .lede { color: rgba(250,245,236,0.78); }
.band-sea .eyebrow { color: var(--gold-bright); }

.band-head { max-width: 820px; margin: 0 auto clamp(48px, 6vw, 76px); text-align: center; }
.band-head .lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 18px 0 0;
}
.band-head .lede em { color: var(--coral-deep); font-style: italic; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow.with-mark::before, .eyebrow.with-mark::after {
  content: ""; display: inline-block;
  width: 22px; height: 1px;
  background: var(--coral);
}
.eyebrow.sea { color: var(--sea-deep); }
.eyebrow.sea.with-mark::before, .eyebrow.sea.with-mark::after { background: var(--sea-deep); }

.display {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 14px;
}
.display em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}
.display-xl {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display-xl em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}

.lede { color: var(--ink-muted); }

/* =======================  TEAM  ======================= */
.band-team { background: var(--linen); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1000px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-card .t-img.placeholder {
  width: clamp(140px, 18vw, 200px);
  height: clamp(140px, 18vw, 200px);
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand-warm) 0%, var(--sand-deep) 100%);
  border: 1px solid var(--border-coral);
  display: grid; place-items: center;
}
.team-card .t-img.placeholder span {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--coral-deep);
}
.team-card h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.team-card .t-role {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-sand);
  margin-bottom: 14px;
}
.team-card .t-bio {
  font-family: var(--f-serif);
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 280px;
  margin-inline: auto;
}
.team-card .t-bio em { color: var(--coral-deep); font-style: italic; }

/* =======================  THREE COASTS  ======================= */
.coasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  max-width: 1100px;
  margin: 0 auto;
}
.coast {
  background: var(--linen);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sea);
  padding: 32px 28px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.coast:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}
.coast .c-eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sea-deep);
  margin-bottom: 12px;
}
.coast h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.1;
}
.coast h3 em { font-style: italic; color: var(--coral-deep); font-weight: 500; }
.coast .c-cities {
  font-family: var(--f-serif);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 18px;
}
.coast .c-phone {
  display: block;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--sea-deep);
  letter-spacing: -0.005em;
  text-decoration: none;
  border-bottom: 0;
}
.coast .c-phone:hover { color: var(--coral-deep); }

/* =======================  PACKAGES / WHAT'S INCLUDED  ======================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.pkg {
  padding: 26px 26px;
  background: var(--linen);
  border: 1px solid var(--border);
  border-left: 3px solid var(--coral);
}
.pkg h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 10px;
}
.pkg h4 em { font-style: italic; color: var(--coral-deep); font-weight: 500; }
.pkg p {
  font-family: var(--f-serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* =======================  LICENSE-BY-MAIL (signature service)  ======================= */
.band-license {
  background: var(--sea-deep);
  color: var(--linen);
  position: relative;
  overflow: hidden;
}
.band-license::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 50%, rgba(214,133,107,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.license-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.license-copy h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--linen);
  margin: 0 0 18px;
}
.license-copy h2 em { font-style: italic; color: var(--coral-bright); font-weight: 500; }
.license-copy p {
  font-family: var(--f-serif);
  font-size: 17.5px;
  line-height: 1.75;
  color: rgba(250,245,236,0.84);
  margin: 0 0 16px;
}
.license-copy p:first-of-type { color: var(--linen); }
.license-copy strong { color: var(--linen); font-weight: 600; }
.license-copy em { color: var(--coral-bright); font-style: italic; }

.license-stamp {
  text-align: center;
  padding: 40px 32px;
  border: 2px solid var(--gold-bright);
  background: rgba(250, 245, 236, 0.06);
  position: relative;
}
.license-stamp::before, .license-stamp::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold-bright);
}
.license-stamp::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.license-stamp::after  { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.license-stamp .ls-eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.license-stamp .ls-big {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--linen);
  line-height: 1.15;
  margin: 14px 0;
}
.license-stamp .ls-sub {
  font-family: var(--f-serif);
  font-size: 15px;
  color: rgba(250,245,236,0.78);
}

/* =======================  GALLERY  ======================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--sand-deep);
}
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }

.g-1 { grid-column: span 6; aspect-ratio: 4/3; }
.g-2 { grid-column: span 6; aspect-ratio: 4/3; }
.g-3 { grid-column: span 4; aspect-ratio: 4/5; }
.g-4 { grid-column: span 4; aspect-ratio: 4/5; }
.g-5 { grid-column: span 4; aspect-ratio: 4/5; }
.g-6 { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 768px) {
  .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 6; aspect-ratio: 1/1; }
  .g-6 { grid-column: span 12; aspect-ratio: 16/9; }
}

/* =======================  DESTINATION (inclusive + bilingual)  ======================= */
.band-destination { background: var(--sand-warm); }
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  max-width: 1000px;
  margin: 0 auto;
}
.dest-card {
  padding: 36px 32px;
  background: var(--linen);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold-sand);
}
.dest-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.dest-card h3 em { font-style: italic; color: var(--coral-deep); font-weight: 500; }
.dest-card p {
  font-family: var(--f-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.dest-card p em { color: var(--coral-deep); font-style: italic; }

/* =======================  BOOK  ======================= */
.band-book { background: var(--sand); text-align: center; }
.book-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--linen);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--sea-deep);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
}
.book-card .display { margin-bottom: 18px; }
.book-card .lede { font-size: 17px; max-width: 540px; margin: 0 auto 32px; }

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
}
.phone-card {
  display: flex; flex-direction: column;
  padding: 22px 24px;
  background: var(--sea-deep);
  color: var(--linen);
  text-decoration: none;
  transition: background .25s var(--ease);
  text-align: left;
  border-bottom: 0;
}
.phone-card.tally { background: var(--coral); color: var(--ink); }
.phone-card:hover { background: var(--sea); color: var(--linen); border-bottom: 0; }
.phone-card.tally:hover { background: var(--coral-bright); color: var(--ink); }
.phone-card .pc-label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.92;
}
.phone-card .pc-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  margin-top: 6px;
  letter-spacing: -0.005em;
}
.phone-card .pc-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13.5px;
  margin-top: 4px;
  opacity: 0.85;
}

.book-fineprint {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 24px auto 0;
  max-width: 560px;
}

/* =======================  REVEAL  ======================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =======================  FOOTER  ======================= */
.site-footer {
  background: var(--ink);
  color: rgba(250, 245, 236, 0.78);
  padding: 64px 0 24px;
  border-top: 3px solid var(--coral);
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.ft-brand h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--linen);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.ft-brand h4 em { font-style: italic; color: var(--coral-bright); font-weight: 500; }
.ft-brand p {
  font-family: var(--f-serif);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(250,245,236,0.7);
  margin: 0;
  max-width: 340px;
}
.ft-col h5 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral-bright);
  margin: 0 0 18px;
}
.ft-col a, .ft-col p {
  font-family: var(--f-serif);
  font-size: 16px;
  color: rgba(250,245,236,0.78);
  text-decoration: none;
  line-height: 1.5;
  margin: 0 0 8px;
  display: block;
  border-bottom: 0;
}
.ft-col a:hover { color: var(--linen); }
.ft-col p.small {
  font-family: var(--f-sans);
  font-size: 12.5px;
  color: rgba(250,245,236,0.5);
  margin-top: 4px;
}

.ft-base {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(250,245,236,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  font-family: var(--f-sans);
  font-size: 12px;
  color: rgba(250,245,236,0.5);
}
.ft-base a { color: var(--coral-bright); }

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hdr-cta .btn-secondary { display: none; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
  .hero-meta { grid-template-columns: repeat(2, auto); gap: 22px 40px; }
}
@media (max-width: 768px) {
  .coasts-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .license-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .phone-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 9px; }
  body { font-size: 17px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
}
