/* ═══════════════════════════════════════════════════════════
   Snooty Tooty — Consolidated Stylesheet
   Single source of truth. No overrides, no !important cascade.
   Last consolidated: 2026-03-31
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Colour palette */
  --gold:      #c9a84c;
  --gold-dark: #b8943f;
  --dark:      #1a1a1a;
  --bg:        #0e0c0a;
  --white:     #ffffff;
  --cream:     #f5f0e8;

  /* Typefaces */
  --font-h:    'Playfair Display', serif;
  --font-b:    'Lato', sans-serif;

  /* Typography scale — Major Third (×1.25), base 16px */
  --fs-xs:   0.75rem;    /* 12px — labels, captions, small UI */
  --fs-sm:   0.875rem;   /* 14px — secondary body, meta text  */
  --fs-base: 1rem;       /* 16px — primary body, nav, fields   */
  --fs-md:   1.125rem;   /* 18px — pullquotes, featured body   */
  --fs-lg:   1.563rem;   /* 25px — h3, sub-headings            */
  --fs-xl:   1.938rem;   /* 31px — h2, section headings         */
  --fs-hero: clamp(2.4rem, 5.5vw, 4.2rem); /* hero h1 only    */
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-b);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.7;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeInDown   { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp     { from { opacity: 0; transform: translateY(22px);  } to { opacity: 1; transform: none; } }
@keyframes expandLine   { from { transform: scaleX(0); opacity: 0; }        to { transform: scaleX(1); opacity: 1; } }
@keyframes shimmerSweep { from { left: -80%; }                              to { left: 130%; } }
@keyframes marqueeScroll{ from { transform: translateX(0); }               to { transform: translateX(-50%); } }
@keyframes heroZoomOut  { from { transform: scale(1.12); }                 to { transform: scale(1.0); } }
@keyframes bounce       { 0%, 100% { transform: translate(-50%, 0); }     50% { transform: translate(-50%, -8px); } }
@keyframes borderPulse  { 0%, 100% { border-color: rgba(201,168,76,.25); } 50% { border-color: rgba(201,168,76,.65); } }
@keyframes spin         { to { transform: rotate(360deg); } }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container       { width: min(1200px, 92vw); margin: 0 auto; }
.section         { padding: 96px 0; }
.section-light   { background: var(--cream); color: var(--dark); }
.section-dark    { background: var(--dark);  color: var(--white); }

/* ── SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), #f0dc8a, var(--gold));
  z-index: 10001;
  pointer-events: none;
}

/* ── TYPOGRAPHY GLOBALS ─────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  font-style: normal;
  font-weight: 400;
}
h1 { font-size: var(--fs-hero); line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: var(--fs-xl);  line-height: 1.1;  letter-spacing: 0.02em; }
h3 { font-size: var(--fs-lg);  line-height: 1.2; }

p, li, a, label, input, select, textarea, button,
td, th {
  font-family: var(--font-b);
  font-style: normal;
}

p {
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.6;
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1),
              transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(26,26,26,0.92);
  z-index: 10;
  transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,122,0.12);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.nav-wordmark-img {
  height: 80px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-b);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-b);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201,168,76,0.35), 0 8px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: #d4b055;
  box-shadow: 0 6px 20px rgba(201,168,76,0.5), 0 12px 36px rgba(0,0,0,0.55);
  transform: translateY(-2px);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn-primary:hover::after { animation: shimmerSweep 0.55s ease forwards; }

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.btn-secondary:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.btn-secondary > * { position: relative; z-index: 1; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/hero-event.webp') center 30% / cover no-repeat;
  animation: heroZoomOut 14s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.55) 72%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px clamp(48px,9vh,100px);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.hero-text-box {
  display: inline-block;
  background: rgba(40,40,40,0.78);
  padding: 40px 48px;
  backdrop-filter: blur(4px);
}
.hero-title-wrap { margin: 0 0 16px; }
.hero h1 {
  font-size: var(--fs-hero);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.08;
  text-shadow: 0 2px 32px rgba(0,0,0,0.7);
  animation: fadeInUp 0.9s ease both 0.72s;
}
.hero-subtext {
  font-family: var(--font-b);
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,0.82);
  margin: 0 auto 4px;
  animation: fadeInUp 0.7s ease both 1s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  animation: fadeInUp 0.7s ease both 1.25s;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  animation: bounce 2s infinite;
  z-index: 2;
}
.scroll-indicator-line {
  display: block;
  width: 1px; height: 32px;
  background: var(--gold);
  margin: 0 auto 6px;
  opacity: 0.7;
}
.scroll-indicator-arrow { display: block; margin: 0 auto; }

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 7px 0;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 34s linear infinite;
}
.marquee-item {
  font-family: var(--font-b);
  font-size: var(--fs-xs);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 28px;
  flex-shrink: 0;
}
.marquee-item--dot {
  color: rgba(26,18,0,0.38);
  padding: 0 6px;
  letter-spacing: 0;
}

/* ── ABOUT / INTRO ──────────────────────────────────────── */
#about {
  background: var(--bg);
  color: var(--white);
}
.intro.section { padding: clamp(40px,5vh,64px) 0; }
.intro-grid {
  display: grid;
  gap: 24px;
}
p.intro-lead {
  font-family: var(--font-h);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 16px;
}
.intro-body {
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.intro-features { display: flex; flex-direction: column; gap: 12px; }
.intro-feature  { display: flex; gap: 12px; align-items: flex-start; }
.intro-features strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px;
}
.intro-features p {
  font-size: var(--fs-base);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.intro-pullquote {
  margin-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.35);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding: 16px 0;
  text-align: center;
  animation: borderPulse 4s ease-in-out infinite;
}
.intro-pullquote p,
.intro-pullquote em {
  font-family: var(--font-b);
  font-size: var(--fs-md);
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.intro-image img {
  border: 1px solid rgba(201,168,76,0.35);
  will-change: transform;
  transform: scale(1.07);
  transition: transform 1.4s cubic-bezier(0.19,1,0.22,1);
}
.intro.visible .intro-image img { transform: scale(1.0); }

/* ── EXPERIENCE SECTION ─────────────────────────────────── */
.experience-section {
  background: #0a0a0a;
  padding: 48px 0;
}
h2.exp-heading {
  font-family: var(--font-h);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Two independent flex columns — left ~42%, right fills */
.exp-grid {
  display: flex;
  gap: 40px;
  row-gap: 0;
  column-gap: 32px;
  align-items: flex-start;
}
.exp-col-left {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  padding-right: 24px;
}
.exp-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Left col: zero gap between amenities-a and gallery */
.exp-amenities-a {
  padding-bottom: 0;
  margin-bottom: 0;
}
.exp-amenities-a .exp-amenities {
  margin-bottom: 0;
  padding-bottom: 0;
}
.exp-amenities-a .exp-amenities li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Gallery sits flush under amenity list, then 24px gap in left col */
.exp-gallery-wrap {
  margin-top: 0;
  padding-top: 0;
  align-self: start;
}
.exp-col-left .exp-gallery-wrap {
  margin-top: 24px;
  padding-top: 0;
}

/* Right col: amenities-b then partner box */
.exp-amenities-b {
  align-self: start;
  margin-bottom: 0;
}
.exp-partner-wrap { margin-top: 20px; }

/* Amenity lists */
.exp-amenities {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  color: var(--gold);
}
.exp-amenities li {
  padding: 4px 0;
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.exp-amenity-name {
  font-family: var(--font-b);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.exp-amenity-desc {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* 2×2 photo gallery */
.exp-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.exp-gallery-item {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
}
.exp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.exp-gallery-item:hover img { transform: scale(1.04); }

/* Partner box */
.exp-partner-box {
  background: #0e0c0a;
  border: 1px solid rgba(201,168,76,0.35);
  border-top: 2px solid var(--gold);
  padding: 22px 110px 22px 22px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
}
.exp-partner-box::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.exp-partner-box-content { position: relative; z-index: 1; }
.exp-partner-box-title {
  font-family: var(--font-b);
  font-size: var(--fs-base);
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  display: block;
  margin-bottom: 5px;
}
.exp-partner-box-block {
  font-family: var(--font-b);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.exp-partner-box-block:last-child { margin-bottom: 0; }
.exp-partner-box-link {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}
.exp-partner-box-link:hover { opacity: 0.75; }
.exp-bottle-img {
  position: absolute;
  right: 0; bottom: 0;
  width: 100px;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.7;
  mix-blend-mode: normal;
  filter: none;
  pointer-events: none;
}

/* ── REVIEWS ────────────────────────────────────────────── */
.review { position: relative; overflow: hidden; color: var(--white); }
.review-bg-image {
  position: absolute; inset: 0;
  background: url('../img/hero-trailer.webp') center 35% / cover no-repeat;
  opacity: 0.18; z-index: 0;
}
.review-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 60%, #0a0a0a 100%);
  z-index: 1;
}
.review-inner {
  position: relative; z-index: 2;
  padding: clamp(40px,5vh,60px) 0;
}
.stat-bar {
  display: flex;
  border: 1px solid rgba(201,168,76,0.25);
  overflow: hidden;
  margin-bottom: 36px;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(201,168,76,0.2);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.stat:last-child { border-right: none; }
.stat.stat-in { opacity: 1; transform: none; }
.stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(2rem,4vw,3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat:last-child .stat-num {
  font-size: var(--fs-lg);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16,1,0.3,1);
}
.testimonial.testi-in { opacity: 1; transform: none; }
.quote-open {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(3.5rem,6vw,5.5rem);
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.75;
}
.review-quote {
  font-family: var(--font-b);
  font-weight: 600;
  font-style: normal;
  font-size: var(--fs-md);
  line-height: 1.75;
  color: #f2ede4;
  margin: 0 0 24px;
}
.review-meta { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.review-rule { width: 48px; height: 1px; background: var(--gold); opacity: 0.7; }
.review-author {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.review-stars { display: flex; gap: 5px; justify-content: center; font-size: 0; }
.star-item {
  display: inline-block;
  font-size: var(--fs-base);
  color: var(--gold);
  opacity: 0;
  transform: scale(0) rotate(-25deg);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.star-item.star-in { opacity: 1; transform: scale(1) rotate(0); }

/* ── COLLAGE / AMENITIES / PARTNERS — section titles ───── */
.amenities h2,
.collage-section h2,
.partners-inner h2 {
  font-size: var(--fs-xl);
  letter-spacing: 0.06em;
}
.partners-duo-name { font-family: var(--font-h); }

/* ── FAQ ────────────────────────────────────────────────── */
.faqs { background: var(--dark); color: var(--cream); padding: 110px 0; }
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 80px;
  align-items: start;
}
.faq-header { position: sticky; top: 120px; }
.faq-header h2 {
  color: var(--cream);
  font-size: var(--fs-xl);
  line-height: 1.08;
  margin: 1rem 0 1.4rem;
  letter-spacing: 0.01em;
  text-transform: none;
}
.faq-intro {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: var(--fs-md);
  color: rgba(245,240,232,0.48);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.faq-cta { display: inline-block; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(201,168,76,0.2); }
.faq-item:last-child { border-bottom: 1px solid rgba(201,168,76,0.2); }
.faq-question {
  width: 100%;
  background: none; border: none;
  padding: 1.55rem 0;
  display: flex; align-items: center; gap: 1.2rem;
  cursor: pointer; text-align: left;
  color: rgba(245,240,232,0.78);
  font-family: inherit;
  transition: color 0.25s ease;
}
.faq-question:hover,
.faq-item.open .faq-question { color: var(--gold); }
.faq-num {
  font-family: var(--font-b);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
  width: 1.8rem;
  transition: opacity 0.3s ease;
}
.faq-item.open .faq-num { opacity: 1; }
.faq-q-text {
  flex: 1;
  font-family: var(--font-b);
  font-size: var(--fs-md);
  font-weight: 600;
  font-style: normal;
  line-height: 1.45;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-base);
  font-family: var(--font-b);
  font-style: normal;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.faq-answer {
  overflow: hidden;
  opacity: 0;
  padding-left: calc(1.8rem + 1.2rem);
  transition: max-height 0.52s cubic-bezier(0.16,1,0.3,1), opacity 0.38s ease;
}
.faq-item.open .faq-answer { opacity: 1; }
.faq-answer p {
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.8;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.6rem;
  padding-bottom: 1.4rem;
}
.faq-answer ul { list-style: none; margin-bottom: 1rem; }
.faq-answer ul li {
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.75;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}
.faq-answer ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
  font-size: var(--fs-xs);
  top: 0.28em;
}
.faq-answer ul li strong { color: rgba(245,240,232,0.82); font-weight: 700; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.6);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  width: 180px;
  margin: 0 auto;
  filter: none;
}
.footer-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}
.footer-logos img { width: 80px; filter: grayscale(0.1); }
.footer-links a { font-size: var(--fs-sm); color: var(--gold); }
.footer-copy { font-size: var(--fs-xs); color: rgba(255,255,255,0.35); }
.acknowledgement {
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 600px;
  margin: 0 auto;
}

/* ── QUOTE MODAL / ENQUIRY FORM ─────────────────────────── */
.quote-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: flex-end;
}
.quote-modal[hidden] { display: none; }
.quote-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.quote-modal-panel {
  position: relative; z-index: 1;
  background: #111009;
  width: min(560px, 96vw);
  height: 100vh;
  overflow-y: auto;
  padding: 48px 40px 60px;
  border-left: 1px solid rgba(201,168,76,0.2);
  animation: fadeInDown 0.45s cubic-bezier(0.16,1,0.3,1);
}
.quote-modal-close {
  position: absolute; top: 20px; right: 20px;
  background: transparent; border: none;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 4px;
}
.quote-modal-close:hover { color: var(--gold); }
.enquiry-header { margin-bottom: 32px; }
.enquiry-header h2 { font-size: var(--fs-xl); color: var(--white); margin-bottom: 8px; }
.enquiry-sub { font-size: var(--fs-sm); color: rgba(255,255,255,0.45); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group--full { grid-column: 1 / -1; }
.field-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.field-req { color: rgba(201,168,76,0.5); }
.field-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-b);
  font-size: var(--fs-base);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field-input:focus { border-color: rgba(201,168,76,0.6); background: rgba(201,168,76,0.04); }
.field-input::placeholder { color: rgba(255,255,255,0.22); }
.field-select-wrap { position: relative; }
.field-select { width: 100%; cursor: pointer; }
.field-select option {
  background: #1a1a1a;
  color: var(--gold);
  font-family: var(--font-b);
  font-weight: 600;
}
.field-select-arrow {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); pointer-events: none; font-size: var(--fs-xs);
}
.field-textarea { resize: none; }
.field-error { font-size: var(--fs-xs); color: #e07070; min-height: 1em; }
.enquiry-actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.enquiry-submit { width: 100%; }
.enquiry-privacy { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); line-height: 1.5; }
.submit-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(26,26,26,0.3);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.enquiry-submit.loading .submit-label { display: none; }
.enquiry-submit.loading .submit-spinner { display: block; }
.enquiry-honeypot { display: none; }
.enquiry-success, .enquiry-error { display: none; }
.enquiry-error.visible { display: block; margin-top: 24px; padding: 20px; text-align: center; background: rgba(224,112,112,0.08); border: 1px solid rgba(224,112,112,0.25); }
.enquiry-error p { font-size: var(--fs-sm); color: rgba(255,255,255,0.55); }
.enquiry-alt { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); text-align: center; }
.enquiry-alt-label { font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 12px; }
.enquiry-alt-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px; }
.contact-link { font-size: var(--fs-sm); color: var(--gold); transition: opacity 0.2s ease; }
.contact-link:hover { opacity: 0.7; }
.enquiry-alt-sep { color: rgba(255,255,255,0.2); }

/* ── PARTNER DISCLAIMER BOX ─────────────────────────────── */
.partner-disclaimer {
  display: flex;
  align-items: stretch;
  background: #0d0d0d;
  border: 1px solid rgba(184,152,90,0.35);
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}
.partner-disclaimer__image {
  flex: 0 0 220px;
  background: rgba(184,152,90,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-right: 1px solid rgba(184,152,90,0.2);
  min-height: 180px;
}
.partner-disclaimer__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: scale(1.75);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7));
}
.partner-disclaimer__content {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--gold);
}
.partner-entry h4 {
  font-family: var(--font-h);
  font-size: var(--fs-lg);
  font-weight: 700;
  font-style: normal;
  color: var(--dark);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.partner-entry p {
  font-family: var(--font-b);
  font-size: var(--fs-base);
  font-weight: 600;
  color: rgba(26,26,26,0.85);
  line-height: 1.7;
  margin: 0;
  font-style: normal;
}
.partner-entry strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.partner-entry a {
  color: #3d2b00;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.partner-entry a:hover { opacity: 0.7; }
.partner-divider { height: 1px; background: rgba(184,152,90,0.18); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .faq-container { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 28px; }
  .faq-header { position: static; text-align: center; }
  .faq-cta { margin: 0 auto; display: block; width: fit-content; }
  .faqs { padding: 70px 0; }
}
@media (max-width: 780px) {
  .exp-grid { flex-direction: column; row-gap: 24px; }
  .exp-amenities-a, .exp-amenities-b, .exp-gallery-wrap, .exp-partner-wrap {
    width: 100%;
  }
  .exp-partner-box { padding-right: 22px; }
  .exp-bottle-img { display: none; }
  .experience-section { padding: 48px 0; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 68px; right: 16px;
    flex-direction: column;
    background: rgba(26,26,26,0.95);
    padding: 16px;
    border: 1px solid rgba(201,168,76,0.3);
    transform: translateY(-20px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: all; }
  .hero-actions { width: 100%; }
  .hero-text-box { padding: 28px 24px; }
}
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: repeat(2, minmax(0,1fr)); align-items: center; }
}
@media (min-width: 1024px) {
  .nav-links {
    position: static; flex-direction: row;
    background: none; padding: 0; border: none;
    opacity: 1; transform: none; pointer-events: all;
  }
  .nav-toggle { display: none; }
}
@media (max-width: 600px) {
  .partner-disclaimer { flex-direction: column; }
  .partner-disclaimer__image {
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(184,152,90,0.2);
    padding: 24px;
    min-height: auto;
  }
  .partner-disclaimer__image img { max-width: 100px; }
  .partner-disclaimer__content { padding: 20px; }
}
@media (max-width: 480px) {
  .enquiry-grid { grid-template-columns: 1fr; }
  .quote-modal-panel { padding: 40px 24px 48px; }
  .faq-q-text { font-size: var(--fs-base); }
}

/* ── ENQUIRY SUCCESS — LUXURY ANIMATED ─────────────────── */
@keyframes successFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ringDraw {
  from { stroke-dashoffset: 226; }
  to   { stroke-dashoffset: 0; }
}
@keyframes checkDraw {
  from { stroke-dashoffset: 50; opacity: 0; }
  to   { stroke-dashoffset: 0;  opacity: 1; }
}
@keyframes ringGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(201,168,76,0.3)); }
  50%       { filter: drop-shadow(0 0 12px rgba(201,168,76,0.7)); }
}

.enquiry-success {
  display: none;
  margin-top: 32px;
  padding: 48px 32px;
  text-align: center;
}
.enquiry-success.visible {
  display: block;
  animation: successFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

.enquiry-success-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}
.enquiry-success-ring svg {
  width: 100%;
  height: 100%;
  animation: ringGlow 2.8s ease-in-out infinite 1.2s;
}
.ring-draw {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: ringDraw 0.9s cubic-bezier(0.65,0,0.35,1) forwards 0.2s;
}
.check-draw {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkDraw 0.5s cubic-bezier(0.16,1,0.3,1) forwards 1.05s;
}

.enquiry-success-heading {
  font-family: var(--font-h);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  animation: successFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) both 0.5s;
}
.enquiry-success-body {
  font-size: var(--fs-base);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 12px;
  animation: successFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) both 0.65s;
}
.enquiry-success-sub {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  animation: successFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) both 0.8s;
}
.enquiry-success-link {
  color: var(--gold);
  transition: opacity 0.2s ease;
}
.enquiry-success-link:hover { opacity: 0.7; }
