/* ==========================================================================
   COMPONENTS
   Shared UI patterns: nav, footer, section heads, FAQ, testimonials,
   feature-row, photo-strip, info-card. Loaded on every page.
   ========================================================================== */

/* NAV ---------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav--solid {
  background: rgba(14, 16, 20, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom-color: var(--line);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.nav-brand:hover { transform: scale(1.05); }
.nav-brand img {
  height: 38px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
}
.nav.scrolled .nav-brand img,
.nav--solid .nav-brand img {
  height: 32px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }
.nav-cta--filled {
  background: var(--gold);
  color: var(--ink) !important;
}
.nav-cta--filled:hover { background: var(--cream); border-color: var(--cream); }

/* Mobile menu toggle (hamburger). Hidden on desktop, shown on mobile. */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 201;
  background: transparent;
  border: 1px solid rgba(245, 241, 232, 0.3);
  color: var(--cream);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle .bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.open .nav-toggle .bar:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}
.nav.open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
}
.nav.open .nav-toggle .bar:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* SECTION HEAD ------------------------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-head h2 em { font-style: italic; color: var(--gold-deep); }
.section-head--dark h2 em { color: var(--gold); }
.section-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}
.section-head--dark p { color: rgba(245, 241, 232, 0.6); }

/* TESTIMONIAL CARDS -------------------------------------------------------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.quote-grid--pair {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.quote-grid--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.quote-grid--single .quote {
  padding: 64px 56px;
}
.quote-grid--single .quote-text {
  font-size: 26px;
  line-height: 1.4;
}
.quote {
  background: var(--cream);
  padding: 48px 40px;
  border: 1px solid var(--line-dark);
  position: relative;
}
.quote::before {
  content: '\201C';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.quote-author { border-top: 1px solid var(--line-dark); padding-top: 20px; }
.quote-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.quote-event {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* FAQ ACCORDION ------------------------------------------------------------ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}
.faq-q .toggle::before,
.faq-q .toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all 0.3s;
}
.faq-q .toggle::before { width: 12px; height: 1px; }
.faq-q .toggle::after { width: 1px; height: 12px; }
.faq-item.open .faq-q .toggle { background: var(--ink); border-color: var(--ink); }
.faq-item.open .faq-q .toggle::before { background: var(--cream); }
.faq-item.open .faq-q .toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 26px 0;
}

/* FEATURE ROW (cinematic clip features) ----------------------------------- */
.feature-list { display: flex; flex-direction: column; gap: 100px; }
.feature-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.reverse { grid-template-columns: 1fr 1.4fr; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2A1F1A, #4A3525, #1A1D24);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.feature-row--dark .feature-media {
  background: linear-gradient(135deg, #1A2530, #2A1F1A, #1A1D24);
  border: 1px solid var(--line);
}
.feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 16, 20, 0.55) 0%, rgba(14, 16, 20, 0.1) 50%, transparent 100%);
}
.feature-media:hover { transform: scale(1.01); }
.feature-media:hover .feature-play { background: var(--gold); border-color: var(--gold); }
.feature-media:hover .feature-play::before { border-left-color: var(--ink); }
.feature-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border: 1.5px solid rgba(245, 241, 232, 0.7);
  border-radius: 50%;
  background: rgba(14, 16, 20, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s;
}
.feature-play::before {
  content: '';
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--cream);
  margin-left: 5px;
  transition: border-left-color 0.3s;
}
.feature-runtime {
  position: absolute;
  bottom: 18px; right: 18px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cream);
  padding: 4px 10px;
  background: rgba(14, 16, 20, 0.7);
  border-radius: 2px;
}
.feature-content { padding: 16px 0; }
.feature-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: block;
}
.feature-row--dark .feature-tag { color: var(--gold); }
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.feature-title em { font-style: italic; color: var(--gold-deep); }
.feature-row--dark .feature-title em { color: var(--gold); }
.feature-meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.feature-row--dark .feature-meta { color: var(--gold); }
.feature-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 460px;
}
.feature-row--dark .feature-description { color: rgba(245, 241, 232, 0.7); }
.feature-credits {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  flex-wrap: wrap;
}
.feature-row--dark .feature-credits {
  border-color: var(--line);
  color: rgba(245, 241, 232, 0.6);
}
.feature-credits span strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.feature-row--dark .feature-credits span strong { color: var(--cream); }

/* SONG LIST CTA ----------------------------------------------------------- */
.songlist-cta {
  background: var(--cream-warm);
  padding: 80px 48px !important;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}
.songlist-cta-inner {
  max-width: 720px;
  width: 100%;
  margin: 0 auto !important;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.songlist-cta .eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--gold-deep);
}
.songlist-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.songlist-cta h3 em { font-style: italic; color: var(--gold-deep); }
.songlist-cta p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 600px;
}
.songlist-cta .more-link {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  align-self: center;
}
@media (max-width: 900px) {
  .songlist-cta { padding: 60px 24px !important; }
}

/* MORE LINK ---------------------------------------------------------------- */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  transition: gap 0.25s, color 0.25s;
}
.more-link:hover { gap: 18px; color: var(--gold-deep); }
.more-link::after { content: '\2192'; }
.more-link--dark {
  color: var(--cream);
  border-color: var(--line);
}
.more-link--dark:hover { color: var(--gold); }

/* PHOTO STRIP ------------------------------------------------------------- */
.photo-strip {
  background: var(--cream-warm);
  padding: 80px 0 100px;
  overflow: hidden;
}
.photo-strip--dark {
  background: var(--ink-soft);
  color: var(--cream);
  border-top: 1px solid var(--line);
}
.photo-strip-head {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.photo-strip-head h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.photo-strip-head h3 em { font-style: italic; color: var(--gold-deep); }
.photo-strip--dark .photo-strip-head h3 em { color: var(--gold); }
.photo-strip-head p {
  color: var(--muted);
  font-size: 14px;
  max-width: 360px;
}
.photo-strip--dark .photo-strip-head p { color: rgba(245, 241, 232, 0.55); }
.photo-track {
  display: flex;
  gap: 16px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.photo-track::-webkit-scrollbar { display: none; }
.photo-card {
  flex: 0 0 auto;
  width: 380px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #4A3525, #2A1F1A, #5C2A2F);
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
}
.photo-strip--dark .photo-card {
  background: linear-gradient(135deg, #1A2530, #2A1F1A, #1A1D24);
  border: 1px solid var(--line);
}
.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 16, 20, 0.5), transparent 50%);
}
.photo-card-caption {
  position: absolute;
  bottom: 16px; left: 20px; right: 20px;
  z-index: 2;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* YOUTUBE EMBED ----------------------------------------------------------- */
/* Lite YouTube embed: shows thumbnail + play button, swaps to iframe on click.
   Avoids loading the YouTube iframe on every page load (huge perf gain).
   Use on .feature-media, .clip-card, or .perf elements with data-youtube attr. */
.yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yt-loaded {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.yt-loaded iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 5;
}
[data-youtube] { cursor: pointer; }

/* VIDEO HOVER EFFECTS -----------------------------------------------------
   Subtle treatment applied to every video card across the site:
   1. Thumbnail slow-zooms (1.05x over 700ms with smooth ease-out)
   2. Gold ring expands outward from the play button
   3. Dark gradient overlay lightens slightly so the photo opens up
   ------------------------------------------------------------------------- */

.feature-media .yt-thumb,
.perf .yt-thumb,
.clip-card .yt-thumb {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-media:hover .yt-thumb,
.perf:hover .yt-thumb,
.clip-card:hover .yt-thumb {
  transform: scale(1.05);
}

/* Expanding ring around the play buttons.
   Uses ::after; ::before is reserved for the triangle icon. */
.feature-play::after,
.perf-play::after,
.clip-card-play::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 168, 107, 0);
  transition: inset 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
  pointer-events: none;
}
.feature-media:hover .feature-play::after,
.perf:hover .perf-play::after,
.clip-card:hover .clip-card-play::after {
  inset: -16px;
  border-color: rgba(200, 168, 107, 0.5);
}

/* Slightly brighten the dark overlay on hover so the image opens up. */
.feature-media::after,
.perf::before,
.clip-thumb::after {
  transition: opacity 0.4s ease;
}
.feature-media:hover::after,
.perf:hover::before,
.clip-card:hover .clip-thumb::after {
  opacity: 0.7;
}

/* Once the iframe is loaded, stop running the hover effects. */
.yt-loaded .yt-thumb,
.yt-loaded .feature-play,
.yt-loaded .perf-play,
.yt-loaded .clip-card-play { display: none; }

/* Respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
  .feature-media:hover .yt-thumb,
  .perf:hover .yt-thumb,
  .clip-card:hover .yt-thumb { transform: none; }
  .feature-media:hover .feature-play::after,
  .perf:hover .perf-play::after,
  .clip-card:hover .clip-card-play::after {
    inset: -4px;
    border-color: rgba(200, 168, 107, 0.4);
  }
}

/* HERO DECOR --------------------------------------------------------------
   Drifting curves and floating musical notes for hero sections.
   Two variants:
     .hero-decor--horizontal  (notes drift left to right, performances + about)
     .hero-decor--vertical    (notes rise from bottom to top, weddings + corporate)
   Parent must be position: relative and overflow: hidden.
   Hero content should be wrapped or given z-index: 1+ to sit above decor.
   ------------------------------------------------------------------------- */

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-decor svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-decor .curve {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
}
.hero-decor .note {
  position: absolute;
  font-family: var(--font-display);
  color: var(--gold);
  user-select: none;
  opacity: 0;
  will-change: transform, opacity;
}

/* HORIZONTAL VARIANT (drifting left to right) */
.hero-decor--horizontal .curve {
  animation: drawCurveH 14s ease-in-out infinite;
}
.hero-decor--horizontal .curve-1 { animation-delay: 0s; }
.hero-decor--horizontal .curve-2 { animation-delay: 5s; }
.hero-decor--horizontal .curve-3 { animation-delay: 9s; }
@keyframes drawCurveH {
  0%   { stroke-dashoffset: 2400; opacity: 0; }
  15%  { opacity: 0.18; }
  50%  { stroke-dashoffset: 0; opacity: 0.18; }
  75%  { opacity: 0.18; }
  100% { stroke-dashoffset: -2400; opacity: 0; }
}
.hero-decor--horizontal .note { animation: floatNoteH linear infinite; }
.hero-decor--horizontal .note-1 { top: 28%; font-size: 30px; animation-duration: 18s; animation-delay: 0s; }
.hero-decor--horizontal .note-2 { top: 62%; font-size: 22px; animation-duration: 22s; animation-delay: 4s; }
.hero-decor--horizontal .note-3 { top: 45%; font-size: 36px; animation-duration: 26s; animation-delay: 9s; }
.hero-decor--horizontal .note-4 { top: 75%; font-size: 26px; animation-duration: 20s; animation-delay: 13s; }
.hero-decor--horizontal .note-5 { top: 38%; font-size: 24px; animation-duration: 24s; animation-delay: 17s; }
@keyframes floatNoteH {
  0%   { left: -8%; transform: translateY(0) rotate(-12deg); opacity: 0; }
  10%  { opacity: 0.22; }
  50%  { transform: translateY(-30px) rotate(6deg); opacity: 0.22; }
  90%  { opacity: 0.22; }
  100% { left: 108%; transform: translateY(-60px) rotate(18deg); opacity: 0; }
}

/* VERTICAL VARIANT (rising from bottom to top) */
.hero-decor--vertical .curve {
  animation: drawCurveV 16s ease-in-out infinite;
}
.hero-decor--vertical .curve-1 { animation-delay: 0s; }
.hero-decor--vertical .curve-2 { animation-delay: 6s; }
.hero-decor--vertical .curve-3 { animation-delay: 11s; }
@keyframes drawCurveV {
  0%   { stroke-dashoffset: 2400; opacity: 0; }
  15%  { opacity: 0.16; }
  55%  { stroke-dashoffset: 0; opacity: 0.16; }
  80%  { opacity: 0.16; }
  100% { stroke-dashoffset: -2400; opacity: 0; }
}
.hero-decor--vertical .note { animation: floatNoteV linear infinite; }
/* 10 notes, each with its own size, duration, and stagger delay.
   Horizontal positions are set by --left-side or --right-side modifiers below. */
.hero-decor--vertical .note-1  { font-size: 28px; animation-duration: 18s; animation-delay: 0s; }
.hero-decor--vertical .note-2  { font-size: 22px; animation-duration: 22s; animation-delay: 1.5s; }
.hero-decor--vertical .note-3  { font-size: 34px; animation-duration: 24s; animation-delay: 3s; }
.hero-decor--vertical .note-4  { font-size: 26px; animation-duration: 20s; animation-delay: 4.5s; }
.hero-decor--vertical .note-5  { font-size: 24px; animation-duration: 23s; animation-delay: 6s; }
.hero-decor--vertical .note-6  { font-size: 30px; animation-duration: 21s; animation-delay: 7.5s; }
.hero-decor--vertical .note-7  { font-size: 20px; animation-duration: 19s; animation-delay: 9s; }
.hero-decor--vertical .note-8  { font-size: 32px; animation-duration: 22s; animation-delay: 10.5s; }
.hero-decor--vertical .note-9  { font-size: 26px; animation-duration: 18s; animation-delay: 12s; }
.hero-decor--vertical .note-10 { font-size: 22px; animation-duration: 24s; animation-delay: 13.5s; }
@keyframes floatNoteV {
  0%   { bottom: -10%; transform: translateX(0) rotate(-8deg); opacity: 0; }
  8%   { opacity: 0.20; }
  50%  { transform: translateX(24px) rotate(4deg); opacity: 0.20; }
  92%  { opacity: 0.20; }
  100% { bottom: 110%; transform: translateX(48px) rotate(14deg); opacity: 0; }
}

/* SIDE-CONSTRAINT MODIFIERS for vertical variant.
   Use when one side of the hero is occupied by a photo. */
.hero-decor--right-side .note-1  { left: 55%; }
.hero-decor--right-side .note-2  { left: 88%; }
.hero-decor--right-side .note-3  { left: 68%; }
.hero-decor--right-side .note-4  { left: 78%; }
.hero-decor--right-side .note-5  { left: 60%; }
.hero-decor--right-side .note-6  { left: 92%; }
.hero-decor--right-side .note-7  { left: 72%; }
.hero-decor--right-side .note-8  { left: 82%; }
.hero-decor--right-side .note-9  { left: 65%; }
.hero-decor--right-side .note-10 { left: 95%; }

.hero-decor--left-side .note-1  { left: 5%; }
.hero-decor--left-side .note-2  { left: 38%; }
.hero-decor--left-side .note-3  { left: 18%; }
.hero-decor--left-side .note-4  { left: 28%; }
.hero-decor--left-side .note-5  { left: 10%; }
.hero-decor--left-side .note-6  { left: 42%; }
.hero-decor--left-side .note-7  { left: 22%; }
.hero-decor--left-side .note-8  { left: 32%; }
.hero-decor--left-side .note-9  { left: 15%; }
.hero-decor--left-side .note-10 { left: 45%; }

/* Reduced motion: stop animations, leave faint static hint */
@media (prefers-reduced-motion: reduce) {
  .hero-decor .curve,
  .hero-decor .note {
    animation: none;
    opacity: 0.08;
  }
  .hero-decor .curve { stroke-dashoffset: 0; }
}

/* CTA BLOCK (large closing CTA) -------------------------------------------- */
.cta-block {
  background: linear-gradient(135deg, #0E1014 0%, #1A1D24 100%);
  color: var(--cream);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}
.cta-block--wine {
  background: linear-gradient(135deg, #2A1F1A 0%, #5C2A2F 100%);
}
.cta-block--cool {
  background: linear-gradient(135deg, #0E1014 0%, #1A2530 100%);
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 168, 107, 0.15), transparent 60%);
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-inner .eyebrow { color: var(--gold); margin-bottom: 24px; display: block; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-inner h2 em { font-style: italic; color: var(--gold); }
.cta-inner p {
  font-size: 18px;
  color: rgba(245, 241, 232, 0.78);
  margin-bottom: 44px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* INFO CARD --------------------------------------------------------------- */
.info-card {
  background: var(--cream-warm);
  border: 1px solid var(--line-dark);
  padding: 32px;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}
.info-list { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
.info-content { font-size: 14px; line-height: 1.55; }
.info-content strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.info-content span { color: var(--muted); }

/* FOOTER ----------------------------------------------------------------- */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px 32px;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.55);
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245, 241, 232, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* Sections that take the full padded layout */
section.full { padding: 100px 48px; }

/* MOBILE ----------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav {
    padding: 14px 24px;
    background: rgba(14, 16, 20, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav.scrolled, .nav--solid { padding: 12px 24px; }
  .nav-brand img { height: 32px; }
  .nav.scrolled .nav-brand img,
  .nav--solid .nav-brand img { height: 28px; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  /* Convert nav-links into a slide-down drawer.
     Uses opacity + visibility for show/hide so it works reliably across
     pages regardless of stacking context quirks. */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(14, 16, 20, 0.98) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 80px 24px 32px !important;
    margin: 0 !important;
    list-style: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    pointer-events: none;
    z-index: 199 !important;
  }
  .nav.open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
  .nav.open .nav-links {
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li {
    border-top: 1px solid var(--line);
  }
  .nav-links li:last-child {
    border-top: 1px solid var(--line);
    margin-top: 12px;
    padding-top: 12px;
  }
  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 14px;
    letter-spacing: 0.18em;
  }
  .nav-cta {
    text-align: center;
    padding: 14px 20px !important;
    margin-top: 0;
  }

  /* Center the footer logo + brand text on mobile */
  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    width: 140px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .footer-brand p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  section.full { padding: 60px 24px; }

  .quote-grid,
  .quote-grid--pair { grid-template-columns: 1fr; }
  .quote-grid--single .quote { padding: 40px 28px; }
  .quote-grid--single .quote-text { font-size: 20px; }

  .feature-list { gap: 64px; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-play { width: 64px; height: 64px; }
  .feature-play::before {
    border-top-width: 9px; border-bottom-width: 9px; border-left-width: 14px;
  }

  .photo-strip-head { padding: 0 24px; }
  .photo-track { padding: 0 24px; }
  .photo-card { width: 280px; }

  .cta-block { padding: 100px 24px; }

  footer { padding: 60px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
