/* ═══════════════════════════════════════════
   EVOCHIA — Site Styles
   v2.0 — Audit-clean build
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --green-deepest: #0a1f15;
  --green-dark: #0f2e1f;
  --green-main: #143a28;
  --green-mid: #1a4a34;
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --gold-pale: #e0cb97;
  --gold-dim: rgba(196,162,101,0.5);
  --cream: #f0e8d8;
  --cream-dim: #c4b9a8; /* bumped from #b8ad98 for WCAG AA on dark */
  --white: #faf6ef;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --page-pad: 3rem;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--green-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── No-JS fallback: show reveals immediately ── */
.no-js .reveal { opacity: 1 !important; transform: none !important; }
.no-js .preloader { display: none !important; }
.no-js .nav { opacity: 1 !important; }

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-deepest);
  padding: .75rem 1.5rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  z-index: 100000; border-radius: 0 0 4px 4px; transition: top .3s;
}
.skip-link:focus { top: 0; }

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0; background: var(--green-deepest); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.2rem;
}
.preloader.skip { display: none !important; }
.preloader.phase-rise .preloader-logo-img { animation: logoRise .9s cubic-bezier(.4,0,.2,1) forwards; }
.preloader.phase-rise .preloader-tagline { animation: fadeOutDown .4s ease forwards; }
.preloader.phase-fade { animation: preloaderFade .6s ease .2s forwards; }
.preloader-logo-img {
  width: 110px; height: 110px; object-fit: contain;
  opacity: 0; animation: logoAppear .6s ease .1s forwards;
}
.preloader-tagline {
  font-family: var(--font-heading); font-size: .85rem; font-weight: 300;
  font-style: italic; color: var(--gold-dim); letter-spacing: .15em;
  opacity: 0; animation: fadeIn .5s ease .5s forwards;
}

@keyframes logoAppear { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes logoRise { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(var(--logo-dx), var(--logo-dy)) scale(.35); } }
@keyframes fadeOutDown { to { opacity: 0; transform: translateY(15px); } }
@keyframes preloaderFade { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ── Decorative overlay ── */
.splatter-overlay { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.splatter-overlay::before,
.splatter-overlay::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,101,.06) 0%, transparent 70%);
}
.splatter-overlay::before { top: -100px; left: -100px; }
.splatter-overlay::after { bottom: -100px; right: -100px; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem var(--page-pad); display: flex;
  justify-content: space-between; align-items: center;
  transition: all .5s; opacity: 0;
}
.nav.visible { opacity: 1; }
.nav.scrolled {
  background: rgba(10,31,21,.97); backdrop-filter: blur(20px);
  padding: 1rem var(--page-pad); border-bottom: 1px solid rgba(196,162,101,.12);
}
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo-img { height: 42px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400;
  color: var(--gold); letter-spacing: .25em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: .75rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
/* Focus visible for keyboard nav */
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }

.lang-switch {
  background: none; border: 1px solid var(--gold); color: var(--gold);
  padding: .35rem .9rem; font-family: var(--font-body); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: all .3s;
}
.lang-switch:hover { background: var(--gold); color: var(--green-deepest); }
.lang-switch:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

/* ── Hamburger ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  z-index: 1001; background: none; border: none; padding: 8px;
}
.hamburger span {
  display: block; width: 26px; height: 1.5px; background: var(--gold); transition: all .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ── Hero ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(160deg, var(--green-deepest) 0%, var(--green-dark) 30%, var(--green-main) 60%, var(--green-dark) 100%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%; opacity: 0;
  animation: float-particle 8s ease-in-out infinite;
}
.particle:nth-child(1) { left: 5%; top: 20%; }
.particle:nth-child(2) { left: 15%; top: 70%; animation-delay: 1s; width: 2px; height: 2px; }
.particle:nth-child(3) { left: 85%; top: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 90%; top: 80%; animation-delay: 3s; width: 2px; height: 2px; }
.particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 4s; width: 2px; height: 2px; }
.particle:nth-child(6) { left: 70%; top: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 30%; top: 90%; animation-delay: 6s; width: 2px; height: 2px; }
.particle:nth-child(8) { left: 95%; top: 15%; animation-delay: 7s; }

@keyframes float-particle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: .6; }
  50% { opacity: .3; transform: translateY(-30px) scale(1.5); }
  80% { opacity: .5; }
}

/* ── Hero content ── */
.hero-content { position: relative; text-align: center; max-width: 900px; padding: 0 2rem; }
.hero-ornament { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 2rem; transform: scaleX(0); animation: expandLine 1.2s ease .5s forwards; }
@keyframes expandLine { to { transform: scaleX(1); } }
.hero-subtitle {
  font-family: var(--font-body); font-size: .7rem; font-weight: 500;
  letter-spacing: .45em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s ease .3s forwards;
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 300; line-height: 1.1; color: var(--white);
  margin-bottom: .75rem; opacity: 0; animation: fadeUp 1s ease .6s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family: var(--font-heading); font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300; font-style: italic; color: var(--gold-pale);
  margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s ease .8s forwards;
}
.hero-description {
  font-size: 1rem; font-weight: 300; color: var(--cream-dim);
  max-width: 520px; margin: 0 auto 3rem;
  opacity: 0; animation: fadeUp 1s ease 1s forwards;
}
.hero-cta-group {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block; padding: 1rem 3rem;
  background: var(--gold); color: var(--green-deepest);
  border: 1px solid var(--gold); text-decoration: none;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; transition: all .4s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-primary:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

.btn-secondary {
  display: inline-block; padding: 1rem 3rem;
  border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; transition: all .4s;
}
.btn-secondary:hover { background: var(--gold); color: var(--green-deepest); }
.btn-secondary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: 0; animation: fadeUp 1s ease 1.5s forwards;
}
.scroll-indicator span { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--cream-dim); }
.scroll-line {
  width: 1px; height: 35px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .3; transform: scaleY(.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── Sections ── */
.section { padding: 8rem var(--page-pad); position: relative; }
.section-label {
  font-size: .68rem; font-weight: 500; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2; color: var(--white); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.gold-line { width: 45px; height: 1px; background: var(--gold); margin-bottom: 2rem; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(196,162,101,.25), transparent); }

/* ── Photo background utility ── */
.has-photo {
  background-image: var(--bg); background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important;
}

/* ── KPI cards ── */
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.kpi-card {
  border: 1px solid rgba(196,162,101,.12); background: rgba(20,58,40,.25);
  padding: 1.2rem; border-radius: 12px; text-align: center;
}
.kpi-card .kpi-title { letter-spacing: .18em; text-transform: uppercase; font-size: .62rem; color: var(--gold); margin-bottom: .4rem; }
.kpi-card .kpi-value { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: .3rem; }
.kpi-card .kpi-desc { color: var(--cream-dim); font-size: .78rem; line-height: 1.5; }

/* ── Venue cards (photo BG variant) ── */
.venue-card.has-photo .venue-card-bg {
  background-size: cover; background-position: center;
}

/* ── About section ── */
.about { background: var(--green-dark); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
}
.about-image {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--green-main), var(--green-dark));
  border: 1px solid rgba(196,162,101,.12); position: relative; overflow: hidden;
}
.about-image.has-photo {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}
.about-image::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(196,162,101,.08); }
.about-text p { color: var(--cream-dim); margin-bottom: 1.5rem; font-size: .95rem; }

.text-link {
  display: inline-flex; align-items: center; gap: .75rem; color: var(--gold);
  text-decoration: none; font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; transition: gap .3s;
}
.text-link:hover { gap: 1.25rem; }
.text-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.text-link svg { width: 18px; height: 18px; }

/* ── Services (tabs) ── */
.services { background: var(--green-deepest); }
.services-header { text-align: center; max-width: 650px; margin: 0 auto 3rem; }
.services-header .section-label,
.services-header .gold-line { margin-left: auto; margin-right: auto; }

.services-tabs {
  display: flex; justify-content: center; gap: 0; margin-bottom: 4rem;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.services-tab {
  flex: 1; padding: 1rem 2rem; background: none;
  border: 1px solid rgba(196,162,101,.2); color: var(--cream-dim);
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400;
  cursor: pointer; transition: all .4s; letter-spacing: .05em;
}
.services-tab:first-child { border-radius: 2px 0 0 2px; }
.services-tab:last-child { border-radius: 0 2px 2px 0; }
.services-tab.active { background: var(--gold); color: var(--green-deepest); border-color: var(--gold); }
.services-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.services-tab:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

.services-content { max-width: 1200px; margin: 0 auto; }
.service-panel {
  display: none; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.service-panel.active { display: grid; animation: fadeIn .6s ease; }

.service-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--green-main), var(--green-dark));
  border: 1px solid rgba(196,162,101,.12); position: relative; overflow: hidden;
}
.service-visual::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(196,162,101,.08); }

.service-info h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.service-info h3 em { font-style: italic; color: var(--gold); }
.service-info p { color: var(--cream-dim); font-size: .95rem; margin-bottom: 1.5rem; }

.service-features { list-style: none; margin-bottom: 2rem; }
.service-features li {
  color: var(--cream-dim); font-size: .88rem;
  padding: .5rem 0 .5rem 1.5rem; position: relative;
}
.service-features li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: .5rem; top: .75rem; }

/* ── Cuisines ── */
.cuisines { background: var(--green-dark); }
.cuisines-header { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.cuisines-header .section-label,
.cuisines-header .gold-line { margin-left: auto; margin-right: auto; }

.cuisines-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.cuisine-card {
  background: rgba(20,58,40,.25); border: 1px solid rgba(196,162,101,.08);
  padding: 2.5rem; text-align: center; transition: all .5s;
}
.cuisine-card:hover {
  border-color: rgba(196,162,101,.2); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.cuisine-icon { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1; }
.cuisine-card h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: .75rem; }
.cuisine-card p { color: var(--cream-dim); font-size: .88rem; line-height: 1.6; }

/* ── Philosophy ── */
.philosophy {
  background: var(--green-main); padding: 6rem var(--page-pad);
  text-align: center; position: relative;
}
.philosophy-ornament { color: var(--gold-dim); font-family: var(--font-heading); font-size: 4rem; line-height: 1; margin-bottom: 1.5rem; }
.philosophy-quote {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 300; font-style: italic; color: var(--white);
  max-width: 780px; margin: 0 auto; line-height: 1.45;
}
.philosophy-quote .gold { color: var(--gold); }
.philosophy-line { width: 40px; height: 1px; background: var(--gold); margin: 2rem auto 0; }

/* ── Stats ── */
.stats-section { background: var(--green-dark); padding: 5rem var(--page-pad); }
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: -1.5rem; top: 50%; transform: translateY(-50%);
  height: 40px; width: 1px; background: rgba(196,162,101,.15);
}
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: .5rem; }
.stat-label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim); }
.stat-desc { color: var(--cream-dim); font-size: .85rem; margin-top: .4rem; line-height: 1.5; }

/* ── Venues ── */
.venues { background: var(--green-deepest); padding: 8rem var(--page-pad); }
.venues-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.venues-header .section-label,
.venues-header .gold-line { margin-left: auto; margin-right: auto; }

.venues-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
.venue-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border: 1px solid rgba(196,162,101,.1); cursor: default; transition: all .5s;
}
.venue-card:hover { border-color: rgba(196,162,101,.3); transform: translateY(-4px); }
.venue-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--green-main), var(--green-dark));
  transition: transform .6s;
}
.venue-card:hover .venue-card-bg { transform: scale(1.05); }
.venue-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,21,.9) 0%, rgba(10,31,21,.3) 50%, rgba(10,31,21,.15) 100%);
}
.venue-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.5rem; }
.venue-card-icon { margin-bottom: 1rem; }
.venue-card-icon svg { width: 32px; height: 32px; stroke: var(--gold); stroke-width: 1.2; fill: none; }
.venue-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: .5rem; }
.venue-card p { font-size: .75rem; color: var(--cream-dim); line-height: 1.5; }

/* Inner page venue cards used as menu/concept cards */
.venue-card-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: .4rem; }
.venue-card-desc { font-size: .8rem; color: var(--cream-dim); line-height: 1.5; }

/* ── CTA section (homepage) ── */
.cta {
  background: linear-gradient(160deg, var(--green-dark), var(--green-main) 50%, var(--green-dark));
  padding: 8rem var(--page-pad); text-align: center; position: relative;
}
.cta-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-subtitle { color: var(--cream-dim); font-size: .95rem; margin-bottom: 3rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ── Conciergerie ── */
.conciergerie {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
}
.conciergerie-options {
  display: flex; flex-direction: column; gap: .5rem;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
}
.conciergerie.open .conciergerie-options { opacity: 1; transform: translateY(0); pointer-events: auto; }
.conciergerie-option {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(10,31,21,.95); backdrop-filter: blur(12px);
  border: 1px solid rgba(196,162,101,.2); padding: .85rem 1.3rem;
  border-radius: 50px; text-decoration: none; color: var(--cream);
  font-size: .78rem; font-weight: 400; letter-spacing: .05em;
  white-space: nowrap; transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.conciergerie-option:hover { border-color: var(--gold); color: var(--gold); transform: translateX(-4px); }
.conciergerie-option:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.conciergerie-option svg { width: 18px; height: 18px; flex-shrink: 0; }
.conciergerie-option .opt-wa { fill: #25D366; }
.conciergerie-option .opt-stroke { stroke: var(--gold); fill: none; stroke-width: 1.5; }

.conciergerie-toggle {
  width: 60px; height: 60px; border-radius: 50%; background: var(--gold);
  border: none; cursor: pointer; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 24px rgba(0,0,0,.35);
  transition: all .4s; position: relative;
}
.conciergerie-toggle:hover { background: var(--gold-light); transform: scale(1.05); }
.conciergerie-toggle:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.conciergerie-toggle svg { width: 24px; height: 24px; transition: transform .4s; }
.conciergerie.open .conciergerie-toggle svg { transform: rotate(45deg); }
.conciergerie-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--gold); animation: concPulse 2s ease infinite;
}
.conciergerie.open .conciergerie-pulse { display: none; }
@keyframes concPulse { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(1.4); } }

/* ── Footer ── */
.footer {
  background: var(--green-deepest); border-top: 1px solid rgba(196,162,101,.08);
  padding: 4rem var(--page-pad) 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; margin-bottom: .75rem; }
.footer-tagline { font-family: var(--font-heading); font-size: .85rem; font-style: italic; color: var(--gold-dim); margin-bottom: 1rem; }
.footer-desc { color: var(--cream-dim); font-size: .82rem; max-width: 280px; }
.footer h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 1.5rem; letter-spacing: .1em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a { color: var(--cream-dim); text-decoration: none; font-size: .82rem; transition: color .3s; }
.footer ul a:hover { color: var(--gold); }
.footer ul a:focus-visible { outline: 1px solid var(--gold); outline-offset: 2px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid rgba(196,162,101,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: var(--cream-dim);
}
.social-links { display: flex; gap: 1.5rem; }
.social-links a { color: var(--cream-dim); text-decoration: none; font-size: .72rem; letter-spacing: .1em; transition: color .3s; }
.social-links a:hover { color: var(--gold); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: all .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Inner page shared ── */
.page-hero .hero-content { padding-top: 6rem; padding-bottom: 3rem; }
.inner-content { max-width: 1200px; margin: 0 auto; }
.inner-grid-2 { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.inner-grid-half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Cuisine selection grid (Private Chef) ── */
.cuisine-select-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cuisine-select-card {
  background: rgba(20,58,40,.25);
  border: 1px solid rgba(196,162,101,.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all .5s;
}
.cuisine-select-card:hover {
  border-color: rgba(196,162,101,.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.cuisine-select-img {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
}
.cuisine-select-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  padding: 1rem 1.2rem .25rem;
}
.cuisine-select-card p {
  color: var(--cream-dim);
  font-size: .8rem;
  line-height: 1.5;
  padding: 0 1.2rem 1.2rem;
}

/* ── Theme tags (Private Chef themed experiences) ── */
.theme-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  max-width: 800px;
  margin: 0 auto;
}
.theme-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border: 1px solid rgba(196,162,101,.2);
  border-radius: 50px;
  font-size: .85rem;
  color: var(--cream);
  background: rgba(20,58,40,.3);
  transition: all .3s;
  white-space: nowrap;
}
.theme-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,162,101,.08);
  transform: translateY(-2px);
}

/* ── Event type cards (Catering page) ── */
.event-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
}
.event-type-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: rgba(20,58,40,.2);
  border: 1px solid rgba(196,162,101,.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all .4s;
}
.event-type-card:hover {
  border-color: rgba(196,162,101,.2);
  transform: translateY(-3px);
}
.event-type-img {
  width: 180px;
  height: 100%;
  min-height: 140px;
  background-size: cover;
  background-position: center;
}
.event-type-info {
  padding: 1.2rem 1.5rem 1.2rem 0;
}
.event-type-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .5rem;
}
.event-type-info p {
  color: var(--cream-dim);
  font-size: .85rem;
  line-height: 1.6;
}

/* ── Value cards (About page) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(20,58,40,.2);
  border: 1px solid rgba(196,162,101,.08);
  border-radius: 12px;
  transition: all .4s;
}
.value-card:hover {
  border-color: rgba(196,162,101,.2);
  transform: translateY(-3px);
}
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196,162,101,.25);
  border-radius: 50%;
  padding: 10px;
  color: var(--gold);
}
.value-icon svg {
  width: 24px;
  height: 24px;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .5rem;
}
.value-card p {
  color: var(--cream-dim);
  font-size: .85rem;
  line-height: 1.6;
}

/* ── About grid reverse (text left, image right) ── */
.about-grid-reverse {
  direction: rtl;
}
.about-grid-reverse > * {
  direction: ltr;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .venues-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 968px) {
  :root { --page-pad: 2rem; }
  .section { padding: 5rem var(--page-pad); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-height: 400px; }
  .service-panel.active { grid-template-columns: 1fr; gap: 2.5rem; }
  .cuisines-grid { grid-template-columns: 1fr; max-width: 450px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-item:not(:last-child)::after { display: none; }
  .venues-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
  .inner-grid-2 { grid-template-columns: 1fr; }
  .cuisine-select-grid { grid-template-columns: repeat(2, 1fr); }
  .event-type-grid { grid-template-columns: 1fr; max-width: 500px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid-reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --page-pad: 1.5rem; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: rgba(10,31,21,.98); justify-content: center;
    align-items: center; gap: 2rem; z-index: 999;
  }
  .nav-links.mobile-open a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .venues { padding: 5rem var(--page-pad); }
  .venues-grid { gap: 1rem; }
  .venue-card { aspect-ratio: 2/3; }
  .hero-cta-group, .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .conciergerie { bottom: 1.5rem; right: 1.5rem; }
  .inner-grid-half { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .venues-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .cuisine-select-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .event-type-card { grid-template-columns: 1fr; }
  .event-type-img { width: 100%; min-height: 180px; }
  .event-type-info { padding: 1rem 1.2rem 1.2rem; }
  .values-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ── Contact Form ── */
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.form-group label {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242,236,227,.75); display: block; margin-bottom: .4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .9rem 1rem; border-radius: 12px;
  border: 1px solid rgba(196,162,101,.18); background: rgba(0,0,0,.25);
  color: var(--cream); font-family: var(--font-body); font-size: .95rem;
  transition: border-color .3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); outline: 2px solid var(--gold); outline-offset: 2px;
}
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--green-main); color: var(--cream); }
.form-status { margin-top: 1rem; padding: .75rem 1rem; border-radius: 8px; font-size: .9rem; text-align: center; }
.form-status.success { background: rgba(34,139,34,.2); color: #90ee90; }
.form-status.error { background: rgba(220,53,69,.2); color: #ff9999; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

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