/* ===================================================
   VIVE BANQUET HALL — Design System
   Palette: White · Black · Gold · Coral/Melon
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand identity (sourced from logo) ── */
  --brand-cream:  #edd9c4;   /* VBH lettermark tone — the soul of the brand */
  --brand-cream-2:#f5ece1;   /* lighter variant for backgrounds */

  /* ── Surface palette ── */
  --white:      #fefcfa;     /* warm white, never pure */
  --off-white:  #f9f5f1;     /* warm off-white */
  --blush:      #f3e8dd;     /* updated: closer to logo cream, less pink */
  --black:      #1e1a17;     /* warm near-black */
  --dark:       #1a1714;     /* nav, footer, CTA dark */
  --text:       #2e2621;     /* warm body text */
  --muted:      #8a7f75;     /* secondary text, warm */

  /* ── Accent (refined from gold — less saturated, more logo-aligned) ── */
  --gold:       #b89870;     /* refined warm gold — derived from brand-cream */
  --gold-light: #cdb08c;     /* hover/light state */

  /* ── Secondary accents ── */
  --coral:      #cc8570;     /* warmer, less neon */
  --melon:      #e2b09e;
  --border:     #e4d5c6;     /* border derived from brand-cream */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, sans-serif;

  --nav-h:  80px;
  --max-w:  1300px;
  --t:      0.3s ease;
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
}
h1 { font-size: clamp(2.8rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.4rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.5rem); font-weight: 400; }

p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--muted);
  line-height: 1.85;
}
p.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.label--coral { color: var(--coral); }
.label--white { color: rgba(255,255,255,0.65); }

.label-line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.label-line::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.label-line.center { justify-content: center; }

/* ── Layout ─────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.section    { padding: 7rem 0; }

/* ── Divider ─────────────────────────────────────── */
.hr { width: 40px; height: 1px; background: var(--gold); display: block; margin: 1.5rem 0; }
.hr--center { margin: 1.5rem auto; }
.hr--coral  { background: var(--coral); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--black);
}
.btn-dark:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--black);
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); }

.btn-text {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
}
.btn-text:hover { border-bottom-color: var(--gold); }
.btn-text::after { content: '  →'; }

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* =============================================================
   NAVIGATION
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), border-color var(--t);
}
.nav.scrolled {
  background: rgba(26, 23, 20, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.nav-logo img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links > a,
.nav-dropdown > a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 1rem;
  transition: color var(--t);
}
.nav-links > a:hover,
.nav-dropdown > a:hover,
.nav-dropdown.open > a { color: var(--gold-light); }

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.4rem; }
.nav-dropdown > a::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.6;
  flex-shrink: 0;
  transition: transform var(--t);
}
.nav-dropdown.open > a::after { transform: rotate(-135deg) translateY(-1px); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--t), background var(--t);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }

.nav-cta { margin-left: 2rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all var(--t); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.mobile-menu-close:hover { color: var(--white); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* ensure video tag gets same treatment */
video.hero-video { display: block; }

/* ── Image focal point centering ── */
.page-hero-img           { object-position: center 30%; }
.why-image img           { object-position: center 20%; }
.intro-split-image img   { object-position: center 25%; }
.location-card-img       { object-position: center 35%; }
.gallery-item img        { object-position: center center; }
.gallery-strip-item img  { object-position: center 20%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    165deg,
    rgba(26,23,20,0.3) 0%,
    rgba(26,23,20,0.55) 50%,
    rgba(26,23,20,0.82) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 2.5rem 7rem;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
}
.hero-content h1 {
  color: var(--white);
  font-weight: 300;
  max-width: 780px;
  margin-bottom: 1.5rem;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  max-width: 420px;
  line-height: 1.75;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* =============================================================
   TAGLINE BAND
   ============================================================= */
.tagline-band {
  background: var(--brand-cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
  text-align: center;
}
.tagline-band p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.04em;
}
.tagline-band strong { font-weight: 500; color: var(--black); }

/* =============================================================
   INTRO SPLIT
   ============================================================= */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.intro-split-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.intro-split-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.intro-split-image:hover img { transform: scale(1.03); }

.intro-split-text {
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding: 5rem;
}
.intro-split-text-inner { max-width: 480px; }
.intro-split-text-inner h2 { margin-bottom: 1.25rem; }
.intro-split-text-inner .lead { margin-bottom: 1.25rem; }
.intro-split-text-inner p   { margin-bottom: 1rem; }
.intro-split-text-inner .btn-group { margin-top: 2.5rem; }

/* =============================================================
   PILLARS — light version (aligned with logo)
   ============================================================= */
.pillars-dark {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillar-d {
  padding: 4.5rem 3.5rem;
  border-right: 1px solid var(--border);
  transition: background var(--t-slow);
}
.pillar-d:last-child { border-right: none; }
.pillar-d:hover { background: var(--brand-cream-2); }
.pillar-d h3 { color: var(--black); font-size: 1.65rem; margin-bottom: 1rem; }
.pillar-d p  { color: var(--muted); font-size: 0.875rem; line-height: 1.85; }

/* =============================================================
   INCLUDED
   ============================================================= */
.included-section {
  background: var(--brand-cream-2);
  padding: 7rem 0;
}
.included-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 7rem;
  align-items: start;
}
.included-left h2 { margin-bottom: 1.25rem; }
.included-left .lead { margin-bottom: 2rem; }
.included-left .btn-group { margin-top: 2.5rem; }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-list-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.service-list-item:nth-last-child(-n+2) { border-bottom: none; }

/* =============================================================
   IMAGE TEXT ALTERNATING
   ============================================================= */
.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.image-text.reverse { direction: rtl; }
.image-text.reverse > * { direction: ltr; }

.image-text-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.image-text-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.image-text-photo:hover img { transform: scale(1.04); }

.image-text-body {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 5rem;
}
.image-text-body-inner { max-width: 440px; }
.image-text-body-inner h3 { margin-bottom: 1.25rem; }
.image-text-body-inner p  { margin-bottom: 1rem; }
.image-text-body-inner .btn-group { margin-top: 2rem; }

.image-text-body--blush { background: var(--blush); }
.image-text-body--coral { background: var(--melon); }

/* =============================================================
   GALLERY STRIP
   ============================================================= */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.5rem, .9vw, .85rem);
  height: 460px;
  padding: clamp(.5rem, .9vw, .85rem);
  background: var(--dark);
}
.gallery-strip-item {
  overflow: hidden;
  position: relative;
}
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.gallery-strip-item:hover img { transform: scale(1.06); }

/* Full gallery grid */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-full-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.gallery-full-item.tall { aspect-ratio: 4/5; }
.gallery-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.gallery-full-item:hover img { transform: scale(1.05); }

/* =============================================================
   TESTIMONIAL
   ============================================================= */
.testimonial {
  background: var(--off-white);
  padding: 8rem 0;
  text-align: center;
}
.testimonial-inner { max-width: 760px; margin: 0 auto; padding: 0 2.5rem; }
.testimonial-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 1.5rem;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.testimonial-rule { width: 36px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; }
.testimonial-author {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial-stars {
  display: block;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

/* =============================================================
   LOCATIONS
   ============================================================= */
.locations-split { display: grid; grid-template-columns: 1fr 1fr; }
.location-card {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.location-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.location-card:hover .location-card-img { transform: scale(1.04); }
.location-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,11,8,0.88) 0%, rgba(17,11,8,0.15) 60%, transparent 100%);
}
.location-card-content {
  position: relative; z-index: 2;
  padding: 3rem 3.5rem;
  width: 100%;
}
.location-card-content .label-line { color: var(--gold-light); margin-bottom: 0.5rem; font-size: 0.62rem; }
.location-capacity {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: block;
  opacity: 0.8;
}
.location-capacity-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 1rem;
}
.location-card-content h3 { color: var(--white); font-size: 2.25rem; margin-bottom: 0.75rem; }
.location-card-content p  { color: rgba(255,255,255,0.52); font-size: 0.875rem; max-width: 320px; margin-bottom: 1.75rem; line-height: 1.75; }

/* =============================================================
   FAQ
   ============================================================= */
.faq-section { padding: 7rem 0; background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 7rem;
  align-items: start;
}
.faq-left h2   { margin-bottom: 1rem; }
.faq-left p    { margin-bottom: 2rem; }
.faq-list { }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t);
}
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--t), opacity var(--t);
}
.faq-icon::before { width: 1px; height: 100%; left: 50%; }
.faq-icon::after  { width: 100%; height: 1px; top: 50%; }
.faq-item.open .faq-icon::before { opacity: 0; transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding-bottom: 1.5rem; font-size: 0.925rem; }

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band {
  padding: 7rem 0;
  text-align: center;
}
.cta-band--dark {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band--dark h2 { color: var(--black); }
.cta-band--dark p  { color: var(--muted); }
.cta-band--blush { background: var(--blush); }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p  { max-width: 500px; margin: 0 auto 2.5rem; }
.cta-band .btn-group { justify-content: center; }
.cta-band .hr--center { margin: 1.5rem auto; }

/* =============================================================
   FOOTER — Minimal
   ============================================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.75rem;
}
.footer-logo img { height: 32px; }
.footer-logo p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 220px;
}

.footer-nav {
  display: flex;
  gap: 4rem;
}
.footer-nav-col h5 {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.1rem;
}
.footer-nav-col ul li { margin-bottom: 0.6rem; }
.footer-nav-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  transition: color var(--t);
}
.footer-nav-col ul li a:hover { color: var(--gold-light); }

.footer-contact { text-align: right; }
.footer-contact address {
  font-style: normal;
  margin-bottom: 1.25rem;
}
.footer-contact address strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.35rem;
}
.footer-contact address span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-contact-links { display: flex; gap: 1rem; justify-content: flex-end; flex-wrap: wrap; margin-top: 0.75rem; }
.footer-contact-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--t);
}
.footer-contact-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: var(--gold); transition: color var(--t); }
.footer-bottom a:hover { color: var(--gold-light); }

/* =============================================================
   PAGE HERO (inner pages)
   ============================================================= */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-hero:hover .page-hero-img { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(17,11,8,0.92) 0%, rgba(17,11,8,0.45) 45%, rgba(17,11,8,0.15) 75%, transparent 100%),
    linear-gradient(165deg, rgba(17,11,8,0.35) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 1rem) 0 4.5rem;
  width: 100%;
}
.page-hero-content .eyebrow { color: var(--gold-light); margin-bottom: 1rem; }
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5rem);
  max-width: 820px;
  line-height: 1.05;
}
@media (max-width: 768px) {
  .page-hero { height: 55vh; min-height: 380px; }
  .page-hero-content { padding: calc(var(--nav-h) + 0.5rem) 0 3rem; }
}

/* =============================================================
   CONTACT / TOUR FORMS
   ============================================================= */
.form-wrap { background: var(--off-white); padding: 3rem; }
.form-wrap h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.form-wrap > p { margin-bottom: 2rem; }

.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  padding: 0.825rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--t);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--muted); opacity: 0.5; }
.form-control--textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--t);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold); color: var(--black); }

/* =============================================================
   REVEAL ANIMATION
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .intro-split       { grid-template-columns: 1fr; }
  .intro-split-image { min-height: 380px; }
  .intro-split-text  { padding: 4rem 2.5rem; }

  .pillars-dark { grid-template-columns: 1fr; }
  .pillar-d { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pillar-d:last-child { border-bottom: none; }

  .included-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-list    { grid-template-columns: 1fr; }

  .image-text        { grid-template-columns: 1fr; }
  .image-text.reverse { direction: ltr; }
  .image-text-photo  { min-height: 320px; }
  .image-text-body   { padding: 4rem 2.5rem; }

  .gallery-strip { grid-template-columns: repeat(2,1fr); height: 420px; }

  .locations-split { grid-template-columns: 1fr; }
  .location-card   { min-height: 420px; }

  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; grid-column: span 2; }
  .footer-contact-links { justify-content: flex-start; }
  .footer-nav { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 5rem 0; }
  .container { padding: 0 1.5rem; }
  .hero-content { padding: 0 1.5rem 4.5rem; }
  .hero-scroll { display: none; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); height: 300px; }
  .gallery-full  { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { grid-column: span 1; }
  .footer-nav { grid-column: span 1; flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .included-section { padding: 5rem 0; }
  .cta-band { padding: 5rem 0; }
  .intro-split-text { padding: 3rem 1.5rem; }
  .image-text-body { padding: 3rem 1.5rem; }
  .pillar-d { padding: 2.5rem 1.5rem; }
  .pillar { padding: 2.5rem 1.5rem; }
  .testimonial { padding: 5rem 0; }
  .testimonial-inner { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .intro-split-text { padding: 2.5rem 1.25rem; }
  .image-text-body { padding: 2.5rem 1.25rem; }
  .hero-content { padding: 0 1.25rem 3.5rem; }
  h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn, .btn-group .btn-text, .btn-group .btn-filled, .btn-group .btn-outline { text-align: center; justify-content: center; }
}

/* =============================================================
   COMPATIBILITY & MISSING CLASSES
   ============================================================= */

/* Button aliases */
.btn-filled        { background:var(--gold); color:var(--black); padding:.9rem 2.25rem; border:1px solid var(--gold); }
.btn-filled:hover  { background:var(--black); color:var(--white); border-color:var(--black); }
.btn-ghost         { color:var(--gold); font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; padding:.4rem 0; border-bottom:1px solid transparent; }
.btn-ghost:hover   { border-bottom-color:var(--gold); }
.btn-ghost::after  { content:' →'; }

/* Reveal delay aliases */
.animate-up              { opacity:1; transform:none; }
.reveal-delay-1          { transition-delay:.1s; }
.reveal-delay-2          { transition-delay:.2s; }
.reveal-delay-3          { transition-delay:.3s; }

/* Section backgrounds */
.section--dark   { background:var(--dark); }   /* gallery only — keeps photos vivid */
.section--light  { background:var(--off-white); border-top:1px solid var(--border); }
.section--cream  { background:var(--brand-cream-2); }
.section--ivory  { background:var(--off-white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color:var(--white); }
.section--dark p { color:rgba(255,255,255,.45); }

/* Utilities */
.text-center { text-align:center; }
.text-white  { color:var(--white) !important; }

/* Eyebrow labels (old style from v1) */
.eyebrow            { font-family:var(--font-sans); font-size:.68rem; font-weight:400; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:1.25rem; }
.eyebrow--center    { text-align:center; }
.eyebrow--light     { color:rgba(212,188,148,.85); }

/* Divider aliases */
.divider        { width:40px; height:1px; background:var(--gold); display:block; margin:1.5rem 0; }
.divider--center{ margin:1.5rem auto; }

/* Trust bar — light version */
.trust-bar        { background:var(--brand-cream-2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:1.1rem 0; overflow:hidden; }
.trust-bar-inner  { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:.75rem 2rem; padding:.5rem 0; }
.trust-item       { display:flex; align-items:center; gap:.5rem; font-size:.68rem; font-weight:400; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); white-space:nowrap; }
.trust-divider    { width:1px; height:16px; background:var(--border); }
.star             { color:var(--gold); }

/* Editorial gallery classes */
.gallery-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.gallery-intro h2 { margin-bottom: .75rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(9.5rem, 13vw, 13.5rem);
  gap: clamp(.5rem, 1vw, .85rem);
}
.gallery-item {
  overflow: hidden;
  position: relative;
  min-height: 0;
  aspect-ratio: auto;
  background: var(--dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1), filter .8s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}
.gallery-grid .gallery-item:nth-child(1) { grid-column: 1 / span 5; grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(2) { grid-column: 6 / span 3; }
.gallery-grid .gallery-item:nth-child(3) { grid-column: 9 / span 4; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: 6 / span 4; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: 10 / span 3; }
.gallery-item.tall,
.gallery-item.wide { aspect-ratio: auto; }

/* Why-grid layout (inner pages) */
.why-grid  { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.why-text  { }
.why-text h2 { margin-bottom:1.25rem; }
.why-text p  { margin-bottom:1rem; }
.why-text .btn-group { margin-top:2rem; }
.why-image img { width:100%; height:520px; object-fit:cover; }
.why-image-badge { background:var(--dark); color:var(--white); padding:1.25rem 1.5rem; margin-top:-.5rem; display:inline-block; }
.why-image-badge span { display:block; font-family:var(--font-serif); font-size:2.5rem; font-weight:300; color:var(--gold-light); line-height:1; }

/* Old included classes */
.included-grid  { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.included-text h2 { margin-bottom:1.25rem; }
.included-text p  { margin-bottom:1rem; }
.included-text .btn-group { margin-top:2rem; }
.included-items { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--border); border:1px solid var(--border); }
.included-item  { background:var(--ivory); padding:1.1rem 1.25rem; display:flex; align-items:center; gap:.875rem; transition:background var(--t); }
.included-item:hover { background:var(--brand-cream-2); }
.included-list  { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; }
.item-icon, .icon { display:none; } /* no icons per design */
.included-item p { font-size:.875rem; color:var(--text); margin:0; font-weight:400; }

/* Old pillars — light version */
.pillars      { background:var(--white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.pillars-grid, .pillars-row { display:grid; grid-template-columns:repeat(3,1fr); }
.pillar       { padding:4rem 3rem; border-right:1px solid var(--border); transition:background var(--t-slow); }
.pillar:last-child { border-right:none; }
.pillar:hover { background:var(--brand-cream-2); }
.pillar-num, .pillar-number { font-family:var(--font-serif); font-size:4rem; font-weight:300; color:var(--brand-cream); opacity:1; line-height:1; margin-bottom:2rem; display:block; }
.pillar h3    { color:var(--black); font-size:1.65rem; margin-bottom:1rem; }
.pillar p     { color:var(--muted); font-size:.875rem; line-height:1.85; }

/* Services grid */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.service-card  { background:var(--off-white); padding:2.5rem; transition:background var(--t); }
.service-card:hover { background:var(--brand-cream-2); }
.service-num   { font-family:var(--font-serif); font-size:3rem; font-weight:300; color:var(--gold); opacity:.4; line-height:1; margin-bottom:1.25rem; display:block; }
.service-card h4 { font-size:1.1rem; margin-bottom:.75rem; }
.service-card p  { font-size:.875rem; }

/* CTA section alias */
.cta-section  { background:var(--off-white); border-top:1px solid var(--border); padding:7rem 0; text-align:center; }
.cta-section h2 { color:var(--black); margin-bottom:1rem; }
.cta-section p  { color:var(--muted); max-width:520px; margin:0 auto 2.5rem; }
.cta-section .btn-group { justify-content:center; }

/* Section header */
.section-header { margin-bottom:3rem; }
.section-header.text-center { text-align:center; }
.section-header h2 { margin-bottom:.75rem; }

/* Contact page classes */
.contact-grid  { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.contact-info  { }
.contact-info h2 { margin-bottom:1.25rem; }
.contact-info p  { margin-bottom:1rem; }
.contact-methods {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
.contact-method {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.42);
  padding: 1.25rem 1.35rem;
}
.contact-method--primary {
  background: var(--white);
}
.contact-method .label {
  margin-bottom: .4rem;
  color: var(--coral);
}
.contact-method p,
.contact-method a {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.8;
}
.contact-locations {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.contact-locations h4 {
  margin-bottom: 1.5rem;
}
.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-location-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.25rem;
}
.contact-location-card .label {
  margin-bottom: .5rem;
}
.contact-location-card p {
  color: var(--text);
  font-size: .875rem;
  line-height: 1.75;
}
.contact-location-card p span {
  color: var(--muted);
}
.contact-location-card .btn-text {
  display: inline-flex;
  margin-top: .75rem;
  font-size: .63rem;
}
.contact-detail  { display:flex; gap:1rem; margin-bottom:1.75rem; align-items:flex-start; }
.contact-detail-icon { flex-shrink:0; width:40px; height:40px; background:var(--brand-cream-2); display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.contact-detail-text h5 { font-size:.65rem; font-weight:400; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin-bottom:.3rem; font-family:var(--font-sans); }
.contact-detail-text p, .contact-detail-text a { font-size:.9rem; color:var(--text); line-height:1.7; }
.contact-form  { }
.contact-form .form-group  { margin-bottom:1.2rem; }
.contact-form label { display:block; font-size:.63rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:.45rem; }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; padding:.825rem 1rem; border:1px solid var(--border); background:var(--white); font-family:var(--font-sans); font-size:.875rem; color:var(--text); outline:none; transition:border-color var(--t); -webkit-appearance:none; border-radius:0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color:var(--gold); }
.contact-form textarea { min-height:110px; resize:vertical; }

/* Tour page */
.tour-grid  { display:grid; grid-template-columns:1fr 1.2fr; gap:5rem; align-items:start; }
.tour-info  { }
.tour-info h2 { margin-bottom:1.25rem; }
.tour-info p  { margin-bottom:1rem; }
.tour-steps   { margin:2rem 0; }
.tour-step    { display:flex; gap:1.25rem; margin-bottom:1.75rem; align-items:flex-start; }
.tour-step-text h5 { font-family:var(--font-serif); font-size:1.1rem; font-weight:400; margin-bottom:.25rem; }
.tour-step-text p  { font-size:.875rem; }

/* Intro section (old) */
.intro        { padding:7rem 0; }
.intro-grid   { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
.intro-image img { width:100%; height:580px; object-fit:cover; }
.intro-text h2  { margin-bottom:1.25rem; }
.intro-text p   { margin-bottom:1rem; }
.intro-text .btn-group { margin-top:2.5rem; }

/* Old footer classes */
.footer-brand     { }
.footer-brand img { height:36px; width:auto; }
.footer-brand p   { font-size:.82rem; color:rgba(255,255,255,.35); max-width:260px; line-height:1.75; margin-top:1rem; }
.footer-logo img  { height:32px !important; width:auto !important; }
.footer-col       { }
.footer-col h5    { font-size:.62rem; font-weight:400; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:1.25rem; font-family:var(--font-sans); }
.footer-col ul li { margin-bottom:.65rem; }
.footer-col ul li a { font-size:.82rem; color:rgba(255,255,255,.48); transition:color var(--t); }
.footer-col ul li a:hover { color:var(--gold-light); }
.footer-col address { font-style:normal; margin-bottom:1.25rem; }
.footer-col address strong { display:block; font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:.35rem; }
.footer-col address span { font-size:.82rem; color:rgba(255,255,255,.45); line-height:1.75; }
.footer-contact-link { display:block; font-size:.82rem; color:rgba(255,255,255,.4); margin-bottom:.35rem; transition:color var(--t); }
.footer-contact-link:hover { color:var(--gold-light); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:3.5rem; }
.footer-social { display:flex; gap:.75rem; margin-top:1.5rem; }
.footer-social a { width:32px; height:32px; border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:.62rem; color:rgba(255,255,255,.4); transition:all var(--t); }
.footer-social a:hover { border-color:var(--gold); color:var(--gold); }

/* Events gallery */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(9.5rem, 13.5vw, 18rem);
  gap: clamp(.5rem, .9vw, .85rem);
  padding: 0 clamp(1rem, 2.5vw, 2rem);
}
.events-grid .gallery-item {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  grid-row: span 1;
}
.events-grid .gallery-item.tall {
  height: auto;
  grid-row: span 2;
}
.events-grid .gallery-item:nth-child(7n + 3),
.events-grid .gallery-item:nth-child(9n + 5) {
  grid-column: span 2;
}

/* Old testimonial variants */
.testimonial-meta   { display:flex; align-items:center; justify-content:center; gap:1rem; flex-wrap:wrap; }
.testimonial-name   { font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.35); }

/* FAQ helpers */
.faq-left { }
.faq-left h2 { margin-bottom:1rem; }
.faq-left p  { margin-bottom:1.75rem; }

/* Nav dropdown gap fix */
.nav-dropdown-menu { top:100%; }
.nav-dropdown-menu::before { content:''; position:absolute; top:-6px; left:0; right:0; height:6px; }

/* Nav scrolled fix for inner pages */
.nav.scrolled .nav-logo img { opacity:1; }

/* Map styles */
.map-section { padding:0; }
.map-wrap iframe,
.map-embed { display:block; width:100%; height:380px; border:0; filter:grayscale(12%); }
.map-locations { display:grid; grid-template-columns:1fr 1fr; }
.map-locations .map-wrap { position:relative; }
.map-caption { background:var(--dark); padding:1.5rem 2rem; }
.map-caption strong { display:block; font-size:.65rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:.5rem; font-family:var(--font-sans); }
.map-caption p { font-size:.875rem; color:rgba(255,255,255,.55); margin:0; }

/* Responsive compat */
@media (max-width:1100px) {
  .why-grid      { grid-template-columns:1fr; gap:3rem; }
  .why-image img { height:360px; }
  .included-grid { grid-template-columns:1fr; gap:3rem; }
  .included-items{ grid-template-columns:1fr; }
  .pillars-grid, .pillars-row { grid-template-columns:1fr; }
  .pillar        { border-right:none; border-bottom:1px solid rgba(255,255,255,.06); }
  .pillar:last-child { border-bottom:none; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .contact-grid  { grid-template-columns:1fr; gap:3rem; }
  .tour-grid     { grid-template-columns:1fr; gap:3rem; }
  .intro-grid    { grid-template-columns:1fr; gap:3rem; }
  .intro-image img { height:360px; }
  .footer-grid   { grid-template-columns:1fr 1fr; }
  .map-locations { grid-template-columns:1fr; }
  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(9rem, 23vw, 15rem);
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: 1 / span 3; grid-row: span 2; }
  .gallery-grid .gallery-item:nth-child(2) { grid-column: 4 / span 3; }
  .gallery-grid .gallery-item:nth-child(3) { grid-column: 4 / span 3; }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: 1 / span 3; }
  .gallery-grid .gallery-item:nth-child(5) { grid-column: 4 / span 3; }
  .gallery-item.wide { grid-column: span 3; }
  .events-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(8rem, 21vw, 14rem);
  }
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .gallery-strip-item {
    aspect-ratio: 4 / 3;
  }
}
@media (max-width:768px) {
  .services-grid { grid-template-columns:1fr; }
  .footer-grid   { grid-template-columns:1fr; }
  .included-list { grid-template-columns:1fr; }
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .gallery-strip-item {
    aspect-ratio: 4 / 5;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(16rem, 76vw, 27rem);
  }
  .gallery-grid .gallery-item:nth-child(n),
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(9rem, 42vw, 14rem);
    gap: .5rem;
    padding: 0 .75rem;
  }
  .events-grid .gallery-item:nth-child(n),
  .events-grid .gallery-item.tall {
    grid-column: auto;
    grid-row: span 1;
  }
}

/* === ADDITIONS: Accessibility, Motion, Mobile Menu, Forms === */

/* ── Focus-visible outlines ──────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ── Mobile menu improvements ────────────────────── */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu a {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
}
@media (max-height: 600px) {
  .mobile-menu {
    gap: 1.25rem;
  }
  .mobile-menu a {
    font-size: 1.35rem;
  }
}

/* ── Form success / error states ─────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.visible {
  display: block;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: var(--black);
}
.form-success p {
  color: var(--muted);
}
.form-success a {
  color: var(--gold);
}

.form-error-msg {
  color: var(--coral);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: none;
}
.form-honeypot {
  display: none;
}
.form-error-msg.visible {
  display: block;
}
.form-error {
  display: none;
  padding: 1rem;
  background: #fdf0ee;
  border: 1px solid rgba(212,137,122,.45);
  margin-top: 1rem;
}
.form-error.visible {
  display: block;
}
.form-error p,
.form-error a {
  color: var(--coral);
  font-size: .875rem;
}

/* Input error states */
input.error,
select.error,
textarea.error {
  border-color: var(--coral) !important;
}

@media (max-width: 768px) {
  .contact-location-grid {
    grid-template-columns: 1fr;
  }
  .form-wrap {
    padding: 2rem 1.25rem;
  }
  .map-caption {
    padding: 1.25rem;
  }
}

/* ── Contact detail icon — SVG line icons ── */
.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

/* CTA outline buttons — on light backgrounds */
.cta-section .btn-outline {
  color: var(--black);
  border-color: var(--black);
}
.cta-section .btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
/* Gallery sections stay dark — keep white outlines there */
.section--dark .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.section--dark .btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ── Tour preview 3-col grid (responsive) ──────── */
.tour-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .tour-steps-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .tour-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Nav hamburger aria attributes ──────────────── */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
