/* ═══════════════════════════════════════════════════════════
   MOTOGARH — Garage Cafe Club India
   Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #0d0d0d;
  --surface:   #141414;
  --card:      #1a1a1a;
  --border:    #262626;
  --border-hi: #333;
  --text:      #fff;
  --muted:     #6b6b6b;
  --olive:     #b5cf84;
  --olive-dim: #8aa65a;
  --orange:    #fd8b00;
  --orange-hi: #ffa53a;
  --white:     #f0ede8;
  --ff-display: 'Anton', sans-serif;
  --ff-cond:    'Barlow Condensed', sans-serif;
  --ff-mono:    'JetBrains Mono', monospace;
  --ff-body:    'Hanken Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: #000; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 64px; } }

/* ═══ UTILITY ═══ */
.label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-accent { color: var(--olive); }
.label-orange { color: var(--orange); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--border-hi);
  padding: 4px 10px;
  color: var(--muted);
}
.pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
}

/* ═══ NAV ═══ */
header {
  position: relative;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
  transition: background .3s;
}
header.scrolled {
  background: rgba(13,13,13,1);
  border-bottom-color: var(--border-hi);
}
nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
}
@media (min-width: 1024px) { nav { padding: 0 48px; } }

/* Left slot — Instagram icon */
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nav-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid var(--border-hi);
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
  text-decoration: none;
  flex-shrink: 0;
  border-radius: 4px;
}
.nav-ig:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(253,139,0,.07);
}
.nav-ig svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* Center slot — Logo */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100px;
  height: 100px;
}
.nav-logo img {
  width: 100px; height: 100px;
  object-fit: contain;
  display: block;
  transition: transform .3s, filter .3s;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  border-radius: 50%;
}
.nav-logo:hover img { transform: scale(1.08); filter: brightness(1.15); }

/* Right slot — Desktop links + Hamburger */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); }

/* Hamburger — always visible on mobile, hidden on large screens */
.hamburger {
  background: none;
  border: 1px solid var(--border-hi);
  cursor: pointer;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color .2s;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--orange); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--muted);
  transition: background .2s;
}
.hamburger:hover span { background: var(--orange); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(13,13,13,.98);
  border-bottom: 1px solid var(--border-hi);
  z-index: 99;
  padding: 24px 20px 32px;
  display: none;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }

/* ═══ HERO ═══ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0d0d0d;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: grayscale(100%) contrast(130%);
}
/* Blueprint grid */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(181,207,132,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181,207,132,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ── Floating logo above headline ── */
.hero-logo-wrap {
  position: relative;
  z-index: 2;
}
.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: brightness(1.1);
  animation: logoFloat 4s ease-in-out infinite;
}
@media (min-width: 768px) { .hero-logo { width: 180px; height: 180px; } }
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--olive);
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(52px, 12vw, 130px);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-headline span { color: var(--orange); }

.hero-sub {
  font-family: var(--ff-cond);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .04em;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.btn-primary {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--orange);
  color: #000;
  padding: 14px 32px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--orange-hi); transform: scale(1.04); }
.btn-ghost {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  padding: 13px 32px;
  border: 1px solid var(--border-hi);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--olive); color: var(--olive); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--olive);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint span { font-family: var(--ff-mono); font-size: 9px; letter-spacing: .15em; color: var(--muted); text-transform: uppercase; }
.scroll-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ═══ PILLARS (Garage / Cafe / Club) ═══ */
#pillars { padding: 80px 0; border-top: 1px solid var(--border); }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(3,1fr); } }

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  cursor: default;
}
.pillar:hover { border-color: var(--orange); transform: translateY(-4px); }
.pillar::before {
  content: attr(data-num);
  position: absolute;
  top: -10px; right: 16px;
  font-family: var(--ff-display);
  font-size: 120px;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.pillar-icon {
  font-size: 32px !important;
  color: var(--orange);
  margin-bottom: 20px;
}
.pillar h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.pillar p { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* ═══ LOCATIONS ═══ */
#locations { padding: 100px 0; background: var(--surface); }
.section-header { margin-bottom: 56px; }
.section-eyebrow { display: block; margin-bottom: 12px; }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 1;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px)  { .locations-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(4,1fr); } }

.loc-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color .3s, transform .3s;
  cursor: pointer;
}
.loc-card:hover { border-color: var(--olive); transform: scale(1.02); }
.loc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(90%) brightness(.7);
  transition: filter .6s;
}
.loc-card:hover img { filter: grayscale(0%) brightness(.85); }
.loc-card-body {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, transparent 100%);
}
.loc-code {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--olive);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.loc-name {
  font-family: var(--ff-display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.loc-address {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.loc-tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--orange);
  color: #000;
  padding: 3px 8px;
}

/* ═══ MENU ═══ */
#menu { padding: 100px 0; }
.menu-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .menu-wrap { grid-template-columns: 1fr 1fr; } }

.menu-intro h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 12px 0 20px;
}
.menu-intro h2 span { color: var(--orange); }
.menu-intro p { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 440px; }

.menu-table {
  background: var(--card);
  border: 1px solid var(--border);
}
.menu-table-head {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(253,139,0,.04); }
.menu-item-left { display: flex; flex-direction: column; gap: 4px; }
.menu-item-name { font-family: var(--ff-cond); font-size: 18px; font-weight: 600; text-transform: uppercase; color: var(--text); }
.menu-item-desc { font-size: 12px; color: var(--muted); }
.menu-item-right { text-align: right; }
.menu-item-price { font-family: var(--ff-mono); font-size: 15px; color: var(--orange); }
.menu-item-tag { font-family: var(--ff-mono); font-size: 9px; color: var(--olive); letter-spacing: .1em; }

/* ═══ EVENTS ═══ */
#events { padding: 100px 0; background: var(--surface); }
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .events-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(4,1fr); } }

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.event-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.event-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
  transition: filter .5s;
}
.event-card:hover .event-img img { filter: grayscale(0%); }
.event-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--orange);
  color: #000;
  padding: 3px 8px;
  font-weight: 600;
}
.event-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.event-title {
  font-family: var(--ff-display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--orange);
}
.event-desc { font-size: 13px; line-height: 1.6; color: var(--muted); flex: 1; }
.event-btn {
  width: 100%;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--olive);
  padding: 10px;
  cursor: pointer;
  transition: background .2s, color .2s;
  margin-top: 8px;
}
.event-btn:hover { background: var(--olive); color: #000; }

/* ═══ FRANCHISE CTA ═══ */
#franchise {
  padding: 80px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
#franchise::before {
  content: 'MOTOGARH';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(80px, 15vw, 200px);
  color: rgba(0,0,0,.07);
  white-space: nowrap;
  pointer-events: none;
}
.franchise-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .franchise-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.franchise-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  margin-bottom: 16px;
}
.franchise-text p { font-size: 16px; color: rgba(0,0,0,.65); max-width: 480px; line-height: 1.7; }
.franchise-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.btn-dark {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #000;
  color: var(--orange);
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  font-weight: 600;
}
.btn-dark:hover { opacity: .85; }
.franchise-stats {
  display: flex;
  gap: 32px;
}
.fstat-num { font-family: var(--ff-display); font-size: 40px; color: #000; line-height: 1; }
.fstat-label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,.55); margin-top: 4px; }

/* ═══ ABOUT / MANIFESTO ═══ */
#about { padding: 100px 0; background: var(--bg); border-top: 1px solid var(--border); }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) { .about-wrap { grid-template-columns: 1fr 1fr; align-items: center; } }

.about-visual {
  position: relative;
}
.about-img {
  width: 100%; height: 460px;
  object-fit: cover;
  filter: grayscale(60%);
  border: 1px solid var(--border);
}
.about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--orange);
  color: #000;
  padding: 20px 24px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.8;
  font-weight: 600;
}
.about-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 12px 0 24px;
}
.about-text h2 em { color: var(--olive); font-style: normal; }
.about-text p { font-size: 16px; line-height: 1.9; color: var(--muted); margin-bottom: 20px; }
.values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-dot {
  width: 8px; height: 8px;
  background: var(--olive);
  flex-shrink: 0;
  margin-top: 7px;
}
.value-text { font-size: 15px; line-height: 1.6; color: var(--text); }

/* ═══ TESTIMONIALS ═══ */
#testimonials { padding: 100px 0; background: var(--surface); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
}
.testi-quote {
  font-family: var(--ff-display);
  font-size: 64px;
  color: var(--orange);
  line-height: .8;
  margin-bottom: 8px;
}
.testi-text {
  font-family: var(--ff-cond);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 36px; height: 36px;
  background: var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.testi-name { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; color: var(--olive); text-transform: uppercase; }
.testi-handle { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ═══ FOOTER ═══ */
footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
}

.footer-brand img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--muted); max-width: 260px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.social-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.social-link:hover { border-color: var(--orange); color: var(--orange); }

.footer-col h5 {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
  display: block;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-copy { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.footer-coords { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-coords span { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; color: rgba(107,107,107,.5); }

/* ═══ MOBILE MENU ═══ */
.hamburger { background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--muted);
  transition: background .2s;
}
.hamburger:hover span { background: var(--orange); }
/* ═══ MATERIAL ICONS ═══ */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ═══ RESPONSIVE HELPERS ═══ */
@media (max-width: 640px) {
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
