/* ============================================================
   Cafe Route 65 — Sigra, Varanasi
   Design system + page styles
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --espresso: #141210;   /* near-black warm charcoal */
  --coffee:   #241c14;   /* dark roast — headings & dark sections */
  --mocha:    #4a3a2a;
  --caramel:  #e2a23a;   /* amber accent */
  --caramel-d:#c5811f;
  --gold:     #cfa44e;
  --cream:    #f8f3ea;
  --cream-2:  #efe7d9;
  --sand:     #e4d8c4;
  --ink:      #25201a;
  --muted:    #847569;
  --line:     #e7dcc9;
  --white:    #fffdf9;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 22px 50px -22px rgba(20, 14, 8, .50);
  --shadow-sm: 0 10px 28px -14px rgba(20, 14, 8, .38);
  --shadow-lg: 0 40px 80px -30px rgba(20, 14, 8, .55);
  --max: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2.5px solid var(--caramel); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.section { padding: clamp(72px, 11vw, 144px) 0; }

/* ===== TYPE ===== */
h1, h2, h3, h4 { font-family: "Playfair Display", serif; font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 1.1rem;
}
.eyebrow--dark { color: var(--caramel-d); }
.eyebrow .num {
  font-family: "Playfair Display", serif; font-style: italic; font-weight: 600;
  letter-spacing: 0; font-size: 1rem; color: currentColor; opacity: .65;
}
.section__title { font-size: clamp(2.05rem, 4.6vw, 3.35rem); color: var(--coffee); }
.section__title--light { color: var(--cream); }
.section__head { max-width: 640px; margin: 0 auto clamp(44px, 6vw, 76px); text-align: center; }
.section__head--left { max-width: 640px; margin-left: 0; text-align: left; }
.section__head .section__title::after {
  content: ""; display: block; width: 54px; height: 3px; margin: 1.1rem auto 0;
  background: linear-gradient(90deg, var(--caramel), var(--gold)); border-radius: 3px;
}
.section__head--left .section__title::after { margin-left: 0; }
.section__lead { color: var(--muted); margin-top: 1rem; font-size: 1.06rem; }

.link-arrow {
  display: inline-block; margin-top: 1.6rem; font-weight: 700; color: var(--caramel-d);
  border-bottom: 2px solid transparent; transition: border-color .3s, gap .3s;
}
.link-arrow:hover { border-color: var(--caramel-d); }

/* ===== BUTTONS ===== */
.btn {
  --btn-bg: var(--caramel); --btn-fg: var(--espresso);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1.5px solid transparent; cursor: pointer; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn--sm { padding: .58rem 1.15rem; font-size: .85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--btn-bg); color: var(--btn-fg); box-shadow: var(--shadow-sm); }
.btn--primary::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn--primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--ghost { border-color: rgba(248,243,234,.45); color: var(--cream); }
.btn--ghost:hover { background: rgba(248,243,234,.1); border-color: var(--cream); transform: translateY(-2px); }

/* ===== TICKER ===== */
.ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  background: var(--espresso); color: var(--cream); overflow: hidden;
  border-bottom: 1px solid rgba(207,164,78,.25);
}
.ticker__track {
  display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap;
  padding: .5rem 0; will-change: transform;
  animation: ticker 26s linear infinite;
}
.ticker span { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.ticker .dot { color: var(--caramel); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 33px; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), top .4s var(--ease);
  padding: 16px 0;
}
.nav.scrolled {
  top: 0; background: rgba(248, 243, 234, .85); backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(20,14,8,.08), var(--shadow-sm); padding: 9px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.4rem; color: var(--cream); transition: color .4s; }
.nav.scrolled .brand { color: var(--coffee); }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: -.03em;
  color: var(--espresso); background: var(--caramel);
  border: 2.5px solid var(--espresso); border-radius: 11px; box-shadow: inset 0 0 0 2px var(--caramel);
}
.nav.scrolled .brand__mark { border-color: var(--coffee); }
.brand--footer .brand__mark { width: 34px; height: 34px; font-size: .92rem; }

.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__link { position: relative; color: var(--cream); font-weight: 600; font-size: .95rem; transition: opacity .3s, color .3s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--caramel); transition: width .3s var(--ease); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav.scrolled .nav__link { color: var(--coffee); }
.nav__cta { color: var(--espresso) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 102; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: .35s var(--ease); }
.nav.scrolled .nav__toggle span { background: var(--coffee); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--cream); overflow: hidden; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; z-index: 1; background: linear-gradient(transparent, var(--cream)); pointer-events: none; }
.hero__bg {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1559925393-8be0ec4767c8?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform: scale(1.08); animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns { to { transform: scale(1.18) translateY(-12px); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(115% 80% at 82% 112%, rgba(226,162,58,.26) 0%, transparent 55%),
    linear-gradient(105deg, rgba(20,18,16,.92) 0%, rgba(36,28,20,.62) 50%, rgba(36,28,20,.22) 100%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .055; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; max-width: 740px; }
.hero .eyebrow { color: var(--cream); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #5fcf80; box-shadow: 0 0 0 0 rgba(95,207,128,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(95,207,128,0); } 100% { box-shadow: 0 0 0 0 rgba(95,207,128,0); } }
.hero__title { font-size: clamp(2.9rem, 7.2vw, 5.4rem); margin: .4rem 0 1.5rem; }
.hero__title em { color: var(--caramel); font-style: italic; }
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.22rem); max-width: 560px; color: rgba(248,243,234,.85); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.2rem 0 3.2rem; }
.hero__stats { display: flex; gap: clamp(1.5rem, 5vw, 3.6rem); }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Playfair Display", serif; font-size: 2rem; color: var(--cream); }
.hero__stats span { font-size: .85rem; color: rgba(248,243,234,.72); }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(248,243,234,.55); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--cream); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about__badge {
  position: absolute; bottom: -24px; right: -12px; background: var(--white);
  padding: 1rem 1.4rem; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  text-align: center; border: 1px solid var(--line);
}
.about__badge strong {
  display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto .3rem;
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--espresso);
  background: var(--caramel); border: 2.5px solid var(--espresso); border-radius: 12px;
}
.about__badge span { font-size: .78rem; color: var(--muted); }
.about__text p { color: var(--muted); margin-bottom: 1rem; max-width: 50ch; }
.about__points { margin-top: 1.7rem; display: grid; gap: .85rem; }
.about__points li { padding-left: 1.9rem; position: relative; font-weight: 500; color: var(--coffee); }
.about__points li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 1.35rem; height: 1.35rem; background: var(--caramel); color: var(--espresso); border-radius: 50%; font-size: .75rem; font-weight: 800; display: grid; place-items: center; }

/* ===== FEATURES ===== */
.features { background: var(--coffee); color: var(--cream); padding: clamp(48px, 7vw, 76px) 0; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.feature {
  text-align: center; padding: 2rem 1.4rem;
  background: rgba(248,243,234,.04); border: 1px solid rgba(248,243,234,.1);
  border-radius: var(--radius); transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.feature:hover { transform: translateY(-6px); background: rgba(248,243,234,.07); border-color: rgba(226,162,58,.4); }
.feature svg {
  width: 30px; height: 30px; color: var(--caramel);
  display: block; margin: 0 auto 1.1rem; padding: 13px; box-sizing: content-box;
  background: rgba(226,162,58,.12); border-radius: 50%;
}
.feature h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: .4rem; }
.feature p { font-size: .9rem; color: rgba(248,243,234,.7); max-width: 24ch; margin: 0 auto; }

/* ===== MENU ===== */
.menu { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.menu__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(1.3rem, 3vw, 2rem); }
.menu-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.menu-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.menu-card__img { height: 196px; background-size: cover; background-position: center; transition: transform .65s var(--ease); }
.menu-card:hover .menu-card__img { transform: scale(1.07); }
.menu-card__body { padding: 1.4rem 1.5rem 1.7rem; }
.menu-card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.menu-card h3 { font-size: 1.28rem; color: var(--coffee); }
.price { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.1rem; color: var(--caramel-d); white-space: nowrap; }
.menu-card p { color: var(--muted); font-size: .92rem; margin: .55rem 0 1rem; }
.tag { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--caramel-d); background: rgba(226,162,58,.14); padding: .32rem .72rem; border-radius: 999px; }
.tag--alt { color: var(--mocha); background: rgba(74,58,42,.1); }
.menu__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ===== GALLERY (masonry-style, captioned) ===== */
.gallery { background: var(--cream-2); padding-bottom: clamp(48px, 7vw, 80px); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 10px; margin-top: 1rem; }
.gallery__item {
  background-size: cover; background-position: center; position: relative; overflow: hidden;
  border-radius: 14px; filter: saturate(.96);
  transition: filter .5s, transform .7s var(--ease), box-shadow .5s var(--ease);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(20,14,8,.78));
  opacity: .25; transition: opacity .45s var(--ease);
}
.gallery__item figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: var(--cream);
  font-family: "Playfair Display", serif; font-size: 1.18rem; font-weight: 600; line-height: 1.2;
  transform: translateY(14px); opacity: 0; transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.gallery__tag {
  display: inline-block; font-family: "Manrope", sans-serif; font-size: .66rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--espresso);
  background: var(--caramel); padding: .25rem .6rem; border-radius: 999px; margin-bottom: .55rem;
}
.gallery__item:hover { filter: saturate(1.12); transform: scale(1.012); box-shadow: var(--shadow); z-index: 1; }
.gallery__item:hover::before { opacity: 1; }
.gallery__item:hover figcaption { transform: none; opacity: 1; }

.gallery__follow {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3rem); padding: clamp(1.4rem, 3vw, 2rem) clamp(1.6rem, 4vw, 2.6rem);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.gallery__follow p { font-size: 1.05rem; color: var(--coffee); }
.gallery__follow strong { color: var(--caramel-d); }

/* ===== TESTIMONIALS ===== */
.quote { background: var(--espresso); color: var(--cream); }
.quote .eyebrow { color: var(--caramel); }
.quote__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.quote blockquote {
  background: rgba(248,243,234,.04); border: 1px solid rgba(248,243,234,.1);
  border-radius: var(--radius); padding: 2rem 1.9rem;
  font-family: "Playfair Display", serif; font-style: italic; font-size: 1.12rem; line-height: 1.55;
}
.quote .stars { font-style: normal; color: var(--caramel); letter-spacing: .15em; margin-bottom: 1rem; }
.quote cite { display: block; margin-top: 1.3rem; font-family: "Manrope", sans-serif; font-size: .9rem; font-style: normal; color: rgba(248,243,234,.65); }

/* ===== VISIT ===== */
.visit { background: var(--coffee); color: var(--cream); }
.visit .eyebrow { color: var(--caramel); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.visit__list { display: grid; gap: 1.5rem; margin-bottom: 1.8rem; }
.visit__list li { display: grid; gap: .25rem; color: rgba(248,243,234,.9); }
.visit__list strong { font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; color: var(--caramel); }
.visit__list a { border-bottom: 1px solid rgba(226,162,58,.4); transition: color .3s; }
.visit__list a:hover { color: var(--caramel); }
.visit__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.visit__socials { display: flex; gap: 1.4rem; }
.visit__socials a { font-weight: 600; font-size: .9rem; border-bottom: 1.5px solid var(--caramel); padding-bottom: 2px; transition: color .3s; }
.visit__socials a:hover { color: var(--caramel); }
.visit__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(248,243,234,.12); min-height: 340px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.2) contrast(1.05); }

.visit__form { background: var(--white); color: var(--ink); padding: clamp(1.8rem, 4vw, 2.8rem); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.visit__form h3 { font-size: 1.7rem; color: var(--coffee); margin-bottom: 1.5rem; }
.visit__form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; margin-bottom: 1.3rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 700; color: var(--muted); }
.field input { width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--sand); border-radius: var(--radius-sm); font: inherit; background: var(--cream); transition: border .3s, box-shadow .3s, background .3s; }
.field input:focus { outline: none; border-color: var(--caramel); background: var(--white); box-shadow: 0 0 0 3px rgba(226,162,58,.18); }

/* ===== FOOTER ===== */
.footer { background: var(--espresso); color: rgba(248,243,234,.68); padding: clamp(48px, 7vw, 80px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; }
.brand--footer { color: var(--cream); font-size: 1.25rem; margin-bottom: 1rem; }
.footer__brand p { font-size: .92rem; max-width: 40ch; margin-bottom: 1.3rem; }
.footer__socials { display: flex; gap: 1.2rem; }
.footer__socials a, .footer__col a { font-size: .9rem; transition: color .3s; }
.footer__socials a:hover, .footer__col a:hover { color: var(--caramel); }
.footer__col h4 { font-family: "Manrope", sans-serif; font-size: .8rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.1rem; }
.footer__col { display: grid; gap: .7rem; align-content: start; }
.footer__col span { font-size: .9rem; }
.footer__bar { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; padding-bottom: 1.8rem; border-top: 1px solid rgba(248,243,234,.1); font-size: .85rem; }

/* ===== BUTTON VARIANTS (WhatsApp / dark-ghost) ===== */
.btn--wa { background: #25d366; color: #fff; box-shadow: var(--shadow-sm); }
.btn--wa svg { width: 20px; height: 20px; }
.btn--wa:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost-dark { border-color: var(--espresso); color: var(--espresso); }
.btn--ghost-dark:hover { background: var(--espresso); color: var(--cream); transform: translateY(-2px); }

/* ===== FLOATING ACTION BUTTONS ===== */
.fab-group { position: fixed; bottom: 22px; right: 22px; z-index: 95; display: flex; flex-direction: column; align-items: flex-end; gap: .7rem; }
.fab {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: .92rem; border-radius: 999px; box-shadow: var(--shadow);
  transition: transform .35s var(--ease), background .3s, filter .3s;
}
.fab svg { width: 20px; height: 20px; flex: none; }
.fab--wa { background: #25d366; color: #fff; padding: .85rem 1.25rem; }
.fab--wa:hover { background: #1ebe5b; transform: translateY(-3px); }
.fab--call { background: var(--caramel); color: var(--espresso); width: 52px; height: 52px; justify-content: center; padding: 0; align-self: flex-end; }
.fab--call:hover { background: var(--gold); transform: translateY(-3px); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.veg, .nonveg { display: inline-block; width: 15px; height: 15px; border-radius: 3px; flex: none; position: relative; }
.veg { border: 1.6px solid #2e7d32; }
.nonveg { border: 1.6px solid #b3261e; }
.veg::after, .nonveg::after { content: ""; position: absolute; inset: 0; margin: auto; width: 7px; height: 7px; border-radius: 50%; }
.veg::after { background: #2e7d32; }
.nonveg::after { background: #b3261e; }

.page-head { position: relative; padding: clamp(120px, 20vw, 200px) 0 clamp(48px, 7vw, 88px); color: var(--cream); overflow: hidden; }
.page-head__bg { position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat; }
.page-head__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,.92) 0%, rgba(36,28,20,.78) 100%); }
.page-head__content { position: relative; z-index: 2; }
.page-head .eyebrow { color: rgba(248,243,234,.7); }
.crumb { color: var(--caramel); border-bottom: 1px solid transparent; }
.crumb:hover { border-color: var(--caramel); }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: .8rem; }
.page-head__sub { color: rgba(248,243,234,.8); max-width: 48ch; }
.page-head__legend { display: flex; gap: 1.5rem; margin-top: 1.6rem; font-size: .9rem; }
.page-head__legend span { display: inline-flex; align-items: center; gap: .5rem; }

.menupage { background: var(--cream); padding-top: clamp(40px, 6vw, 64px); }
.menu-jump {
  position: sticky; top: 56px; z-index: 40; display: flex; flex-wrap: wrap; gap: .5rem;
  padding: .8rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
  background: rgba(248,243,234,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 999px; justify-content: center;
}
.menu-jump a { font-size: .82rem; font-weight: 700; color: var(--mocha); padding: .45rem .9rem; border-radius: 999px; transition: background .3s, color .3s; }
.menu-jump a:hover { background: var(--caramel); color: var(--espresso); }

.menu-cat { margin-bottom: clamp(2.8rem, 6vw, 4.5rem); scroll-margin-top: 120px; }
.menu-cat__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.6rem; padding-bottom: 1rem; border-bottom: 2px solid var(--line); }
.menu-cat__head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); color: var(--coffee); }
.menu-cat__head span { font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--caramel-d); margin-left: auto; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 3rem; }
.menu-list li { display: flex; align-items: baseline; gap: .85rem; padding: .95rem 0; border-bottom: 1px dashed var(--line); }
.menu-list li i { top: 4px; position: relative; }
.mi { display: flex; flex-direction: column; gap: .15rem; flex: 1; min-width: 0; }
.mi__name { font-weight: 700; color: var(--ink); }
.mi__name .star { color: var(--caramel); font-style: normal; font-size: .85em; }
.mi__desc { font-size: .86rem; color: var(--muted); line-height: 1.4; }
.mi__price { font-family: "Playfair Display", serif; font-weight: 700; color: var(--caramel-d); white-space: nowrap; }

.menupage__cta { text-align: center; background: var(--coffee); color: var(--cream); border-radius: var(--radius); padding: clamp(2.5rem, 6vw, 4rem) 1.5rem; margin-top: clamp(2rem, 5vw, 3.5rem); }
.menupage__cta h3 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: var(--cream); margin-bottom: .6rem; }
.menupage__cta p { color: rgba(248,243,234,.78); margin-bottom: 1.8rem; }
.menupage__cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.menupage__cta .btn--ghost-dark { border-color: rgba(248,243,234,.5); color: var(--cream); }
.menupage__cta .btn--ghost-dark:hover { background: var(--cream); color: var(--coffee); }

/* ===== REVEAL ANIM ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
  .quote__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 300px; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 330px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.8rem; padding: 2.5rem; background: var(--coffee);
    transform: translateX(105%); transition: transform .45s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link, .nav.scrolled .nav__link { color: var(--cream); font-size: 1.15rem; }
  .nav__toggle { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 430px; margin: 0 auto 1.5rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .menu-cat__head { flex-direction: column; gap: .2rem; }
  .menu-cat__head span { margin-left: 0; }
  .menu-jump { top: 50px; }
}
@media (max-width: 480px) {
  .visit__form-grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.4rem; }
  .fab--wa span { display: none; }
  .fab--wa { width: 52px; height: 52px; justify-content: center; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
