/* ============================================================
   208 Officiant — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600&family=Work+Sans:wght@400;500&display=swap');

:root {
  --cream: #FFFFFF;
  --cream-dark: #E9F3F5;
  --paper: #FFFFFF;
  --navy: #1E2A54;
  --navy-light: #33417A;
  --navy-deep: #141B38;
  --gold: #C7A233;
  --gold-dark: #A9861F;
  --gold-light: #E4C767;
  --charcoal: #201E1B;
  --charcoal-soft: #4E5C60;
  --white: #FFFFFF;
  --line: rgba(199, 162, 51, 0.2);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-alt: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --nav-h: 182px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html, body { width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.1rem;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

p { color: var(--charcoal-soft); font-size: 1.05rem; }
p.lede { font-size: 1.2rem; line-height: 1.75; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 6vw;
}

section { position: relative; }
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  border-radius: 7px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s ease, color 0.4s ease;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(30, 42, 84, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -8px rgba(30, 42, 84, 0.6); background: var(--navy-light); }
.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }
.btn-light {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); }

/* ---------- Nav: two rows — logo+CTA on top, links centered below ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.5s var(--ease);
}
.site-nav.is-scrolled {
  box-shadow: 0 4px 20px -8px rgba(27, 27, 27, 0.18);
}

.nav-top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 6vw;
  transition: padding 0.4s var(--ease);
}
.site-nav.is-scrolled .nav-top-flex { padding: 0.5rem 6vw; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 118px; width: auto; transition: height 0.4s var(--ease); }
.site-nav.is-scrolled .nav-logo img { height: 76px; }

.nav-top-actions { display: flex; align-items: center; gap: 1.3rem; }

.nav-row-links {
  border-top: 1px solid var(--line);
}
.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1.9rem;
  align-items: center;
  padding: 0.6rem 6vw;
  transition: padding 0.4s var(--ease);
}
.site-nav.is-scrolled .nav-links { padding: 0.42rem 6vw; }
.nav-links a {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--navy);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.4s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark) !important; }

.nav-cta {
  padding: 0.8rem 1.7rem !important;
  border-radius: 7px;
  background: var(--gold) !important;
  color: var(--white) !important;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s var(--ease);
}
.nav-cta:hover { background: var(--navy) !important; color: var(--gold-light) !important; transform: translateY(-2px); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 26px; height: 20px;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: var(--navy);
  transition: all 0.4s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
}

body.nav-open { overflow: hidden; }
body.menu-open .nav-toggle span { background: var(--white) !important; }
body.menu-open .site-nav .nav-toggle.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.menu-open .site-nav .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
body.menu-open .site-nav .nav-toggle.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero / Parallax ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-bg-wrap {
  position: absolute;
  inset: -10% 0 -10% 0;
  z-index: 1;
}
.page-header .hero-bg-wrap {
  animation: hero-kenburns 24s ease-out forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-wrap { animation: none; }
}
.hero-bg {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.4) 0%, rgba(17,17,17,0.18) 40%, rgba(17,17,17,0.62) 65%, rgba(17,17,17,0.85) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}
.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  background: rgba(17,17,17,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(111,198,222,0.3);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-content h1 { color: var(--white); max-width: 14ch; text-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.hero-content p.lede { color: rgba(255,255,255,0.92); max-width: 46ch; margin-top: 1.4rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.hero-cta-row { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-scroll-cue {
  position: absolute;
  right: 6vw; bottom: 2.4rem;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.hero-scroll-cue .line { width: 1px; height: 46px; background: rgba(255,255,255,0.5); overflow: hidden; position: relative; }
.hero-scroll-cue .line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--white);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

.hero-sub {
  height: 62vh;
  min-height: 420px;
}

/* ---------- Page header (non-home hero, smaller) ---------- */
.page-header {
  position: relative;
  height: 66vh;
  min-height: 480px;
  max-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.page-header .hero-bg { object-position: center 18%; }
.page-header .hero-content { padding-bottom: 3.4rem; }
.page-header h1 { max-width: 20ch; }

/* ---------- Reveal utility (JS sets initial state; CSS just aids layout) ---------- */
[data-reveal] { will-change: transform, opacity; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold-dark);
  color: var(--cream);
  padding: 1.3rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.marquee-track span::after { content: '•'; color: var(--navy); font-size: 1.1rem; line-height: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Intro / split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { position: relative; border-radius: 4px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--gold);
  z-index: -1;
}

/* ---------- Services grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.gallery-rotator { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gallery-rotator .rotator-slot { border-radius: 6px; overflow: hidden; aspect-ratio: 3 / 4; }
.gallery-rotator .rotator-slot:nth-child(2), .gallery-rotator .rotator-slot:nth-child(4) { margin-top: 2rem; }
.gallery-rotator .rotator-slot img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.6s ease; }
@media (max-width: 1024px) {
  .gallery-rotator { grid-template-columns: repeat(2, 1fr); }
  .gallery-rotator .rotator-slot:nth-child(2), .gallery-rotator .rotator-slot:nth-child(4) { margin-top: 0; }
}
@media (max-width: 780px) {
  .gallery-rotator { gap: 0.9rem; }
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.6rem 2.2rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -20px rgba(27, 27, 27, 0.22);
  border-color: transparent;
}
.service-card .num {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.service-card h3 { margin-bottom: 0.9rem; }
.service-card p { font-size: 0.98rem; }

/* ---------- Ceremony type cards ---------- */
.ceremony-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.ceremony-card {
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ceremony-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -20px rgba(27,27,27,0.24); }
.ceremony-card .cc-media { height: 230px; overflow: hidden; }
.ceremony-card .cc-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 1.2s var(--ease); }
.ceremony-card:hover .cc-media img { transform: scale(1.08); }
.ceremony-card .cc-body { padding: 1.7rem 1.6rem 2rem; }
.ceremony-card .cc-tag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.6rem; display: block;
}
.ceremony-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.ceremony-card p { font-size: 0.95rem; }
.ceremony-card .cc-btn { margin-top: 1.3rem; padding: 0.65rem 1.3rem; font-size: 0.78rem; }

/* ---------- Pull quote ---------- */
.pull-quote {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}
.pull-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: var(--navy);
  max-width: 20ch;
  margin: 0 auto;
  line-height: 1.4;
}
.pull-quote cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Sound Moment (mic + ambient music) ---------- */
.sound-moment {
  background: var(--navy-deep);
  color: var(--cream);
  text-align: center;
  padding: clamp(5rem, 11vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.sound-bg { position: absolute; inset: 0; z-index: 0; }
.sound-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  transition: opacity 2.5s ease;
}
.sound-bg img.is-active { opacity: 0.4; }
.sound-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,27,56,0.75) 0%, rgba(20,27,56,0.6) 45%, rgba(20,27,56,0.85) 100%);
}
.sound-moment::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 40%, rgba(51,65,122,0.35), transparent 60%);
}
.sound-moment .container { position: relative; z-index: 2; max-width: 640px; }
.sound-moment .eyebrow { color: var(--gold-light); }
.music-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(199,162,51,0.16);
  border: 1px solid rgba(199,162,51,0.5);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.sound-moment h2 { color: var(--white); }
.sound-moment p.lede { color: rgba(255,255,255,0.75); margin: 1rem auto 0; max-width: 44ch; }

.mic-rig {
  position: relative;
  width: 180px; height: 180px;
  margin: 3rem auto 2.2rem;
  display: flex; align-items: center; justify-content: center;
}
.mic-ring {
  position: absolute;
  border: 1px solid rgba(199,162,51,0.5);
  border-radius: 50%;
  width: 90px; height: 90px;
  opacity: 0;
  animation: mic-pulse 3s ease-out infinite;
  animation-play-state: paused;
}
.mic-ring:nth-child(2) { animation-delay: 1s; }
.mic-ring:nth-child(3) { animation-delay: 2s; }
.sound-moment.is-playing .mic-ring { animation-play-state: running; }
@keyframes mic-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2); opacity: 0; }
}
.mic-icon {
  position: relative; z-index: 2;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(199,162,51,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background 0.4s ease;
}
.sound-moment.is-playing .mic-icon { background: var(--gold-dark); transform: scale(1.06); }
.mic-icon svg { width: 34px; height: 34px; }
.mic-icon svg .mic-part { stroke: var(--gold-light); transition: stroke 0.4s ease; }
.sound-moment.is-playing .mic-icon svg .mic-part { stroke: var(--white); }

.eq-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 5px; height: 20px; margin-bottom: 2rem;
}
.eq-bars span {
  width: 4px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: eq-bounce 1.1s ease-in-out infinite;
  animation-play-state: paused;
}
.sound-moment.is-playing .eq-bars span { animation-play-state: running; }
.eq-bars span:nth-child(1) { animation-delay: 0s; }
.eq-bars span:nth-child(2) { animation-delay: 0.15s; }
.eq-bars span:nth-child(3) { animation-delay: 0.3s; }
.eq-bars span:nth-child(4) { animation-delay: 0.45s; }
.eq-bars span:nth-child(5) { animation-delay: 0.6s; }
@keyframes eq-bounce {
  0%, 100% { height: 6px; }
  50% { height: 20px; }
}

.track-picker {
  display: flex; flex-wrap: nowrap; align-items: center;
  gap: 0.4rem;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1.8rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.track-pill {
  flex: 0 0 auto;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  padding: 0.3rem 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
}
.track-pill + .track-pill::before {
  content: '';
  position: absolute;
  left: -0.5px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 10px;
  background: rgba(255,255,255,0.15);
}
.track-pill:hover { color: rgba(255,255,255,0.7); }
.track-pill.is-active { color: var(--gold-light); box-shadow: 0 1px 0 0 var(--gold); }

.sound-toggle {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: transparent;
  border: 1px solid rgba(199,162,51,0.5);
  color: var(--gold-light);
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.sound-toggle:hover { background: rgba(199,162,51,0.12); border-color: var(--gold); }
.sound-toggle .play-ic, .sound-toggle .pause-ic { display: none; }
.sound-toggle .play-ic { display: inline; }
.sound-moment.is-playing .sound-toggle .play-ic { display: none; }
.sound-moment.is-playing .sound-toggle .pause-ic { display: inline; }
.sound-note { margin-top: 1.2rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--cream);
  border-radius: 10px;
  padding: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 50ch; margin: 1.2rem auto 2.2rem; }
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(199,162,51,0.22), transparent 55%);
}

/* ---------- CTA band, full-bleed (edge to edge) ---------- */
.cta-full {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.cta-full h2 { color: var(--white); }
.cta-full p { color: rgba(255,255,255,0.78); max-width: 50ch; margin: 1.2rem auto 2.2rem; }
.cta-full .btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 8px 24px -8px rgba(199,162,51,0.5); }
.cta-full .btn-primary:hover { background: var(--gold-dark); color: var(--white); }
.cta-full::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(51,65,122,0.4), transparent 55%);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-dark);
  color: var(--charcoal-soft);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; margin-bottom: 1rem; }
.footer-brand img { height: 84px; }
.footer-tagline {
  font-family: var(--font-alt);
  font-style: normal;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
}
.footer-col h4 { color: var(--gold-dark); font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; margin-bottom: 0.6rem; color: var(--charcoal-soft); transition: color 0.3s ease; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; font-size: 0.8rem; flex-wrap: wrap; gap: 1rem; color: var(--charcoal-soft); }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 0.2rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
}
.faq-q .plus { font-size: 1.6rem; color: var(--gold); transition: transform 0.5s var(--ease); flex-shrink: 0; margin-left: 1.5rem; }
.faq-item.is-open .faq-q .plus { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 0.2rem 1.8rem; max-width: 66ch; }

/* ---------- Resources ---------- */
.resource-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}
.resource-row:last-child { border-bottom: none; }
.resource-num { font-family: var(--font-sans); font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; display: block; }

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3 260px;
  column-gap: 1.1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.9s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(27,27,27,0);
  transition: background 0.4s ease;
}
.gallery-item:hover::after { background: rgba(27,27,27,0.12); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,18,15,0.94);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.8rem 1.1rem;
}
.lightbox-close { top: 1.5rem; right: 2rem; font-size: 1.8rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
}
.contact-info-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 10px;
  padding: 3rem 2.6rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.6rem; }
.contact-line { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
.contact-line .ic { color: var(--gold-light); font-family: var(--font-serif); font-style: italic; }
.contact-line a, .contact-line span { color: rgba(251,246,239,0.85); font-size: 0.98rem; }

.form-field { margin-bottom: 1.4rem; }
.form-field label { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--charcoal);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,162,51,0.16);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: 0.85rem; color: var(--charcoal-soft); margin-top: 0.6rem; }
.form-success { display: none; background: var(--navy); color: var(--white); padding: 1.6rem 1.8rem; border-radius: 6px; margin-top: 1rem; }
.form-success.is-shown { display: block; }

/* ---------- Booking / Packages ---------- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.package-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.4rem 2rem;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s ease;
  cursor: pointer;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 20px 46px -20px rgba(27,27,27,0.22); }
.package-card.is-selected { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,162,51,0.2); }
.package-card .badge {
  position: absolute; top: -12px; right: 1.6rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 999px;
}
.package-card h3 { margin-bottom: 0.4rem; }
.package-card .price { font-family: var(--font-sans); font-weight: 600; font-size: 2.2rem; color: var(--gold); margin: 0.6rem 0 1.2rem; }
.package-card .price small { font-family: var(--font-sans); font-size: 0.9rem; color: var(--charcoal-soft); }
.package-card ul { margin-bottom: 1.6rem; }
.package-card li { font-size: 0.92rem; color: var(--charcoal-soft); margin-bottom: 0.6rem; padding-left: 1.3rem; position: relative; }
.package-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dark); font-size: 0.78rem; font-weight: 600; top: 0.1rem; }
.package-radio {
  position: absolute; top: 1.8rem; right: 1.8rem;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line);
}
.package-card.is-selected .package-radio { border-color: var(--gold); background: var(--gold); box-shadow: inset 0 0 0 4px var(--paper); }

.booking-steps { display: flex; gap: 0; margin-bottom: 3rem; justify-content: center; }
.booking-step {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-soft);
  padding: 0 1.6rem;
  position: relative;
}
.booking-step .n { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 600; color: var(--navy); flex-shrink: 0; }
.booking-step.is-active { color: var(--navy); }
.booking-step.is-active .n { background: var(--gold); border-color: var(--gold); color: var(--white); }
.booking-step:not(:last-child)::after { content: ''; position: absolute; right: -1px; top: 50%; width: 1.6rem; height: 1px; background: var(--line); }

.stripe-note {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--cream-dark);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin-top: 1.5rem;
}

/* ---------- Demo payment modal ---------- */
.pay-modal {
  position: fixed; inset: 0; z-index: 320;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.pay-modal.is-open { opacity: 1; pointer-events: auto; }
.pay-modal-card {
  position: relative;
  background: var(--paper);
  border-radius: 12px;
  padding: 2.4rem 2.2rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 40px 90px -20px rgba(20, 27, 56, 0.45);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.pay-modal.is-open .pay-modal-card { transform: translateY(0) scale(1); }
.pay-modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 1.6rem; color: var(--charcoal-soft); line-height: 1;
}
.pay-modal-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.6rem; }
.pay-modal-brand img { height: 34px; }
.pay-modal-brand span { font-size: 0.85rem; color: var(--charcoal-soft); }
.pay-modal-brand em { color: var(--gold-dark); font-style: normal; }
.pay-modal-line {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--cream-dark);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin-bottom: 1.4rem;
}
.pay-modal-line strong { color: var(--navy); font-size: 1.05rem; }
.pay-modal-card .form-field input:disabled { color: var(--charcoal-soft); background: var(--cream-dark); }
.pay-success-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  animation: pay-pop 0.5s var(--ease);
}
@keyframes pay-pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Veterans / IW Boise fundraiser page ---------- */
.vet-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(4rem, 9vw, 6rem) 0 clamp(5rem, 10vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  display: flex;
  align-items: center;
}
.vet-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.vet-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.85) 100%);
}
.vet-hero .container { position: relative; z-index: 2; width: 100%; }
.vet-hero h1 { color: var(--white); max-width: 18ch; margin: 0 auto; }
.vet-hero p.lede { color: rgba(255,255,255,0.82); max-width: 56ch; margin: 1.2rem auto 0; }
.vet-badge-row { display: flex; justify-content: center; gap: 3rem; margin-top: 2.8rem; flex-wrap: wrap; }
.vet-badge { text-align: center; }
.vet-badge strong { display: block; font-family: var(--font-sans); font-weight: 600; font-size: 1.9rem; color: var(--gold-light); }
.vet-badge span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

.vet-order-info {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.vet-order-info h3 { color: var(--white); margin-bottom: 2.2rem; }
.vet-order-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 2rem;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.vet-order-info .contact-line .ic { color: var(--gold-light); }
.vet-order-info .contact-line a, .vet-order-info .contact-line span { color: rgba(255,255,255,0.85); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  padding: 2.1rem 1.8rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card.has-photo { padding: 0 0 2.1rem; }
.product-card .qty-stepper { margin-top: auto; padding-top: 1.2rem; }
.product-card .pc-media { height: 180px; overflow: hidden; margin-bottom: 1.6rem; }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card .pc-media.placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-dark) 150%);
  display: flex; align-items: center; justify-content: center;
}
.product-card .pc-media.placeholder span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.4rem;
  color: rgba(255,255,255,0.9);
  transition: transform 1.2s var(--ease);
}
.product-card:hover .pc-media.placeholder span { transform: scale(1.08); }
.product-card.has-photo .num,
.product-card.has-photo h3,
.product-card.has-photo .price-range,
.product-card.has-photo ul { margin-left: 1.8rem; margin-right: 1.8rem; }
.product-card.has-photo .num { margin-top: 0; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -20px rgba(27,27,27,0.2); }
.product-card .num { font-family: var(--font-sans); font-style: italic; color: var(--gold); font-size: 1rem; display: block; margin-bottom: 1rem; }
.product-card h3 { margin-bottom: 0.3rem; font-size: 1.25rem; }
.product-card .price-range { font-family: var(--font-sans); font-weight: 600; color: var(--gold-dark); font-size: 1.3rem; margin-bottom: 1rem; }
.product-card .price-range small { font-family: var(--font-sans); font-size: 0.72rem; color: var(--charcoal-soft); letter-spacing: 0.03em; }
.product-card ul { margin: 0; }
.product-card li { font-size: 0.86rem; color: var(--charcoal-soft); margin-bottom: 0.45rem; padding-left: 1.1rem; position: relative; }
.product-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.qty-stepper { display: flex; align-items: center; justify-content: center; gap: 0.7rem; margin: 1.2rem 1.8rem 0; }
.qty-stepper button {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 6px;
  font-size: 1.1rem; color: var(--navy); background: var(--paper);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.qty-stepper button:hover { background: var(--cream-dark); border-color: var(--gold); }
.qty-stepper .qty-input {
  width: 44px; text-align: center;
  border: 1px solid var(--line); border-radius: 6px;
  padding: 0.4rem 0.2rem; font-family: var(--font-sans); font-size: 0.95rem; color: var(--charcoal);
}
.qty-stepper .qty-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-soft); margin-right: 0.2rem; }

.added-toast {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-dark);
  margin: 0 1.8rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), opacity 0.3s ease, margin-top 0.35s var(--ease);
}
.added-toast.is-shown { max-height: 2rem; opacity: 1; margin-top: 0.6rem; }

.vet-summary { max-width: 640px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 2.2rem 2.4rem; }
.vet-summary-empty { text-align: center; color: var(--charcoal-soft); font-size: 0.92rem; padding: 0.6rem 0; }
.vet-summary-line { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; color: var(--charcoal); }
.vet-summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; margin-top: 0.4rem; border-top: 2px solid var(--navy); font-family: var(--font-sans); font-weight: 600; font-size: 1.5rem; color: var(--navy); }

/* ---------- Vet cart floating button ---------- */
.vet-cart-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 250;
  background: var(--navy); color: var(--white);
  padding: 0.9rem 1.5rem 0.9rem 1.2rem; border-radius: 999px;
  font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase; font-weight: 600;
  box-shadow: 0 10px 30px -8px rgba(17,17,17,0.45);
  display: flex; align-items: center; gap: 0.7rem;
  transition: transform 0.3s var(--ease), background 0.3s ease, opacity 0.3s ease;
}
.vet-cart-fab:hover { transform: translateY(-3px); background: var(--gold-dark); }
.vet-cart-fab.is-empty { opacity: 0.55; }
.vet-cart-fab.pulse { animation: fab-pulse 0.6s var(--ease); }
@keyframes fab-pulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.12); background: var(--gold); box-shadow: 0 14px 36px -8px rgba(199,162,51,0.55); }
  100% { transform: scale(1); }
}
.vet-cart-fab .count {
  background: var(--gold); color: var(--white);
  min-width: 22px; height: 22px; border-radius: 50%; padding: 0 0.3rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}
.vet-cart-fab .fab-total { color: rgba(255,255,255,0.75); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---------- Vet sub-header (cart/checkout/confirmation) ---------- */
.vet-subheader {
  background: var(--navy); color: var(--white);
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(2.2rem, 4vw, 2.8rem);
  text-align: center;
}
.vet-subheader .eyebrow { color: var(--gold-light); }
.vet-subheader h1 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.6rem); }

/* ---------- Cart / checkout line items ---------- */
.cart-panel { max-width: 720px; margin: 0 auto; }
.cart-line {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--line);
}
.cart-line .cl-thumb {
  width: 58px; height: 58px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-dark) 150%);
  display: flex; align-items: center; justify-content: center;
}
.cart-line .cl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .cl-thumb span { font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,0.9); font-size: 1.3rem; }
.cart-line .cl-info { flex: 1; }
.cart-line .cl-name { font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy); }
.cart-line .cl-price { font-size: 0.85rem; color: var(--charcoal-soft); margin-top: 0.2rem; }
.cart-line .cl-sub { font-family: var(--font-sans); font-weight: 600; font-size: 1.1rem; color: var(--gold-dark); min-width: 64px; text-align: right; }
.cart-line .cl-remove { color: var(--charcoal-soft); font-size: 1.4rem; line-height: 1; padding: 0.2rem 0.4rem; transition: color 0.3s ease; }
.cart-line .cl-remove:hover { color: var(--gold-dark); }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--charcoal-soft); }
.cart-totals { padding-top: 1.4rem; margin-top: 0.6rem; }
.cart-totals .cart-grand-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 2px solid var(--navy); padding-top: 1.2rem; font-family: var(--font-sans); font-weight: 600; font-size: 1.7rem; color: var(--navy); }

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat h2 { font-family: var(--font-sans); color: var(--gold); font-size: clamp(4rem, 9vw, 7.5rem); font-weight: 600; line-height: 1; margin-bottom: 0.6rem; }
.stat > span { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-media { order: -1; }
  .grid-3, .ceremony-grid, .package-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 780px) {
  .nav-row-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-logo img { height: 60px; }
  .grid-3, .grid-2, .ceremony-grid, .package-grid, .product-grid, .resource-row, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .gallery-grid { columns: 2 200px; }
  .booking-steps { gap: 0; flex-wrap: wrap; row-gap: 0.8rem; }
  .booking-step { padding: 0 0.8rem; }
  .vet-order-info-grid { grid-template-columns: 1fr; }
  .cart-line { flex-wrap: wrap; }
  .cart-line .cl-info { flex-basis: 100%; order: 1; }
  .cart-line .cl-thumb { order: 0; }
  .cart-line .qty-stepper { order: 2; margin: 0; }
  .cart-line .cl-sub { order: 3; }
  .cart-line .cl-remove { order: 4; }
}
