/* ============================================================
   Ala Döner - design tokens
   Direction: dark "flame-grill" luxury. Charcoal + saffron gold + ember.
   ============================================================ */
:root {
  /* Palette - döner: charcoal, saffron-gold, ember-paprika, warm cream */
  --color-ink: oklch(22% 0.02 55);
  --color-ink-soft: oklch(40% 0.02 55);
  --color-char: oklch(16% 0.016 52);
  --color-char-2: oklch(21% 0.02 50);
  --color-char-3: oklch(27% 0.022 52);
  --color-paper: oklch(98.6% 0.008 82);
  --color-cream: oklch(96% 0.016 82);
  --color-cream-deep: oklch(92.5% 0.024 74);
  --color-line: oklch(89% 0.02 74);
  --color-gold: oklch(80% 0.135 80);
  --color-gold-deep: oklch(71% 0.14 68);
  --color-gold-glow: oklch(86% 0.12 86);
  --color-ember: oklch(58% 0.19 34);
  --color-ember-deep: oklch(49% 0.175 32);
  --color-whatsapp: oklch(64% 0.16 150);
  --color-whatsapp-deep: oklch(56% 0.15 150);

  /* Typography */
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  --text-lg: clamp(1.18rem, 1rem + 0.6vw, 1.42rem);
  --text-xl: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.9vw, 3.5rem);
  --text-hero: clamp(2.5rem, 1.1rem + 4.3vw, 5rem);

  /* Spacing & rhythm */
  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --gutter: clamp(1.25rem, 0.8rem + 2.4vw, 3rem);
  --max-w: 1240px;

  /* Surfaces */
  --radius-sm: 9px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 1px 2px oklch(20% 0.02 50 / 0.09);
  --shadow: 0 18px 40px -22px oklch(28% 0.05 40 / 0.45);
  --shadow-lg: 0 40px 90px -42px oklch(22% 0.06 35 / 0.6);
  --shadow-gold: 0 26px 60px -30px oklch(72% 0.14 70 / 0.55);

  /* Motion */
  --duration-fast: 160ms;
  --duration-normal: 320ms;
  --duration-slow: 640ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ Base ============ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.62;
  color: var(--color-ink);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--color-gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: top var(--duration-fast) ease;
}
.skip-link:focus { top: 12px; }

/* ============ Shared type ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ember-deep);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--light { color: var(--color-gold); }

.section-title {
  margin-top: 14px;
  font-size: var(--text-2xl);
  color: var(--color-ink);
  max-width: 16ch;
}
.section-title--light { color: var(--color-cream); }

.lead { font-size: var(--text-lg); color: var(--color-ink-soft); }
.lead--light { color: oklch(83% 0.02 70); }

/* ============ Buttons ============ */
.btn {
  --btn-fg: var(--color-cream);
  --btn-bg: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo),
              background var(--duration-fast) ease, color var(--duration-fast) ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 16px 28px; font-size: var(--text-base); }

.btn--gold { --btn-bg: var(--color-gold); --btn-fg: var(--color-char); box-shadow: var(--shadow-gold); }
.btn--gold:hover { --btn-bg: var(--color-gold-glow); box-shadow: 0 30px 66px -28px oklch(72% 0.14 70 / 0.7); }

.btn--whatsapp { --btn-bg: var(--color-whatsapp); --btn-fg: #fff; }
.btn--whatsapp:hover { --btn-bg: var(--color-whatsapp-deep); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--color-ink);
  border-color: var(--color-line);
}
.btn--ghost:hover { --btn-bg: var(--color-cream); border-color: var(--color-ink); }

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--color-cream);
  border-color: oklch(100% 0 0 / 0.28);
}
.btn--ghost-light:hover { --btn-bg: oklch(100% 0 0 / 0.08); border-color: var(--color-gold); color: var(--color-gold-glow); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--duration-normal) ease, box-shadow var(--duration-normal) ease, backdrop-filter var(--duration-normal) ease;
}
.site-header.is-scrolled {
  background: oklch(98.6% 0.008 82 / 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--color-line), 0 12px 30px -24px oklch(20% 0.02 50 / 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.brand__mark { border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ember-deep);
  margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.nav__links a {
  position: relative;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
  padding: 6px 2px;
  transition: color var(--duration-fast) ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--color-gold-deep);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}
.nav__links a:hover { color: var(--color-ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1.5px solid var(--color-line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span { height: 2px; width: 100%; background: var(--color-ink); border-radius: 2px; transition: transform var(--duration-normal) var(--ease-out-expo), opacity var(--duration-fast) ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 78% 8%, oklch(30% 0.05 52) 0%, transparent 55%),
    linear-gradient(180deg, var(--color-char) 0%, var(--color-char-2) 100%);
  color: var(--color-cream);
  padding-block: clamp(2.5rem, 1rem + 6vw, 6rem) clamp(3.5rem, 2rem + 6vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 80%;
  background: radial-gradient(50% 60% at 50% 50%, oklch(66% 0.16 60 / 0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.hero__title {
  font-size: var(--text-hero);
  font-weight: 800;
  margin-top: 20px;
  color: var(--color-cream);
}
.hero__title em {
  font-style: normal;
  color: var(--color-gold);
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.14em;
  background: linear-gradient(90deg, var(--color-ember), var(--color-gold));
  border-radius: 4px;
  opacity: 0.5;
}
.hero__lead {
  margin-top: 22px;
  max-width: 48ch;
  font-size: var(--text-lg);
  color: oklch(84% 0.02 74);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid oklch(100% 0 0 / 0.12);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-gold-glow);
}
.stat__label { display: block; font-size: var(--text-sm); color: oklch(76% 0.015 74); margin-top: 2px; }

.hero__visual { position: relative; }
.hero__plate {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(14px, 2vw, 26px);
  background: linear-gradient(160deg, oklch(30% 0.03 52 / 0.7), oklch(20% 0.02 50 / 0.4));
  border: 1px solid oklch(100% 0 0 / 0.1);
  box-shadow: var(--shadow-lg);
}
.hero__plate img { border-radius: var(--radius-lg); filter: drop-shadow(0 30px 40px oklch(15% 0.02 40 / 0.5)); }
.hero__badge {
  position: absolute;
  top: -22px; left: -22px;
  width: 104px; height: 104px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--color-gold-glow), var(--color-gold-deep));
  color: var(--color-char);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.05;
  box-shadow: var(--shadow-gold);
  transform: rotate(-8deg);
}
.hero__badge-star { font-size: 1.1rem; color: var(--color-ember-deep); }
.hero__chip {
  position: absolute;
  right: clamp(-6px, 1vw, 18px); bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: oklch(20% 0.02 50 / 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-cream);
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  box-shadow: 0 0 0 0 oklch(64% 0.16 150 / 0.6);
  animation: pulse 2.2s var(--ease-out-expo) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(64% 0.16 150 / 0.55); }
  70% { box-shadow: 0 0 0 12px oklch(64% 0.16 150 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(64% 0.16 150 / 0); }
}

/* ============ Marquee strip ============ */
.strip {
  background: var(--color-ink);
  color: var(--color-gold);
  padding-block: 16px;
  overflow: hidden;
  border-block: 1px solid var(--color-char-3);
}
.strip__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip__track i { color: var(--color-ember); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Section base ============ */
.section { padding-block: var(--space-section); }
.section--paper { background: var(--color-cream); }
.section--dark {
  background:
    radial-gradient(90% 70% at 85% 0%, oklch(28% 0.04 52) 0%, transparent 60%),
    var(--color-char);
  color: var(--color-cream);
}
.section__head { max-width: 62ch; }
.section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: none;
}
.section__head--split .lead { max-width: 44ch; }

/* ============ Features ============ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.feature {
  padding: 28px 24px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-fast) ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--color-gold-deep); }
.feature__icon {
  display: grid;
  place-content: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  color: var(--color-ember-deep);
  background: linear-gradient(150deg, oklch(94% 0.05 72), oklch(90% 0.06 60));
  margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-size: var(--text-lg); margin-bottom: 8px; }
.feature p { color: var(--color-ink-soft); font-size: var(--text-sm); }

/* ============ Menu ============ */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(2rem, 1.5rem + 2vw, 3rem) 0 clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.menu-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  color: oklch(82% 0.02 74);
  padding: 11px 20px;
  background: oklch(100% 0 0 / 0.04);
  border: 1.5px solid oklch(100% 0 0 / 0.14);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out-expo);
}
.menu-tab:hover { border-color: var(--color-gold); color: var(--color-gold-glow); }
.menu-tab.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-char);
}
.menu-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 40px;
  animation: fade-up var(--duration-slow) var(--ease-out-expo);
}
.menu-panel[hidden] { display: none; }
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 4px;
  border-bottom: 1px solid oklch(100% 0 0 / 0.1);
  transition: padding-left var(--duration-normal) var(--ease-out-expo);
}
.menu-item:hover { padding-left: 12px; }
.menu-item__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.14rem;
  color: var(--color-cream);
}
.menu-item__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 4px 9px;
  border: 1px solid oklch(80% 0.135 80 / 0.4);
  border-radius: 999px;
}
.menu-item__desc { color: oklch(78% 0.015 74); font-size: var(--text-sm); max-width: 46ch; }
.menu-note {
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-size: var(--text-sm);
  color: oklch(74% 0.015 74);
  padding: 16px 20px;
  border-left: 3px solid var(--color-gold);
  background: oklch(100% 0 0 / 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 60ch;
}

/* ============ About ============ */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 1rem + 5vw, 5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-cream-deep);
  width: 100%;
}
.about__quote {
  position: absolute;
  left: 18px; bottom: -22px;
  right: 18px;
  padding: 18px 22px;
  background: var(--color-ink);
  color: var(--color-cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__title { font-size: var(--text-2xl); margin-top: 14px; }
.about__body { margin-top: 22px; display: grid; gap: 16px; color: var(--color-ink-soft); }
.about__list { margin-top: 28px; display: grid; gap: 14px; }
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--color-ink);
}
.about__list svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  padding: 4px;
  color: var(--color-whatsapp-deep);
  background: oklch(64% 0.16 150 / 0.14);
  border-radius: 50%;
}

/* ============ CTA band ============ */
.section--cta {
  background:
    radial-gradient(80% 120% at 20% 10%, oklch(52% 0.15 34 / 0.5) 0%, transparent 55%),
    linear-gradient(120deg, var(--color-char) 0%, var(--color-char-2) 100%);
  color: var(--color-cream);
}
.cta { text-align: center; max-width: 60ch; margin-inline: auto; }
.cta h2 { font-size: var(--text-2xl); margin: 14px 0 16px; color: var(--color-cream); }
.cta p { color: oklch(83% 0.02 74); font-size: var(--text-lg); margin-inline: auto; max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

/* ============ Contact ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3rem);
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.contact__cards { display: grid; gap: 14px; align-content: start; }
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out-expo), box-shadow var(--duration-normal) var(--ease-out-expo);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-card__icon {
  display: grid;
  place-content: center;
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 14px;
  color: var(--color-ember-deep);
  background: linear-gradient(150deg, oklch(94% 0.05 72), oklch(90% 0.06 60));
}
.info-card h3 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-ink-soft); margin-bottom: 3px; }
.info-card p { font-size: var(--text-base); font-weight: 500; color: var(--color-ink); }
.info-card a:hover { color: var(--color-ember-deep); }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 500;
  color: var(--color-ink);
}
.contact__cards .btn { margin-top: 4px; }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
  min-height: 340px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(1.05); }

/* ============ Footer ============ */
.site-footer {
  background: var(--color-char);
  color: oklch(78% 0.015 74);
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-char-3);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 14px;
}
.footer-brand img { border-radius: 9px; }
.footer-brand-col p { max-width: 40ch; font-size: var(--text-sm); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: var(--text-sm); transition: color var(--duration-fast) ease; }
.footer-col a:hover { color: var(--color-cream); }
.footer-bottom {
  padding-top: 24px;
  font-size: var(--text-xs);
  color: oklch(64% 0.014 74);
}

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--duration-slow) var(--ease-out-expo), transform var(--duration-slow) var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 74px 12px auto 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out-expo), transform var(--duration-normal) var(--ease-out-expo);
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 12px 10px; border-radius: 10px; }
  .nav__links a:hover { background: var(--color-cream); }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .section__head--split { flex-direction: column; align-items: flex-start; }
  .features { grid-template-columns: 1fr; }
  .menu-panel { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__badge { width: 88px; height: 88px; top: -16px; left: -12px; }
}

/* ============ Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .strip__track { animation: none; }
}
