/* ==========================================================================
   Tennessee Minister — Ralph Griggs MTh. — Design System
   Lane #10: "Nashville Twilight" — warm midnight + parchment + burgundy +
   candlelight brass + dusty rose. DARK lane (variety from Memphis JoP +
   ABWFL light wedding-officiant lanes). Warm, not solemn — honors Ralph's
   "Hey, Lovebirds" playful tone while giving the MTh./20-year credentials
   their weight. The rose pulls from his existing lovebird brand mark.
   Type: Cinzel (Roman inscription display) + Source Serif 4 (modern serif
   body) + Inter (sans). New combo, no overlap with prior lanes.
   ========================================================================== */

:root {
  /* Palette — warm midnight / parchment / burgundy / brass / rose */
  --night:         #1a1825;   /* warm deep midnight */
  --night-near:    #2a2632;
  --night-soft:    #34303e;
  --night-card:    #221f2c;

  --paper:         #f4ecd6;   /* warm parchment for accents */
  --paper-warm:    #e8dec1;
  --ivory:         #ede5cb;
  --ivory-bright:  #f9f3df;

  --burgundy:      #7c2e35;   /* deep wine */
  --burgundy-bright: #a64048;
  --burgundy-deep: #4a1518;

  --brass:         #c89460;   /* warm candlelight brass */
  --brass-bright:  #e0b485;
  --brass-deep:    #8a6234;

  --rose:          #c08089;   /* dusty rose — pulled from his lovebird brand mark */
  --rose-bright:   #d9a0a8;
  --rose-deep:     #8a5562;

  --slate:         #8a8595;   /* muted grey-purple */
  --slate-deep:    #5a5466;
  --slate-quiet:   #4a4452;

  --border:        rgba(244, 236, 214, 0.10);
  --border-strong: rgba(244, 236, 214, 0.22);
  --border-brass:  rgba(200, 148, 96, 0.36);
  --border-rose:   rgba(192, 128, 137, 0.36);
  --border-burgundy: rgba(166, 64, 72, 0.36);

  /* Typography */
  --f-display: "Cinzel", "Marcellus", Georgia, serif;
  --f-serif:   "Source Serif 4", "Crimson Pro", 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;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04), 0 12px 28px rgba(0,0,0,0.45);
  --shadow-2: 0 1px 0 rgba(255,255,255,0.06), 0 28px 64px rgba(0,0,0,0.6);

  --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(--night);
  color: var(--paper);
  line-height: 1.72;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection { background: var(--burgundy); color: var(--paper); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--brass); color: var(--night);
  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(26, 24, 37, 0.92);
  backdrop-filter: blur(16px) 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(--paper); }
.brand:hover { color: var(--paper); border-bottom: 0; }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--burgundy);
  border: 1px solid var(--border-brass);
  border-radius: 50%;
  color: var(--brass-bright);
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.brand-name {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--paper);
  text-transform: uppercase;
}
.brand-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  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(--slate);
  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(--brass-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover { color: var(--paper); }
.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(--brass);
  color: var(--night);
  border-color: var(--brass);
}
.btn-primary:hover {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  color: var(--night);
  box-shadow: 0 10px 28px -6px rgba(200, 148, 96, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--brass);
  background: rgba(200, 148, 96, 0.08);
  color: var(--paper);
}
.btn-burgundy {
  background: var(--burgundy);
  color: var(--paper);
  border-color: var(--burgundy);
}
.btn-burgundy:hover {
  background: var(--burgundy-bright);
  border-color: var(--burgundy-bright);
  box-shadow: 0 10px 28px -6px rgba(166, 64, 72, 0.5);
}

/* 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(--paper); 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(26, 24, 37, 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-size: 20px;
  letter-spacing: 0.04em;
  color: var(--paper);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.mobile-nav a.m-call { color: var(--brass-bright); }

/* =======================  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 50%;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.05) brightness(0.55);
  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(120% 70% at 50% 35%, rgba(26,24,37,0) 0%, rgba(26,24,37,0.55) 60%, rgba(26,24,37,0.95) 100%),
    linear-gradient(180deg, rgba(26,24,37,0.72) 0%, rgba(26,24,37,0.30) 30%, rgba(26,24,37,0.78) 78%, rgba(26,24,37,1) 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-brass);
  border-bottom: 1px solid var(--border-brass);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 auto 36px;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(42px, 7.5vw, 96px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  color: var(--ivory-bright);
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
  text-transform: uppercase;
}
.hero-title .line-2 {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--rose-bright);
  margin-top: 22px;
  text-shadow: none;
}

.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.45;
  color: var(--paper);
  font-weight: 400;
}
.hero-tag em { color: var(--brass-bright); font-style: italic; }

.hero-sub {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 16.5px;
  color: var(--slate);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 42px;
  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(26, 24, 37, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-brass);
  width: fit-content;
}
.meta-item { text-align: center; }
.meta-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--brass-bright);
  line-height: 1;
  letter-spacing: 0.005em;
}
.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(--slate);
  margin-top: 10px;
}

/* =======================  GENERIC BAND  ======================= */
.band { padding: clamp(80px, 10vw, 130px) 0; position: relative; }
.band-night   { background: var(--night); }
.band-near    { background: var(--night-near); }
.band-paper   { background: var(--paper); color: var(--night); }
.band-paper .display, .band-paper h2, .band-paper h3 { color: var(--night); }
.band-paper .lede { color: var(--slate-quiet); }
.band-paper .eyebrow { color: var(--burgundy); }
.band-paper .eyebrow.with-mark::before, .band-paper .eyebrow.with-mark::after { background: var(--burgundy); }

.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(--slate);
  line-height: 1.6;
  margin: 18px 0 0;
}
.band-head .lede em { color: var(--rose-bright); font-style: italic; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-bright);
  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(--brass-bright);
}
.eyebrow.rose { color: var(--rose-bright); }
.eyebrow.rose.with-mark::before, .eyebrow.rose.with-mark::after { background: var(--rose); }
.eyebrow.burgundy { color: var(--burgundy-bright); }
.eyebrow.burgundy.with-mark::before, .eyebrow.burgundy.with-mark::after { background: var(--burgundy-bright); }

.display {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ivory-bright);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.display em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--rose-bright);
  letter-spacing: 0;
}
.display-xl {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  color: var(--ivory-bright);
  text-transform: uppercase;
}
.display-xl em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--rose-bright);
}

.lede { color: var(--slate); }

/* =======================  WHY RALPH  ======================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  padding: 32px 28px;
  background: var(--night-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brass);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--rose);
}
.why-card .w-marker {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.005em;
  color: var(--ivory-bright);
  margin: 0 0 12px;
  text-transform: uppercase;
  line-height: 1.15;
}
.why-card p {
  font-family: var(--f-serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--paper);
  margin: 0;
}
.why-card p em { color: var(--rose-bright); font-style: italic; }

/* =======================  VENUE WALL  ======================= */
.band-venues {
  background: var(--night-near);
  border-top: 1px solid var(--border-brass);
  border-bottom: 1px solid var(--border-brass);
}
.venues-head {
  text-align: center;
  margin-bottom: 56px;
}
.venues-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
.venue {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(244, 236, 214, 0.025);
  transition: background .25s var(--ease);
  text-align: center;
}
.venue:hover { background: rgba(200, 148, 96, 0.07); }
.venue h4 {
  font-family: var(--f-display);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--ivory-bright);
  margin: 0 0 4px;
  text-transform: uppercase;
  line-height: 1.2;
}
.venue p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--slate);
  margin: 0;
}

.venues-caption {
  max-width: 760px;
  margin: 44px auto 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--paper);
  line-height: 1.6;
  text-align: center;
}
.venues-caption strong {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 500;
  color: var(--brass-bright);
}

/* =======================  VOWS PRACTICE  ======================= */
.band-vows {
  background: var(--night);
}
.vows-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.vows-copy h2 { margin-bottom: 18px; }
.vows-copy p {
  font-family: var(--f-serif);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--paper);
  margin: 0 0 18px;
}
.vows-copy p em { color: var(--rose-bright); font-style: italic; }
.vows-copy strong { color: var(--brass-bright); font-weight: 600; }

.vows-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vows-tool {
  padding: 24px 26px;
  background: var(--night-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--rose);
  transition: border-left-color .25s var(--ease);
}
.vows-tool:hover { border-left-color: var(--brass-bright); }
.vows-tool h4 {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ivory-bright);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.vows-tool p {
  font-family: var(--f-serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}
.vows-tool .vt-tag {
  display: inline-block;
  margin-bottom: 6px;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-bright);
}

/* =======================  PRICING  ======================= */
.band-pricing {
  background: var(--paper);
  text-align: center;
}
.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--ivory-bright);
  border: 1px solid var(--burgundy);
  border-top: 4px solid var(--burgundy);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
  position: relative;
}
.pricing-card::before, .pricing-card::after {
  content: "";
  position: absolute; width: 24px; height: 24px;
  border: 1px solid var(--burgundy);
}
.pricing-card::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.pricing-card::after  { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.pricing-card .eyebrow { color: var(--burgundy); }
.pricing-card .eyebrow.with-mark::before, .pricing-card .eyebrow.with-mark::after { background: var(--burgundy); }

.pricing-card .pc-big {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  color: var(--burgundy);
  margin: 18px 0 8px;
  letter-spacing: 0.005em;
}
.pricing-card .pc-flat {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--slate-quiet);
  margin: 0 0 28px;
}

.pricing-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: left;
}
.pb-item {
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid rgba(124, 46, 53, 0.18);
}
.pb-item .pb-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.pb-item .pb-amount {
  display: block;
  margin: 6px 0 4px;
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--night);
  letter-spacing: 0.005em;
}
.pb-item .pb-note {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--slate-quiet);
  margin: 0;
}

.pricing-fineprint {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--slate-quiet);
  line-height: 1.6;
  margin: 0;
}

/* =======================  CEREMONY TYPES  ======================= */
.ceremonies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.ceremony {
  padding: 28px 26px;
  background: var(--night-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.ceremony:hover { transform: translateY(-2px); border-color: var(--border-rose); }
.ceremony h4 {
  font-family: var(--f-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--ivory-bright);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.ceremony p {
  font-family: var(--f-serif);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}

/* =======================  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(--night-card);
}
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(26, 24, 37, 0.78);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
}

.g-1 { grid-column: span 7; aspect-ratio: 4/3; }
.g-2 { grid-column: span 5; aspect-ratio: 4/3; }
.g-3 { grid-column: span 4; aspect-ratio: 1/1; }
.g-4 { grid-column: span 4; aspect-ratio: 1/1; }
.g-5 { grid-column: span 4; aspect-ratio: 1/1; }
.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; }
}

/* =======================  BOOK  ======================= */
.band-book { background: var(--night); text-align: center; }
.book-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--night-card);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--brass);
  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 28px; }

.phone-display {
  display: inline-flex;
  flex-direction: column;
  padding: 22px 36px;
  background: var(--burgundy);
  color: var(--paper);
  text-decoration: none;
  border-radius: var(--r-sm);
  margin: 0 0 18px;
  border-bottom: 0;
  transition: background .25s var(--ease);
}
.phone-display:hover { background: var(--burgundy-bright); color: var(--paper); border-bottom: 0; }
.phone-display .ph-label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.phone-display .ph-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 38px);
  margin-top: 6px;
  letter-spacing: 0.005em;
}

.book-fineprint {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
  margin-top: 16px;
  max-width: 480px;
  margin-inline: auto;
}

/* =======================  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: #0c0a14;
  color: rgba(244, 236, 214, 0.7);
  padding: 64px 0 24px;
  border-top: 3px solid var(--brass);
}
.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-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ivory-bright);
  margin: 0 0 14px;
}
.ft-brand p {
  font-family: var(--f-serif);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(244,236,214,0.7);
  margin: 0;
  max-width: 360px;
}
.ft-col h5 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 18px;
}
.ft-col a, .ft-col p {
  font-family: var(--f-serif);
  font-size: 16px;
  color: rgba(244,236,214,0.78);
  text-decoration: none;
  line-height: 1.5;
  margin: 0 0 8px;
  display: block;
  border-bottom: 0;
}
.ft-col a:hover { color: var(--ivory-bright); }
.ft-col p.small {
  font-family: var(--f-sans);
  font-size: 12.5px;
  color: rgba(244,236,214,0.5);
  margin-top: 4px;
}

.ft-base {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(244,236,214,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(244,236,214,0.5);
}
.ft-base a { color: var(--brass-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) {
  .vows-grid { grid-template-columns: 1fr; }
  .pricing-breakdown { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 9px; }
  body { font-size: 17px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
}
