/* ══════════════════════════════════════════════════════════
   MAGNOLIA HALL — Shared Stylesheet
   A historic colonial-Charleston-inspired estate, Greenville SC
   ══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Deep colonial navy replaces magnolia-green as the dark anchor */
  --charcoal:     #11161F;
  --charcoal-2:   #161D29;
  --charcoal-3:   #1B2430;
  --charcoal-4:   #131923;
  /* Warm brass/champagne accent */
  --lavender:     #B68A6B;
  --lavender-lt:  #D4AC8C;
  --lavender-dk:  #8C684E;
  --lavender-dim: rgba(182,138,107,0.14);
  --lavender-glow:rgba(182,138,107,0.22);
  --gold:         #BFA06A;
  --gold-lt:      #E0C794;
  --gold-dim:     rgba(191,160,106,0.12);
  --ivory:        #F8F4EA;
  --ivory-faint:  rgba(248,244,234,0.06);
  --sage:         #6E8270;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --nav-h:   92px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html { scroll-padding-top: var(--nav-h); }
img, svg { display: block; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.site-nav.scrolled {
  background: rgba(17, 22, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(191,160,106,0.14);
}

/* Logo */
.nav-logo { display: flex; flex-direction: column; gap: 3px; line-height: 1; flex-shrink: 0; }
.nav-logo-top {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.nav-logo-rule { display: flex; align-items: center; gap: 6px; }
.nav-logo-rule::before, .nav-logo-rule::after {
  content: ''; display: block; height: 1px; width: 14px;
  background: var(--gold); opacity: 0.55;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.54rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop links */
.nav-primary { display: flex; align-items: center; gap: 0.15rem; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-item > a, .nav-item > .nav-label {
  display: flex; align-items: center; gap: 5px;
  padding: 0 1rem; height: 100%;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,244,234,0.72);
  white-space: nowrap; cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}
.nav-item > a:hover,
.nav-item > .nav-label:hover,
.nav-item.has-dropdown:hover > .nav-label { color: var(--gold); }
.nav-caret {
  width: 8px; height: 8px;
  transition: transform 0.25s var(--ease);
  margin-top: 1px;
}
.nav-item.has-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(var(--nav-h) - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 215px;
  background: #1B2430;
  border: 1px solid rgba(191,160,106,0.13);
  border-top: 2px solid var(--gold);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 400;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 0.7rem 1.4rem;
  font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(248,244,234,0.7);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--gold); background: rgba(191,160,106,0.055); }
.nav-dropdown-divider { height: 1px; background: rgba(248,244,234,0.055); margin: 0.4rem 0; }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone {
  font-size: 0.64rem; font-weight: 300; letter-spacing: 0.1em;
  color: rgba(248,244,234,0.42); white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.6rem 1.3rem;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-cta-btn:hover { background: var(--gold); color: var(--charcoal); }

/* Mobile right group */
.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  min-height: 40px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-cta:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
/* Always show hamburger when inside nav-mobile-right */
.nav-mobile-right .nav-hamburger { display: flex; }
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.28s var(--ease), opacity 0.28s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(17, 22, 31, 0.99);
  padding: 0.5rem 1.5rem 2rem;
  overflow-y: auto; z-index: 290;
  flex-direction: column; gap: 0;
  opacity: 0; transform: translateX(100%);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.nav-drawer.open { display: flex; opacity: 1; transform: translateX(0); pointer-events: all; }
/* Accordion groups */
.drawer-group { border-top: 1px solid rgba(248,244,234,0.06); }
.drawer-group:first-child { border-top: none; }
.drawer-group-label {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none;
  padding: 1.05rem 0;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(248,244,234,0.75);
  cursor: pointer; transition: color 0.2s; text-align: left;
}
.drawer-group-label:hover { color: var(--gold); }
.drawer-group-label.is-open { color: var(--gold); }
.drawer-group-label--single { cursor: default; }
.drawer-group-label--single:hover { color: rgba(248,244,234,0.7); }
.drawer-single-link {
  color: inherit; display: block; width: 100%;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.drawer-single-link:hover { color: var(--gold); }
.drawer-caret {
  flex-shrink: 0; transition: transform 0.28s ease; opacity: 0.5;
}
.drawer-group-label.is-open .drawer-caret { transform: rotate(180deg); }
.drawer-group-label--single .drawer-caret { display: none; }
.drawer-group-links {
  overflow: hidden; max-height: 0;
  transition: max-height 0.3s ease;
}
.drawer-group-links a {
  display: block; padding: 0.75rem 0 0.75rem 0.85rem;
  min-height: 44px; display: flex; align-items: center;
  font-size: 0.9rem; font-weight: 300; letter-spacing: 0.04em;
  color: rgba(248,244,234,0.62);
  border-left: 1px solid rgba(248,244,234,0.08);
  transition: color 0.2s, border-color 0.2s;
}
.drawer-group-links a:last-child { margin-bottom: 0.6rem; }
.drawer-group-links a:hover { color: var(--ivory); border-color: var(--gold); }
.drawer-cta-wrap { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* ─────────────────────────────────────────────────────────
   SHARED BUTTONS
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 1.85rem;
  min-height: 44px;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap; cursor: pointer;
  border: 1px solid transparent;
}
.btn-lavender  { background: var(--lavender); color: var(--white); border-color: var(--lavender); }
.btn-lavender:hover { background: var(--lavender-dk); border-color: var(--lavender-dk); }
.btn-outline-ivory { background: transparent; color: var(--ivory); border-color: rgba(248,244,234,0.36); }
.btn-outline-ivory:hover { color: var(--gold); border-color: var(--gold); }
.btn-outline-gold  { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover  { background: var(--gold); color: var(--charcoal); }
.btn-gold-fill { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-gold-fill:hover { background: var(--gold-lt); }

/* ─────────────────────────────────────────────────────────
   SHARED TYPOGRAPHY / LABELS
───────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--lavender-lt);
  margin-bottom: 1.2rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block; height: 1px; width: 20px;
  background: var(--lavender-lt); opacity: 0.5;
}
.display-heading {
  font-family: var(--font-display);
  font-weight: 300; line-height: 1.1;
  color: var(--ivory);
}
.display-heading em { font-style: italic; color: var(--gold-lt); }
.section-body {
  font-size: clamp(0.96rem, 1.5vw, 1.06rem);
  font-weight: 300;
  line-height: 1.92;
  color: rgba(248,244,234,0.65);
}

/* ─────────────────────────────────────────────────────────
   DECORATIVE SPRIG SVG (used as inline deco)
───────────────────────────────────────────────────────── */
.deco-sprig { display: inline-block; opacity: 0.55; }

/* ─────────────────────────────────────────────────────────
   LAVENDER RULE
───────────────────────────────────────────────────────── */
.lav-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
}
.lav-rule-line { height: 1px; flex: 1; max-width: 80px; background: var(--gold); opacity: 0.28; }

/* ─────────────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.site-footer { background: #0D1118; border-top: 1px solid rgba(191,160,106,0.1); }

/* Newsletter */
.footer-newsletter {
  background: var(--charcoal-2);
  border-bottom: 1px solid rgba(248,244,234,0.05);
  padding: 2.4rem 3.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.footer-newsletter-copy h4 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 300;
  color: var(--ivory); margin-bottom: 0.2rem;
}
.footer-newsletter-copy p {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(248,244,234,0.4);
}
.footer-newsletter-form { display: flex; flex-shrink: 0; }
.footer-newsletter-form input {
  width: 260px; padding: 0.72rem 1.1rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(248,244,234,0.14); border-right: none;
  color: var(--ivory); font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.05em; outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter-form input::placeholder { color: rgba(248,244,234,0.25); }
.footer-newsletter-form input:focus { border-color: rgba(191,160,106,0.38); }
.footer-newsletter-form button {
  padding: 0.72rem 1.3rem;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--font-body); font-size: 0.62rem;
  font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; border: 1px solid var(--gold);
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover { background: var(--gold-lt); }

/* Columns */
.footer-upper {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 5vw, 4rem) clamp(2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  gap: clamp(1.8rem, 3vw, 4rem);
}
.footer-brand-logo-top {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--ivory); letter-spacing: 0.04em;
}
.footer-brand-logo-sub {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.54rem; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px; margin-bottom: 1.4rem;
}
.footer-brand-logo-sub::before, .footer-brand-logo-sub::after {
  content: ''; height: 1px; width: 12px;
  background: var(--gold); opacity: 0.5;
}
.footer-brand-desc {
  font-size: 0.83rem; font-weight: 300; line-height: 1.9;
  color: rgba(248,244,234,0.38);
  max-width: 270px; margin-bottom: 1.6rem;
}
.footer-awards { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.7rem; }
.footer-award-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.61rem; font-weight: 400; letter-spacing: 0.08em;
  color: rgba(248,244,234,0.35);
}
.footer-award-badge::before { content: '✦'; color: var(--gold); font-size: 0.48rem; opacity: 0.65; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(248,244,234,0.11);
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,244,234,0.38);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--lavender-lt); color: var(--lavender-lt); }
.footer-col-title {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(191,160,106,0.14);
}
.footer-links { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-links a {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(248,244,234,0.52); letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ivory); }
.footer-links a.highlight { color: var(--lavender-lt); }
.footer-links a.external { color: var(--gold); }
.footer-links a.external:hover { color: var(--gold-lt); }
.footer-links a.highlight:hover { color: var(--ivory); }
.footer-contact-block { display: flex; flex-direction: column; gap: 0.28rem; margin-bottom: 1.3rem; }
.footer-contact-label {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248,244,234,0.32);
}
.footer-contact-val {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(248,244,234,0.62); line-height: 1.65;
}
.footer-contact-val a { color: inherit; transition: color 0.2s; }
.footer-contact-val a:hover { color: var(--gold); }

/* Bottom bar */
.footer-bottom {
  padding: 1.6rem 3.5rem;
  border-top: 1px solid rgba(248,244,234,0.055);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-left { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.7rem; font-weight: 300; color: rgba(248,244,234,0.24); }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { font-size: 0.7rem; font-weight: 300; color: rgba(248,244,234,0.24); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(248,244,234,0.52); }
.footer-credit { font-size: 0.7rem; font-weight: 300; color: rgba(248,244,234,0.16); }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
/* ── RESPONSIVE NAV & FOOTER ─────────────────────── */

/* Switch to mobile nav at 1024px */
@media (max-width: 900px) {
  .site-nav {
    padding: 0 clamp(1.25rem, 3vw, 2rem);
  }
  .nav-primary { display: none; }
  .nav-phone   { display: none; }
  .nav-cta-btn { display: none; }
  .nav-hamburger { display: none; }
  .nav-mobile-right { display: flex; }
}

/* Shrink nav height and logo on small screens */
@media (max-width: 600px) {
  :root { --nav-h: 68px; }
  .site-nav { height: 68px; }
  .nav-logo-top { font-size: 1.2rem; }
  .nav-logo-sub { font-size: 0.46rem; letter-spacing: 0.18em; }
  .nav-mobile-cta { padding: 0.55rem 0.9rem; font-size: 0.62rem; }
}

/* Footer — fluid padding, collapse columns */
.footer-upper {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 5vw, 3.5rem) clamp(2rem, 4vw, 4rem);
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}
.footer-newsletter {
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.25rem, 5vw, 3.5rem);
}
.footer-bottom {
  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1.25rem, 5vw, 3.5rem);
}
@media (max-width: 1200px) {
  .footer-upper { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1000px) {
  .footer-upper { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-upper { grid-template-columns: 1fr; gap: 0; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-newsletter-form { width: 100%; flex-direction: column; gap: 0; }
  .footer-newsletter-form input { flex: none; width: 100%; border-right: 1px solid rgba(248,244,234,0.14); border-bottom: none; font-size: 1rem; padding: 0.9rem 1rem; min-height: 48px; }
  .footer-newsletter-form button { width: 100%; min-height: 48px; font-size: 0.74rem; padding: 0.9rem 1rem; border-top: none; border-right: 1px solid var(--gold); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .footer-bottom-left { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .footer-credit { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Screen reader utility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ══════════════════════════════════════════════════════
   INNER PAGE SHARED STYLES
   ══════════════════════════════════════════════════════ */

/* Page hero — compact, used on all inner pages */
.page-hero {
  position: relative;
  height: clamp(320px, 42vw, 560px);
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 50%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,22,31,0.9) 0%, rgba(17,22,31,0.45) 55%, rgba(17,22,31,0.2) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-size: clamp(0.64rem, 1.2vw, 0.72rem);
  font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); opacity: 0.6; }
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300; line-height: 1.05; color: var(--white);
}
.page-hero-h1 em { font-style: italic; color: #E0C794; }
.page-hero-sub {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 300; color: rgba(248,244,234,0.75);
  max-width: min(520px, 90%);
  margin-top: 0.9rem; line-height: 1.75;
}

/* Section intro block */
.section-intro {
  background: var(--charcoal-2);
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 5vw, 4.5rem);
  text-align: center;
}
.section-intro-inner { max-width: 780px; margin: 0 auto; }
.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300; color: var(--ivory); line-height: 1.12;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.section-intro h2 em { font-style: italic; color: var(--gold-lt); }
.section-intro p {
  font-size: clamp(0.97rem, 1.5vw, 1.06rem);
  font-weight: 300; line-height: 1.9;
  color: rgba(248,244,234,0.62);
  max-width: 640px; margin: 0 auto;
}

/* FAQ accordion */
.faq-section {
  background: var(--charcoal-2);
  padding: clamp(3rem, 8vw, 8rem) clamp(1.25rem, 5vw, 4.5rem);
}
.faq-grid { max-width: 860px; margin: clamp(2rem, 4vw, 4rem) auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(191,160,106,0.12);
}
.faq-item:first-child { border-top: 1px solid rgba(191,160,106,0.12); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300; color: var(--ivory);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-lt); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(191,160,106,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.7rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(191,160,106,0.08); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.93rem, 1.4vw, 1.02rem);
  font-weight: 300; line-height: 1.9;
  color: rgba(248,244,234,0.58);
}

/* Icon feature grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(2rem, 4vw, 4rem);
}
.icon-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(191,160,106,0.1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column;
  transition: background 0.3s, border-color 0.3s;
}
.icon-card:hover { background: var(--charcoal-3); border-color: rgba(191,160,106,0.2); }
.icon-card i {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--lavender-lt);
  margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
}
.icon-card h4 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 300; color: var(--ivory);
  margin-bottom: 0.5rem;
}
.icon-card p {
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  font-weight: 300; line-height: 1.8;
  color: rgba(248,244,234,0.52);
}

/* Shared feature rows (reused from homepage pattern) */
.inner-features { background: var(--charcoal); }
.inner-feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
}
.inner-feature-row.reverse { direction: rtl; }
.inner-feature-row.reverse > * { direction: ltr; }
@media (max-width: 800px) {
  .inner-feature-row { grid-template-columns: 1fr; direction: ltr; }
  .inner-feature-row.reverse { direction: ltr; }
  .inner-feature-row.reverse .inner-feat-img { order: -1; }
}
.inner-feat-img { position: relative; overflow: hidden; }
.inner-feat-img img {
  width: 100%; height: clamp(240px, 38vw, 520px);
  object-fit: cover; transition: transform 0.8s ease;
  display: block;
}
.inner-feature-row:hover .inner-feat-img img { transform: scale(1.04); }
.inner-feat-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(17,22,31,0.5), transparent);
  pointer-events: none;
}
.inner-feat-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4.5rem);
  background: var(--charcoal-2); position: relative;
}
.inner-feat-text::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--lavender), transparent);
  opacity: 0.3;
}
.inner-feature-row.reverse .inner-feat-text::before { left: auto; right: 0; }
@media (max-width: 800px) {
  .inner-feat-text::before { display: none; }
  .inner-feat-text { padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem); }
}
.inner-feat-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(0.62rem, 0.85vw, 0.58rem);
  font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--lavender-lt); margin-bottom: 1rem;
}
.inner-feat-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--lavender-lt); opacity: 0.7; }
.inner-feat-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 300; line-height: 1.13; color: var(--ivory);
  margin-bottom: clamp(0.8rem, 1.5vw, 1.3rem);
}
.inner-feat-text h3 em { font-style: italic; color: var(--gold-lt); }
.inner-feat-text p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300; line-height: 1.9;
  color: rgba(248,244,234,0.62);
  margin-bottom: clamp(1rem, 2vw, 1.8rem);
}
.inner-feat-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.6rem; margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
}
.inner-feat-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: clamp(0.88rem, 1.3vw, 0.93rem);
  font-weight: 300; color: rgba(248,244,234,0.58);
}
.inner-feat-list li i { color: var(--lavender-lt); font-size: 0.75rem; flex-shrink: 0; width: 14px; text-align: center; }
.inner-feat-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: clamp(0.58rem, 0.9vw, 0.62rem);
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); transition: gap 0.25s; width: fit-content;
}
.inner-feat-cta:hover { gap: 15px; }
.inner-feat-cta::after { content: '→'; font-size: 1rem; }

/* Shared CTA band */
.cta-band {
  background: var(--charcoal-2);
  padding: clamp(3.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 4.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(182,138,107,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-band-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(0.52rem, 0.9vw, 0.58rem);
  font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--lavender-lt); margin-bottom: 1.4rem;
}
.cta-band-eyebrow::before, .cta-band-eyebrow::after {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--lavender-lt); opacity: 0.45;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300; color: var(--ivory); line-height: 1.12;
  margin-bottom: 1rem;
}
.cta-band h2 em { font-style: italic; color: var(--gold-lt); }
.cta-band p {
  font-size: clamp(0.95rem, 1.4vw, 1.04rem);
  font-weight: 300; color: rgba(248,244,234,0.55);
  line-height: 1.85; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.cta-band-btns {
  display: flex; justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1rem); flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-band-btns { flex-direction: column; align-items: stretch; }
  .cta-band-btns .btn { justify-content: center; }
}

/* Contact form */
.form-field {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.form-field label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248,244,234,0.5);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(248,244,234,0.14);
  color: var(--ivory); font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  padding: 0.85rem 1rem; outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none; appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(248,244,234,0.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(224,199,148,0.5); }
.form-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A86A' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-field select option { background: var(--charcoal-2); }
.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
}
.form-success i { font-size: 2.5rem; color: var(--sage); margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--ivory);
  margin-bottom: 0.75rem;
}
.form-success p { font-size: 0.9rem; font-weight: 300; color: rgba(248,244,234,0.55); }

/* Icon grid responsive */
@media (max-width: 900px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ── INNER-PAGE IMAGE CAPTIONS ─────────────────────────── */
.inner-feat-img-caption {
  position: absolute; bottom: clamp(0.75rem, 1.5vw, 1.2rem);
  left: clamp(0.75rem, 1.5vw, 1.2rem); z-index: 3;
  font-size: clamp(0.52rem, 0.85vw, 0.6rem);
  font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248,244,234,0.82);
  background: rgba(17,22,31,0.65);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-left: 2px solid var(--lavender-lt);
}

/* ── FORCE 4-COL MAX ON ALL FEATURE GRIDS ──────────────── */
.inclusions-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
.inclusion-card {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}
.inclusion-icon {
  width: auto !important;
  height: auto !important;
  border: none !important;
  margin-bottom: clamp(0.75rem,1.5vw,1rem) !important;
  font-size: clamp(1.3rem,2vw,1.7rem);
  display: block !important;
}
.inclusion-icon i {
  font-size: clamp(1.3rem,2vw,1.7rem) !important;
  color: var(--lavender-lt) !important;
}
.vendor-categories {
  grid-template-columns: repeat(4, 1fr) !important;
}
.ai-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
.amenities-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1000px) {
  .inclusions-grid,
  .vendor-categories,
  .ai-grid,
  .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .inclusions-grid,
  .vendor-categories,
  .ai-grid,
  .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── COMPARISON TABLE ───────────────────────────────────── */
.compare-table {
  width: 100%; border-collapse: collapse;
  margin-top: clamp(2rem, 4vw, 4rem);
}
.compare-table th, .compare-table td {
  padding: clamp(0.65rem, 1.2vw, 1rem) clamp(0.75rem, 1.5vw, 1.2rem);
  border-bottom: 1px solid rgba(191,160,106,0.1);
  text-align: left;
  font-size: clamp(0.82rem, 1.2vw, 0.9rem);
  font-weight: 300;
  color: rgba(248,244,234,0.62);
  vertical-align: top;
}
.compare-table th {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300; color: var(--ivory);
  background: var(--charcoal-3);
  border-bottom: 2px solid rgba(191,160,106,0.18);
}
.compare-table th:first-child { color: rgba(248,244,234,0.4); font-size: clamp(0.7rem, 1vw, 0.82rem); }
.compare-table td:first-child {
  color: rgba(248,244,234,0.5);
  font-size: clamp(0.78rem, 1.1vw, 0.84rem);
  font-weight: 400; letter-spacing: 0.05em;
  white-space: nowrap;
}
.compare-table tr:hover td { background: rgba(191,160,106,0.03); }
.compare-table .featured-col { background: rgba(191,160,106,0.04); border-left: 1px solid rgba(191,160,106,0.15); border-right: 1px solid rgba(191,160,106,0.15); }
.compare-check { color: var(--lavender-lt); }
.compare-dash  { color: rgba(248,244,234,0.2); }
.compare-highlight { color: var(--gold); font-style: italic; font-family: var(--font-display); }
.compare-table-wrap { overflow-x: auto; }

/* ── PAGE-SPECIFIC HERO SIZES ───────────────────────────── */
.page-hero-sm { height: clamp(220px, 25vw, 340px); }

/* ═══════════════════════════════════════════════════════
   MOBILE — Force single column for all card grids ≤ 560px
   ══════════════════════════════════════════════════════ */
.nobr { white-space: nowrap; }

@media (max-width: 560px) {
  /* All icon/inclusion/amenity/vendor/pkg grids → 1 col */
  .icon-grid,
  .icon-grid,
  .inclusions-grid,
  .amenities-grid,
  .vendor-categories,
  .ai-grid,
  .accom-grid,
  .tour-step-grid,
  .pkg-page-grid,
  .pkg-includes-grid,
  .history-band { grid-template-columns: 1fr !important; }

  /* Package overview cards */
  .pkg-grid { grid-template-columns: 1fr !important; }
  .pkg-overview-grid { grid-template-columns: 1fr !important; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr !important; }

  /* Booking enquiry strip */
  .booking-enquiry-strip { grid-template-columns: 1fr !important; }

  /* Form rows */
  .form-row { grid-template-columns: 1fr !important; }

  /* Getting here */
  .getting-here-grid { grid-template-columns: 1fr !important; }
}

/* ── Mobile comparison table → stacked cards ─────────── */
@media (max-width: 700px) {
  .compare-table-wrap { display: none; }
  .compare-mobile { display: flex; flex-direction: column; gap: 1rem; margin-top: clamp(1.5rem,4vw,3rem); }
}
@media (min-width: 701px) {
  .compare-mobile { display: none; }
}
.compare-mobile-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(191,160,106,0.15);
  overflow: hidden;
}
.compare-mobile-card.featured-m { border-color: var(--gold); border-top: 3px solid var(--gold); }
.compare-mobile-header {
  padding: 1.2rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(191,160,106,0.1);
  background: var(--charcoal-3);
}
.compare-mobile-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,4vw,1.6rem);
  font-weight: 300; color: var(--ivory); margin-bottom: 0.25rem;
}
.compare-mobile-header p {
  font-size: 0.72rem; font-weight: 300;
  color: rgba(248,244,234,0.5); margin: 0;
}
.compare-mobile-rows { padding: 0.5rem 0; }
.compare-mobile-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid rgba(248,244,234,0.04);
  gap: 1rem;
}
.compare-mobile-row:last-child { border-bottom: none; }
.compare-mobile-label {
  font-size: 0.78rem; font-weight: 400;
  color: rgba(248,244,234,0.5); flex-shrink: 0;
}
.compare-mobile-val {
  font-size: 0.82rem; font-weight: 300;
  color: var(--ivory); text-align: right;
}
.compare-mobile-val .chk { color: var(--lavender-lt); font-size: 0.9rem; }
.compare-mobile-val .dash { color: rgba(248,244,234,0.2); }
.compare-mobile-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(191,160,106,0.1);
}

/* ══════════════════════════════════════════════════
   FOOTER MOBILE ACCORDION + READABILITY
   Added in English Garden pass — affects all pages
══════════════════════════════════════════════════ */

/* Mobile: footer columns become accordion sections */
@media (max-width: 600px) {
  .footer-upper {
    padding: 0;
    display: block;
  }
  .footer-brand {
    padding: clamp(2rem,5vw,3rem) clamp(1.25rem,5vw,2rem);
    border-bottom: 1px solid rgba(248,244,234,0.06);
  }
  /* Each column group becomes a tappable accordion */
  .footer-col-group {
    border-bottom: 1px solid rgba(248,244,234,0.06);
  }
  .footer-col-title {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.1rem clamp(1.25rem,5vw,2rem);
    margin-bottom: 0; cursor: pointer;
    font-size: 0.76rem;
    min-height: 52px;
    user-select: none;
  }
  .footer-col-title::after {
    content: '+'; font-size: 1.1rem; font-weight: 300;
    color: var(--gold); flex-shrink: 0; line-height: 1;
    transition: transform 0.25s;
  }
  .footer-col-title.open::after { transform: rotate(45deg); }
  .footer-links {
    display: none;
    flex-direction: column; gap: 0;
    padding: 0 clamp(1.25rem,5vw,2rem) 1rem;
  }
  .footer-col-title.open + .footer-links { display: flex; }
  .footer-links a {
    font-size: 0.96rem; color: rgba(248,244,234,0.6);
    padding: 0.65rem 0; min-height: 44px;
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(248,244,234,0.04);
  }
  .footer-links li:last-child a { border-bottom: none; }
  /* Contact column: always visible on mobile */
  .footer-contact-col {
    padding: clamp(1.5rem,4vw,2.5rem) clamp(1.25rem,5vw,2rem);
    border-bottom: 1px solid rgba(248,244,234,0.06);
  }
  .footer-contact-col .footer-col-title { padding: 0 0 1rem 0; cursor: default; min-height: auto; }
  .footer-contact-col .footer-col-title::after { display: none; }
  .footer-contact-block { margin-bottom: 1.2rem; }
  .footer-contact-label { font-size: 0.68rem; }
  .footer-contact-val { font-size: 0.96rem; }
  .footer-contact-val a { font-size: 0.96rem; }
  /* Newsletter on mobile */
  .footer-newsletter {
    padding: clamp(1.5rem,4vw,2.5rem) clamp(1.25rem,5vw,2rem);
  }
  .footer-newsletter h4 { font-size: 1rem; }
  .footer-newsletter-copy p { font-size: 0.88rem; }
  /* Bottom bar */
  .footer-bottom {
    padding: 1rem clamp(1.25rem,5vw,2rem);
  }
  .footer-copy { font-size: 0.78rem; }
  .footer-legal a { font-size: 0.72rem; }
}

/* ══════════════════════════════════════════════════
   GLOBAL STICKY MOBILE CTA
   Add class "has-sticky-cta" to <body> to activate.
   Auto-hides when bottom CTA section is in view.
══════════════════════════════════════════════════ */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--charcoal-2);
  border-top: 1px solid rgba(191,160,106,0.22);
  padding: 0.75rem clamp(1rem,4vw,1.5rem);
  box-shadow: 0 -4px 28px rgba(0,0,0,0.4);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.sticky-mobile-cta.faded { opacity: 0; pointer-events: none; transform: translateY(100%); }
.sticky-mobile-cta a {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 50px;
  background: var(--lavender); color: var(--white);
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--lavender);
  transition: background 0.2s;
}
.sticky-mobile-cta a:hover { background: var(--lavender-dk); }
@media (max-width: 860px) {
  .sticky-mobile-cta { display: block; }
  .has-sticky-cta { padding-bottom: 74px; }
}

/* ══════════════════════════════════════════════════
   FORM PLACEHOLDER CONTRAST — global improvement
══════════════════════════════════════════════════ */
.footer-newsletter-form input::placeholder { color: rgba(248,244,234,0.45); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(248,244,234,0.42); }
.form-input::placeholder { color: rgba(248,244,234,0.42); }

/* ══════════════════════════════════════════════════
   HERO OVERLAY — lighter focal area option
   Pages can override .page-hero-overlay background
   to lighten the center while keeping edge darkness.
══════════════════════════════════════════════════ */
.page-hero-overlay-light {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 55%, rgba(13,17,24,0.12) 0%, rgba(13,17,24,0.55) 55%),
    linear-gradient(to top, rgba(13,17,24,0.9) 0%, rgba(13,17,24,0.35) 40%, rgba(13,17,24,0.15) 70%),
    linear-gradient(115deg, rgba(13,17,24,0.82) 0%, rgba(13,17,24,0.25) 55%, transparent 100%);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE IMAGES — global aspect-ratio hints
   Prevents layout shift while images load.
══════════════════════════════════════════════════ */
.page-hero img { aspect-ratio: 16/9; }
@media (max-width: 600px) { .page-hero img { aspect-ratio: 4/3; } }
.detail-img img { aspect-ratio: 4/3; }

/* ══════════════════════════════════════════════════
   SITEWIDE MOBILE-FIRST POLISH — Global pass
   Readability · contrast · spacing · tap targets
   Applied across all pages via shared CSS.
══════════════════════════════════════════════════ */

/* ── 1. BODY COPY CONTRAST ───────────────────────────
   These are the core text opacity improvements.
   Wherever rgba(...,0.4–0.65) was used for body copy,
   bump to 0.72–0.78 for mobile legibility without
   losing the premium muted look on desktop.
─────────────────────────────────────────────────── */
.footer-brand-desc { color: rgba(248,244,234,0.5); }
.footer-award-badge { color: rgba(248,244,234,0.45); }
.footer-newsletter-copy p { color: rgba(248,244,234,0.55); font-size: 0.88rem; }
.footer-contact-label { color: rgba(248,244,234,0.42); }
.footer-contact-val { color: rgba(248,244,234,0.72); }
.footer-links a { color: rgba(248,244,234,0.62); font-size: 0.94rem; }
.footer-copy, .footer-legal a { color: rgba(248,244,234,0.36); }
.section-body { color: rgba(248,244,234,0.72); }

/* ── 2. BREADCRUMB — more readable ──────────────────
   Was 0.62rem / rgba 0.38 — too small and faint.
─────────────────────────────────────────────────── */
.breadcrumb a, .breadcrumb span {
  font-size: 0.72rem;
  color: rgba(248,244,234,0.5);
}
.breadcrumb .current { color: rgba(248,244,234,0.82); }
.breadcrumb .sep { color: rgba(191,160,106,0.4); }

/* ── 3. MOBILE IMPROVEMENTS — all at 600px ───────── */
@media (max-width: 600px) {

  /* 1. Text contrast — raise opacity globally on mobile */
  .section-body,
  .page-intro-body p,
  .detail-p { color: rgba(248,244,234,0.78); }

  /* 2. Hero — prevent over-tall on mobile */
  .page-hero-h1 { font-size: clamp(1.85rem,8vw,2.8rem); }
  .page-hero-eyebrow { font-size: clamp(0.68rem,2vw,0.78rem); letter-spacing: 0.2em; }

  /* 4. Buttons — all primary CTAs full-width on mobile */
  .page-cta-btns { flex-direction: column; align-items: stretch; max-width: 380px; margin-left: auto; margin-right: auto; }
  .page-cta-btns .btn { justify-content: center; min-height: 52px; }
  .page-cta-btns .btn-lavender { font-size: 0.82rem; order: -1; }

  /* 5. Detail row image min-height — less tall on narrow screens */
  .detail-img { min-height: clamp(220px,52vw,360px); }

  /* 7. List readability on mobile */
  .detail-list { margin-bottom: 1.6rem; }
  .detail-list li {
    font-size: clamp(0.94rem,3.5vw,1rem);
    color: rgba(248,244,234,0.76);
    padding: 0.68rem 0;
    gap: 0.75rem;
    line-height: 1.58;
  }
  .detail-list li::before { width: 16px; opacity: 0.65; }

  /* 8. Section vertical spacing — tighter on mobile */
  .page-intro { padding: 2rem 1.25rem; gap: 1.6rem; }
  .stat-strip { padding: 1.8rem 1.25rem; }
  .stat-strip-item { padding: 1.1rem 0.75rem; }

  /* 6+7. Stat strip labels */
  .stat-strip-num { font-size: clamp(1.8rem,7vw,2.4rem); }
  .stat-strip-label { font-size: 0.68rem; letter-spacing: 0.14em; color: rgba(248,244,234,0.52); }

  /* 9. Footer compact on mobile */
  .footer-newsletter { padding: 1.5rem 1.25rem; }
  .footer-newsletter-copy h4 { font-size: 1.1rem; }
  .footer-brand-desc { font-size: 0.88rem; line-height: 1.85; }
  .footer-contact-val { font-size: 0.96rem; }
  .footer-links a { font-size: 0.96rem; }
  .footer-col-title { font-size: 0.76rem; }

  /* 10. Newsletter full-width on mobile — already handled but reinforce */
  .footer-newsletter-form input { min-height: 50px; font-size: 1rem; }
  .footer-newsletter-form button { min-height: 50px; font-size: 0.76rem; }

  /* 3. Drawer CTA buttons — more prominent on mobile */
  .drawer-cta-wrap { margin-top: 1.8rem; gap: 0.8rem; }
  .drawer-cta-wrap .btn { min-height: 52px; justify-content: center; font-size: 0.8rem; }
  .drawer-cta-wrap .btn-lavender { order: -1; }

  /* General body text on mobile */
  body { font-size: 16px; }
  p, li { line-height: 1.85; }
}

/* ── TABLET (760px) — intermediate improvements ──── */
@media (max-width: 760px) and (min-width: 601px) {
  .detail-list li { font-size: 0.94rem; color: rgba(248,244,234,0.74); }
  .stat-strip-label { font-size: 0.7rem; }
  .footer-links a { font-size: 0.93rem; }
}

/* ── 4. CTA PAGE CONTRAST ────────────────────────── */
.page-cta-p { color: rgba(248,244,234,0.65); }
.page-cta-eyebrow { color: var(--gold); font-size: 0.68rem; }

/* ── 5. DETAIL ROW MOBILE — image first universally ─ */
/* Already handled per-page but reinforce globally */
@media (max-width: 800px) {
  .detail-row .detail-img { min-height: clamp(240px,50vw,400px); }
  .detail-text { padding: clamp(1.8rem,4vw,3rem) clamp(1.25rem,4vw,2.5rem); }
}

/* ── NAV DRAWER — improved link and CTA contrast ─── */
.drawer-group-links a { color: rgba(248,244,234,0.68); }
.drawer-group-links a:hover { color: var(--ivory); }
.drawer-single-link { color: rgba(248,244,234,0.78); }

/* ── FOOTER NEWSLETTER PLACEHOLDER ──────────────── */
.footer-newsletter-form input::placeholder { color: rgba(248,244,234,0.45); }

/* ══════════════════════════════════════════════════
   NAV + PAGE-HERO CONFLICT RESOLUTION
   The duplicate .page-hero block (lines ~554-587)
   defines a shorter height and adds a ::before line
   to .page-hero-eyebrow. page.css is authoritative.
   These rules override back to page.css values.
══════════════════════════════════════════════════ */

/* 1. Remove eyebrow ::before line added by duplicate block */
.page-hero-eyebrow::before { display: none; }
/* Reset eyebrow to page.css values */
.page-hero-eyebrow {
  display: block;
  font-size: clamp(0.66rem,1.1vw,0.76rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gold-lt);
  margin-bottom: clamp(0.8rem,1.8vw,1.2rem);
}

/* 2. Override duplicate .page-hero height back to page.css value */
.page-hero {
  height: clamp(420px,55vh,680px);
  padding: 0 clamp(1.5rem,6vw,5.5rem) clamp(2.5rem,5vw,5rem);
  margin-top: var(--nav-h);
}
/* Ensure hero img uses page.css treatment */
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
}

/* 3. NAV — single sticky behaviour, no duplication
   The nav is position:fixed at z-index:300.
   Ensure no other fixed/sticky element at same z-index conflicts. */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--nav-h);
}
/* Kill any potential double-scroll body offset */
body > .site-nav ~ .site-nav { display: none; }

/* 4. Sticky mobile CTA — must be below nav z-index */
.sticky-mobile-cta { z-index: 200; }

/* ── VISIT PAGE: inline sticky CTA has two actions ──
   Added here rather than per-page for cleanliness   */
.sticky-mobile-cta-dual {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal-2);
  border-top: 1px solid rgba(191,160,106,0.22);
  padding: 0.65rem clamp(1rem,4vw,1.5rem);
  box-shadow: 0 -4px 28px rgba(0,0,0,0.4);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.sticky-mobile-cta-dual.faded { opacity: 0; pointer-events: none; transform: translateY(100%); }
.sticky-mobile-cta-dual a {
  display: flex; align-items: center; justify-content: center;
  min-height: 48px; font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid transparent; transition: background 0.2s;
}
.sticky-mobile-cta-dual a.primary {
  background: var(--lavender); color: var(--white);
  border-color: var(--lavender);
}
.sticky-mobile-cta-dual a.primary:hover { background: var(--lavender-dk); }
.sticky-mobile-cta-dual a.secondary {
  background: transparent;
  color: var(--gold); border-color: rgba(191,160,106,0.45);
}
.sticky-mobile-cta-dual a.secondary:hover { background: rgba(191,160,106,0.1); }
@media (max-width: 860px) {
  .sticky-mobile-cta-dual { display: grid; }
  .has-sticky-cta-dual { padding-bottom: 80px; }
}

/* ── GLOBAL TEXT OVERLAP PREVENTION ─────────────────
   Ensures no absolutely-positioned text can bleed
   over other text — defensive z-index layering.     */
.page-hero-content { position: relative; z-index: 2; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.page-hero img { z-index: 0; }
/* Breadcrumb always on its own stacking context */
.breadcrumb { position: relative; z-index: 5; }
/* Nav drawer never overlaps page content incorrectly */
.nav-drawer { z-index: 290; }

/* ── VISIT PAGE HERO CTA NOTE ────────────────────── */
.hero-cta-note {
  font-size: clamp(0.62rem,0.9vw,0.7rem);
  font-weight: 300; letter-spacing: 0.1em;
  color: rgba(248,244,234,0.45);
  margin-top: 0.5rem; display: block;
}

/* ── FAQ: ensure answers can't overlap questions ─── */
.faq-a { position: relative; z-index: 1; }
.faq-q { position: relative; z-index: 2; }

/* ── MOBILE: prevent any text from sitting behind nav */
@media (max-width: 900px) {
  /* All page-level sections start below nav */
  .page-hero { margin-top: var(--nav-h); }
  /* Breadcrumbs never bleed behind nav */
  .breadcrumb { margin-top: 0; }
}
