/* ══════════════════════════════════════════
   TAQUERIA 805 — GLOBAL STYLESHEET
   Version: 1.0 | Central Coast Catering
══════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────── */
:root {
  --black:        #0D0803;
  --white:        #FAFAF7;
  --accent:       #C4581A;
  --accent-dark:  #9B3F0F;
  --gold:         #C9882A;
  --cream:        #F5EFE4;
  --cream-dark:   #EDE3D4;
  --border:       #DDD4C4;
  --muted:        #7A6A58;
  --text-muted:   #7A6A58;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:       6px;
  --section-pad:  100px 0;
  --max:          1280px;
  --gutter:       40px;
}

/* ── RESET ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; font-family: var(--font-body); -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
input, textarea, select { font-family: var(--font-body); }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── UTILITIES ────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: 0.03em;
  line-height: 0.93;
  color: var(--black);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ── BUTTONS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,88,26,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.btn-dark:hover {
  background: #2a1a0a;
  border-color: #2a1a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ── SCROLL REVEAL ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--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; }
.reveal-d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 var(--gutter);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(13,8,3,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav.solid {
  background: rgba(13,8,3,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: #fff;
}
.nav__logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: #fff; }
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__phone {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--gold); }
.nav__cta { padding: 10px 22px; font-size: 12px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE NAV ───────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--black);
  z-index: 300;
  padding: 80px 40px 40px;
  transition: right 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #fff;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 24px;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,8,3,0.88) 0%,
    rgba(13,8,3,0.72) 50%,
    rgba(13,8,3,0.40) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 var(--gutter);
  margin-left: max(calc((100vw - var(--max)) / 2), var(--gutter));
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(68px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (non-home pages) */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?auto=format&fit=crop&w=1920&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 110px);
  letter-spacing: 0.03em;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero__title span { color: var(--gold); }
.page-hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════
   SOCIAL PROOF BAR
══════════════════════════════════════════ */
.proof-bar {
  background: var(--black);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.proof-item__value {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}
.proof-item__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════
   CATERING SERVICE CARDS
══════════════════════════════════════════ */
.services {
  padding: var(--section-pad);
  background: var(--white);
}
.services__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13,8,3,0.14);
}
.service-card__image {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.service-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.03em;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: -8px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 14px;
}
.service-card__desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
  flex: 1;
  margin-bottom: 24px;
}
.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.service-card__features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* ══════════════════════════════════════════
   EVENT TYPE TILES
══════════════════════════════════════════ */
.events {
  padding: 80px 0;
  background: var(--cream);
}
.events__header {
  text-align: center;
  margin-bottom: 56px;
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.event-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.6);
}
.event-tile:hover img { transform: scale(1.06); filter: brightness(0.5); }
.event-tile__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 20px;
  background: linear-gradient(to top, rgba(13,8,3,0.9) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ══════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════ */
.menu {
  padding: var(--section-pad);
  background: var(--black);
}
.menu__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.menu__header .section-title { color: #fff; }
.menu__header .section-sub { color: rgba(255,255,255,0.55); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.menu-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,88,26,0.5);
}
.menu-card__img {
  height: 200px;
  overflow: hidden;
}
.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-card__img img { transform: scale(1.06); }
.menu-card__body { padding: 20px; }
.menu-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 6px;
}
.menu-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}
.menu-card__tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,136,42,0.12);
  padding: 3px 8px;
  border-radius: 3px;
}
.menu__note {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.menu__note span { color: var(--gold); font-weight: 600; }

/* Full menu table (catering page) */
.menu-section {
  padding: var(--section-pad);
  background: var(--white);
}
.menu-section + .menu-section { padding-top: 0; }
.menu-category {
  margin-bottom: 64px;
}
.menu-category:last-child { margin-bottom: 0; }
.menu-category__title {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 6px;
}
.menu-category__sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 8px;
  gap: 16px;
  transition: background 0.2s;
}
.menu-item:hover { background: var(--cream-dark); }
.menu-item__info {}
.menu-item__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.menu-item__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.menu-item__badges {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}
.badge-gf { background: rgba(76,175,80,0.15); color: #2e7d32; }
.badge-v  { background: rgba(156,39,176,0.12); color: #7b1fa2; }
.badge-hot { background: rgba(244,67,54,0.12); color: #c62828; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how {
  padding: var(--section-pad);
  background: var(--white);
}
.how__header { text-align: center; margin-bottom: 64px; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: var(--border);
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.how-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.how-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--black);
}
.how-step__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   QUOTE FORM
══════════════════════════════════════════ */
.quote {
  padding: var(--section-pad);
  background: var(--cream);
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote__left h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 0.03em;
  line-height: 0.93;
  color: var(--black);
  margin-bottom: 20px;
}
.quote__left h2 span { color: var(--accent); }
.quote__left p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.quote__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.quote__contact-item svg { color: var(--accent); flex-shrink: 0; }
.quote__form {
  background: #fff;
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(13,8,3,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,88,26,0.35);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.55s var(--ease), filter 0.55s;
}
.gallery-item:first-child img { aspect-ratio: auto; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.85); }
.gallery__cta {
  text-align: center;
  padding: 48px 0;
  background: var(--white);
}
.gallery__cta p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.gallery__cta p strong { color: var(--black); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad);
  background: var(--black);
}
.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials__header .section-title { color: #fff; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(201,136,42,0.4);
  transform: translateY(-4px);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.testimonial-card__event {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   FIND US / PUBLIC TRUCK
══════════════════════════════════════════ */
.find-us {
  padding: var(--section-pad);
  background: var(--white);
}
.find-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.find-us__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(13,8,3,0.15);
}
.find-us__image img { width: 100%; height: 100%; object-fit: cover; }
.find-us__content h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 18px;
}
.find-us__content h2 span { color: var(--accent); }
.find-us__content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
}
.find-us__highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.find-us__highlight-icon { font-size: 28px; flex-shrink: 0; }
.find-us__highlight-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.find-us__highlight-text span { font-size: 13px; color: var(--muted); }
.find-us__socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.find-us__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.find-us__social-btn.ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.find-us__social-btn.ig:hover { opacity: 0.9; transform: translateY(-2px); }
.find-us__social-btn.fb { background: #1877F2; color: #fff; }
.find-us__social-btn.fb:hover { opacity: 0.9; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════════ */
.areas {
  padding: var(--section-pad);
  background: var(--cream);
}
.areas__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.areas__counties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.county-block {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px 40px;
  box-shadow: 0 4px 24px rgba(13,8,3,0.06);
  border-top: 4px solid var(--accent);
}
.county-block__icon { font-size: 36px; margin-bottom: 14px; }
.county-block__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 6px;
}
.county-block__sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.county-block__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.city-tag:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.areas__cta {
  text-align: center;
  margin-top: 52px;
  padding: 40px;
  background: var(--black);
  border-radius: 16px;
}
.areas__cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.areas__cta p strong { color: #fff; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story {
  padding: var(--section-pad);
  background: var(--white);
}
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13,8,3,0.15);
  aspect-ratio: 4/5;
}
.about-story__image img { width: 100%; height: 100%; object-fit: cover; }
.about-story__content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-story__content p:last-of-type { margin-bottom: 36px; }

.values {
  padding: var(--section-pad);
  background: var(--cream);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(13,8,3,0.06);
  transition: transform 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); }
.value-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 10px;
}
.value-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-section {
  padding: var(--section-pad);
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info__title {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-info__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-detail__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.contact-detail__value a { transition: color 0.2s; }
.contact-detail__value a:hover { color: var(--accent); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196,88,26,0.06);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #070402;
  padding: 72px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.footer__brand-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__brand-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.footer__phone {
  font-size: 22px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer__phone:hover { color: var(--gold); }
.footer__email {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__email:hover { color: rgba(255,255,255,0.9); }
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,136,42,0.08);
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }
.footer__cities {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,0.35);
}
.footer__cities span { color: rgba(255,255,255,0.55); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copyright { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ── STICKY MOBILE CTA ───────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  gap: 10px;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 13px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services__grid        { grid-template-columns: repeat(2, 1fr); }
  .menu__grid            { grid-template-columns: repeat(2, 1fr); }
  .events__grid          { grid-template-columns: repeat(2, 1fr); }
  .footer__top           { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials__grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; --section-pad: 72px 0; }
  .nav__links            { display: none; }
  .nav__phone            { display: none; }
  .nav__hamburger        { display: flex; }
  .quote__inner          { grid-template-columns: 1fr; gap: 48px; }
  .find-us__inner        { grid-template-columns: 1fr; gap: 48px; }
  .areas__counties       { grid-template-columns: 1fr; }
  .how__steps            { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how__steps::before    { display: none; }
  .testimonials__grid    { grid-template-columns: 1fr; }
  .footer__top           { grid-template-columns: 1fr; gap: 40px; }
  .sticky-cta            { display: flex; }
  body                   { padding-bottom: 70px; }
  .about-story__inner    { grid-template-columns: 1fr; gap: 48px; }
  .values__grid          { grid-template-columns: 1fr; }
  .contact-grid          { grid-template-columns: 1fr; gap: 48px; }
  .menu-items            { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav .nav__cta          { display: none; }
  .services__grid        { grid-template-columns: 1fr; }
  .menu__grid            { grid-template-columns: 1fr; }
  .events__grid          { grid-template-columns: 1fr; }
  .gallery__grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .proof-bar__inner      { gap: 24px; }
  .proof-divider         { display: none; }
  .form-row              { grid-template-columns: 1fr; }
  .how__steps            { grid-template-columns: 1fr; }
  .hero__title           { font-size: clamp(52px, 14vw, 80px); }
  .values__grid          { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   LUXURY DESIGN SYSTEM EXTENSION — v3.0
   Taqueria 805 | Nobu × Keller × Aman
══════════════════════════════════════════ */

/* ── EXTENDED DESIGN TOKENS ──────────────── */
:root {
  /* Luxury darks */
  --obsidian:       #080604;
  --charcoal:       #111009;
  --smoke:          #1C1A16;

  /* Luxury lights */
  --cream-pale:     #F7F3EE;

  /* Refined gold system */
  --gold-lux:       #C9A96E;
  --gold-muted:     #9A7D52;
  --gold-glow:      rgba(201,169,110,0.12);
  --gold-border:    rgba(201,169,110,0.25);

  /* Text on dark */
  --text-primary:   #FAFAF8;
  --text-secondary: rgba(250,250,248,0.55);
  --text-tertiary:  rgba(250,250,248,0.30);

  /* Typography stacks */
  --font-cormorant: 'Cormorant Garamond', Georgia, serif;
  --font-jost:      'Jost', -apple-system, sans-serif;

  /* Spacing */
  --max-lux:        1340px;
  --section-xl:     160px 0;
  --section-lg:     120px 0;
  --section-md:     80px 0;

  /* Radius (minimal = editorial) */
  --radius-sm:      4px;
  --radius-lg:      12px;
  --radius-xl:      20px;

  /* Shadows */
  --shadow-card:    0 24px 80px rgba(8,6,4,0.10);
  --shadow-hover:   0 32px 80px rgba(8,6,4,0.18);
  --shadow-gold:    0 8px 32px rgba(201,169,110,0.25);

  /* Motion */
  --ease-luxury:    cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow:         1.2s;
  --t-med:          0.75s;
  --t-fast:         0.35s;
}

/* ── LAYOUT HELPERS ──────────────────────── */
.container-lux {
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── TYPOGRAPHY — CORMORANT DISPLAY ─────── */
.display-serif {
  font-family: var(--font-cormorant);
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: inherit;
}

.display-serif--xl {
  font-family: var(--font-cormorant);
  font-size: clamp(72px, 9vw, 130px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display-serif--sm {
  font-family: var(--font-cormorant);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-serif--italic {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

/* ── EYEBROW TAGS ──────────────────────── */
.tag-gold {
  display: inline-block;
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lux);
  margin-bottom: 16px;
}

.tag-gold--light {
  color: rgba(201,169,110,0.7);
}

/* ── LUXURY BUTTONS ──────────────────────── */
.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold-lux);
  color: var(--obsidian);
  border: 1.5px solid var(--gold-lux);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease-luxury);
  white-space: nowrap;
}
.btn-reserve:hover {
  background: #DFC080;
  border-color: #DFC080;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(250,250,248,0.85);
  border: 1px solid rgba(250,250,248,0.3);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease-luxury);
  white-space: nowrap;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(250,250,248,0.7);
  background: rgba(250,250,248,0.06);
  transform: translateY(-2px);
}

.btn-ghost--dark {
  color: var(--smoke);
  border-color: rgba(28,26,22,0.35);
}
.btn-ghost--dark:hover {
  color: var(--obsidian);
  border-color: var(--obsidian);
  background: rgba(8,6,4,0.05);
}

.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold-lux);
  color: var(--obsidian);
  border: 1.5px solid var(--gold-lux);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease-luxury);
  width: 100%;
}
.btn-gold-solid:hover {
  background: #DFC080;
  border-color: #DFC080;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ── LUXURY SECTIONS ─────────────────────── */
.section-obsidian {
  background: var(--obsidian);
  color: var(--text-primary);
  padding: var(--section-xl);
}

.section-charcoal {
  background: var(--charcoal);
  color: var(--text-primary);
  padding: var(--section-xl);
}

.section-cream-pale {
  background: var(--cream-pale);
  color: var(--smoke);
  padding: var(--section-xl);
}

.section-white-lux {
  background: #fff;
  color: var(--smoke);
  padding: var(--section-xl);
}

/* ── HERO CINEMATIC ──────────────────────── */
.hero-cinematic {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-cinematic__bg {
  position: absolute;
  inset: -10%;
  will-change: transform;
}

.hero-cinematic__bg .crossfade-wrap {
  position: absolute;
  inset: 0;
}

.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,6,4,0.92) 0%,
    rgba(8,6,4,0.65) 55%,
    rgba(8,6,4,0.18) 100%
  );
  z-index: 1;
}

.hero-cinematic__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero-cinematic__scroll-line {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 64px;
  background: rgba(201,169,110,0.2);
  overflow: hidden;
}
.hero-cinematic__scroll-line::after {
  content: '';
  display: block;
  width: 100%;
  height: 40%;
  background: var(--gold-lux);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(350%); }
}

/* ── CROSSFADE IMAGES ──────────────────── */
.crossfade-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.crossfade-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.crossfade-wrap img.cf-active { opacity: 1; }

/* ── PAGE HERO (subpages) ─────────────── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--obsidian);
}
.page-hero--text-only {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.4) 60%, rgba(8,6,4,0.1) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 80px var(--gutter);
  width: 100%;
}

/* ── CONCEPT CARDS (3-path split) ────── */
.concept-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 70vh;
}

.concept-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 70vh;
}

.concept-card__bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease-luxury);
}

.concept-card:hover .concept-card__bg {
  transform: scale(1.05);
}

.concept-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,6,4,0.92) 0%,
    rgba(8,6,4,0.55) 50%,
    rgba(8,6,4,0.08) 100%
  );
  transition: background 0.5s;
}
.concept-card:hover .concept-card__overlay {
  background: linear-gradient(
    to top,
    rgba(8,6,4,0.96) 0%,
    rgba(8,6,4,0.65) 55%,
    rgba(8,6,4,0.15) 100%
  );
}

.concept-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 44px 40px;
  z-index: 2;
}

.concept-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  font-family: var(--font-jost);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lux);
  border: 1px solid var(--gold-border);
  padding: 6px 12px;
  background: rgba(8,6,4,0.6);
  backdrop-filter: blur(8px);
}

.concept-card__label {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lux);
  margin-bottom: 12px;
  display: block;
}

.concept-card__title {
  font-family: var(--font-cormorant);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.concept-card__desc {
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-luxury), opacity 0.4s var(--ease-luxury);
}
.concept-card:hover .concept-card__desc {
  max-height: 120px;
  opacity: 1;
}

.concept-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lux);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury);
}
.concept-card:hover .concept-card__cta {
  opacity: 1;
  transform: none;
}

/* ── BRAND STATEMENT ─────────────────── */
.brand-statement {
  background: var(--cream-pale);
  padding: 100px 0;
  text-align: center;
}
.brand-statement__text {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--smoke);
  max-width: 820px;
  margin: 0 auto;
}

/* ── FEATURED TESTIMONIAL ────────────── */
.testimonial-featured {
  background: var(--charcoal);
  padding: var(--section-lg);
  text-align: center;
}

.testimonial-featured__quote-mark {
  font-family: var(--font-cormorant);
  font-size: 120px;
  line-height: 0.6;
  color: rgba(201,169,110,0.15);
  margin-bottom: 32px;
  display: block;
}

.testimonial-featured__text {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 820px;
  margin: 0 auto 32px;
}

.testimonial-featured__attr {
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lux);
}

/* ── TESTIMONIAL CARDS ───────────────── */
.testimonials-lux {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--charcoal);
}

.testimonial-card-lux {
  background: var(--smoke);
  padding: 48px 40px;
  transition: background 0.3s;
}
.testimonial-card-lux:hover {
  background: #201e19;
}

.testimonial-card-lux__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-card-lux__stars span {
  color: var(--gold-lux);
  font-size: 14px;
}

.testimonial-card-lux__text {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(250,250,248,0.88);
  margin-bottom: 24px;
}

.testimonial-card-lux__attr {
  font-family: var(--font-jost);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lux);
}

/* ── TRUST LOGOS STRIP ───────────────── */
.trust-strip {
  background: var(--cream-pale);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(28,26,22,0.08);
  border-bottom: 1px solid rgba(28,26,22,0.08);
}

.trust-strip__label {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 32px;
  display: block;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.3s var(--ease-luxury);
  max-height: 36px;
  width: auto;
}
.trust-logo:hover {
  filter: grayscale(0.2) opacity(0.85);
}

/* Trust logo placeholder (text-based fallback) */
.trust-logo-placeholder {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(122,106,88,0.55);
  white-space: nowrap;
  transition: color 0.3s;
}
.trust-logo-placeholder:hover {
  color: var(--gold-muted);
}

/* ── TONY'S STORY SECTION ──────────── */
.tony-story {
  background: var(--cream-pale);
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 680px;
}

.tony-story__image {
  position: relative;
  overflow: hidden;
}

.tony-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88);
}

.tony-story__content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tony-story__title {
  font-family: var(--font-cormorant);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--smoke);
  margin-bottom: 28px;
}

.tony-story__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}
.tony-story__body p + p { margin-top: 16px; }

/* ── EVENTS GRID ──────────────────── */
.events-lux {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 50vh);
  background: var(--obsidian);
}

.event-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.event-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-luxury);
  filter: brightness(0.65);
}
.event-tile:hover .event-tile__bg {
  transform: scale(1.04);
  filter: brightness(0.5);
}

.event-tile__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 40px;
}

.event-tile__label {
  font-family: var(--font-cormorant);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.event-tile__sub {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* ── CASE STUDY ────────────────────── */
.case-study {
  background: #fff;
  padding: var(--section-xl);
}

.case-study__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: center;
}

.case-study__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-study__stat-num {
  font-family: var(--font-cormorant);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  color: var(--gold-lux);
  line-height: 1;
}

.case-study__stat-label {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.case-study__story {
  border-left: 1px solid var(--gold-border);
  padding-left: 56px;
}

.case-study__story-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}

.case-study__quote {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--smoke);
  border-left: 3px solid var(--gold-lux);
  padding-left: 24px;
  margin-bottom: 16px;
}

.case-study__quote-attr {
  font-family: var(--font-jost);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  padding-left: 24px;
}

/* ── HOW IT WORKS (compact) ─────────── */
.how-compact {
  background: var(--cream-pale);
  padding: 64px 0;
  border-top: 1px solid rgba(28,26,22,0.08);
}

.how-compact__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.how-step + .how-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 1px;
  height: 32px;
  background: rgba(201,169,110,0.3);
}

.how-step__num {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-lux);
  margin-bottom: 10px;
}

.how-step__title {
  font-family: var(--font-cormorant);
  font-size: 18px;
  font-weight: 700;
  color: var(--smoke);
}

/* ── INQUIRY FORM (luxury) ──────────── */
.inquiry-section {
  background: var(--obsidian);
  padding: var(--section-xl);
}

.inquiry-card {
  background: #fff;
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.inquiry-card__header {
  text-align: center;
  margin-bottom: 48px;
}

.inquiry-card__title {
  font-family: var(--font-cormorant);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--smoke);
  line-height: 1.1;
  margin-bottom: 12px;
}

.inquiry-card__sub {
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

/* Floating label form fields */
.form-field {
  position: relative;
  margin-bottom: 28px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(122,106,88,0.35);
  padding: 16px 0 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--smoke);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold-lux);
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A7D52' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-field label {
  position: absolute;
  top: 16px;
  left: 0;
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.25s var(--ease-luxury);
  pointer-events: none;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 9px;
  color: var(--gold-lux);
}

.form-field--optional::after {
  content: 'optional';
  position: absolute;
  top: 16px;
  right: 0;
  font-family: var(--font-jost);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(122,106,88,0.5);
}

.form-divider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inquiry-note {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-jost);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Confirmation state */
.inquiry-confirmation {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.inquiry-confirmation__line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold-lux);
  margin: 0 auto 32px;
}

.inquiry-confirmation__name {
  font-family: var(--font-cormorant);
  font-size: 28px;
  font-weight: 700;
  color: var(--smoke);
  margin-bottom: 16px;
}

.inquiry-confirmation__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}

.inquiry-confirmation__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PACKAGE CARDS ──────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: stretch;
}

.package-card {
  background: var(--cream-pale);
  border: 1.5px solid rgba(28,26,22,0.1);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  transition: transform var(--t-fast) var(--ease-luxury), box-shadow var(--t-fast) var(--ease-luxury);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.package-card--featured {
  background: var(--obsidian);
  border-color: var(--gold-lux);
  color: var(--text-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.package-card--featured:hover {
  transform: translateY(-14px);
}

.package-card__tier {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lux);
  margin-bottom: 10px;
  display: block;
}

.package-card__name {
  font-family: var(--font-cormorant);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 12px;
  color: inherit;
}

.package-card--featured .package-card__name { color: #fff; }

.package-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

.package-card--featured .package-card__desc {
  color: var(--text-secondary);
}

.package-card__price {
  font-family: var(--font-cormorant);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-lux);
  line-height: 1;
  margin-bottom: 8px;
}

.package-card__minimum {
  font-family: var(--font-jost);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  margin-bottom: 32px;
  display: block;
}

.package-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  padding: 0;
}

.package-card__features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.package-card--featured .package-card__features li {
  color: var(--text-secondary);
}

.package-card__features li::before {
  content: '—';
  color: var(--gold-lux);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Comparison table */
.compare-table {
  max-width: var(--max-lux);
  margin: 64px auto 0;
  padding: 0 var(--gutter);
  overflow-x: auto;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
}

.compare-table th {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lux);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.compare-table td {
  padding: 14px 20px;
  color: var(--muted);
  border-bottom: 1px solid rgba(28,26,22,0.06);
}

.compare-table td:first-child {
  color: var(--smoke);
  font-weight: 500;
}

.compare-check { color: var(--gold-lux); font-size: 16px; }
.compare-add   { color: var(--muted); font-size: 13px; }
.compare-no    { color: rgba(122,106,88,0.4); }

/* ── FAQ ACCORDION ──────────────────── */
.faq-accordion {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 0 var(--gutter);
}

.faq-item {
  border-bottom: 1px solid rgba(28,26,22,0.1);
}

.faq-item__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-cormorant);
  font-size: 20px;
  font-weight: 700;
  color: var(--smoke);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.25s;
}
.faq-item__trigger:hover { color: var(--obsidian); }

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold-lux);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-luxury);
}
.faq-item__icon::before {
  width: 2px; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}
.faq-item__icon::after {
  width: 100%; height: 2px;
  left: 0; top: 50%;
  transform: translateY(-50%);
}
.faq-item.open .faq-item__icon::before {
  transform: translateX(-50%) rotate(90deg) scaleY(0);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury);
}
.faq-item.open .faq-item__body { max-height: 300px; }

.faq-item__answer {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  padding-bottom: 24px;
}

/* ── MENU CONCEPT PAGE ──────────────── */
.menu-hero-lux {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--obsidian);
}

.menu-hero-lux__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.menu-hero-lux__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.95) 0%, rgba(8,6,4,0.5) 60%, rgba(8,6,4,0.1) 100%);
}

.menu-hero-lux__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 80px var(--gutter);
  width: 100%;
}

.menu-sections {
  background: var(--cream-pale);
  padding: var(--section-xl);
}

.menu-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.menu-section + .menu-section { margin-top: 64px; }

.menu-section__title {
  font-family: var(--font-cormorant);
  font-size: 32px;
  font-weight: 700;
  color: var(--smoke);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(min-content, 50%) minmax(0, 1fr);
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(28,26,22,0.06);
}
.menu-item:last-child { border-bottom: none; }

@media (max-width: 480px) {
  .menu-sections__grid .menu-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.menu-item__name {
  font-family: var(--font-cormorant);
  font-size: 20px;
  font-weight: 700;
  color: var(--smoke);
}

.menu-item__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.menu-item__tag {
  font-family: var(--font-jost);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  white-space: nowrap;
}

.menu-pricing-note {
  background: var(--obsidian);
  padding: 40px;
  text-align: center;
  max-width: 900px;
  margin: 48px auto 0;
}

.menu-pricing-note p {
  font-family: var(--font-jost);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.menu-pricing-note strong {
  color: var(--gold-lux);
  font-weight: 500;
}

/* ── PRIVATE CHEF PAGE ──────────────── */
.private-chef-hero {
  background: var(--obsidian);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--gutter);
}

.private-chef-hero__content {
  max-width: 760px;
}

.private-chef-headline {
  font-family: var(--font-cormorant);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.private-chef-headline em {
  font-style: italic;
  color: var(--gold-lux);
  display: block;
}

.private-chef-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--smoke);
}

.private-chef-feature {
  background: var(--charcoal);
  padding: 56px 44px;
}

.private-chef-feature__title {
  font-family: var(--font-cormorant);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.private-chef-feature__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.exclusivity-callout {
  padding: 28px 36px;
  background: rgba(201,169,110,0.04);
}

.exclusivity-callout p {
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── ABOUT PAGE ──────────────────────── */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--obsidian);
}

.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.88) 0%, rgba(8,6,4,0.3) 60%, rgba(8,6,4,0.05) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter) 72px;
  width: 100%;
}

.stats-row {
  background: var(--cream-pale);
  padding: 56px 0;
  border-bottom: 1px solid rgba(28,26,22,0.1);
}

.stats-row__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(201,169,110,0.25);
}

.stat-item__num {
  font-family: var(--font-cormorant);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--gold-lux);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.about-story {
  background: #fff;
  padding: var(--section-xl);
}

.about-story__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-story p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}

.about-values {
  background: var(--cream-pale);
  padding: var(--section-xl);
}

.values-lux {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.value-item__title {
  font-family: var(--font-cormorant);
  font-size: 28px;
  font-weight: 700;
  color: var(--smoke);
  margin-bottom: 14px;
}

.value-item__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.team-member__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  background: var(--smoke);
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.6s var(--ease-luxury);
}

.team-member:hover .team-member__photo img {
  transform: scale(1.04);
}

.team-member__name {
  font-family: var(--font-cormorant);
  font-size: 20px;
  font-weight: 700;
  color: var(--smoke);
  margin-bottom: 4px;
}

.team-member__role {
  font-family: var(--font-jost);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* ── CAREERS PAGE ──────────────────── */
.culture-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.culture-pillar {
  padding: 64px 48px;
}

.culture-pillar__title {
  font-family: var(--font-cormorant);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.culture-pillar__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.role-card {
  background: #fff;
  border: 1.5px solid rgba(28,26,22,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.role-card:hover {
  border-color: rgba(201,169,110,0.5);
  box-shadow: var(--shadow-card);
}

.role-card__title {
  font-family: var(--font-cormorant);
  font-size: 26px;
  font-weight: 700;
  color: var(--smoke);
}

.role-card__type {
  font-family: var(--font-jost);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.role-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* Application form */
.application-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.application-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 60px;
  box-shadow: var(--shadow-card);
}

.essay-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(28,26,22,0.1);
}

.essay-q {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(28,26,22,0.07);
}
.essay-q:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.essay-q__num {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lux);
  margin-bottom: 8px;
  display: block;
}

.essay-q__prompt {
  font-family: var(--font-cormorant);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--smoke);
  margin-bottom: 16px;
}

.word-counter {
  font-family: var(--font-jost);
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  text-align: right;
}

.personality-block {
  background: rgba(201,169,110,0.06);
  border-left: 2px solid var(--gold-lux);
  padding: 24px 28px;
  margin: 40px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.personality-block p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 12px;
}

.personality-block p:last-child { margin-bottom: 0; }

.personality-block a {
  color: var(--gold-lux);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* File upload */
.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0 10px;
  border-bottom: 1px solid rgba(122,106,88,0.35);
  cursor: pointer;
  transition: border-color 0.3s;
  font-family: var(--font-jost);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.file-upload-label:hover { border-bottom-color: var(--gold-lux); }
.file-upload-label input[type="file"] { display: none; }
.file-upload-label__name { color: var(--smoke); font-weight: 500; }

/* ── SERVICE AREAS PAGE ─────────────── */
.county-section {
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 64px var(--gutter);
  border-bottom: 1px solid rgba(28,26,22,0.08);
}

.county-section:last-child { border-bottom: none; }

.county-name {
  font-family: var(--font-cormorant);
  font-size: 44px;
  font-weight: 700;
  color: var(--smoke);
  margin-bottom: 12px;
}

.county-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 32px;
}

.city-tags-lux {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-tag-lux {
  font-family: var(--font-jost);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border: 1px solid rgba(28,26,22,0.14);
  border-radius: 100px;
  color: var(--muted);
  background: transparent;
  transition: border-color 0.25s, color 0.25s;
}
.city-tag-lux:hover {
  border-color: var(--gold-lux);
  color: var(--gold-muted);
}

/* ── SERVICE AREAS SECTION (homepage) ─ */
.areas-simple {
  background: var(--cream-pale);
  padding: var(--section-lg);
}

.areas-simple__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.area-col__county {
  font-family: var(--font-cormorant);
  font-size: 28px;
  font-weight: 700;
  color: var(--smoke);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(201,169,110,0.25);
  padding-bottom: 12px;
}

.area-col__cities {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}

.area-col__link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-jost);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lux);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── LUXURY NAV EXTENSIONS ──────────── */
.nav__link-gold {
  color: var(--gold-lux) !important;
}
.nav__link-gold::after {
  background: var(--gold-lux) !important;
}

/* ── FOOTER EXTENSION ───────────────── */
.footer-lux {
  background: var(--obsidian);
  color: var(--text-secondary);
  padding: 80px 0 0;
}

.footer-lux__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
}

.footer-lux__brand-name {
  font-family: var(--font-cormorant);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer-lux__tagline {
  font-family: var(--font-jost);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 28px;
  display: block;
}

.footer-lux__contact p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.footer-lux__contact a:hover {
  color: var(--gold-lux);
}

.footer-lux__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-lux__social a {
  font-family: var(--font-jost);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: color 0.25s;
}

.footer-lux__social a:hover { color: var(--gold-lux); }

.footer-lux__col-title {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
  display: block;
}

.footer-lux__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-lux__links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.25s;
}

.footer-lux__links a:hover { color: var(--gold-lux); }

.footer-lux__bottom {
  border-top: 1px solid rgba(250,250,248,0.06);
  max-width: var(--max-lux);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-lux__copy {
  font-family: var(--font-jost);
  font-size: 11px;
  color: var(--text-tertiary);
}

.footer-lux__legal {
  display: flex;
  gap: 20px;
}

.footer-lux__legal a {
  font-family: var(--font-jost);
  font-size: 11px;
  color: var(--text-tertiary);
  transition: color 0.25s;
}
.footer-lux__legal a:hover { color: var(--gold-lux); }

/* ── STICKY MOBILE CTA (luxury) ─────── */
.sticky-cta-lux {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--obsidian);
  border-top: 1px solid var(--gold-muted);
  grid-template-columns: 1fr 1fr;
}

.sticky-cta-lux__btn {
  padding: 18px 0;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s;
}

.sticky-cta-lux__btn--call {
  color: var(--text-secondary);
  border-right: 1px solid rgba(250,250,248,0.08);
}
.sticky-cta-lux__btn--call:hover { background: var(--charcoal); }

.sticky-cta-lux__btn--reserve {
  color: var(--gold-lux);
}
.sticky-cta-lux__btn--reserve:hover { background: var(--charcoal); }

/* ── LINE REVEAL ANIMATION ──────────── */
.reveal-line {
  overflow: hidden;
}

.reveal-line .reveal-line__inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}

.reveal-line .reveal-line__inner.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-line .reveal-line__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── CTA STRIP ──────────────────────── */
.cta-strip {
  background: var(--obsidian);
  padding: 80px var(--gutter);
  text-align: center;
}

.cta-strip__title {
  font-family: var(--font-cormorant);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-strip__sub {
  font-family: var(--font-jost);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* ── MOBILE RESPONSIVE (LUXURY) ─────── */
@media (max-width: 1100px) {
  .packages-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid        { grid-template-columns: repeat(3, 1fr); }
  .footer-lux__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  :root {
    --section-xl: 100px 0;
    --section-lg: 80px 0;
  }

  .concept-split          { grid-template-columns: 1fr; }
  .concept-card           { min-height: 55vw; }
  .concept-card__desc     { max-height: 120px; opacity: 1; }
  .concept-card__cta      { opacity: 1; transform: none; }
  .tony-story             { grid-template-columns: 1fr; }
  .tony-story__image      { height: 60vw; }
  .tony-story__content    { padding: 56px 40px; }
  .events-lux             { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 40vw); }
  .case-study__inner      { grid-template-columns: 1fr; gap: 40px; }
  .case-study__story      { border-left: none; padding-left: 0; border-top: 1px solid var(--gold-border); padding-top: 32px; }
  .case-study__stats      { flex-direction: row; gap: 32px; }
  .private-chef-features  { grid-template-columns: 1fr; }
  .packages-grid          { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }
  .values-lux             { grid-template-columns: 1fr; gap: 40px; }
  .team-grid              { grid-template-columns: repeat(2, 1fr); }
  .culture-pillars        { grid-template-columns: 1fr; }
  .roles-grid             { grid-template-columns: 1fr; }
  .areas-simple__grid     { grid-template-columns: 1fr; gap: 32px; }
  .how-compact__steps     { flex-direction: column; gap: 24px; align-items: flex-start; }
  .how-step + .how-step::before { display: none; }
  .testimonials-lux       { grid-template-columns: 1fr; }
  .footer-lux__grid       { grid-template-columns: 1fr; gap: 32px; }
  .footer-lux__bottom     { flex-direction: column; text-align: center; }
  .stats-row__inner       { flex-wrap: wrap; gap: 32px; }
  .stat-item              { min-width: 45%; }
  .stat-item + .stat-item::before { display: none; }
  .inquiry-card           { padding: 48px 36px; }
  .application-card       { padding: 48px 36px; }
  .sticky-cta-lux         { display: grid; }
  .form-divider           { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 640px) {
  .concept-card           { min-height: 65vw; }
  .events-lux             { grid-template-columns: 1fr; grid-template-rows: none; }
  .event-tile             { min-height: 55vw; }
  .tony-story__content    { padding: 40px 24px; }
  .inquiry-card           { padding: 40px 24px; border-radius: 0; }
  .application-card       { padding: 40px 24px; border-radius: 0; }
  .team-grid              { grid-template-columns: repeat(2, 1fr); }
  .private-chef-hero      { padding: 100px 24px; }
  .private-chef-headline  { font-size: clamp(48px, 13vw, 80px); }
  .compare-table          { padding: 0 16px; }
  .brand-statement        { padding: 72px 0; }
  .county-name            { font-size: 34px; }
  .values-lux             { padding: 0 24px; }
  .footer-lux__legal      { flex-direction: column; gap: 10px; align-items: center; }
  .hero-cinematic__scroll-line { display: none; }
}

/* Mobile-only Private Chef threshold line */
@media (max-width: 900px) {
  .private-chef-threshold {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gold-muted);
    margin: 0;
  }
}

@media (min-width: 901px) {
  .private-chef-threshold { display: none; }
}

/* ════════════════════════════════════════════════════════════
   NEW PAGE COMPONENTS — Added with page builds
════════════════════════════════════════════════════════════ */

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

/* ── PAGE HERO TEXT (solid obsidian, no image) ─── */
.page-hero-text {
  background: var(--obsidian);
  padding: 180px 0 100px;
  text-align: center;
}
.page-hero-text .eyebrow { margin-bottom: 20px; }
.page-hero-text h1 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.page-hero-text__sub {
  font-family: var(--font-jost, sans-serif);
  font-weight: 300;
  font-size: 18px;
  color: rgba(250,250,248,0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero-text--light {
  background: var(--cream-pale);
}
.page-hero-text--light h1 { color: var(--charcoal); }
.page-hero-text--light .eyebrow { color: var(--gold-muted); }
.page-hero-text--light .page-hero-text__sub { color: var(--text-muted); }

/* ── NAV ENHANCEMENTS ───────────────────── */
.nav__logo-primary {
  font-family: var(--font-jost, sans-serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--white);
}
.nav__logo-accent {
  font-family: var(--font-cormorant, serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-lux);
}
.nav__gold { color: var(--gold-lux) !important; }
.nav__links .nav__gold:hover { color: var(--white) !important; }
.mobile-nav__gold { color: var(--gold-lux) !important; }

/* ── HERO CINEMATIC ENHANCEMENTS ───────── */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.crossfade-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.crossfade-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.crossfade-slide.active { opacity: 1; }

.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,6,4,0.82) 0%,
    rgba(8,6,4,0.55) 60%,
    rgba(8,6,4,0.25) 100%
  );
  z-index: 1;
}
.hero-cinematic__content {
  position: relative;
  z-index: 2;
  max-width: var(--max, 1340px);
  margin: 0 auto;
  padding: 0 var(--gutter, 48px);
  width: 100%;
}
.hero-cinematic__headline {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin: 16px 0 28px;
  white-space: pre-line;
}
.hero-cinematic__sub {
  font-family: var(--font-jost, sans-serif);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(250,250,248,0.7);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cinematic__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-cinematic__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-cinematic__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: var(--gold-muted);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

/* ── CONCEPT SPLIT ──────────────────────── */
.concept-split {
  background: var(--obsidian);
  padding: var(--section-lg, 120px 0);
}
.concept-split__header {
  text-align: center;
  padding: 0 var(--gutter, 48px);
  margin-bottom: 64px;
}
.concept-split__header h2 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  font-weight: 700;
}
.concept-split__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 70vh;
}
.concept-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.concept-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-luxury, ease);
}
.concept-card:hover .concept-card__bg { transform: scale(1.06); }
.concept-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.88) 0%, rgba(8,6,4,0.3) 100%);
  transition: background 0.4s ease;
}
.concept-card:hover .concept-card__overlay {
  background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.45) 100%);
}
.concept-card__content {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.concept-card__eyebrow { margin-bottom: 8px; color: var(--gold-muted); }
.concept-card__title {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(28px, 2.5vw, 40px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}
.concept-card__desc {
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  color: rgba(250,250,248,0.7);
  line-height: 1.65;
  margin-bottom: 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-luxury), opacity 0.4s ease;
}
.concept-card:hover .concept-card__desc,
.concept-card:focus-within .concept-card__desc {
  max-height: 120px;
  opacity: 1;
}
.concept-card__cta {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-luxury);
  width: fit-content;
}
.concept-card:hover .concept-card__cta,
.concept-card:focus-within .concept-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.concept-split__footer {
  text-align: center;
  padding: 48px var(--gutter, 48px) 0;
}

/* ── TONY STORY ─────────────────────────── */
.tony-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--white);
}
.tony-story__image {
  overflow: hidden;
}
.tony-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
}
.tony-story__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tony-story__content h2 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(36px, 3.5vw, 56px);
  color: var(--charcoal);
  font-weight: 700;
  margin: 16px 0 28px;
  line-height: 1.1;
}
.tony-story__content p {
  font-size: 16px;
  color: var(--text-muted, #7A6A58);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 480px;
}

/* ── EVENTS GRID ────────────────────────── */
.events-lux {
  background: var(--obsidian);
  padding: var(--section-lg, 120px 0);
}
.events-lux__header {
  text-align: center;
  margin-bottom: 64px;
}
.events-lux__header h2 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(36px, 4vw, 60px);
  color: var(--white);
  font-weight: 700;
  margin-top: 16px;
  line-height: 1.15;
}
.events-lux__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.event-tile {
  position: relative;
  height: 380px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.event-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-luxury, ease);
}
.event-tile:hover .event-tile__bg { transform: scale(1.05); }
.event-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.2) 100%);
}
.event-tile__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.event-tile__content h3 {
  font-family: var(--font-cormorant, serif);
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
}
.event-tile__content p {
  font-family: var(--font-jost, sans-serif);
  font-size: 13px;
  color: rgba(250,250,248,0.65);
  line-height: 1.55;
}

/* ── CASE STUDY ─────────────────────────── */
.case-study {
  background: var(--white);
  padding: var(--section-lg, 120px 0);
}
.case-study__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.case-study__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.case-study__stat { border-left: 2px solid var(--gold-lux); padding-left: 20px; }
.case-study__num {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.case-study__label {
  display: block;
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.case-study__story .eyebrow { margin-bottom: 16px; }
.case-study__story h2 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}
.case-study__story p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.case-study__quote {
  border-left: 2px solid var(--gold-lux);
  padding-left: 20px;
  font-family: var(--font-cormorant, serif);
  font-style: italic;
  font-size: 20px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-top: 32px;
}
.case-study__quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── HOW IT WORKS ───────────────────────── */
.how-it-works {
  background: var(--cream-pale);
  padding: var(--section-md, 80px 0);
}
.how-it-works__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 0 20px;
}
.how-step__num {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: 36px;
  color: var(--gold-lux);
  font-weight: 700;
  margin-bottom: 12px;
}
.how-step__title {
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.how-step__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.how-step__arrow {
  align-self: center;
  color: var(--gold-muted);
  font-size: 20px;
  padding-bottom: 40px;
  flex-shrink: 0;
}

/* ── INQUIRY FORM ENHANCEMENTS ─────────── */
.inquiry-section { background: var(--obsidian); padding: var(--section-lg, 120px 0); }
.inquiry-card {
  background: var(--white);
  border-radius: var(--radius-xl, 20px);
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 48px;
  box-shadow: var(--shadow-card);
}
.inquiry-card--contact { max-width: 100%; border-radius: var(--radius-lg, 12px); }
.inquiry-card__heading {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--charcoal);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.15;
}
.inquiry-card__sub {
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}
.inquiry-form { width: 100%; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field {
  position: relative;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border, #DDD4C4);
  padding: 20px 0 8px;
  font-family: var(--font-jost, sans-serif);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.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'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A7D52' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold-lux);
}
.form-field label {
  position: absolute;
  top: 18px;
  left: 0;
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 11px;
  color: var(--gold-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-field--full { margin-bottom: 20px; }
.inquiry-form__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ── PACKAGES SECTION ───────────────────── */
.packages-section {
  background: var(--cream-pale);
  padding: var(--section-lg, 120px 0);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg, 12px);
  padding: 40px 28px;
  border: 1px solid rgba(28,26,22,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.package-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.package-card--featured {
  background: var(--obsidian);
  border: 1.5px solid var(--gold-lux);
  box-shadow: var(--shadow-gold);
}
.package-card--featured:hover { transform: translateY(-4px); }
.package-card--vip {
  background: var(--charcoal);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--white);
}
.package-card__tier {
  margin-bottom: 12px;
}
.package-card--featured .package-card__tier,
.package-card--vip .package-card__tier { color: var(--gold-lux); }
.package-card__name {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
}
.package-card--featured .package-card__name,
.package-card--vip .package-card__name { color: var(--white); }
.package-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.package-card--featured .package-card__desc,
.package-card--vip .package-card__desc { color: rgba(250,250,248,0.6); }
.package-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.package-card__features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(28,26,22,0.05);
}
.package-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
  font-size: 11px;
}
.package-card--featured .package-card__features li,
.package-card--vip .package-card__features li { color: rgba(250,250,248,0.65); border-bottom-color: rgba(250,250,248,0.06); }
.package-card__vip-body {
  flex: 1;
  margin-bottom: 28px;
}
.package-card__vip-body p {
  font-size: 14px;
  color: rgba(250,250,248,0.65);
  line-height: 1.75;
  margin-bottom: 12px;
}
.package-card__pricing { margin-bottom: 24px; }
.package-card__price {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
}
.package-card__price em { font-style: normal; font-size: 14px; font-weight: 400; }
.package-card--featured .package-card__price,
.package-card--vip .package-card__price { color: var(--gold-lux); }
.package-card__price--inquiry {
  font-size: 18px;
  color: var(--gold-lux);
}
.package-card__minimum {
  display: block;
  font-family: var(--font-jost, sans-serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.package-card--featured .package-card__minimum,
.package-card--vip .package-card__minimum { color: rgba(250,250,248,0.4); }
.package-card__cta { margin-top: auto; text-align: center; }

/* Package testimonials section */
.pkg-testimonials {
  background: var(--white);
  padding: var(--section-md, 80px 0);
}
.pkg-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

/* Compare table */
.compare-section {
  background: var(--cream-pale);
  padding: var(--section-md, 80px 0);
}
.compare-section__heading {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--charcoal);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  background: var(--white);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare-table th {
  padding: 20px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table th em { display: block; font-style: normal; font-size: 13px; color: var(--gold-muted); font-family: var(--font-cormorant, serif); letter-spacing: 0; text-transform: none; font-weight: 700; margin-top: 4px; }
.compare-table__featured { background: rgba(8,6,4,0.04); }
.compare-table td {
  padding: 14px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(28,26,22,0.06);
  text-align: center;
}
.compare-table td:first-child { text-align: left; color: var(--charcoal); font-weight: 500; }
.cmp-yes  { color: var(--gold-lux); font-size: 14px; }
.cmp-add  { color: var(--text-muted); font-size: 13px; }
.cmp-no   { color: rgba(122,106,88,0.35); }
.compare-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-jost, sans-serif);
}
.compare-legend span { display: flex; align-items: center; gap: 6px; }

/* FAQ section (packages page) */
.faq-section {
  background: var(--white);
  padding: var(--section-md, 80px 0);
}
.faq-section__heading {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--charcoal);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-jost, sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-muted); }
.faq-icon {
  font-size: 20px;
  color: var(--gold-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 24px;
}
.faq-answer a { color: var(--gold-muted); text-decoration: underline; }

/* ── ABOUT PAGE ─────────────────────────── */
.about-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: saturate(0.85);
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.75) 0%, rgba(8,6,4,0.15) 60%);
}
.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter, 48px) 64px;
  max-width: var(--max, 1340px);
  margin: 0 auto;
  width: 100%;
}
.about-hero__content h1 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(48px, 6vw, 88px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 12px;
}

/* Stats row */
.stats-row {
  background: var(--cream-pale);
  padding: 64px 0;
}
.stats-row__grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-item__num {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  color: var(--gold-lux);
  line-height: 1;
}
.stat-item__label {
  display: block;
  font-family: var(--font-jost, sans-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* About story */
.about-story {
  background: var(--white);
  padding: var(--section-lg, 120px 0);
}
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story__text .eyebrow { margin-bottom: 16px; }
.about-story__text h2 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(32px, 3vw, 48px);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.15;
}
.about-story__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-story__image { border-radius: var(--radius-lg, 12px); overflow: hidden; }
.about-story__image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.88); }

/* Values */
.values-lux {
  background: var(--obsidian);
  padding: var(--section-lg, 120px 0);
}
.values-lux__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.value-item__num {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: 56px;
  color: rgba(154,125,82,0.45);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.value-item__title {
  font-family: var(--font-cormorant, serif);
  font-size: 32px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}
.value-item__desc {
  font-size: 15px;
  color: rgba(250,250,248,0.6);
  line-height: 1.8;
}

/* Team grid */
.team-section { background: var(--cream-pale); padding: var(--section-lg, 120px 0); }
.team-section__header { text-align: center; margin-bottom: 64px; }
.team-section__header h2 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(32px, 3vw, 48px);
  color: var(--charcoal);
  font-weight: 700;
  margin-top: 12px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-member { text-align: center; }
.team-member__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}
.team-member__name {
  font-family: var(--font-cormorant, serif);
  font-size: 22px;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 4px;
}
.team-member__role {
  font-family: var(--font-jost, sans-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 10px;
}
.team-member__bio { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Testimonials light variant */
.testimonials-lux--light { background: var(--white); padding: var(--section-md, 80px 0); }
.testimonials-lux__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card--light {
  background: var(--white);
  border-radius: var(--radius-lg, 12px);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(28,26,22,0.07);
}
.testimonial-card--light .testimonial-card__quote { color: var(--charcoal); }
.testimonial-card--light .testimonial-card__name { color: var(--charcoal); }
.testimonial-card--light .testimonial-card__event { color: var(--text-muted); }

/* ── CONTACT PAGE ───────────────────────── */
.contact-header {
  background: var(--obsidian);
  padding: 180px 0 100px;
  text-align: center;
}
.contact-header .eyebrow { margin-bottom: 20px; }
.contact-header h1 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-header__sub {
  font-family: var(--font-jost, sans-serif);
  font-weight: 300;
  font-size: 18px;
  color: rgba(250,250,248,0.6);
  line-height: 1.7;
}
.contact-body { background: var(--cream-pale); padding: var(--section-lg, 120px 0); }
.contact-body__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.contact-info__intro {
  font-family: var(--font-jost, sans-serif);
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-info__list { list-style: none; padding: 0; margin: 0 0 36px; }
.contact-info__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info__label {
  font-family: var(--font-jost, sans-serif);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-muted);
}
.contact-info__value {
  font-family: var(--font-cormorant, serif);
  font-size: 20px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.contact-info__value:hover { color: var(--gold-muted); }
.contact-info__note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  font-style: italic;
}
.contact-info__response {
  border-left: 2px solid var(--gold-lux);
  padding-left: 20px;
}
.contact-info__response p {
  font-family: var(--font-cormorant, serif);
  font-size: 22px;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.4;
}
.contact-form-wrap .inquiry-card { box-shadow: var(--shadow-card); }

/* ── MENU HERO ──────────────────────────── */
.menu-hero-lux {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.menu-hero-lux--vip { height: 85vh; }
.menu-hero-lux__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.menu-hero-lux__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.25) 65%);
}
.menu-hero-lux__overlay--deep {
  background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.55) 100%);
}
.menu-hero-lux__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter, 48px) 72px;
  max-width: var(--max, 1340px);
  margin: 0 auto;
  width: 100%;
}
.menu-hero-lux__content .eyebrow {
  color: var(--gold-lux);
}
.menu-hero-lux__content h1 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(52px, 7vw, 100px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  margin: 16px 0 20px;
}
.menu-hero-lux__sub {
  font-family: var(--font-jost, sans-serif);
  font-size: 16px;
  color: rgba(250,250,248,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.menu-hero-lux__pricing {
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  color: rgba(250,250,248,0.55);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.menu-hero-lux__pricing strong { color: var(--gold-lux); font-size: 20px; font-family: var(--font-cormorant, serif); }

/* Menu sections */
.menu-sections { background: var(--white); padding: var(--section-lg, 120px 0); }
.menu-sections__heading {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(32px, 3vw, 48px);
  color: var(--charcoal);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
}
.menu-sections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.menu-col__title {
  font-family: var(--font-jost, sans-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.menu-items { list-style: none; padding: 0; margin: 0; }
.menu-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(28,26,22,0.06);
}
.menu-item__name {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: 18px;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 4px;
}
.menu-item__desc {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-item--add .menu-item__name { color: var(--text-muted); }

/* ── MENU ITEM — PHOTO VARIANT (primary proteins) ──
   Lavish thumbnail treatment for hero-protein menu items.
   Used on pages/menu/mexican.html only; other menu columns
   keep the plain .menu-items list untouched. */
.menu-items--photo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu-item--photo {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px;
  border: 1px solid rgba(28,26,22,0.08);
  border-bottom: 1px solid rgba(28,26,22,0.08);
  border-radius: var(--radius-lg, 12px);
  background: var(--cream-pale);
  transition: box-shadow 0.35s var(--ease-luxury, ease), border-color 0.35s var(--ease-luxury, ease), transform 0.35s var(--ease-luxury, ease);
}
.menu-item--photo:hover {
  box-shadow: var(--shadow-card, 0 24px 80px rgba(8,6,4,0.10));
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-2px);
}
.menu-item__photo {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  background: var(--smoke);
  box-shadow: 0 6px 18px rgba(8,6,4,0.20);
  border: 1px solid rgba(201,169,110,0.35);
}
.menu-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-luxury, ease);
}
.menu-item--photo:hover .menu-item__photo img { transform: scale(1.07); }
.menu-item--photo .menu-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.menu-item--photo .menu-item__name {
  font-size: 19px;
  margin-bottom: 0;
}
.menu-item--photo .menu-item__desc { font-size: 13px; }

@media (max-width: 520px) {
  .menu-item__photo { flex-basis: 72px; width: 72px; height: 72px; }
  .menu-item--photo { gap: 14px; padding: 10px; }
}

/* ── MENU ITEM — ELEVATED TYPOGRAPHY VARIANT (no photo) ──
   For menu columns with no matching real photo: lean on
   refined type + a gold hairline rule instead of imagery.
   Explicitly resets display/background/border-radius/padding
   because the base .menu-item rule (line ~762, used by other
   menu pages) sets a filled card background — this variant is
   intentionally flat/typographic, not a card. */
.menu-items--elevated .menu-item,
.menu-items--photo .menu-item--add {
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201,169,110,0.28);
}
.menu-items--elevated .menu-item:last-child,
.menu-items--photo .menu-item--add:last-child { border-bottom: none; }
.menu-items--elevated .menu-item__name,
.menu-items--photo .menu-item--add .menu-item__name {
  font-family: var(--font-cormorant, serif);
  font-size: 21px;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.menu-items--elevated .menu-item__desc,
.menu-items--photo .menu-item--add .menu-item__desc { line-height: 1.75; }

/* ── BBQ MENU PAGE — LAVISH TYPOGRAPHY TREATMENT (scoped to pages/menu/bbq.html) ──
   No matching real photos exist for brisket/tri-tip/ribs/whole birds/suckling
   pig, so this page is elevated with type, spacing and a gold-rule hierarchy
   instead of imagery. Every selector below is scoped under .menu-sections--bbq
   / .menu-item--lux so it cannot affect the plain .menu-item styling other
   menu pages rely on. */
.menu-sections--bbq { padding: var(--section-xl, 160px 0); }

.menu-sections--bbq__eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 12px;
}

.menu-sections--bbq .menu-sections__heading { margin-bottom: 84px; }

.menu-sections__grid--bbq { gap: 72px; align-items: start; }

/* A legacy, unrelated .menu-items/.menu-item pair earlier in this file
   (2-col grid, cream card background, space-between) partially cascades
   onto every menu page because later modifier rules don't redeclare every
   property. Neutralize it here, scoped only to the bbq page's own classes,
   without touching that legacy block so nothing else that depends on it
   changes. */
.menu-items--mains,
.menu-items--lux {
  display: block;
  grid-template-columns: none;
}
.menu-item--lux {
  justify-content: flex-start;
  background: transparent;
  border-radius: 0;
}

.menu-col--mains {
  padding: 40px 44px;
  background: linear-gradient(180deg, rgba(201,169,110,0.06) 0%, rgba(201,169,110,0) 60%);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 2px;
}

.menu-col__title--mains {
  font-family: var(--font-cormorant, serif);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--gold-lux);
  border-bottom: 1px solid rgba(201,169,110,0.35);
}

.menu-col--secondary .menu-col__title {
  font-family: var(--font-jost, sans-serif);
  font-size: 11px;
}

.menu-items--mains .menu-item--lux { padding: 28px 0; }
.menu-items--mains .menu-item--lux:first-child { padding-top: 4px; }

.menu-item--lux {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,169,110,0.22);
  transition: padding-left 0.25s ease;
}
.menu-item--lux:last-child { border-bottom: none; }
.menu-item--lux:hover { padding-left: 6px; }

.menu-item__rule {
  flex: 0 0 auto;
  font-family: var(--font-cormorant, serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-lux);
  opacity: 0.75;
  line-height: 1;
  padding-top: 3px;
}

.menu-item__body { display: block; flex: 1 1 auto; min-width: 0; }

.menu-items--mains .menu-item__name,
.menu-item--lux .menu-item__name {
  font-family: var(--font-cormorant, serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--smoke);
  margin-bottom: 6px;
}

.menu-items--mains .menu-item__name { font-size: 28px; }

.menu-item--lux .menu-item__desc {
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 46ch;
}

.menu-item--lux.menu-item--add .menu-item__name { color: var(--gold-muted); }
.menu-item--lux.menu-item--add .menu-item__name em {
  font-style: italic;
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .menu-col--mains { padding: 28px 22px; }
  .menu-items--mains .menu-item__name { font-size: 22px; }
  .menu-item--lux .menu-item__name { font-size: 19px; }
  .menu-item--lux { gap: 14px; }
}

/* Pacific Rim lux menu treatment — uses its own "--coastal" class names
   (never "--lux") so nothing here touches the shared .menu-item / .menu-col
   rules above, or the separate .menu-item--lux / .menu-items--lux classes
   already used by bbq.html. Scoped purely to pacific-rim.html. */
.menu-sections--coastal .menu-sections__eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin: 0 0 14px;
}
.menu-sections--coastal .menu-sections__heading {
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 72px;
}
.menu-sections--coastal .menu-sections__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lux), transparent);
}
.menu-col--coastal .menu-col__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gold-lux);
}
.menu-col--coastal .menu-col__index {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-lux);
  border-radius: 50%;
  font-family: var(--font-display, sans-serif);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold-lux);
}
.menu-col--coastal .menu-col__title {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
}
/* Reset the older, unscoped .menu-items (2-col grid card) and .menu-item
   (cream card background) rules defined earlier in this file — those
   rules have no ancestor scoping, so they otherwise bleed into this
   markup too. These selectors use two classes (higher specificity) so
   they win regardless of source order, without touching the original
   rules other pages still rely on. */
.menu-sections--coastal .menu-items--coastal {
  display: block;
  grid-template-columns: none;
}
.menu-items--coastal .menu-item--coastal {
  display: block;
  background: transparent;
  border-radius: 0;
  gap: 0;
}
.menu-items--coastal .menu-item--coastal {
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.28);
  transition: padding-left 0.25s ease;
}
.menu-items--coastal .menu-item--coastal:first-child { padding-top: 4px; }
.menu-items--coastal .menu-item--coastal:last-child { border-bottom: none; padding-bottom: 4px; }
.menu-items--coastal .menu-item--coastal:hover { padding-left: 6px; }
.menu-items--coastal .menu-item__name {
  font-family: var(--font-cormorant, serif);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.menu-items--coastal .menu-item__desc {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.menu-items--coastal-compact .menu-item--coastal { padding: 20px 0; }
.menu-items--coastal-compact .menu-item__name { font-size: 19px; margin-bottom: 0; }
@media (max-width: 720px) {
  .menu-items--coastal .menu-item__name { font-size: 20px; }
  .menu-col--coastal .menu-col__head { margin-bottom: 24px; }
}

/* Menu testimonial strip */
.menu-testimonial {
  background: var(--obsidian);
  padding: 72px 0;
}
.menu-testimonial__quote {
  font-family: var(--font-cormorant, serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--white);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.menu-testimonial__cite {
  display: block;
  text-align: center;
  font-family: var(--font-jost, sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* Menu booking */
.menu-booking {
  background: var(--cream-pale);
  padding: var(--section-md, 80px 0);
}
.menu-booking__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.menu-booking__price {
  font-family: var(--font-cormorant, serif);
  font-size: 28px;
  color: var(--charcoal);
  font-weight: 700;
  margin: 12px 0 6px;
}
.menu-booking__min {
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.menu-booking__note { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 400px; }
.menu-booking__actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* Concept nav (bottom of menu pages) */
.concept-nav {
  background: var(--obsidian);
  padding: 56px 0;
}
.concept-nav--light { background: var(--cream-pale); }
.concept-nav__label { margin-bottom: 24px; display: block; color: var(--gold-muted); }
.concept-nav--light .concept-nav__label { color: var(--gold-muted); }
.concept-nav__links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.concept-nav__item {
  font-family: var(--font-cormorant, serif);
  font-size: 20px;
  color: rgba(250,250,248,0.7);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.25s;
}
.concept-nav--light .concept-nav__item { color: var(--charcoal); }
.concept-nav__item:hover { color: var(--gold-lux); }

/* ── CATERING EXPERIENCES PAGE ──────────── */
.catering-concepts { background: var(--white); }
.catering-concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.catering-concept--alt { direction: ltr; }
.catering-concept--alt .catering-concept__content { order: -1; }
.catering-concept--alt .catering-concept__image { order: 0; }
.catering-concept--vip { background: var(--obsidian); }
.catering-concept__image { overflow: hidden; }
.catering-concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
  transition: transform 0.7s var(--ease-luxury);
}
.catering-concept:hover .catering-concept__image img { transform: scale(1.04); }
.catering-concept__content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catering-concept__content .eyebrow { margin-bottom: 12px; }
.catering-concept--vip .catering-concept__content .eyebrow { color: var(--gold-lux) !important; }
.catering-concept__content h3 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(32px, 3vw, 52px);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
.catering-concept--vip .catering-concept__content h3 { color: var(--white); }
.catering-concept__content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 440px;
}
.catering-concept--vip .catering-concept__content p { color: rgba(250,250,248,0.6); }
.catering-concept__content .btn-ghost,
.catering-concept__content .btn-reserve {
  align-self: flex-start;
}
.catering-concept__details {
  list-style: none;
  padding: 0;
  margin: 12px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.catering-concept__details li {
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-muted);
  padding-left: 14px;
  position: relative;
}
.catering-concept__details li::before { content: '—'; position: absolute; left: 0; font-size: 10px; }

/* ── MENU HUB GRID ──────────────────────── */
.menu-hub-grid { background: var(--obsidian); padding: var(--section-lg, 120px 0); }
.menu-hub-grid__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.menu-hub-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.menu-hub-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-luxury);
  filter: saturate(0.85);
}
.menu-hub-card:hover .menu-hub-card__bg { transform: scale(1.05); filter: saturate(1); }
.menu-hub-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.97) 0%, rgba(8,6,4,0.9) 60%, rgba(8,6,4,0.4) 100%);
  transition: background 0.4s ease;
}
.menu-hub-card:hover .menu-hub-card__overlay { background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.4) 70%); }
.menu-hub-card__content {
  position: relative;
  z-index: 2;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.menu-hub-card__eyebrow { margin-bottom: 8px; color: var(--gold-muted); }
.menu-hub-card__title {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}
.menu-hub-card__desc {
  font-size: 13px;
  color: rgba(250,250,248,0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.menu-hub-card__link {
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lux);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-luxury);
}
.menu-hub-card:hover .menu-hub-card__link { opacity: 1; transform: translateY(0); }
.menu-hub-card--vip .menu-hub-card__overlay { background: linear-gradient(to top, rgba(8,6,4,0.95) 0%, rgba(8,6,4,0.5) 100%); }

/* ── CAREERS PAGE ───────────────────────── */
.careers-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.careers-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.8);
}
.careers-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.8) 0%, rgba(8,6,4,0.25) 65%);
}
.careers-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter, 48px) 72px;
  max-width: var(--max, 1340px);
  margin: 0 auto;
  width: 100%;
}
.careers-hero__content h1 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(48px, 6vw, 88px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  margin: 12px 0 16px;
}
.careers-hero__sub {
  font-family: var(--font-jost, sans-serif);
  font-size: 16px;
  color: rgba(250,250,248,0.65);
  max-width: 520px;
  line-height: 1.7;
}

/* Culture */
.culture-section { background: var(--white); padding: var(--section-lg, 120px 0); }
.culture-section__heading {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(32px, 3vw, 52px);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
}
.culture-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.culture-pillar__num {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: 64px;
  color: rgba(201,169,110,0.15);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.culture-pillar__title {
  font-family: var(--font-cormorant, serif);
  font-size: 28px;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 14px;
}
.culture-pillar__desc { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* Roles */
.roles-section { background: var(--cream-pale); padding: var(--section-lg, 120px 0); }
.roles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.role-card {
  background: var(--white);
  border-radius: var(--radius-lg, 12px);
  padding: 40px 32px;
  border: 1px solid rgba(28,26,22,0.07);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.role-card:hover { box-shadow: var(--shadow-card); }
.role-card__header { margin-bottom: 16px; }
.role-card__title {
  font-family: var(--font-cormorant, serif);
  font-size: 28px;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 6px;
}
.role-card__type { color: var(--gold-muted); }
.role-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.role-card__cta { font-size: 13px; margin-top: auto; }

/* Application form */
.application-section { background: var(--obsidian); padding: var(--section-lg, 120px 0); }
.application-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl, 20px);
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 48px;
}
.essay-questions { margin: 40px 0; border-top: 1px solid rgba(250,250,248,0.08); padding-top: 40px; }
.essay-questions__intro { color: var(--gold-muted) !important; }
.essay-q { margin-bottom: 40px; }
.essay-q__num {
  font-family: var(--font-jost, sans-serif);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.35);
  margin-bottom: 8px;
  display: block;
}
.essay-q__prompt {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}
.essay-q textarea {
  width: 100%;
  background: rgba(250,250,248,0.05);
  border: 1px solid rgba(250,250,248,0.1);
  border-radius: var(--radius, 4px);
  padding: 16px;
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: border-color 0.25s;
}
.essay-q textarea:focus { border-color: var(--gold-muted); }
.essay-q textarea::placeholder { color: rgba(250,250,248,0.25); font-style: italic; }
.word-counter {
  display: block;
  font-size: 11px;
  color: rgba(250,250,248,0.35);
  margin-top: 6px;
  text-align: right;
  transition: color 0.25s;
}
.personality-block {
  background: rgba(201,169,110,0.07);
  border-left: 2px solid var(--gold-muted);
  padding: 24px 28px;
  border-radius: 0 var(--radius, 4px) var(--radius, 4px) 0;
  margin: 40px 0;
}
.personality-block__title {
  font-family: var(--font-cormorant, serif);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.personality-block__desc {
  font-size: 14px;
  color: rgba(250,250,248,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}
.personality-block__link {
  font-family: var(--font-jost, sans-serif);
  font-size: 13px;
  color: var(--gold-lux);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  display: inline-block;
}
.personality-block__link:hover { color: var(--white); }
.personality-block__note {
  font-size: 12px;
  color: rgba(250,250,248,0.4);
  margin-top: 12px;
  line-height: 1.6;
}
.personality-block__note a { color: var(--gold-muted); }
.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px dashed rgba(201,169,110,0.35);
  border-radius: var(--radius, 4px);
  cursor: pointer;
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  color: rgba(250,250,248,0.55);
  transition: border-color 0.25s, color 0.25s;
  position: relative;
}
.file-upload-label:hover { border-color: var(--gold-muted); color: var(--white); }

/* Application card form field overrides (dark bg) */
.application-card .form-field input,
.application-card .form-field select,
.application-card .form-field textarea {
  color: var(--white);
  border-bottom-color: rgba(250,250,248,0.2);
}
.application-card .form-field label { color: rgba(250,250,248,0.4); }
.application-card .form-field input:focus,
.application-card .form-field select:focus {
  border-bottom-color: var(--gold-lux);
}

/* ── SERVICE AREAS PAGE ─────────────────── */
.areas-intro { background: var(--white); padding: var(--section-lg, 120px 0); }
.areas-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.areas-intro__image { border-radius: var(--radius-lg, 12px); overflow: hidden; }
.areas-intro__image img { width: 100%; height: 420px; object-fit: cover; display: block; filter: saturate(0.85); }
.areas-intro__text h2 {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 20px;
}
.areas-intro__text p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }

.county-sections { background: var(--cream-pale); padding: var(--section-lg, 120px 0); }
.county-section {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}
.county-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.county-section__header { margin-bottom: 28px; }
.county-section__name {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 12px;
}
.county-section__desc { font-size: 15px; color: var(--text-muted); line-height: 1.8; max-width: 640px; }
.city-tags-lux { display: flex; flex-wrap: wrap; gap: 10px; }
.city-tag {
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.city-tag:hover { background: var(--gold-lux); border-color: var(--gold-lux); color: var(--obsidian); }

.areas-note {
  background: var(--white);
  padding: var(--section-md, 80px 0);
}
.areas-note__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.areas-note__travel h3,
.areas-note__not-listed h3 {
  font-family: var(--font-cormorant, serif);
  font-size: 26px;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 12px;
}
.areas-note__travel p,
.areas-note__not-listed p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── CTA STRIP ──────────────────────────── */
.cta-strip {
  background: var(--obsidian);
  padding: 100px 0;
  text-align: center;
}
.cta-strip__heading {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(32px, 4vw, 60px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 1.1;
}

/* ── AREAS SIMPLE (Homepage) ────────────── */
.areas-simple { background: var(--cream-pale); padding: var(--section-lg, 120px 0); }
.areas-simple__counties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.areas-simple__county h3 {
  font-family: var(--font-cormorant, serif);
  font-size: 22px;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.areas-simple__county p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
}

/* ── ABOUT HERO (Private Chef hero override) ── */
.private-chef-hero {
  background: var(--obsidian);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--gutter, 48px);
  position: relative;
  overflow: hidden;
}
.private-chef-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.private-chef-hero__eyebrow { display: block; margin-bottom: 24px; color: var(--gold-muted); }
.private-chef-hero__headline {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  white-space: pre-line;
  margin-bottom: 28px;
  text-align: left;
}
.private-chef-hero__sub {
  font-family: var(--font-jost, sans-serif);
  font-weight: 300;
  font-size: 18px;
  color: rgba(250,250,248,0.55);
  margin-bottom: 48px;
  text-align: left;
}
.private-chef-hero__cta { display: inline-block; }

/* PC features */
.private-chef-features { background: var(--white); padding: var(--section-lg, 120px 0); }
.private-chef-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.pc-feature__title {
  font-family: var(--font-cormorant, serif);
  font-size: 26px;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.pc-feature__desc { font-size: 15px; color: var(--text-muted); line-height: 1.85; }

/* Exclusivity callout */
.exclusivity-callout { background: var(--cream-pale); padding: 80px 0; }
.exclusivity-callout__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 40px;
  border-left: 2px solid var(--gold-lux);
}
.exclusivity-callout__inner p {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.exclusivity-callout__inner p:last-child { margin-bottom: 0; color: var(--text-muted); font-weight: 400; }

/* PC mark (logo watermark) */
.pc-mark { padding: 80px 0; background: var(--obsidian); }
.pc-mark__inner { text-align: center; }
.pc-mark__name {
  font-family: var(--font-jost, sans-serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-lux);
  line-height: 1;
}
.pc-mark__script {
  font-family: var(--font-cormorant, serif);
  font-style: italic;
  font-size: 42px;
  color: rgba(250,250,248,0.7);
  margin-top: 4px;
}

/* VIP features */
.vip-features { background: var(--white); padding: var(--section-lg, 120px 0); }
.vip-features__intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.vip-features__intro p {
  font-family: var(--font-cormorant, serif);
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 12px;
}
.vip-features__intro p:first-child { font-weight: 700; }

/* ── TESTIMONIAL FEATURED (inner/mark/quote/cite) ───
   Base styling for the __inner/__mark/__quote/__cite markup
   pattern used by testimonial-featured sections (was missing —
   these elements were rendering unstyled). */
.testimonial-featured__inner { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter, 40px); }
.testimonial-featured__mark {
  font-family: var(--font-cormorant);
  font-size: 120px;
  line-height: 0.6;
  color: rgba(201,169,110,0.15);
  margin-bottom: 32px;
  display: block;
}
.testimonial-featured__quote {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.6;
  color: var(--smoke);
  margin: 0 auto 32px;
}
.testimonial-featured__cite {
  font-family: var(--font-jost);
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lux);
}

/* ── TESTIMONIAL FEATURED LIGHT ─────────── */
.testimonial-featured--light {
  background: var(--cream-pale);
}
.testimonial-featured--light .testimonial-featured__quote { color: var(--charcoal); }
.testimonial-featured--light .testimonial-featured__mark { color: rgba(201,169,110,0.2); }
.testimonial-featured--light .testimonial-featured__cite { color: var(--text-muted); }

/* ── BRAND STATEMENT ────────────────────── */
.brand-statement {
  background: var(--cream-pale);
  padding: 100px var(--gutter, 48px);
  text-align: center;
}
.brand-statement__quote {
  font-family: var(--font-cormorant, serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--charcoal);
  line-height: 1.55;
  max-width: 860px;
  margin: 0 auto;
  font-weight: 400;
}

/* ── TRUST STRIP ────────────────────────── */
.trust-strip { background: var(--cream-pale); padding: 64px 0; }
.trust-strip__label { text-align: center; display: block; margin-bottom: 32px; }
.trust-strip__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo { text-align: center; }
.trust-logo__placeholder {
  font-family: var(--font-jost, sans-serif);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(122,106,88,0.5);
  /* REPLACE: Swap with real <img> venue logo tags (SVG/PNG, grayscale) */
}

/* ── FOOTER LUX ─────────────────────────── */
.footer-lux {
  background: var(--obsidian);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.footer-lux__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,250,248,0.07);
  margin-bottom: 32px;
}
.footer-lux__logo {
  font-family: var(--font-jost, sans-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-lux__logo span { color: var(--gold-lux); font-family: var(--font-cormorant, serif); font-size: 20px; font-weight: 700; }
.footer-lux__tagline {
  font-family: var(--font-cormorant, serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(250,250,248,0.45);
  margin-bottom: 20px;
}
.footer-lux__contact { margin-bottom: 20px; }
.footer-lux__contact a {
  display: block;
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  color: rgba(250,250,248,0.6);
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.2s;
}
.footer-lux__contact a:hover { color: var(--gold-lux); }
.footer-lux__social { margin-bottom: 20px; }
.footer-lux__social a {
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-lux__social a:hover { color: var(--white); }
.footer-lux__led {
  font-size: 11px;
  color: rgba(250,250,248,0.25);
  letter-spacing: 0.06em;
}
.footer-lux__col-heading {
  font-family: var(--font-jost, sans-serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
}
.footer-lux__col ul { list-style: none; padding: 0; margin: 0; }
.footer-lux__col ul li { margin-bottom: 10px; }
.footer-lux__col ul a {
  font-family: var(--font-jost, sans-serif);
  font-size: 14px;
  color: rgba(250,250,248,0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-lux__col ul a:hover { color: var(--white); }
.footer-lux__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-lux__bottom p {
  font-family: var(--font-jost, sans-serif);
  font-size: 12px;
  color: rgba(250,250,248,0.25);
}

/* ── STICKY MOBILE CTA BAR ──────────────── */
.sticky-cta-lux {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--obsidian);
  border-top: 1px solid var(--gold-muted);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-luxury, ease);
}
.sticky-cta-lux.visible { transform: translateY(0); }
@media (min-width: 640px) { .sticky-cta-lux { display: none; } }
.sticky-cta-lux__call,
.sticky-cta-lux__book {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--font-jost, sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.sticky-cta-lux__call { color: var(--white); border-right: 1px solid var(--gold-muted); }
.sticky-cta-lux__book { color: var(--gold-lux); }
.sticky-cta-lux__call:hover { background: rgba(250,250,248,0.05); }
.sticky-cta-lux__book:hover { background: rgba(201,169,110,0.1); }

/* ── MOBILE NAV ─────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--obsidian);
  z-index: 300;
  padding: 80px 40px 48px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-luxury, ease);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: rgba(250,250,248,0.55);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.mobile-nav__close:hover { color: var(--white); }
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}
.mobile-nav ul li { border-bottom: 1px solid rgba(250,250,248,0.07); }
.mobile-nav ul a {
  display: block;
  font-family: var(--font-cormorant, serif);
  font-size: 32px;
  font-weight: 700;
  color: rgba(250,250,248,0.8);
  text-decoration: none;
  padding: 16px 0;
  transition: color 0.2s;
}
.mobile-nav ul a:hover,
.mobile-nav ul a.active { color: var(--white); }
.mobile-nav__cta { margin-top: 32px; text-align: center; }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,6,4,0.7);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ── REVEAL LINE ANIMATION ──────────────── */
.reveal-line { display: block; overflow: hidden; }
.reveal-line__inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s var(--ease-luxury, ease);
}
.reveal-line__inner.in { transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card--featured { transform: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-lux__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .concept-split__grid { grid-template-columns: 1fr; }
  .concept-card { min-height: 55vw; }
  .concept-card__desc { max-height: 120px; opacity: 1; }
  .concept-card__cta { opacity: 1; transform: none; }

  .tony-story { grid-template-columns: 1fr; }
  .tony-story__image { height: 60vw; }
  .tony-story__image img { height: 100%; }
  .tony-story__content { padding: 48px 32px; }

  .events-lux__grid { grid-template-columns: 1fr; }

  .case-study__inner { grid-template-columns: 1fr; gap: 48px; }
  .case-study__stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }

  .how-it-works__steps { flex-direction: column; align-items: center; gap: 32px; }
  .how-step__arrow { display: none; }

  .catering-concept { grid-template-columns: 1fr; }
  .catering-concept__image { height: 50vw; }
  .catering-concept--alt .catering-concept__content { order: 0; }
  .catering-concept--alt .catering-concept__image { order: -1; }
  .catering-concept__content { padding: 48px 32px; }

  .about-story__inner { grid-template-columns: 1fr; gap: 48px; }
  .values-lux__grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-lux__grid { grid-template-columns: 1fr; gap: 24px; }
  .private-chef-features__grid { grid-template-columns: 1fr; gap: 40px; }

  .culture-pillars { grid-template-columns: 1fr; gap: 40px; }
  .roles-grid { grid-template-columns: 1fr; }

  .areas-intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .areas-note__inner { grid-template-columns: 1fr; gap: 40px; }
  .areas-simple__counties { grid-template-columns: 1fr; gap: 32px; }

  .contact-body__inner { grid-template-columns: 1fr; gap: 48px; }
  .menu-hub-grid__inner { grid-template-columns: 1fr; }
  .menu-hub-card { height: 360px; }
  .menu-sections__grid { grid-template-columns: 1fr; gap: 48px; }
  .menu-booking__inner { flex-direction: column; align-items: flex-start; }
  .pkg-testimonials__grid { grid-template-columns: 1fr; }

  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
}

@media (max-width: 640px) {
  .hero-cinematic__headline { font-size: clamp(48px, 13vw, 80px); }
  .packages-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-card { padding: 36px 24px; }
  .inquiry-card--contact { border-radius: 0; }
  .application-card { padding: 36px 20px; }
  .footer-lux__grid { grid-template-columns: 1fr; }
  .footer-lux__bottom { flex-direction: column; text-align: center; }
  .private-chef-hero__headline { font-size: clamp(44px, 13vw, 80px); }
}


/* ══════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES — v1.0
   Warm cream / editorial white palette throughout.
   Photo-backed heroes retain their overlay drama.
   Footer stays dark (standard luxury pattern).
══════════════════════════════════════════════════════ */

/* ── NAVIGATION — white on scroll ─────────────────── */
.nav.scrolled,
.nav.solid {
  background: rgba(247, 243, 238, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(28,26,22,0.10);
}
.nav.scrolled .nav__logo-primary,
.nav.solid .nav__logo-primary {
  color: var(--smoke);
}
.nav.scrolled .nav__links a,
.nav.solid .nav__links a {
  color: rgba(28,26,22,0.75);
}
.nav.scrolled .nav__links a:hover,
.nav.solid .nav__links a:hover,
.nav.scrolled .nav__links a.active,
.nav.solid .nav__links a.active {
  color: var(--smoke);
}
.nav.scrolled .nav__links a::after,
.nav.solid .nav__links a::after {
  background: var(--gold-lux);
}
.nav.scrolled .nav__hamburger span,
.nav.solid .nav__hamburger span {
  background: var(--smoke);
}

/* Pages that start with a solid nav (data-solid="true")
   get the light nav from the very first render */
[data-solid="true"].nav {
  background: rgba(247,243,238,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(28,26,22,0.10);
}
[data-solid="true"].nav .nav__logo-primary { color: var(--smoke); }
[data-solid="true"].nav .nav__links a { color: rgba(28,26,22,0.75); }
[data-solid="true"].nav .nav__links a:hover,
[data-solid="true"].nav .nav__links a.active { color: var(--smoke); }
[data-solid="true"].nav .nav__hamburger span { background: var(--smoke); }

/* ── PAGE HERO TEXT (no-image text heroes) ──────────
   Override obsidian to warm cream */
.page-hero-text {
  background: var(--cream-pale);
}
.page-hero-text h1 {
  color: var(--smoke);
}
.page-hero-text .eyebrow {
  color: var(--gold-muted);
}
.page-hero-text__sub {
  color: rgba(28,26,22,0.62);
}
/* Keep the --light variant working (already correct) */
.page-hero-text--light {
  background: var(--cream-pale);
}

/* California coastal gradient — sky to ocean to sand */
.page-hero-text--coastal {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,224,168,0.35) 0%, transparent 60%),
    linear-gradient(180deg, #FDF6E9 0%, #DCEEF0 22%, #7FB8C4 48%, #2E7A8C 72%, #1C5A6B 100%) !important;
  position: relative;
  overflow: hidden;
}
.page-hero-text--coastal::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent 0%, rgba(230,196,140,0.55) 100%);
  pointer-events: none;
}
.page-hero-text--coastal h1 { color: #FAFAF8 !important; text-shadow: 0 2px 20px rgba(15,50,60,0.35); }
.page-hero-text--coastal .eyebrow { color: #FFE8B8 !important; }
.page-hero-text--coastal .page-hero-text__sub { color: rgba(250,250,248,0.88) !important; }

/* ── BRAND STATEMENT ───────────────────────────────
   Already on cream-pale — fine as-is */

/* ── FEATURED TESTIMONIAL ──────────────────────────
   Dark charcoal → warm white */
.testimonial-featured {
  background: #fff;
  border-top: 1px solid rgba(28,26,22,0.08);
  border-bottom: 1px solid rgba(28,26,22,0.08);
}
.testimonial-featured__text {
  color: var(--smoke);
}
.testimonial-featured__quote-mark {
  color: rgba(201,169,110,0.25);
}

/* ── TESTIMONIAL CARDS (3-up grid) ─────────────────
   Dark smoke → white cards on cream bg */
.testimonials-lux {
  background: var(--cream-pale);
  gap: 16px;
  padding: 16px;
}
.testimonial-card-lux {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(28,26,22,0.07);
}
.testimonial-card-lux:hover {
  background: #fff;
  box-shadow: 0 8px 40px rgba(28,26,22,0.12);
  transform: translateY(-3px);
}
.testimonial-card-lux__text {
  color: rgba(28,26,22,0.82);
}

/* ── GHOST BUTTON — dark variant for light sections ─
   Override the white-text ghost button to dark */
.inquiry-card .btn-ghost,
.page-hero-text .btn-ghost,
.brand-statement .btn-ghost,
.testimonial-featured .btn-ghost,
.areas-intro .btn-ghost,
.areas-note .btn-ghost,
.culture-section .btn-ghost,
.roles-section .btn-ghost,
.application-section .btn-ghost,
.role-card .btn-ghost,
.catering-concepts .btn-ghost,
.menu-booking .btn-ghost {
  color: var(--smoke);
  border-color: rgba(28,26,22,0.3);
}
.inquiry-card .btn-ghost:hover,
.page-hero-text .btn-ghost:hover,
.brand-statement .btn-ghost:hover,
.testimonial-featured .btn-ghost:hover,
.areas-intro .btn-ghost:hover,
.areas-note .btn-ghost:hover,
.culture-section .btn-ghost:hover,
.roles-section .btn-ghost:hover,
.application-section .btn-ghost:hover,
.role-card .btn-ghost:hover,
.catering-concepts .btn-ghost:hover,
.menu-booking .btn-ghost:hover {
  color: var(--obsidian);
  border-color: var(--smoke);
  background: rgba(28,26,22,0.05);
}

/* ── INQUIRY SECTION ───────────────────────────────
   Obsidian bg → warm cream; white card still pops */
.inquiry-section {
  background: var(--cream-pale);
}
.inquiry-section .inquiry-card__title,
.inquiry-section .inquiry-card__heading {
  color: var(--smoke);
}
.inquiry-section .inquiry-card__sub {
  color: rgba(28,26,22,0.6);
}

/* ── CTA STRIP ─────────────────────────────────────
   Obsidian → cream-pale with dark type */
.cta-strip {
  background: var(--cream-pale);
  border-top: 1px solid rgba(28,26,22,0.08);
}
.cta-strip__title,
.cta-strip__heading {
  color: var(--smoke) !important;
}
.cta-strip__sub {
  color: rgba(28,26,22,0.55);
}

/* On CTA strip, ghost button gets dark treatment */
.cta-strip .btn-ghost {
  color: var(--smoke);
  border-color: rgba(28,26,22,0.3);
}
.cta-strip .btn-ghost:hover {
  color: var(--obsidian);
  border-color: var(--smoke);
  background: rgba(28,26,22,0.05);
}

/* ── PACKAGES PAGE HERO ────────────────────────────
   pkg-hero is currently set as an obsidian no-image hero */
.pkg-hero {
  background: var(--cream-pale);
}
.pkg-hero__heading { color: var(--smoke) !important; }
.pkg-hero__sub { color: rgba(28,26,22,0.6) !important; }

/* ── PACKAGE CARDS — lighter base cards ────────────
   The regular tier cards have light bg already;
   just ensure the section bg is cream */
.packages-section {
  background: #fff;
}

/* ── ABOUT STATS ROW ───────────────────────────────
   Already on cream-pale — fine */

/* ── CONTACT PAGE HEADER ───────────────────────────
   Contact page starts with obsidian header — flip it */
.contact-header {
  background: var(--cream-pale);
}
.contact-header__heading { color: var(--smoke) !important; }
.contact-header__sub { color: rgba(28,26,22,0.6) !important; }

/* The contact body section */
.contact-body {
  background: #fff;
}

/* ── HERO CINEMATIC — lighter overlay touch ─────────
   Slightly warm up the dark overlay so photos breathe more */
.hero-cinematic__overlay {
  background: linear-gradient(
    105deg,
    rgba(8,6,4,0.72) 0%,
    rgba(8,6,4,0.42) 60%,
    rgba(8,6,4,0.15) 100%
  );
}

/* ── CATERING CONCEPTS (alternating light/dark) ─────
   Dark-background alt cards get a cream bg instead */
.catering-concept {
  background: #fff;
}
.catering-concept--alt {
  background: var(--cream-pale);
}
.catering-concept--vip.catering-concept--alt {
  background: var(--obsidian) !important;
}
.catering-concept__content h3 {
  color: var(--smoke);
}
.catering-concept__content p {
  color: rgba(28,26,22,0.72);
}
.catering-concept__details li {
  color: rgba(28,26,22,0.6);
}
.catering-concept--vip .catering-concept__details li {
  color: var(--gold-lux) !important;
}

/* ── SERVICE AREAS PAGE ─────────────────────────────
   Already largely light — just ensure county sections */
.county-sections { background: #fff; }
.county-section__name { color: var(--smoke); }
.county-section__desc { color: rgba(28,26,22,0.65); }

/* City tags (pill badges) — cream bg on white section */
.city-tags-lux { background: transparent; }
.city-tag {
  background: var(--cream-pale);
  color: var(--smoke);
  border: 1px solid rgba(201,169,110,0.35);
}

/* ── CAREERS PAGE ───────────────────────────────────
   Culture + roles sections on white/cream */
.culture-section { background: var(--cream-pale); }
.culture-pillar__num { color: var(--gold-lux); }
.culture-pillar__title { color: var(--smoke); }
.culture-pillar__desc { color: rgba(28,26,22,0.68); }

.roles-section { background: #fff; }
.role-card {
  border-color: rgba(28,26,22,0.10);
  background: #fff;
}
.role-card:hover {
  border-color: var(--gold-lux);
  box-shadow: 0 8px 40px rgba(201,169,110,0.12);
}
.role-card__title { color: var(--smoke); }
.role-card__desc { color: rgba(28,26,22,0.68); }

.application-section { background: var(--cream-pale); }

/* ── AREAS NOTE SECTION ─────────────────────────────
   Travel note below service area cities */
.areas-note { background: #fff; border-top: 1px solid rgba(28,26,22,0.08); }
.areas-note h3 { color: var(--smoke); }
.areas-note p { color: rgba(28,26,22,0.68); }

/* ── HOW IT WORKS ───────────────────────────────────
   Steps on cream bg */
.how-it-works { background: var(--cream-pale); }
.how-step__num { color: var(--gold-lux); }
.how-step__title { color: var(--smoke) !important; }
.how-step__desc { color: rgba(28,26,22,0.65); }

/* ── CASE STUDY ─────────────────────────────────────
   On white bg */
.case-study { background: #fff; }
.case-study__stat-value { color: var(--smoke); }
.case-study__stat-label { color: rgba(28,26,22,0.55); }
.case-study__quote { color: rgba(28,26,22,0.80); }

/* ── EVENTS GRID ────────────────────────────────────
   Event tiles use photo bgs — keep as-is. Just ensure
   the section bg doesn't conflict. */
.events-lux { background: var(--cream-pale); }
.events-lux__header h2 { color: var(--smoke) !important; }

/* ── TRUST STRIP ────────────────────────────────────
   Already cream-pale — fine */

/* ── TONY STORY SECTION ─────────────────────────────
   Already white/cream — just ensure text */
.tony-story { background: #fff; }
.tony-story__heading { color: var(--smoke); }
.tony-story__body { color: rgba(28,26,22,0.72); }

/* ── AREAS INTRO ────────────────────────────────────
   Coverage intro section */
.areas-intro { background: #fff; }
.areas-intro__text h2 { color: var(--smoke); }
.areas-intro__text p { color: rgba(28,26,22,0.72); }

/* ── SERVICE AREAS SIMPLE (homepage strip) ──────────
   County overview on homepage */
.areas-simple { background: var(--cream-pale); }
.areas-simple__county-name { color: var(--smoke); }
.areas-simple__city { color: rgba(28,26,22,0.65); }

/* ── PACKAGE COMPARISON SECTION ─────────────────────
   Comparison table and FAQ section */
.compare-section { background: var(--cream-pale); }
.pkg-faq-section { background: #fff; }
.faq-item { border-bottom-color: rgba(28,26,22,0.10); }
.faq-item__trigger { color: var(--smoke) !important; }
.faq-item__trigger:hover { color: var(--obsidian) !important; }
.faq-item__body { color: rgba(28,26,22,0.68) !important; }

/* ── MENU PAGES — sections below hero ──────────────
   Menu section backgrounds */
.menu-intro { background: var(--cream-pale); }
.menu-sections { background: #fff; }
.menu-section-title { color: var(--smoke) !important; }
.menu-item__name { color: var(--smoke) !important; }
.menu-item__desc { color: rgba(28,26,22,0.65) !important; }
.menu-item__price { color: var(--gold-muted) !important; }
.menu-booking { background: var(--cream-pale); }
.menu-booking__heading { color: var(--smoke) !important; }
.menu-booking__sub { color: rgba(28,26,22,0.65) !important; }

/* Menu testimonial (inline) */
.menu-testimonial { background: #fff; border-color: rgba(28,26,22,0.08); }
.menu-testimonial__quote { color: var(--smoke) !important; }
.menu-testimonial__cite { color: var(--gold-muted) !important; }

/* ── ABOUT PAGE — story, values ─────────────────────
   Text on white/cream */
.about-story { background: #fff; }
.about-story__heading { color: var(--smoke); }
.about-story__body p { color: rgba(28,26,22,0.72); }

.values-lux { background: var(--cream-pale); }
.value-item__title { color: var(--smoke) !important; }
.value-item__desc { color: rgba(28,26,22,0.68) !important; }

.team-section { background: #fff; }
.team-member__name { color: var(--smoke) !important; }
.team-member__role { color: var(--gold-muted) !important; }

/* ── PRIVATE CHEF PAGE — keep dark for VIP exclusivity ─
   Private chef hero stays obsidian (intentional contrast).
   Features section and form section → cream/white */
.private-chef-features { background: var(--cream-pale); }
.private-chef-feature__title { color: var(--smoke) !important; }
.private-chef-feature__desc { color: rgba(28,26,22,0.68) !important; }

.private-chef-exclusivity {
  background: #fff !important;
  border-color: rgba(201,169,110,0.35) !important;
  color: var(--smoke) !important;
}
.private-chef-exclusivity p { color: rgba(28,26,22,0.75) !important; }

.private-chef-form-section { background: var(--cream-pale) !important; }

/* Single testimonial on private chef page */
.private-chef-testimonial { background: var(--cream-pale) !important; }
.private-chef-testimonial .testimonial-featured__text { color: var(--smoke); }
.private-chef-testimonial .testimonial-featured__quote-mark {
  color: rgba(201,169,110,0.20);
}

/* ── NAV CENTERING ─────────────────────────────────── */
/* Give nav__inner a max-width container so content
   sits centered rather than flush-left */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-lux, 1340px);
  margin: 0 auto;
}

/* ── CULTURE PILLARS — "How we work" ───────────────── */
/* Pillar numbers were 15% opacity = nearly invisible
   on the cream background */
.culture-pillar__num {
  color: rgba(201,169,110,0.45) !important;
}
/* Section heading on cream background */
.culture-section__heading {
  color: var(--smoke) !important;
}

/* ── APPLICATION CARD — "Your application" ─────────── */
/* Card stays dark (charcoal). The text INSIDE needs
   higher opacity to actually be readable */
.essay-q__num {
  color: rgba(250,250,248,0.60) !important;
}
.essay-q__prompt {
  color: var(--white) !important;
}
.word-counter {
  color: rgba(250,250,248,0.55) !important;
}
.application-card .form-field label {
  color: rgba(250,250,248,0.65) !important;
}
.essay-questions {
  border-top-color: rgba(250,250,248,0.15) !important;
}
/* The eyebrow "YOUR APPLICATION" and heading above the form
   are inside the dark card — keep them readable */
.application-card .eyebrow {
  color: var(--gold-lux) !important;
}
.application-card .inquiry-card__heading {
  color: var(--white) !important;
}
.application-card .inquiry-card__sub {
  color: rgba(250,250,248,0.65) !important;
}
/* File upload label on dark card */
.file-upload-label {
  color: rgba(250,250,248,0.70) !important;
  border-color: rgba(250,250,248,0.2) !important;
}

/* ── REMAINING WHITE-ON-LIGHT FIXES ────────────────── */
/* Any eyebrow, sub-heading or body text that still
   uses near-white colors on cream/white sections */
.areas-intro__text h2,
.areas-intro__text p,
.about-story__heading,
.how-it-works .how-step__num,
.how-it-works .how-step__title,
.how-it-works .how-step__desc {
  color: var(--smoke) !important;
}

/* Trust strip text */
.trust-logo-placeholder {
  color: rgba(28,26,22,0.40) !important;
}

/* Brand statement text on cream */
.brand-statement__text {
  color: var(--smoke) !important;
}

/* Stats row on cream */
.stat-item__value { color: var(--smoke) !important; }
.stat-item__label { color: rgba(28,26,22,0.55) !important; }

/* Inquiry section text above the white card */
.inquiry-section .eyebrow { color: var(--gold-muted) !important; }

/* Contact page header text */
.contact-header__eyebrow { color: var(--gold-muted) !important; }

/* Packages page — outside the package cards */
.packages-section .eyebrow { color: var(--gold-muted) !important; }
.packages-section h2 { color: var(--smoke) !important; }
.packages-section p { color: rgba(28,26,22,0.68) !important; }

/* Compare table header on cream section */
.compare-table th { color: var(--smoke) !important; }
.compare-table td { color: rgba(28,26,22,0.75) !important; }

/* ── ROLE CARDS — text inside ──────────────────────── */
.role-card__title { color: var(--smoke) !important; }
.role-card__type  { color: var(--gold-muted) !important; }
.role-card__desc  { color: rgba(28,26,22,0.68) !important; }

/* ══════════════════════════════════════════════════════
   END LIGHT THEME OVERRIDES
══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   LEGIBILITY FIXES — ensure all text is readable
══════════════════════════════════════════════════════ */

/* Menu item descriptions — darken on white bg */
.menu-item__desc { color: #5c4c3a !important; }
.menu-item__name { color: #1C1A16 !important; }

/* Package card text on white cards — darken */
.package-card:not(.package-card--featured):not(.package-card--vip) .package-card__desc { color: #4a3c2c !important; }
.package-card:not(.package-card--featured):not(.package-card--vip) .package-card__features li { color: #4a3c2c !important; }
.package-card:not(.package-card--featured):not(.package-card--vip) .package-card__name { color: #111009 !important; }
.package-card:not(.package-card--featured):not(.package-card--vip) .package-card__price { color: #1C1A16 !important; }
.package-card:not(.package-card--featured):not(.package-card--vip) .package-card__minimum { color: #5c4c3a !important; }
/* Package card ghost CTA on light cards was inheriting the white-on-dark
   .btn-ghost styling, making the button nearly invisible on the cream card
   background — darken it to match the other light-card legibility fixes. */
.package-card:not(.package-card--featured):not(.package-card--vip) .btn-ghost {
  color: var(--smoke) !important;
  border-color: rgba(28,26,22,0.3) !important;
}
.package-card:not(.package-card--featured):not(.package-card--vip) .btn-ghost:hover {
  color: var(--obsidian) !important;
  border-color: var(--smoke) !important;
  background: rgba(28,26,22,0.05) !important;
}

/* Package card text on dark cards (Signature/VIP) — restore light text
   clobbered by the ".packages-section p" legibility rule above */
.package-card--featured .package-card__desc,
.package-card--vip .package-card__desc { color: rgba(250,250,248,0.6) !important; }
.package-card--vip .package-card__vip-body p { color: rgba(250,250,248,0.65) !important; }

/* Private chef features — now on cream background */
.pc-feature__title { color: var(--smoke) !important; }
.pc-feature__desc  { color: rgba(28,26,22,0.7) !important; }

/* Exclusivity callout text — now on cream background */
.exclusivity-callout p { color: rgba(28,26,22,0.75) !important; font-size: 15px !important; }

/* Contact page info text */
.contact-info__intro  { color: #1C1A16 !important; }
.contact-info__label  { color: #5c4c3a !important; }
.contact-info__value  { color: #1C1A16 !important; font-weight: 500; }
.contact-info__note   { color: #4a3c2c !important; }
.contact-info__response p { color: #1C1A16 !important; font-weight: 600; }

/* Testimonial cards — light version */
.testimonial-card--light .testimonial-card__quote { color: #1C1A16 !important; }
.testimonial-card--light .testimonial-card__name  { color: #1C1A16 !important; }
.testimonial-card--light .testimonial-card__event { color: #5c4c3a !important; }

/* About page story text */
.about-story__text p { color: #3a2c1c !important; line-height: 1.85 !important; }

/* FAQ answers */
.faq-answer p, .faq-answer { color: #3a2c1c !important; }

/* General body text on cream sections */
.pkg-testimonials p { color: #1C1A16 !important; }

/* ══════════════════════════════════════════════════════
   PHOTO STRIP COMPONENT — reusable across pages
══════════════════════════════════════════════════════ */
.photo-strip {
  display: grid;
  gap: 4px;
  overflow: hidden;
}
.photo-strip--2col { grid-template-columns: 1fr 1fr; }
.photo-strip--3col { grid-template-columns: 1fr 1fr 1fr; }
.photo-strip--hero { grid-template-columns: 2fr 1fr; }

.photo-strip__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-luxury, ease);
}
.photo-strip__img:hover { transform: scale(1.03); }

.photo-strip__item {
  overflow: hidden;
  position: relative;
}

/* Full-width cinematic photo band */
.photo-band {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.photo-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-band--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,6,4,0.25) 0%, rgba(8,6,4,0.05) 100%);
  pointer-events: none;
}

/* Hero with background photo */
.page-hero-photo {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-photo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.page-hero-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.65) 100%);
}
.page-hero-photo__content {
  position: relative;
  z-index: 2;
  padding: 120px var(--gutter, 40px);
  max-width: 800px;
  width: 100%;
  min-width: 0;
}
.page-hero-photo__content .eyebrow { color: var(--gold-muted) !important; }

@media (max-width: 640px) {
  .photo-strip--2col,
  .photo-strip--3col,
  .photo-strip--hero { grid-template-columns: 1fr; }
  .photo-strip__img { height: 260px !important; }
  .photo-band { height: 320px; }
}

/* ── FINAL FIX: values grid was collapsing to content-width columns
   instead of splitting evenly — force equal thirds. ── */
.values-lux__grid { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 900px) {
  .values-lux__grid { grid-template-columns: 1fr !important; }
}
