/* ===============================================================
   Cafe Double Dose — late-night café, DHA Karachi
   Dark, moody base with neon pink/cyan accents.
   =============================================================== */

:root {
  --bg: #07060c;
  --bg-2: #0d0b16;
  --panel: #12101d;
  --panel-2: #171427;
  --line: rgba(255, 255, 255, 0.09);
  --ink: #f4f1ff;
  --ink-soft: #a49fbe;
  --ink-dim: #6f6a89;

  --pink: #ff2f86;
  --cyan: #2ee6ff;
  --amber: #ffb347;
  --wa: #25d366;

  --display: "Anton", "Impact", sans-serif;
  --body: "Space Grotesk", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --r: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, iframe { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

em { font-style: normal; color: var(--pink); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- film grain over everything ---------------------------------- */
.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 900; opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  animation: grain 700ms steps(2) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-2%, 1.5%); }
  100% { transform: translate(1.5%, -1%); }
}

/* ================================ CHROME ================================ */
.status-strip {
  background: linear-gradient(90deg, rgba(255, 47, 134, 0.16), rgba(46, 230, 255, 0.12));
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 60;
}

.strip-inner {
  display: flex; align-items: center; gap: 12px;
  min-height: 40px; flex-wrap: wrap;
}

.status { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-dim); flex: none;
}
.status.is-open .dot {
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.7);
  animation: pulse 2s infinite;
}
.status.is-closed .dot { background: var(--pink); }

@keyframes pulse {
  70%  { box-shadow: 0 0 0 8px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

.strip-sep { color: var(--ink-dim); }
.strip-note { color: var(--ink-soft); }
.strip-call { margin-left: auto; font-weight: 600; color: var(--cyan); }
.strip-call:hover { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 12, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-stuck {
  background: rgba(7, 6, 12, 0.94);
  border-bottom-color: var(--line);
}

.nav { display: flex; align-items: center; gap: 28px; min-height: 74px; }

.brandmark { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.glyph { width: 40px; height: 40px; flex: none; }
.brand-name {
  font-family: var(--display);
  font-size: 22px; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.02em;
  display: flex; flex-direction: column; gap: 4px;
}
.brand-name small {
  font-family: var(--body);
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.22em;
  color: var(--ink-dim); text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 30px; list-style: none;
  margin: 0 0 0 auto; padding: 0;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav-links a { color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--pink);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

.nav-cta {
  flex: none;
  border: 1px solid rgba(46, 230, 255, 0.45);
  color: var(--cyan);
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--cyan); color: #04121a;
  box-shadow: 0 0 24px rgba(46, 230, 255, 0.4);
}

.nav-toggle {
  display: none; flex: none;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer; position: relative;
}
.nav-toggle span[aria-hidden] {
  position: absolute; left: 11px; top: 20px;
  width: 18px; height: 1.5px; background: var(--ink);
}
.nav-toggle span[aria-hidden]::before,
.nav-toggle span[aria-hidden]::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1.5px; background: var(--ink);
  transition: transform 0.25s ease;
}
.nav-toggle span[aria-hidden]::before { top: -6px; }
.nav-toggle span[aria-hidden]::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span[aria-hidden] { background: transparent; }
.nav-toggle[aria-expanded="true"] span[aria-hidden]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span[aria-hidden]::after  { transform: translateY(-6px) rotate(-45deg); }

/* ================================ BUTTONS ================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 12px; }

.btn-neon {
  background: var(--pink); color: #14000a;
  box-shadow: 0 0 0 rgba(255, 47, 134, 0);
}
.btn-neon:hover { box-shadow: 0 8px 34px rgba(255, 47, 134, 0.45); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-wa { background: var(--wa); color: #041a0c; }
.btn-wa:hover { box-shadow: 0 8px 34px rgba(37, 211, 102, 0.4); }

/* ================================= HERO ================================= */
.hero {
  position: relative; overflow: hidden;
  padding: 110px 0 90px;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(255, 47, 134, 0.16), transparent 62%),
    radial-gradient(760px 480px at 88% 30%, rgba(46, 230, 255, 0.14), transparent 60%),
    var(--bg);
}

.hero-glow {
  position: absolute; left: 50%; top: -220px; transform: translateX(-50%);
  width: 900px; height: 520px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 47, 134, 0.22), transparent);
  filter: blur(30px); pointer-events: none;
}

.hero-rings { position: absolute; inset: 0; pointer-events: none; }
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ring-a {
  width: 540px; height: 540px; right: -140px; top: 40px;
  border-color: rgba(46, 230, 255, 0.16);
  animation: drift 18s ease-in-out infinite alternate;
}
.ring-b {
  width: 540px; height: 540px; right: 40px; top: 40px;
  border-color: rgba(255, 47, 134, 0.18);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-26px, 22px); }
}

.hero-inner { position: relative; z-index: 2; max-width: 880px; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 14px; margin-bottom: 26px;
  border: 1px solid rgba(46, 230, 255, 0.3);
  border-radius: 999px;
  background: rgba(46, 230, 255, 0.06);
}

.hero h1 {
  font-size: clamp(50px, 9.2vw, 118px);
  margin-bottom: 26px;
  text-shadow: 0 0 60px rgba(255, 47, 134, 0.28);
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--cyan);
  text-shadow: 0 0 34px rgba(46, 230, 255, 0.45);
}

.lede {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--ink-soft);
  max-width: 610px; margin: 0 0 34px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex; gap: 54px; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats b {
  font-family: var(--display); font-weight: 400;
  font-size: 42px; line-height: 1; color: var(--ink);
}
.hero-stats span {
  font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-dim);
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-dim);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--pink));
}

/* =============================== MARQUEE =============================== */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex; gap: 40px;
  animation: scroll-x 32s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-size: 22px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-dim);
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================== SECTIONS =============================== */
.section { padding: 108px 0; position: relative; }

.section-head { max-width: 640px; margin-bottom: 52px; }

.kicker {
  display: block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(36px, 5.4vw, 66px);
  margin-bottom: 18px;
}

.section-lede { color: var(--ink-soft); margin: 0; font-size: 16.5px; }

/* ================================= MENU ================================= */
.menu-section { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }

.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.tab {
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; cursor: pointer;
  font-family: var(--body); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: all 0.22s ease;
}
.tab:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.25); }
.tab.is-active {
  background: var(--pink); border-color: var(--pink);
  color: #14000a;
  box-shadow: 0 6px 24px rgba(255, 47, 134, 0.3);
}

.menu-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.menu-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px 22px;
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.menu-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 180px at 100% 0%, rgba(255, 47, 134, 0.14), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 47, 134, 0.35);
  background: var(--panel-2);
}
.menu-card:hover::before { opacity: 1; }
.menu-card.is-hidden { display: none; }
.menu-card > * { position: relative; z-index: 1; }

.card-top {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 12px;
}
.menu-card h3 { font-size: 24px; flex: 1; }
.price {
  font-family: var(--body); font-size: 14px; font-weight: 700;
  color: var(--cyan); white-space: nowrap;
}
.menu-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 16px; }

.tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 12px;
}
.tag-pink { color: var(--pink); border-color: rgba(255, 47, 134, 0.35); }
.tag-cyan { color: var(--cyan); border-color: rgba(46, 230, 255, 0.35); }

.menu-foot {
  margin: 34px 0 0; font-size: 13px;
  color: var(--ink-dim); letter-spacing: 0.02em;
}

/* ================================ HOURS ================================ */
.hours-section {
  background:
    radial-gradient(700px 400px at 80% 50%, rgba(46, 230, 255, 0.1), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours-inner {
  display: grid; gap: 54px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hours-copy h2 { font-size: clamp(34px, 5vw, 62px); margin-bottom: 20px; }
.hours-copy p { color: var(--ink-soft); max-width: 500px; margin: 0 0 30px; }
.hours-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.clock-card {
  background: var(--panel);
  border: 1px solid rgba(46, 230, 255, 0.22);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.clock-face {
  padding: 40px 30px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: radial-gradient(320px 200px at 50% 0%, rgba(255, 47, 134, 0.16), transparent 70%);
  border-bottom: 1px solid var(--line);
}
.clock-label {
  font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink-dim);
  margin-bottom: 8px;
}
.clock-time {
  font-family: var(--display); font-size: 46px; line-height: 1;
  text-shadow: 0 0 30px rgba(46, 230, 255, 0.35);
}
.clock-arrow { color: var(--pink); font-size: 20px; line-height: 1; }
.clock-sub {
  margin-top: 12px; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim);
}

.clock-list { list-style: none; margin: 0; padding: 8px 30px 22px; }
.clock-list li {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.clock-list li:last-child { border-bottom: 0; }
.clock-list span { color: var(--ink-soft); }
.clock-list b { color: var(--cyan); font-weight: 600; }

/* ============================== LOCATIONS ============================== */
.branch-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.branch-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.branch-card:hover {
  border-color: rgba(46, 230, 255, 0.35);
  transform: translateY(-3px);
}

.branch-map { position: relative; height: 260px; background: var(--panel-2); }
.branch-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) contrast(0.9);
}
.branch-map::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 6, 12, 0.25), transparent 40%, rgba(18, 16, 29, 0.55));
}

.branch-body { padding: 28px 26px 30px; }

.branch-flag {
  display: inline-block;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.branch-flag-pink { color: var(--pink); background: rgba(255, 47, 134, 0.12); }
.branch-flag-cyan { color: var(--cyan); background: rgba(46, 230, 255, 0.12); }

.branch-body h3 { font-size: 34px; margin-bottom: 12px; }
.branch-addr { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; }

.branch-facts {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.branch-facts li {
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px;
}

.branch-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================== INSTAGRAM ============================== */
.gram-section { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

.gram-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gram-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  padding: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.gram-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 6, 12, 0.85));
}
.gram-tile span {
  position: relative; z-index: 1;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink);
}
.gram-tile:hover { transform: scale(1.02); border-color: rgba(255, 47, 134, 0.4); }

.g1 { background: linear-gradient(135deg, #2a0d1f, #6d1240 60%, #ff2f86); }
.g2 { background: linear-gradient(135deg, #0d1f2a, #124a6d 60%, #2ee6ff); }
.g3 { background: linear-gradient(135deg, #1a1030, #3a1d5e 60%, #8b5cf6); }
.g4 { background: linear-gradient(135deg, #2a1a0d, #6d4712 60%, #ffb347); }
.g5 { background: linear-gradient(135deg, #200d2a, #56126d 60%, #d22eff); }
.g6 { background: linear-gradient(135deg, #0d2a1c, #126d47 60%, #25d366); }

.gram-cta { margin-top: 30px; text-align: center; }

/* ============================== CTA / WA ============================== */
.cta-section { padding-bottom: 120px; }

.cta-inner {
  position: relative; overflow: hidden;
  max-width: 940px;
  text-align: center;
  padding: 70px 40px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(255, 47, 134, 0.2), transparent 70%),
    radial-gradient(520px 260px at 85% 100%, rgba(46, 230, 255, 0.18), transparent 70%);
}
.cta-inner > *:not(.cta-glow) { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(34px, 5.2vw, 60px); margin-bottom: 18px; }
.cta-inner p {
  color: var(--ink-soft); max-width: 520px;
  margin: 0 auto 32px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================ FOOTER ================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 60px 0 26px;
  font-size: 14px;
}

.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.footer-brand { margin-bottom: 18px; }
.footer-note { color: var(--ink-soft); max-width: 320px; margin: 0; }

.site-footer h4 {
  font-family: var(--body); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim); margin: 0 0 14px;
}
.site-footer p { color: var(--ink-soft); margin: 0 0 12px; }
.site-footer a:hover { color: var(--cyan); }

.socials {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.socials a {
  display: inline-block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; color: var(--ink-soft);
  transition: all 0.22s ease;
}
.socials a:hover { border-color: var(--pink); color: var(--pink); }

.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 46px; padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-dim);
}

/* --- floating WhatsApp ------------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--wa); color: #041a0c;
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.4);
  transition: transform 0.22s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ============================== REVEALS ============================== */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 940px) {
  .hours-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-rings { display: none; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    margin: 0; padding: 0;
    background: rgba(7, 6, 12, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.is-open { max-height: 320px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 24px; }
  .nav-links a::after { display: none; }
  .nav { position: relative; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .hero { padding: 70px 0 80px; }
  .hero-stats { gap: 30px; }
  .hero-stats b { font-size: 32px; }
  .strip-note { display: none; }
  .strip-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { padding: 50px 22px; }
  .btn { padding: 13px 22px; }
  .scroll-hint { display: none; }
  .marquee span { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .marquee-track, .ring, .dot { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
