/* ============================================================
   AURÉLIA — Fine Dining  •  Stylesheet
   Dark charcoal + gold luxury theme
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0b0b0d;
  --bg-2: #101013;
  --surface: #15151a;
  --surface-2: #1c1c22;
  --surface-3: #232329;
  --line: rgba(201, 162, 39, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --gold: #c9a227;
  --gold-2: #e6cd86;
  --gold-3: #f2e3b3;
  --gold-soft: rgba(201, 162, 39, 0.12);

  --text: #f3efe6;
  --muted: #a39f93;
  --muted-2: #75726a;
  --cream: #f7f3ea;

  --green: #74b072;
  --red: #d9737a;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --radius: 4px;
  --shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 18px 50px -20px rgba(201, 162, 39, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: 0.01em; }

::selection { background: var(--gold); color: #0b0b0d; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #33301f; border-radius: 20px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Helpers ---------- */
.container { width: min(var(--container), 92vw); margin: 0 auto; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-block;
}
.eyebrow.center { display: block; text-align: center; }
.gold { color: var(--gold); }
.serif { font-family: var(--serif); }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 70px 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; }

.section-head { max-width: 660px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(2.3rem, 5vw, 3.4rem); margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.divider-orn { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px 0; }
.divider-orn::before, .divider-orn::after { content: ""; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-orn::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-orn span { color: var(--gold); font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  border-radius: var(--radius); transition: all .45s var(--ease); position: relative;
  white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); color: #0b0b0d; }
.btn-gold:hover { box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.btn-outline { border: 1px solid var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.btn-ghost { color: var(--muted); padding: 10px 0; letter-spacing: 0.18em; }
.btn-ghost:hover { color: var(--gold); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 44px; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  transition: all .5s var(--ease);
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.85) 0%, rgba(11,11,13,0) 100%);
}
.site-header.scrolled {
  padding: 13px 0;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .logo { font-family: var(--serif); font-size: 1.85rem; font-weight: 600; letter-spacing: 0.16em; color: var(--cream); }
.brand .logo b { color: var(--gold); font-weight: 600; }
.brand .tag { font-size: 0.54rem; text-transform: uppercase; letter-spacing: 0.5em; color: var(--muted); margin-top: 5px; padding-left: 4px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--text); position: relative; padding: 6px 0; font-weight: 400;
  transition: color .3s;
}
.nav-links a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  color: var(--text); transition: all .3s; position: relative;
}
.icon-btn:hover { color: var(--gold); background: var(--gold-soft); }
.icon-btn svg { width: 19px; height: 19px; }
.badge-count {
  position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--gold); color: #0b0b0d; font-size: 0.6rem; font-weight: 600;
  border-radius: 10px; display: grid; place-items: center; font-family: var(--sans);
  transform: scale(0); transition: transform .3s var(--ease);
}
.badge-count.show { transform: scale(1); }
.nav-cta { margin-left: 8px; }
.burger { display: none; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: grid; }
}

/* mobile drawer nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 300; background: var(--bg-2);
  transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; padding: 30px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mn-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav a { font-family: var(--serif); font-size: 2rem; padding: 11px 0; border-bottom: 1px solid var(--line-soft); color: var(--text); }
.mobile-nav a:hover { color: var(--gold); padding-left: 12px; transition: all .3s; }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 320; background: rgba(8,8,10,0.97);
  backdrop-filter: blur(10px); opacity: 0; pointer-events: none; transition: opacity .4s;
  display: flex; flex-direction: column; padding-top: 12vh;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-box { width: min(760px, 90vw); margin: 0 auto; }
.search-box input {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--text); font-family: var(--serif); font-size: clamp(1.6rem, 5vw, 2.8rem);
  padding: 18px 0; outline: none;
}
.search-box input::placeholder { color: var(--muted-2); }
.search-hint { color: var(--muted); font-size: .8rem; letter-spacing: .1em; margin-top: 14px; text-transform: uppercase; }
.search-results { width: min(760px, 90vw); margin: 30px auto 0; display: grid; gap: 10px; max-height: 56vh; overflow-y: auto; }
.search-result {
  display: flex; align-items: center; gap: 16px; padding: 12px; border: 1px solid var(--line-soft);
  border-radius: var(--radius); transition: all .3s; cursor: pointer;
}
.search-result:hover { border-color: var(--gold); background: var(--surface); }
.search-result img { width: 56px; height: 56px; object-fit: cover; border-radius: 3px; }
.search-result h4 { font-size: 1.3rem; font-weight: 500; }
.search-result .sr-meta { color: var(--muted); font-size: .8rem; }
.search-result .sr-price { margin-left: auto; color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.search-close { position: absolute; top: 30px; right: 5vw; }

/* ---------- Hero (home) ---------- */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.6) 50%, rgba(8,8,10,0.4) 100%); }
.hero-bg::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 70% 50%, transparent, rgba(8,8,10,0.7)); }
.hero-inner { position: relative; z-index: 2; max-width: 720px; padding: 120px 0; }
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: 1; margin: 22px 0; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.18rem; color: var(--muted); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--muted); font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-scroll .line { width: 1px; height: 50px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.hero-stats { display: flex; gap: 50px; margin-top: 54px; flex-wrap: wrap; }
.hero-stats .stat .num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); }
.hero-stats .stat .lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--serif); font-size: 1.5rem; color: var(--muted); display: inline-flex; align-items: center; gap: 60px; }
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Food cards ---------- */
.food-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.food-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: transform .5s var(--ease), border-color .5s, box-shadow .5s; position: relative;
  display: flex; flex-direction: column;
}
.food-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.food-media { position: relative; aspect-ratio: 4/3.2; overflow: hidden; }
.food-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.food-card:hover .food-media img { transform: scale(1.08); }
.food-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,0.85)); }
.food-tags { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }
.tag-pill {
  font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500;
  padding: 5px 10px; border-radius: 2px; backdrop-filter: blur(6px); background: rgba(0,0,0,0.4);
  border: 1px solid var(--line); color: var(--gold-2);
}
.tag-pill.chef { background: var(--gold); color: #0b0b0d; border-color: var(--gold); }
.tag-pill.vegan, .tag-pill.vegetarian { color: var(--green); border-color: rgba(116,176,114,0.4); }
.tag-pill.spicy { color: #e89b6b; border-color: rgba(232,155,107,0.4); }
.tag-pill.luxury { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #0b0b0d; }

.fav-btn {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(11,11,13,0.55); backdrop-filter: blur(6px);
  display: grid; place-items: center; border: 1px solid var(--line-soft); transition: all .3s;
}
.fav-btn svg { width: 18px; height: 18px; stroke: var(--cream); fill: none; transition: all .3s; }
.fav-btn:hover { border-color: var(--gold); }
.fav-btn.active svg { fill: var(--gold); stroke: var(--gold); }
.fav-btn.active { background: var(--gold-soft); }

.food-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.food-cat { font-size: .62rem; text-transform: uppercase; letter-spacing: .24em; color: var(--gold); margin-bottom: 8px; }
.food-card h3 { font-size: 1.55rem; margin-bottom: 8px; transition: color .3s; }
.food-card:hover h3 { color: var(--gold-2); }
.food-desc { color: var(--muted); font-size: .9rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.food-meta { display: flex; align-items: center; gap: 16px; font-size: .76rem; color: var(--muted); margin-bottom: 18px; }
.food-meta .mi { display: inline-flex; align-items: center; gap: 5px; }
.food-meta svg { width: 14px; height: 14px; color: var(--gold); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 14px; height: 14px; }
.rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.rating-row .rv { font-size: .76rem; color: var(--muted); }

.food-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.price { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); font-weight: 500; }
.price small { font-size: .85rem; color: var(--muted); }
.add-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--line); font-size: .68rem; text-transform: uppercase;
  letter-spacing: .14em; transition: all .35s; color: var(--text);
}
.add-btn svg { width: 15px; height: 15px; }
.add-btn:hover { background: var(--gold); color: #0b0b0d; border-color: var(--gold); }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; margin-bottom: 44px; padding-bottom: 26px; border-bottom: 1px solid var(--line-soft); }
.filter-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 10px 20px; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  border: 1px solid var(--line-soft); border-radius: 40px; color: var(--muted); transition: all .35s;
}
.chip:hover { color: var(--text); border-color: var(--line); }
.chip.active { background: var(--gold); color: #0b0b0d; border-color: var(--gold); }
.filter-tools { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filter-search { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--line-soft); border-radius: 40px; min-width: 200px; }
.filter-search input { background: transparent; border: none; outline: none; color: var(--text); width: 100%; font-size: .85rem; }
.filter-search svg { width: 16px; height: 16px; color: var(--gold); }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 40px;
  padding: 10px 38px 10px 18px; color: var(--text); font-size: .78rem; cursor: pointer; outline: none;
}
.select-wrap::after { content: "▾"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--gold); pointer-events: none; font-size: .7rem; }
.results-count { color: var(--muted); font-size: .82rem; margin-bottom: 24px; }
.results-count b { color: var(--gold); }

/* ---------- Section: split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; border-radius: var(--radius); }
.split-media .frame { position: absolute; inset: 18px; border: 1px solid var(--gold); pointer-events: none; z-index: 2; mix-blend-mode: overlay; }
.split-media .badge-float {
  position: absolute; bottom: -26px; right: -26px; background: var(--surface-2); border: 1px solid var(--line);
  padding: 24px 30px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center;
}
.split-media .badge-float .n { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.split-media .badge-float .l { font-size: .62rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); margin-top: 6px; }
.split-text h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: 16px 0 20px; }
.split-text p { color: var(--muted); margin-bottom: 18px; }
.split-feats { list-style: none; margin: 26px 0; display: grid; gap: 14px; }
.split-feats li { display: flex; gap: 14px; align-items: flex-start; }
.split-feats li svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.split-feats li b { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; display: block; }
.split-feats li span { color: var(--muted); font-size: .9rem; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.rev .split-media { order: 0; }
  .split-media .badge-float { right: 16px; bottom: 16px; }
}

/* ---------- Steps / how ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.step { text-align: center; padding: 36px 24px; border: 1px solid var(--line-soft); border-radius: var(--radius); transition: all .4s; background: var(--surface); }
.step:hover { border-color: var(--line); transform: translateY(-6px); }
.step .num { font-family: var(--serif); font-size: 3rem; color: var(--gold); opacity: .35; }
.step h3 { font-size: 1.4rem; margin: 8px 0 10px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.testi { padding: 36px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); position: relative; }
.testi .quote { font-family: var(--serif); font-size: 4rem; color: var(--gold); opacity: .25; line-height: .6; }
.testi p { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--cream); margin: 10px 0 22px; line-height: 1.5; }
.testi .who { display: flex; align-items: center; gap: 14px; }
.testi .who .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); display: grid; place-items: center; color: #0b0b0d; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; }
.testi .who b { display: block; font-size: .95rem; }
.testi .who span { color: var(--muted); font-size: .76rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 100px 0; text-align: center; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(8,8,10,0.86); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: 18px 0; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 80px 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 50px; }
.footer-col h4 { font-size: .76rem; text-transform: uppercase; letter-spacing: .24em; color: var(--gold); margin-bottom: 22px; font-family: var(--sans); }
.footer-col p { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col ul a { color: var(--muted); font-size: .9rem; transition: all .3s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-brand .logo { font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: .14em; }
.footer-brand .logo b { color: var(--gold); }
.footer-news { display: flex; margin-top: 16px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.footer-news input { flex: 1; background: var(--surface); border: none; outline: none; color: var(--text); padding: 13px 16px; font-size: .85rem; }
.footer-news button { background: var(--gold); color: #0b0b0d; padding: 0 20px; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a { width: 40px; height: 40px; border: 1px solid var(--line-soft); border-radius: 50%; display: grid; place-items: center; transition: all .3s; }
.social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 56px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: var(--muted-2); font-size: .8rem; }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 22px; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 200px 0 90px; overflow: hidden; text-align: center; }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .ph-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,0.82), rgba(8,8,10,0.95)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); margin: 18px 0 14px; }
.page-hero p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { color: var(--muted-2); font-size: .8rem; letter-spacing: .1em; margin-top: 20px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---------- Food details page ---------- */
.fd-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
.fd-gallery { position: sticky; top: 110px; }
.fd-main-img { aspect-ratio: 4/3.6; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.fd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.fd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.fd-thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: 3px; border: 1px solid var(--line-soft); cursor: pointer; opacity: .55; transition: all .3s; }
.fd-thumbs img:hover, .fd-thumbs img.active { opacity: 1; border-color: var(--gold); }
.fd-cat { color: var(--gold); text-transform: uppercase; letter-spacing: .24em; font-size: .7rem; }
.fd-info h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 14px 0; }
.fd-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.fd-rating .rv { color: var(--muted); font-size: .9rem; }
.fd-price { font-family: var(--serif); font-size: 2.8rem; color: var(--gold); margin: 8px 0 22px; }
.fd-desc { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.fd-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; }
.fd-stat { padding: 18px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); text-align: center; }
.fd-stat svg { width: 22px; height: 22px; color: var(--gold); margin-bottom: 8px; }
.fd-stat .v { font-family: var(--serif); font-size: 1.5rem; }
.fd-stat .l { font-size: .64rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.fd-qty { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); }
.qty-stepper button { width: 46px; height: 46px; font-size: 1.2rem; color: var(--gold); transition: background .3s; }
.qty-stepper button:hover { background: var(--gold-soft); }
.qty-stepper span { width: 50px; text-align: center; font-family: var(--serif); font-size: 1.3rem; }
.fd-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.fd-meta-list { display: grid; gap: 10px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.fd-meta-list div { display: flex; gap: 10px; font-size: .9rem; color: var(--muted); }
.fd-meta-list b { color: var(--text); min-width: 120px; }

.fd-tabs { margin-top: 80px; }
.tab-nav { display: flex; gap: 8px; border-bottom: 1px solid var(--line-soft); flex-wrap: wrap; }
.tab-nav button { padding: 16px 26px; font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); border-bottom: 2px solid transparent; transition: all .3s; }
.tab-nav button.active { color: var(--gold); border-color: var(--gold); }
.tab-panel { display: none; padding: 36px 0; animation: fadeIn .5s var(--ease); }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.ingredient-list { display: flex; flex-wrap: wrap; gap: 12px; }
.ingredient-list li { list-style: none; padding: 12px 20px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 40px; font-size: .9rem; display: flex; align-items: center; gap: 10px; }
.ingredient-list li::before { content: "✦"; color: var(--gold); }

.nutri-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; max-width: 760px; }
.nutri-cell { padding: 22px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); text-align: center; }
.nutri-cell .v { font-family: var(--serif); font-size: 2rem; color: var(--gold); }
.nutri-cell .l { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-top: 4px; }
.nutri-bar { height: 6px; background: var(--surface-3); border-radius: 4px; overflow: hidden; margin-top: 12px; }
.nutri-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 4px; }

.review-summary { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center; padding: 30px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 34px; }
.review-summary .big { text-align: center; }
.review-summary .big .n { font-family: var(--serif); font-size: 4rem; color: var(--gold); line-height: 1; }
.review-bars { display: grid; gap: 8px; }
.review-bar-row { display: flex; align-items: center; gap: 12px; font-size: .82rem; color: var(--muted); }
.review-bar-row .track { flex: 1; height: 7px; background: var(--surface-3); border-radius: 4px; overflow: hidden; }
.review-bar-row .track i { display: block; height: 100%; background: var(--gold); }
.review-item { padding: 24px 0; border-bottom: 1px solid var(--line-soft); }
.review-item .rh { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.review-item .av { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-3); display: grid; place-items: center; color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.review-item .rn { font-weight: 400; font-size: .98rem; }
.review-item .rd { color: var(--muted-2); font-size: .76rem; }
.review-item p { color: var(--muted); margin-top: 6px; }

@media (max-width: 880px) {
  .fd-wrap { grid-template-columns: 1fr; gap: 36px; }
  .fd-gallery { position: static; }
  .review-summary { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Reservation / forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 14px 16px; color: var(--text); outline: none; transition: border-color .3s; font-size: .95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; }
.party-pick { display: flex; flex-wrap: wrap; gap: 10px; }
.party-pick button { padding: 12px 18px; border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--muted); transition: all .3s; }
.party-pick button.active { background: var(--gold); color: #0b0b0d; border-color: var(--gold); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 28px; } }

.info-side { display: grid; gap: 28px; }
.info-block { display: flex; gap: 16px; }
.info-block .ic { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); }
.info-block .ic svg { width: 20px; height: 20px; }
.info-block h4 { font-size: 1.3rem; margin-bottom: 4px; }
.info-block p { color: var(--muted); font-size: .92rem; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-items { display: grid; gap: 16px; }
.cart-row { display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; padding: 18px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); align-items: center; transition: border-color .3s; }
.cart-row:hover { border-color: var(--line); }
.cart-row img { width: 110px; height: 100px; object-fit: cover; border-radius: 3px; }
.cart-row .ci-name { font-family: var(--serif); font-size: 1.4rem; }
.cart-row .ci-cat { color: var(--gold); font-size: .66rem; text-transform: uppercase; letter-spacing: .18em; }
.cart-row .ci-price { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.cart-row .ci-right { text-align: right; display: grid; gap: 10px; justify-items: end; }
.cart-row .ci-total { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.ci-remove { color: var(--muted-2); font-size: .76rem; transition: color .3s; display: inline-flex; align-items: center; gap: 5px; }
.ci-remove:hover { color: var(--red); }
.qty-mini { display: flex; align-items: center; border: 1px solid var(--line-soft); border-radius: var(--radius); }
.qty-mini button { width: 32px; height: 32px; color: var(--gold); }
.qty-mini button:hover { background: var(--gold-soft); }
.qty-mini span { width: 34px; text-align: center; font-size: .9rem; }

.summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: sticky; top: 110px; }
.summary h3 { font-size: 1.6rem; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.sum-row { display: flex; justify-content: space-between; margin-bottom: 14px; color: var(--muted); font-size: .92rem; }
.sum-row.total { color: var(--text); font-size: 1.05rem; padding-top: 18px; border-top: 1px solid var(--line-soft); margin-top: 8px; }
.sum-row.total b { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); }
.coupon-box { display: flex; gap: 8px; margin: 20px 0; }
.coupon-box input { flex: 1; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 12px 14px; color: var(--text); outline: none; text-transform: uppercase; font-size: .85rem; }
.coupon-box input:focus { border-color: var(--gold); }
.coupon-box button { padding: 0 20px; border: 1px solid var(--gold); color: var(--gold); border-radius: var(--radius); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; transition: all .3s; }
.coupon-box button:hover { background: var(--gold); color: #0b0b0d; }
.coupon-msg { font-size: .82rem; margin-bottom: 16px; min-height: 1em; }
.coupon-msg.ok { color: var(--green); }
.coupon-msg.err { color: var(--red); }
.coupon-applied { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: var(--gold-soft); border: 1px dashed var(--gold); border-radius: var(--radius); margin-bottom: 16px; font-size: .85rem; }
.coupon-applied .x { color: var(--muted); cursor: pointer; }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { width: 60px; height: 60px; color: var(--muted-2); margin-bottom: 20px; }
.empty-state h3 { font-size: 1.8rem; margin-bottom: 10px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

@media (max-width: 880px) { .cart-layout { grid-template-columns: 1fr; } .summary { position: static; } }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 340; opacity: 0; pointer-events: none; transition: opacity .4s; backdrop-filter: blur(3px); }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; width: min(420px, 100vw); height: 100%; background: var(--bg-2); z-index: 350; border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.drawer-head { padding: 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 1.5rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.drawer-row img { width: 70px; height: 70px; object-fit: cover; border-radius: 3px; }
.drawer-row .dn { font-family: var(--serif); font-size: 1.15rem; }
.drawer-row .dp { color: var(--gold); font-size: .9rem; }
.drawer-row .dq { color: var(--muted); font-size: .8rem; }
.drawer-row .dx { margin-left: auto; color: var(--muted-2); align-self: flex-start; }
.drawer-row .dx:hover { color: var(--red); }
.drawer-foot { padding: 24px; border-top: 1px solid var(--line); }
.drawer-foot .dt { display: flex; justify-content: space-between; margin-bottom: 18px; }
.drawer-foot .dt b { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }

/* ---------- Gallery ---------- */
.gallery-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.masonry { columns: 3; column-gap: 18px; }
.masonry .g-item { break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.masonry .g-item img { width: 100%; transition: transform 1s var(--ease); }
.masonry .g-item:hover img { transform: scale(1.07); }
.masonry .g-item .g-cap { position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(8,8,10,0.9)); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity .4s; }
.masonry .g-item:hover .g-cap { opacity: 1; }
.masonry .g-item .g-cap .gc-cat { color: var(--gold); font-size: .64rem; text-transform: uppercase; letter-spacing: .2em; }
.masonry .g-item .g-cap h4 { font-size: 1.3rem; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

.lightbox { position: fixed; inset: 0; background: rgba(6,6,8,0.96); z-index: 360; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .4s; padding: 5vw; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: var(--radius); }
.lightbox .lb-close { position: absolute; top: 30px; right: 5vw; color: var(--cream); }

/* ---------- Offers ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 26px; }
.offer-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); padding: 36px; transition: all .4s; }
.offer-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.offer-badge { display: inline-block; font-size: .62rem; text-transform: uppercase; letter-spacing: .2em; padding: 6px 14px; border-radius: 40px; background: var(--gold-soft); color: var(--gold-2); margin-bottom: 18px; }
.offer-card h3 { font-size: 1.9rem; margin-bottom: 10px; }
.offer-card .o-desc { color: var(--muted); font-size: .92rem; margin-bottom: 22px; min-height: 60px; }
.offer-code { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border: 1px dashed var(--gold); border-radius: var(--radius); background: var(--bg-2); }
.offer-code .code { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); letter-spacing: .1em; }
.offer-code button { font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text); padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--radius); transition: all .3s; }
.offer-code button:hover { background: var(--gold); color: #0b0b0d; }
.offer-expiry { font-size: .76rem; color: var(--muted-2); margin-top: 14px; }

/* ---------- Orders ---------- */
.order-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; }
.order-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 22px 26px; border-bottom: 1px solid var(--line-soft); }
.order-head .oid { font-family: var(--serif); font-size: 1.4rem; }
.order-head .od { color: var(--muted); font-size: .82rem; }
.order-status { padding: 6px 16px; border-radius: 40px; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; }
.order-status.delivered { background: rgba(116,176,114,0.14); color: var(--green); }
.order-status.transit { background: rgba(201,162,39,0.14); color: var(--gold); }
.order-status.preparing { background: rgba(232,155,107,0.14); color: #e89b6b; }
.order-body { padding: 22px 26px; }
.order-line { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.order-line img { width: 56px; height: 56px; object-fit: cover; border-radius: 3px; }
.order-line .ol-name { font-size: .98rem; }
.order-line .ol-q { color: var(--muted); font-size: .8rem; }
.order-line .ol-p { margin-left: auto; color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.order-foot { display: flex; justify-content: space-between; align-items: center; padding: 18px 26px; border-top: 1px solid var(--line-soft); background: var(--bg-2); }
.order-foot .otot b { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.track-bar { display: flex; align-items: center; margin: 18px 0 6px; }
.track-step { flex: 1; text-align: center; position: relative; }
.track-step .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--surface-3); margin: 0 auto 8px; display: grid; place-items: center; border: 2px solid var(--surface-3); transition: all .3s; }
.track-step.done .dot { background: var(--gold); border-color: var(--gold); color: #0b0b0d; }
.track-step.active .dot { border-color: var(--gold); color: var(--gold); }
.track-step::after { content: ""; position: absolute; top: 13px; left: 50%; width: 100%; height: 2px; background: var(--surface-3); z-index: -1; }
.track-step:last-child::after { display: none; }
.track-step.done::after { background: var(--gold); }
.track-step .tl { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.track-step.done .tl, .track-step.active .tl { color: var(--text); }

/* ---------- Login ---------- */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-visual { position: relative; overflow: hidden; }
.auth-visual img { width: 100%; height: 100%; object-fit: cover; }
.auth-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,0.5), rgba(8,8,10,0.85)); }
.auth-visual .av-text { position: absolute; bottom: 60px; left: 60px; right: 60px; z-index: 2; }
.auth-visual .av-text h2 { font-size: 2.6rem; margin-bottom: 12px; }
.auth-visual .av-text p { color: var(--muted); }
.auth-form-side { display: flex; align-items: center; justify-content: center; padding: 60px; }
.auth-card { width: min(420px, 100%); }
.auth-card .logo { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; letter-spacing: .14em; text-align: center; display: block; margin-bottom: 8px; }
.auth-card .logo b { color: var(--gold); }
.auth-tabs { display: flex; gap: 0; margin: 30px 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.auth-tabs button { flex: 1; padding: 14px; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); transition: all .3s; }
.auth-tabs button.active { background: var(--gold); color: #0b0b0d; }
.auth-card .field { margin-bottom: 18px; }
.auth-alt { text-align: center; color: var(--muted); margin-top: 24px; font-size: .9rem; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 26px 0; color: var(--muted-2); font-size: .8rem; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.social-login { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-login button { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px; border: 1px solid var(--line-soft); border-radius: var(--radius); font-size: .82rem; transition: all .3s; }
.social-login button:hover { border-color: var(--gold); }
@media (max-width: 860px) { .auth-visual { display: none; } .auth-wrap { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 30px; }
.blog-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: all .4s; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.blog-card .bc-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.blog-card:hover .bc-media img { transform: scale(1.06); }
.blog-card .bc-body { padding: 26px; }
.blog-meta { display: flex; gap: 14px; font-size: .72rem; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .12em; }
.blog-meta .bc-cat { color: var(--gold); }
.blog-card h3 { font-size: 1.5rem; margin-bottom: 10px; transition: color .3s; }
.blog-card:hover h3 { color: var(--gold-2); }
.blog-card p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.blog-card .bc-author { font-size: .8rem; color: var(--muted-2); }
.blog-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 50px; }
.blog-feature img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.blog-feature .bf-body { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.blog-feature h2 { font-size: 2.4rem; margin: 14px 0; }
@media (max-width: 800px) { .blog-feature { grid-template-columns: 1fr; } .blog-feature .bf-body { padding: 30px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 28px; font-family: var(--serif); font-size: 1.35rem; color: var(--text); }
.faq-q .fq-ic { width: 30px; height: 30px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); transition: all .4s; }
.faq-item.open .fq-ic { background: var(--gold); color: #0b0b0d; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 28px 26px; color: var(--muted); }

/* ---------- About ---------- */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.about-stats .num { font-family: var(--serif); font-size: 3.2rem; color: var(--gold); }
.about-stats .lbl { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.team-card { text-align: center; }
.team-card .tm-img { aspect-ratio: 3/3.4; overflow: hidden; border-radius: var(--radius); margin-bottom: 18px; position: relative; }
.team-card .tm-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); filter: grayscale(0.3); }
.team-card:hover .tm-img img { transform: scale(1.06); filter: grayscale(0); }
.team-card h4 { font-size: 1.5rem; }
.team-card .role { color: var(--gold); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; margin-top: 4px; }
@media (max-width: 700px) { .about-stats { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ---------- 404 ---------- */
.notfound { min-height: 100vh; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; padding: 120px 20px; }
.notfound .nf-num { font-family: var(--serif); font-size: clamp(8rem, 26vw, 20rem); line-height: .8; color: transparent; -webkit-text-stroke: 1.5px var(--gold); opacity: .55; }
.notfound h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 10px 0 16px; }
.notfound p { color: var(--muted); max-width: 460px; margin: 0 auto 30px; }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 30px; right: 30px; z-index: 400; display: flex; flex-direction: column; gap: 12px; }
.toast { display: flex; align-items: center; gap: 14px; padding: 16px 22px; background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 280px; transform: translateX(120%); transition: transform .5s var(--ease); }
.toast.show { transform: translateX(0); }
.toast svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.toast .t-text b { display: block; font-size: .95rem; }
.toast .t-text span { font-size: .8rem; color: var(--muted); }
@media (max-width: 500px) { .toast-wrap { left: 20px; right: 20px; bottom: 20px; } .toast { min-width: 0; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- Page transitions / misc ---------- */
.split-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split-img-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.split-img-grid img:first-child { aspect-ratio: 1/2; grid-row: span 2; }

.pill-note { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 40px; font-size: .76rem; color: var(--muted); }
.pill-note .dot-g { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.menu-cat-title { display: flex; align-items: center; gap: 20px; margin: 60px 0 30px; }
.menu-cat-title h2 { font-size: 2.2rem; white-space: nowrap; }
.menu-cat-title::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.menu-cat-title .count { color: var(--muted); font-size: .85rem; }

.loader { display: grid; place-items: center; padding: 80px; color: var(--muted); }
