/* =========================================================
   Siya's Kitchen — styles.css
   Dark theme + yellow accents. Mobile-first.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:          #0a0a0a;
  --bg-2:        #121212;
  --bg-3:        #1a1a1a;
  --line:        rgba(255,255,255,0.08);
  --text:        #f5f5f5;
  --muted:       #b4b4b4;
  --accent:      #FFD23F;
  --accent-2:    #FFB800;
  --accent-soft: rgba(255,210,63,0.12);
  --danger:      #ff5a4a;

  --radius:     14px;
  --radius-lg:  22px;
  --maxw:       1180px;
  --shadow:     0 20px 60px rgba(0,0,0,.45);

  --font: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #1a1400;
  box-shadow: 0 10px 30px rgba(255,210,63,.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: #ffde5c;
  box-shadow: 0 14px 36px rgba(255,210,63,.35);
  color: #1a1400;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--block { width: 100%; }

/* ---------- Section shared ---------- */
.section-kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .7rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .75rem;
  letter-spacing: -0.02em;
}
.section-lead {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 3rem; }
.accent { color: var(--accent); }

/* =========================================================
   NAV (glassmorphism, sticky)
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.78);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 700;
}
.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 2px;
}
.nav__brand-text {
  font-size: 1.1rem;
  letter-spacing: .01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { right: 0; }
.nav__cta {
  background: var(--accent);
  color: #1a1400 !important;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav__cta:hover { background: #ffde5c; transform: translateY(-1px); }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px; background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 4rem;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 50% 30%, rgba(255,210,63,.12), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.85) 60%, #0a0a0a 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: .85rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}
.hero__title {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.4rem;
  letter-spacing: -0.025em;
}
.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
  justify-content: center;
  padding: .8rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: .9rem;
  backdrop-filter: blur(6px);
}
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 8px;
  background: var(--accent);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  80%  { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* =========================================================
   OFFERS
   ========================================================= */
.offers { padding: 5rem 0; background: var(--bg); }

.offers__card {
  position: relative;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.offers__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(400px 200px at 90% 20%, rgba(255,210,63,.2), transparent 60%),
    radial-gradient(400px 200px at 10% 90%, rgba(255,210,63,.1), transparent 60%);
  pointer-events: none;
}
.offers__left { position: relative; }
.offers__badge {
  display: inline-block;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.offers__headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.offers__headline .mega {
  font-size: 1.35em;
  color: var(--accent);
  display: inline-block;
  transform: translateY(4px);
}
.offers__sub { color: var(--muted); margin: 0 0 1.5rem; }
.offers__platforms {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #0f0f0f;
}
.pill--zomato { color: #ff3b5c; border-color: rgba(255,59,92,.3); }
.pill--swiggy { color: #ff9c1a; border-color: rgba(255,156,26,.3); }
.pill--toing  { color: #1ec773; border-color: rgba(30,199,115,.3); }

.offers__right {
  display: flex;
  justify-content: center;
  position: relative;
}
.offer-coin {
  width: clamp(170px, 22vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe066, var(--accent) 55%, #d9a500);
  color: #1a1400;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow:
    0 20px 50px rgba(255,210,63,.25),
    inset 0 -8px 20px rgba(0,0,0,.15);
  animation: spinSlow 14s linear infinite;
}
.offer-coin::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(0,0,0,.2);
  border-radius: 50%;
}
.offer-coin__num { font-size: clamp(3rem, 6vw, 4.3rem); font-weight: 800; line-height: 1; }
.offer-coin__pct { position: absolute; top: 28%; right: 22%; font-size: 1.4rem; font-weight: 700; }
.offer-coin__label { position: absolute; bottom: 22%; font-size: 1rem; font-weight: 700; letter-spacing: .2em; }
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* keep the text upright while the coin rotates */
.offer-coin__num,
.offer-coin__pct,
.offer-coin__label { animation: spinSlowReverse 14s linear infinite; }
@keyframes spinSlowReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.offer-coin__pct { animation-name: spinSlowReversePct; }
@keyframes spinSlowReversePct {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* =========================================================
   MENU
   ========================================================= */
.menu { padding: 5rem 0; background: var(--bg-2); }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.menu-card {
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, border-color .25s ease, box-shadow .3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,210,63,.35);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.menu-card__image {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.menu-card__image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
}
.menu-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 1;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1400;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.menu-card__body { padding: 1.8rem; }
.menu-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}
.menu-card__desc { color: var(--muted); margin: 0 0 1.3rem; font-size: .95rem; }

.menu-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.07);
  font-size: .96rem;
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list li span {
  font-weight: 500;
  position: relative;
  padding-left: 1.2rem;
}
.menu-list li span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .7;
}
.menu-list li em {
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ----- Category cards (Vadapav / Dabeli / Fries / Garlic Bread) ----- */
.menu__subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 1.8rem;
}
.cat-card {
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, border-color .25s ease, box-shadow .3s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,210,63,.35);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.cat-card__image {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cat-card__image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
}
.cat-card__tag {
  position: absolute;
  top: .9rem; left: .9rem;
  z-index: 1;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1400;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.cat-card__body {
  padding: 1.6rem 1.8rem 1.8rem;
}
.cat-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
  padding-bottom: .8rem;
  position: relative;
}
.cat-card__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ----- Menu CTA block ----- */
.menu__cta {
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.menu__cta-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--text);
  letter-spacing: .01em;
}
.menu__cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.menu__note {
  color: var(--muted);
  margin: 0;
  font-size: .92rem;
}
.menu__note a { color: var(--accent); font-weight: 600; }

/* Platform-branded CTA buttons */
.btn--zomato {
  background: #e23744;
  color: #fff;
  box-shadow: 0 10px 30px rgba(226,55,68,.25);
}
.btn--zomato:hover {
  background: #f24755;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(226,55,68,.35);
}
.btn--swiggy {
  background: #fc8019;
  color: #fff;
  box-shadow: 0 10px 30px rgba(252,128,25,.25);
}
.btn--swiggy:hover {
  background: #ff8e2e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(252,128,25,.35);
}
.btn--toing {
  background: #00b074;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,176,116,.25);
}
.btn--toing:hover {
  background: #14c486;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,176,116,.35);
}

/* Make pill links interactive */
a.pill {
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
a.pill:hover {
  transform: translateY(-2px);
  background: #161616;
}
a.pill--zomato:hover { color: #ff5a6b; border-color: rgba(255,90,107,.5); }
a.pill--swiggy:hover { color: #ffb260; border-color: rgba(255,178,96,.5); }
a.pill--toing:hover  { color: #3ddc94; border-color: rgba(61,220,148,.5); }

/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.strip {
  background: var(--accent);
  color: #1a1400;
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.strip__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .05em;
}
.strip__track span::after { content: "●"; margin-left: 3rem; opacity: .4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   BULK / PARTY / CORPORATE ORDERS BANNER
   ========================================================= */
.bulk {
  padding: 5rem 0;
  background: var(--bg);
}
.bulk__card {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px 260px at 85% -10%, rgba(255,210,63,.18), transparent 60%),
    radial-gradient(500px 260px at 5% 110%, rgba(255,210,63,.12), transparent 60%),
    linear-gradient(135deg, #151515 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,210,63,.2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bulk__card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,63,.15), transparent 70%);
  pointer-events: none;
}
.bulk__card::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,63,.08), transparent 70%);
  pointer-events: none;
}
.bulk__badge {
  display: inline-block;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  position: relative;
}
.bulk__headline {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1.1rem;
  position: relative;
}
.bulk__sub {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 auto 2.2rem;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  position: relative;
}
.bulk__chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin: 0 auto 2.4rem;
  position: relative;
}
.bulk__chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.bulk__chip:hover {
  transform: translateY(-2px);
  background: rgba(255,210,63,.08);
  border-color: rgba(255,210,63,.4);
}
.bulk__chip-ico { font-size: 1.1rem; }
.bulk__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: 5rem 0; background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact__info .section-title { margin-bottom: 1.8rem; }
.contact__list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.contact__list li strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .4rem;
}
.contact__list li a,
.contact__list li span {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}
.contact__list li a:hover { color: var(--accent); }
.contact__list li a + a { margin-top: .35rem; color: var(--muted); font-size: .9rem; }

/* Form */
.contact__form {
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form__title { font-size: 1.4rem; margin: 0 0 .3rem; font-weight: 700; }
.form__sub { color: var(--muted); margin: 0 0 1.5rem; font-size: .92rem; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__form label {
  display: block;
  margin-bottom: 1rem;
}
.contact__form label > span {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .9rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .96rem;
  transition: border-color .2s ease, background .2s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #1e1e1e;
}
.contact__form textarea { resize: vertical; min-height: 110px; }
.form__note { color: var(--muted); font-size: .82rem; margin-top: .75rem; text-align: center; }
.hp { position: absolute; left: -5000px; opacity: 0; pointer-events: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 3rem 0 2rem;
  background: #050505;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.footer__logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 2px;
}
.footer__name { margin: 0; font-weight: 700; font-size: 1.05rem; }
.footer__tag { margin: 0; color: var(--muted); font-size: .85rem; }
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  color: var(--muted);
  font-size: .9rem;
}
.footer__meta a:hover { color: var(--accent); }
.footer__copy {
  color: #666;
  font-size: .8rem;
  margin: .5rem 0 0;
  letter-spacing: .02em;
}
.footer__powered {
  margin: .4rem 0 0;
  font-size: .78rem;
  color: #555;
  letter-spacing: .05em;
}
.footer__powered a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.footer__powered a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* stagger any direct revealed children */
.reveal.is-visible > .reveal { transition-delay: .1s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg, .strip__track, .offer-coin,
  .offer-coin__num, .offer-coin__pct, .offer-coin__label,
  .hero__scroll span { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .offers__card { grid-template-columns: 1fr; text-align: center; }
  .offers__platforms { justify-content: center; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a {
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin: .5rem 1.5rem; padding: .85rem 1rem; }
  .nav__burger { display: block; }

  .menu__grid { grid-template-columns: 1fr; }
  .menu__subgrid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
}

@media (max-width: 420px) {
  .hero__actions .btn { width: 100%; }
  .nav__brand-text { display: none; }
  .menu-card__body { padding: 1.3rem; }
  .contact__form { padding: 1.4rem; }
}
