/* =============================================================================
   landing.css — Public-Facing Landing Page Styles
   Inherits design tokens from assets/css/style.css (:root).
   This file maps landing-specific aliases onto the shared system,
   then defines all page-specific layout and components.
   ============================================================================= */

/* ── Token Bridge: map old landing var names → style.css vars ─────────────── */
:root {
  /* Surfaces */
  --bg-base:       var(--bg);
  --bg-surface:    var(--bg2);
  --bg-card:       var(--bg2);
  --bg-input:      var(--bg3);

  /* Text */
  --cream:         var(--text);
  --muted:         var(--text-2);
  --muted-light:   var(--text-2);

  /* Borders */
  --border-subtle: var(--border);

  /* Gold aliases (already defined in style.css) */
  --gold-light:    var(--gold-lt);

  /* Shadows */
  --shadow-gold:   0 0 40px rgba(201,168,76,0.12);

  /* Radii */
  --radius-sm:     var(--r-sm);
  --radius-md:     var(--r-md);
  --radius-lg:     var(--r-lg);

  /* Typography */
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     var(--font-main);
  --menu-font:     'Segoe UI', system-ui, sans-serif;
  --menu-price:    'Trebuchet MS', Georgia, serif;

  /* Transitions */
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Landing-specific: hero background (set via inline style on <header>) */
  --hero-bg:       none;
}

/* Light theme overrides for landing-specific tokens */
[data-theme="light"] {
  --bg-base:    var(--bg);
  --bg-surface: var(--bg2);
  --bg-card:    var(--bg2);
  --bg-input:   var(--bg3);
  --cream:      var(--text);
  --muted:      var(--text-2);
  --muted-light:var(--text-2);
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-base);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: var(--bg-base); }
::-webkit-scrollbar-thumb        { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--gold); }

/* ── Noise Texture ─────────────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: .6;
}

/* ── Utility ───────────────────────────────────────────────────────────────── */
.container { width: min(1200px, 92vw); margin-inline: auto; }

.gold-line {
  display: block; width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-block: 1rem;
}

.section-label {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500; line-height: 1.2; color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── Navigation ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: color-mix(in srgb, var(--bg-base) 88%, transparent);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav__logo {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700;
  color: var(--cream); letter-spacing: .02em;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav__logo span {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-body); font-weight: 500;
}

.nav__links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav__links a { font-size: .875rem; font-weight: 500; color: var(--muted-light); letter-spacing: .04em; position: relative; }
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width var(--transition);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.btn-staff {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1.25rem;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer; font-family: var(--font-body);
}
.btn-staff:hover {
  background: var(--gold); color: var(--bg-base) !important;
  box-shadow: 0 0 20px rgba(201,168,76,.3);
}
.btn-staff svg { flex-shrink: 0; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: var(--transition); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: color-mix(in srgb, var(--bg-base) 97%, transparent);
    backdrop-filter: blur(20px);
    padding: 1.5rem; gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__hamburger { display: flex; }
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: var(--hero-bg);
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, color-mix(in srgb, var(--bg-base) 92%, transparent) 0%, color-mix(in srgb, var(--bg-base) 55%, transparent) 60%, color-mix(in srgb, var(--bg-base) 20%, transparent) 100%),
    linear-gradient(to top, color-mix(in srgb, var(--bg-base) 80%, transparent) 0%, transparent 50%);
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 680px; padding-block: 8rem 5rem;
  animation: heroFadeIn .9s ease both;
}

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

.hero__eyebrow {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: .75rem;
}
.hero__eyebrow::before, .hero__eyebrow::after { content: ''; display: block; height: 1px; background: var(--gold); }
.hero__eyebrow::before { width: 28px; }
.hero__eyebrow::after  { flex: 1; max-width: 40px; }

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -.01em;
  color: var(--cream); margin-bottom: 1.4rem;
}
.hero__title em { display: block; font-style: italic; color: var(--gold); }

.hero__subtitle {
  font-size: 1.05rem; color: var(--muted-light);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75;
}

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

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; background: var(--gold); color: var(--bg-base);
  font-weight: 600; font-size: .9rem; letter-spacing: .05em;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light); color: var(--bg-base);
  box-shadow: 0 6px 28px rgba(201,168,76,.4); transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; background: transparent; color: var(--cream);
  font-weight: 500; font-size: .9rem; letter-spacing: .03em;
  border-radius: var(--radius-sm); border: 1px solid var(--border-subtle);
  cursor: pointer; font-family: var(--font-body);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Ornament Divider ──────────────────────────────────────────────────────── */
.ornament-divider {
  display: flex; align-items: center; gap: 1rem; margin-block: .5rem; color: var(--gold); font-size: .85rem;
}
.ornament-divider::before, .ornament-divider::after {
  content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.section { padding-block: 6rem; }
.section--alt { background: var(--bg-surface); }
.section__header { margin-bottom: 3.5rem; }
.section__header .section-label { margin-bottom: .5rem; }
.section__header .section-title { margin-bottom: .75rem; }
.section__header .section-desc { color: var(--muted); max-width: 520px; font-size: .95rem; line-height: 1.8; }

/* ── Menu ──────────────────────────────────────────────────────────────────── */
.menu-category { margin-bottom: 3.5rem; }
.menu-category__header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.8rem; }
.menu-category__name { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 500; color: var(--cream); white-space: nowrap; }
.menu-category__line { flex: 1; height: 1px; background: linear-gradient(to right, var(--border), transparent); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 1.25rem; }

.menu-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.menu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.menu-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.menu-card:hover::before { opacity: 1; }

.menu-card__name { font-family: var(--menu-font); font-size: 1.1rem; font-weight: 500; color: var(--cream); line-height: 1.3; }
.menu-card__desc { font-size: .85rem; color: var(--muted); line-height: 1.7; flex: 1; }
.menu-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; padding-top: .8rem; border-top: 1px solid var(--border-subtle); }
.menu-card__price { font-size: 1rem; font-weight: 600; color: var(--gold); font-family: var(--menu-price); }
.menu-card__badge { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .2rem .55rem; border-radius: 50px; background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(201,168,76,.25); }
.menu-card__sub-label { display: inline-block; font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: -.1rem; }
.menu-empty { text-align: center; padding: 4rem 2rem; color: var(--muted); font-size: .9rem; }

/* Filter chips */
.menu-filters { margin-bottom: 3rem; display: flex; flex-direction: column; gap: 1.4rem; }
.menu-filters__group { display: flex; flex-direction: column; gap: .65rem; }
.menu-filters__group-label { font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); padding-left: .1rem; }
.menu-filters__chips { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; }
.filter-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .38rem .9rem; border-radius: 50px;
  border: 1px solid var(--border-subtle); background: transparent; color: var(--muted-light);
  font-family: var(--font-body); font-size: .78rem; font-weight: 500;
  cursor: pointer; transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap; user-select: none; -webkit-user-select: none;
}
.filter-chip:hover { border-color: var(--gold); color: var(--cream); }
.filter-chip.active { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); box-shadow: 0 0 0 1px rgba(201,168,76,.2); }
.filter-chip--all { font-weight: 600; }
.filter-chip__dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .6; flex-shrink: 0; transition: opacity var(--transition); }
.filter-chip.active .filter-chip__dot { opacity: 1; }

.menu-card[data-hidden] { display: none; }
.menu-category[data-hidden] { display: none; }
.menu-card:not([data-hidden]) { animation: cardReveal .25s ease both; }
@keyframes cardReveal { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }

/* ── Reviews ───────────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 1.4rem; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
  animation: fadeUp .5s ease both;
}
.review-card:hover { border-color: var(--border); transform: translateY(-2px); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.review-card:nth-child(1) { animation-delay: .05s; }
.review-card:nth-child(2) { animation-delay: .10s; }
.review-card:nth-child(3) { animation-delay: .15s; }
.review-card:nth-child(4) { animation-delay: .20s; }
.review-card:nth-child(5) { animation-delay: .25s; }
.review-card__stars { font-size: 1.1rem; letter-spacing: .05em; }
.review-card__comment { font-size: .9rem; color: var(--muted-light); line-height: 1.8; flex: 1; font-style: italic; }
.review-card__comment::before { content: '\201C'; }
.review-card__comment::after  { content: '\201D'; }
.review-card__meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding-top: .75rem; border-top: 1px solid var(--border-subtle); }
.review-card__name { font-weight: 600; font-size: .875rem; color: var(--cream); }
.review-card__date { font-size: .75rem; color: var(--muted); }
.reviews-empty { color: var(--muted); font-size: .9rem; padding: 2rem 0; }

/* ── Review Form ───────────────────────────────────────────────────────────── */
.review-form-wrap { max-width: 620px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-light); }
.field input, .field select, .field textarea {
  background: var(--bg-input); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  color: var(--cream); font-family: var(--font-body); font-size: .9rem; padding: .75rem 1rem;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  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='%237A7369' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer;
}
.field select option { background: var(--bg-card); }
.btn-submit {
  margin-top: .4rem; width: 100%; padding: .9rem 1.5rem; background: var(--gold); color: var(--bg-base);
  font-family: var(--font-body); font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-submit:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(201,168,76,.35); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.form-notice { margin-top: 1rem; padding: .85rem 1.1rem; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; display: none; }
.form-notice.success { display: block; background: rgba(74,165,100,.12); border: 1px solid rgba(74,165,100,.3); color: #7bcf91; }
.form-notice.error   { display: block; background: rgba(220,70,70,.1);  border: 1px solid rgba(220,70,70,.25); color: #e28a8a; }

/* ── About Strip ───────────────────────────────────────────────────────────── */
.about-strip {
  padding-block: 5rem;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,.05) 0%, transparent 70%), var(--bg-surface);
  border-block: 1px solid var(--border-subtle);
}
.about-strip__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .about-strip__inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-strip__title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; line-height: 1.25; color: var(--cream); margin-bottom: 1.1rem; }
.about-strip__title em { font-style: italic; color: var(--gold); }
.about-strip__text { color: var(--muted); font-size: .95rem; line-height: 1.85; margin-bottom: 1.5rem; }
.about-strip__stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat__value { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat__label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.about-strip__img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-strip__img-wrap::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--border); border-radius: inherit; pointer-events: none; }
.about-strip__img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85) saturate(.9); transition: transform .8s ease, filter .8s ease; }
.about-strip__img-wrap:hover img { transform: scale(1.04); filter: brightness(.92) saturate(1); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-base); border-top: 1px solid var(--border-subtle); padding-block: 3.5rem 2rem; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: .25rem; }
.footer__brand-tag { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 500; }
.footer__tagline { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.footer__col-title { font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer__list a, .footer__list span { font-size: .875rem; color: var(--muted); transition: color var(--transition); }
.footer__list a:hover { color: var(--cream); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); font-size: .78rem; color: var(--muted); }

/* ── Spinner ───────────────────────────────────────────────────────────────── */
.spinner { width: 16px; height: 16px; border: 2px solid rgba(13,13,13,.3); border-top-color: var(--bg-base); border-radius: 50%; animation: spin .6s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scroll Reveal ─────────────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
