/* ═══════════════════════════════════════════════════════════════
   CROWN TANDOORI — MINIMAL / PREMIUM DESIGN SYSTEM
   One accent (champagne gold), neutral surfaces, hairline borders,
   generous and CONSISTENT rhythm. Dark and light are equal citizens.
   Surface tokens are reused by cart.css, so the cart/checkout and
   Food Club cards inherit this system automatically.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── neutrals (dark) ── */
  --black:   #0B0B0C;   /* page                */
  --black-2: #121214;   /* alternating section */
  --black-3: #1B1B1E;   /* cards / inputs      */
  --text:     #EDEBE7;
  --text-dim: #9B968E;
  --cream:    #F5F2EC;

  /* ── single accent ── */
  --gold:      #C9A961;  /* champagne gold */
  --on-gold:   #14120C;  /* ink that sits ON gold */
  --gold-deep: #A98A45;
  --red:       #B85C4A;  /* muted terracotta — used sparingly */
  --red-deep:  #9A4838;

  /* ── lines & surfaces ── */
  --line:      rgba(255,255,255,.09);
  --line-soft: rgba(255,255,255,.06);
  --surface:   rgba(255,255,255,.035);
  --surface-2: rgba(255,255,255,.06);

  /* ── surface tokens consumed by cart.css ── */
  --glass-bg:    var(--surface);
  --glass-bg-2:  var(--surface-2);
  --glass-brd:   var(--line);
  --glass-hi:    inset 0 1px 0 rgba(255,255,255,.04);
  --glass-shadow: 0 18px 44px rgba(0,0,0,.34);
  --glass-soft:   0 8px 22px rgba(0,0,0,.20);
  --blur: blur(10px);
  --sheen: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 55%);
  --accent-line: linear-gradient(90deg, transparent, var(--gold), transparent);

  /* ── rhythm: one fluid scale drives every gap ── */
  --sp-section: clamp(56px, 7vw, 100px);
  --sp-head:    clamp(28px, 4.4vw, 52px);
  --gap:        clamp(14px, 2.2vw, 22px);
  --pad-x:      clamp(18px, 4vw, 26px);
  --radius:     16px;

  --maxw: 1200px;
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ══ LIGHT THEME ══ (warm paper, near-black ink, deeper gold for contrast) */
html[data-theme="light"] {
  --black:   #FBFAF8;
  --black-2: #FFFFFF;
  --black-3: #F1EEE9;
  --text:     #17161A;
  --text-dim: #6B6862;
  --cream:    #17161A;

  --gold:      #8A6D2F;
  --on-gold:   #FFFFFF;
  --gold-deep: #6E5624;
  --red:       #9E4A38;
  --red-deep:  #833A2B;

  --line:      rgba(0,0,0,.10);
  --line-soft: rgba(0,0,0,.06);
  --surface:   #FFFFFF;
  --surface-2: #FFFFFF;

  --glass-hi:     inset 0 1px 0 rgba(255,255,255,.9);
  --glass-shadow: 0 16px 38px rgba(28,22,12,.08);
  --glass-soft:   0 6px 18px rgba(28,22,12,.06);
  --sheen: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0) 55%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .5px; line-height: 1.02; }
a { text-decoration: none; color: inherit; }

/* ═══ PRELOADER ═══ */
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; transition: opacity .6s ease, visibility .6s ease; }
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo { width: 260px; max-width: 70vw; animation: pulse 1.5s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* ═══ NAVBAR ═══ */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease); }
#navbar.scrolled {
  background: var(--black-2); /* fallback for browsers without color-mix */
  background: color-mix(in srgb, var(--black) 82%, transparent);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 42px; transition: height .35s var(--ease); }
#navbar.scrolled .nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 14px; letter-spacing: .2px; color: #fff; transition: color .2s; position: relative; }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-cta {
  background: var(--gold); color: var(--on-gold) !important; padding: 10px 22px; border-radius: 999px;
  font-weight: 700; font-size: 13.5px; letter-spacing: .2px; transition: all .25s var(--ease);
}
.nav-cta:hover { background: var(--gold-deep); color: #fff !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
/* hamburger: white over the photo hero, ink once the bar is solid or drawer open */
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: background .3s, transform .3s, opacity .3s; }
#navbar.scrolled .nav-toggle span,
body.nav-open .nav-toggle span { background: var(--text); }

/* ═══ HERO ═══ */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s var(--ease); transform: scale(1.06); }
.hero-slide.active { opacity: 1; animation: kenburns 12s ease forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.14); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,8,9,.62) 0%, rgba(8,8,9,.42) 42%, rgba(8,8,9,.90) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); width: 100%; }
.hero-pill {
  display: inline-block; background: rgba(255,255,255,.08); color: #fff;
  font-weight: 600; font-size: 11.5px; letter-spacing: 2.4px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(58px, 11vw, 150px);
  color: #fff; letter-spacing: 1px; margin-bottom: 16px; line-height: .96;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.hero-sub { font-size: clamp(14px, 1.7vw, 17px); font-weight: 500; letter-spacing: .3px; color: rgba(255,255,255,.86); margin-bottom: 26px; max-width: 560px; line-height: 1.7; text-transform: none; }
.hero-tags { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-tags span {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2);
  padding: 7px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: rgba(255,255,255,.8); }
.hero-rating .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 24px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 20px; }
.hero-scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: rgba(255,255,255,.8); border-radius: 4px; animation: scroll 1.8s ease infinite; }
@keyframes scroll { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }
.hero-dots { position: absolute; bottom: 30px; right: 32px; z-index: 2; display: flex; gap: 8px; }
.hero-dots button { width: 7px; height: 7px; border-radius: 50%; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: .3s; padding: 0; }
.hero-dots button.active { background: #fff; width: 22px; border-radius: 4px; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-block; padding: 14px 30px; border-radius: 999px; font-weight: 600; font-size: 14px; letter-spacing: .2px; cursor: pointer; border: 1px solid transparent; transition: all .25s var(--ease); }
.btn-gold { background: var(--gold); color: var(--on-gold); }
.btn-gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline:hover { background: #fff; color: #14120C; border-color: #fff; }
.btn.full { width: 100%; text-align: center; }

/* ═══ INFO BAR ═══ */
.info-bar { display: flex; flex-wrap: wrap; background: var(--black-2); border-bottom: 1px solid var(--line); }
.info-item { flex: 1; min-width: 240px; display: flex; align-items: center; gap: 13px; padding: 20px var(--pad-x); border-right: 1px solid var(--line-soft); }
.info-item:last-child { border-right: none; }
.info-item .ico { font-size: 19px; opacity: .75; }
.info-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.info-item small { color: var(--text-dim); font-size: 12px; }
.info-status { position: relative; }

/* ═══ PROMO RIBBON ═══ (quiet, premium — ink bar, gold figure) */
.promo-ribbon {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding: 12px var(--pad-x); text-align: center; position: relative;
  background: var(--black-3); color: var(--text);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.promo-txt { font-size: 13.5px; font-weight: 500; letter-spacing: .2px; color: var(--text-dim); }
.promo-txt strong { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 1px; color: var(--gold); margin-right: 3px; }
.promo-txt small { opacity: .75; }
.promo-cta { border: 1px solid var(--line); color: var(--text); padding: 7px 16px; border-radius: 999px; font-weight: 600; font-size: 12.5px; transition: all .25s var(--ease); }
.promo-cta:hover { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }
.promo-x { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-dim); width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 12px; }
.promo-x:hover { color: var(--text); background: var(--line-soft); }

/* ═══ MARQUEE ═══ (thin, understated) */
.marquee { position: relative; overflow: hidden; background: var(--black); border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; animation: bazaar 44s linear infinite; }
.marquee-track span {
  font-size: 11.5px; font-weight: 600; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--text-dim); padding: 12px 22px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 22px;
}
.marquee-track span::after { content: '·'; color: var(--gold); font-size: 15px; }
@keyframes bazaar { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ═══ SECTION RHYTHM ═══ */
section { padding: var(--sp-section) 0; position: relative; }
.combos, .club, .about, .contact { background: var(--black); }
.menu, .reviews, .gallery { background: var(--black-2); }

.eyebrow { display: inline-block; color: var(--gold); font-weight: 600; font-size: 11.5px; letter-spacing: 3.2px; text-transform: uppercase; margin-bottom: 12px; }
.section-head { text-align: center; margin-bottom: var(--sp-head); }
.section-head h2 { font-size: clamp(38px, 5.4vw, 62px); color: var(--text); display: inline-block; }
.section-head h2::after { content: ''; display: block; height: 1px; width: 64px; margin: 18px auto 0; background: var(--accent-line); }
.section-lead { max-width: 580px; margin: 14px auto 0; color: var(--text-dim); font-size: 15px; }

/* ═══ ABOUT ═══ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-text h2 { font-size: clamp(34px, 4.4vw, 54px); color: var(--text); margin-bottom: 18px; }
.about-text p { color: var(--text-dim); font-size: 15.5px; margin-bottom: 28px; }
.about-stats { display: flex; gap: clamp(22px, 4vw, 42px); flex-wrap: wrap; }
.about-stats div strong { display: block; font-family: 'Bebas Neue'; font-size: 42px; line-height: 1; color: var(--gold); }
.about-stats div span { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600; }
.about-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--glass-soft); }
.about-img img { width: 100%; height: clamp(280px, 40vw, 440px); object-fit: cover; transition: transform .8s var(--ease); display: block; }
.about-img:hover img { transform: scale(1.04); }

/* ═══ CARD BASE (combos, menu items, reviews, badges) ═══ */
.combo-card, .menu-item, .review-card, .google-badge {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}

/* ═══ COMBOS ═══ */
.combo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); }
.combo-card { overflow: hidden; position: relative; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.combo-card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--glass-soft); }
.combo-card.featured { border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.combo-img { height: 172px; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.combo-card:hover .combo-img { transform: scale(1.04); }
.combo-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--black-3); /* fallback */
  background: color-mix(in srgb, var(--black) 78%, transparent); color: var(--gold);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-weight: 600; font-size: 10.5px; padding: 5px 12px; border-radius: 999px;
  letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--line);
}
.combo-card.featured .combo-badge { background: var(--gold); color: var(--on-gold); border-color: transparent; }
.combo-body { padding: 20px; }
.combo-body h3 { font-size: 25px; color: var(--text); margin-bottom: 7px; }
.combo-body p { color: var(--text-dim); font-size: 13px; margin-bottom: 16px; min-height: 48px; line-height: 1.6; }
.combo-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.combo-price { font-family: 'Bebas Neue'; font-size: 34px; color: var(--gold); }

/* ═══ MENU ═══ */
.menu-tabs { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; margin-bottom: var(--sp-head); }
.menu-tab {
  background: transparent; border: 1px solid var(--line); color: var(--text-dim);
  padding: 9px 20px; border-radius: 999px; font-weight: 600; font-size: 13px; cursor: pointer;
  transition: all .25s var(--ease); font-family: 'Montserrat';
}
.menu-tab:hover { color: var(--text); border-color: var(--text-dim); }
.menu-tab.active { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }
.menu-panel { display: none; animation: fadeIn .45s var(--ease); }
.menu-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.menu-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--gap); }
.menu-item { display: flex; gap: 16px; padding: 16px; transition: border-color .3s, transform .3s, box-shadow .3s; }
.menu-item:hover { transform: translateY(-2px); border-color: var(--text-dim); box-shadow: var(--glass-soft); }
.mi-img { width: 96px; height: 96px; border-radius: 12px; background-size: cover; background-position: center; flex-shrink: 0; border: 1px solid var(--line); align-self: flex-start; }
.mi-noimg { display: flex; align-items: center; justify-content: center; font-size: 26px; background: var(--black-3); }
.mi-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mi-info h4 { font-size: 20px; color: var(--text); margin-bottom: 5px; line-height: 1.15; }
.mi-badge { display: inline-block; background: transparent; color: var(--gold); border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent); font-family: 'Montserrat'; font-size: 8.5px; font-weight: 700; padding: 2px 7px; border-radius: 999px; vertical-align: middle; letter-spacing: 1px; }
.mi-info p { font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-bottom: 12px; }
.mi-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.mi-price { font-family: 'Bebas Neue'; font-size: 30px; color: var(--gold); white-space: nowrap; line-height: 1; }
.mi-add { padding: 8px 20px; font-size: 13px; }

/* ═══ GALLERY ═══ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--gap); }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; cursor: pointer; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--glass-soft); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 14px 12px; background: linear-gradient(transparent, rgba(0,0,0,.82)); color: #fff; font-weight: 500; font-size: 13.5px; transform: translateY(6px); opacity: 0; transition: all .4s var(--ease); }
.gallery-item:hover .gallery-cap { transform: translateY(0); opacity: 1; }

/* ═══ REVIEWS ═══ */
.google-badge { display: inline-flex; align-items: center; gap: 13px; padding: 12px 20px; margin-top: 18px; }
.g-logo { width: 32px; height: 32px; border-radius: 50%; background: #fff; color: #4285F4; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat'; }
.google-badge .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.google-badge small { color: var(--text-dim); font-size: 12px; }
.reviews-track-wrap { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.reviews-track { display: flex; gap: var(--gap); width: max-content; animation: marquee 60s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card { width: 320px; flex-shrink: 0; padding: 22px; }
.rc-head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.rc-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--black-3); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; border: 1px solid var(--line); }
.rc-head strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); }
.rc-head .stars { color: var(--gold); font-size: 12px; }
.g-mark { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; background: #fff; color: #4285F4; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.review-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.75; margin-bottom: 10px; }
.rc-date { color: var(--text-dim); opacity: .7; font-size: 11.5px; }
.reviews-cta { text-align: center; margin-top: var(--sp-head); }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4.5vw, 52px); align-items: stretch; }
.contact-info h2 { font-size: clamp(34px, 4.4vw, 52px); color: var(--text); margin-bottom: 26px; }
.contact-line { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-line span { font-size: 18px; opacity: .7; }
.contact-line strong { color: var(--text); font-size: 14px; font-weight: 600; }
.contact-line p { color: var(--text-dim); font-size: 14px; }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.social-btn { background: transparent; border: 1px solid var(--line); color: var(--text); padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 13.5px; transition: all .25s var(--ease); }
.social-btn:hover { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }
.contact-map { border-radius: var(--radius); overflow: hidden; min-height: 380px; border: 1px solid var(--line); }

/* ═══ FOOTER ═══ */
.footer { background: var(--black-2); padding: clamp(44px, 6vw, 68px) 0 28px; border-top: 1px solid var(--line); }
.footer-inner { text-align: center; }
.footer-logo { height: 46px; margin-bottom: 16px; opacity: .95; }
.footer-inner p { color: var(--text-dim); margin-bottom: 20px; font-size: 14px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { font-weight: 500; font-size: 13.5px; color: var(--text-dim); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-inner small { color: var(--text-dim); opacity: .6; font-size: 12px; }
.footer-credit { display: block; margin-top: 8px; letter-spacing: .3px; }
.footer-credit a { color: var(--gold); opacity: .95; }
.footer-credit a:hover { text-decoration: underline; }

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 1500; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.28); transition: transform .3s var(--ease); }
.wa-float svg { width: 27px; height: 27px; color: #fff; }
.wa-float:hover { transform: scale(1.07); }

/* ═══ SCROLL REVEAL ═══ */
.reveal, .reveal-up { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.in, .reveal-up.in { opacity: 1; transform: translateY(0); }
.hero-content .reveal { transform: translateY(20px); }
.hero-content .reveal:nth-child(1) { transition-delay: .05s; }
.hero-content .reveal:nth-child(2) { transition-delay: .15s; }
.hero-content .reveal:nth-child(3) { transition-delay: .25s; }
.hero-content .reveal:nth-child(4) { transition-delay: .35s; }
.hero-content .reveal:nth-child(5) { transition-delay: .45s; }
.hero-content .reveal:nth-child(6) { transition-delay: .55s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 860px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh; background: var(--black-2); flex-direction: column; justify-content: center; gap: 24px; transition: right .4s var(--ease); padding: 40px; border-left: 1px solid var(--line); }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text); }
  .nav-toggle { display: flex; z-index: 1001; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-dots { display: none; }
  .info-item { min-width: 100%; border-right: none; border-bottom: 1px solid var(--line-soft); }
  .info-item:last-child { border-bottom: none; }
  .menu-list { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
  /* hero grows with its content on phones instead of being clipped */
  .hero { height: auto; min-height: 92vh; padding: 116px 0 56px; }
  .hero-title { line-height: 1; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .review-card { width: 270px; }
  .combo-body p { min-height: 0; }
}

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