/* EURIOT — Webdesign für Restaurants, München */

:root {
  --bg: oklch(0.16 0.012 55);
  --bg-raise: oklch(0.195 0.014 55);
  --bg-deep: oklch(0.13 0.01 55);
  --ink: oklch(0.94 0.012 85);
  --ink-dim: oklch(0.71 0.018 75);
  --ink-faint: oklch(0.52 0.018 65);
  --accent: oklch(0.64 0.185 38);
  --accent-bright: oklch(0.72 0.17 45);
  --accent-deep: oklch(0.47 0.15 35);
  --line: oklch(0.29 0.016 55);
  --cream: oklch(0.94 0.02 85);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg-deep); }

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

a { color: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* Grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: color-mix(in oklab, var(--bg-deep) 96%, transparent); border-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  max-width: 1320px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { height: 26px; width: auto; }
.nav-links { display: flex; gap: 34px; align-items: center; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  color: var(--ink-dim); transition: color 0.25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: var(--bg-deep) !important; background: var(--accent);
  padding: 10px 20px; border-radius: 999px; font-weight: 600 !important;
  transition: background 0.25s, transform 0.25s var(--ease-out) !important;
}
.nav-cta:hover { background: var(--accent-bright); transform: translateY(-1px); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s var(--ease-out); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
#steam {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: radial-gradient(120% 90% at 50% 110%, oklch(0.30 0.09 40) 0%, var(--bg-deep) 62%);
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 28px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
h1 {
  font-family: var(--serif);
  font-size: clamp(2.9rem, 8.5vw, 7rem);
  font-weight: 560;
  font-variation-settings: "opsz" 144;
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 11ch;
}
h1 em {
  font-style: italic; font-weight: 480; color: var(--accent-bright);
}
.hero-sub {
  margin-top: 30px; max-width: 46ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-dim); line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; margin-top: 42px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform 0.3s var(--ease-out), background 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--accent); color: var(--bg-deep); }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink-dim); transform: translateY(-2px); }
.btn svg { transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.hero-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--ink-faint); font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-hint::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(var(--ink-faint), transparent);
  animation: drip 2.2s var(--ease-out) infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 22px 0; background: var(--bg-deep);
}
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
  color: var(--ink-faint); white-space: nowrap; display: flex; align-items: center; gap: 56px;
}
.marquee b { color: var(--accent); font-weight: 400; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: clamp(90px, 12vw, 150px) 0; position: relative; }
.sec-head { margin-bottom: clamp(48px, 6vw, 80px); }
.kicker {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; display: block;
}
h2 {
  font-family: var(--serif); font-weight: 560;
  font-variation-settings: "opsz" 100;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.01em; max-width: 20ch;
}
h2 em { font-style: italic; font-weight: 470; color: var(--accent-bright); }
.sec-intro { margin-top: 22px; max-width: 54ch; color: var(--ink-dim); font-size: 1.1rem; }

/* ---------- Leistungen ---------- */
.services { border-top: 1px solid var(--line); }
.service-list { display: flex; flex-direction: column; }
.service {
  display: grid; grid-template-columns: 110px 1fr 1.4fr; gap: clamp(20px, 4vw, 60px);
  padding: clamp(34px, 4vw, 52px) 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service-num {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--accent); font-weight: 470;
}
.service h3 {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 560; line-height: 1.15; letter-spacing: -0.01em;
}
.service p { color: var(--ink-dim); max-width: 58ch; }

/* ---------- Arbeiten ---------- */
.works { background: var(--bg-deep); border-top: 1px solid var(--line); }
.work { margin-bottom: clamp(80px, 10vw, 130px); }
.work:last-child { margin-bottom: 0; }
.mock-stage { perspective: 1400px; }
.mock {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-raise);
  box-shadow: 0 40px 80px -30px oklch(0 0 0 / 0.55);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: oklch(0.23 0.012 55);
  border-bottom: 1px solid var(--line);
}
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.mock-url {
  margin-left: 12px; font-size: 0.78rem; color: var(--ink-faint);
  background: var(--bg-deep); border-radius: 6px; padding: 4px 14px; flex: 1; max-width: 340px;
}
.mock-body { aspect-ratio: 16 / 9.4; position: relative; overflow: hidden; container-type: inline-size; }
.work-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; margin-top: 26px; flex-wrap: wrap;
}
.work-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 560; }
.work-tag { color: var(--ink-faint); font-size: 0.95rem; margin-left: 14px; }
.work-stat { color: var(--accent-bright); font-weight: 600; font-size: 1rem; }

/* Mock 1: Osteria Fermo (cream italian editorial) */
.m-fermo { background: oklch(0.95 0.025 90); color: oklch(0.24 0.03 60); font-family: var(--serif); }
.m-fermo .m-nav { display: flex; justify-content: space-between; align-items: center; padding: 4.5cqw 6cqw 0; font-family: var(--sans); font-size: 1.7cqw; letter-spacing: 0.14em; text-transform: uppercase; }
.m-fermo .m-hero { padding: 7cqw 6cqw 0; }
.m-fermo .m-hero .m-big { font-size: 9.4cqw; line-height: 0.98; font-weight: 560; letter-spacing: -0.01em; }
.m-fermo .m-big em { font-style: italic; color: oklch(0.5 0.14 135); }
.m-fermo .m-row { display: flex; gap: 3cqw; padding: 5cqw 6cqw; align-items: center; }
.m-fermo .m-plate { width: 30cqw; height: 30cqw; border-radius: 50%; flex: none; background: radial-gradient(circle at 35% 30%, oklch(0.62 0.16 40), oklch(0.42 0.13 30) 70%); border: 2.4cqw solid oklch(0.99 0.01 90); box-shadow: 0 3cqw 6cqw oklch(0 0 0 / 0.18); }
.m-fermo .m-lines { flex: 1; font-family: var(--sans); }
.m-fermo .m-lines i { display: block; height: 1.5cqw; border-radius: 99px; background: oklch(0.24 0.03 60 / 0.16); margin-bottom: 2.2cqw; }
.m-fermo .m-lines i:nth-child(2) { width: 82%; } .m-fermo .m-lines i:nth-child(3) { width: 64%; }
.m-fermo .m-btn { display: inline-block; margin-top: 3cqw; background: oklch(0.35 0.05 60); color: oklch(0.95 0.025 90); font-family: var(--sans); font-size: 1.9cqw; padding: 1.6cqw 3.6cqw; border-radius: 99px; }

/* Mock 2: KOYO (dark japanese minimal) */
.m-koyo { background: oklch(0.14 0.008 300); color: oklch(0.93 0.005 90); font-family: var(--sans); }
.m-koyo .m-nav { display: flex; justify-content: space-between; padding: 4.5cqw 6cqw; font-size: 1.7cqw; letter-spacing: 0.3em; text-transform: uppercase; color: oklch(0.6 0.01 90); }
.m-koyo .m-center { text-align: center; padding-top: 6cqw; }
.m-koyo .m-jp { font-size: 3cqw; letter-spacing: 0.8em; color: oklch(0.62 0.19 30); margin-bottom: 2cqw; }
.m-koyo .m-big { font-family: var(--serif); font-size: 11cqw; font-weight: 480; letter-spacing: 0.06em; }
.m-koyo .m-sub { font-size: 2cqw; letter-spacing: 0.24em; text-transform: uppercase; color: oklch(0.6 0.01 90); margin-top: 2cqw; }
.m-koyo .m-dishes { display: flex; justify-content: center; gap: 4cqw; margin-top: 6cqw; }
.m-koyo .m-dish { width: 16cqw; height: 16cqw; border-radius: 50%; background: radial-gradient(circle at 40% 32%, oklch(0.5 0.1 50), oklch(0.25 0.04 300) 75%); border: 0.5cqw solid oklch(0.32 0.02 300); }
.m-koyo .m-dish:nth-child(2) { background: radial-gradient(circle at 40% 32%, oklch(0.62 0.19 30), oklch(0.25 0.05 320) 78%); }
.m-koyo .m-dish:nth-child(3) { background: radial-gradient(circle at 40% 32%, oklch(0.72 0.12 120), oklch(0.24 0.04 300) 76%); }

/* Mock 3: Brenner & Rauch (warm wirtshaus) */
.m-brenner { background: linear-gradient(oklch(0.22 0.03 50), oklch(0.17 0.025 45)); color: oklch(0.93 0.03 80); font-family: var(--sans); }
.m-brenner .m-nav { display: flex; justify-content: space-between; padding: 4.5cqw 6cqw; font-size: 1.7cqw; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.7 0.05 70); }
.m-brenner .m-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4cqw; padding: 4cqw 6cqw; align-items: center; }
.m-brenner .m-big { font-family: var(--serif); font-size: 7.6cqw; line-height: 1.02; font-weight: 560; }
.m-brenner .m-big em { font-style: italic; color: oklch(0.75 0.14 65); }
.m-brenner .m-badge { display: inline-block; margin-top: 3cqw; border: 1px solid oklch(0.75 0.14 65 / 0.5); color: oklch(0.75 0.14 65); font-size: 1.8cqw; letter-spacing: 0.18em; text-transform: uppercase; padding: 1.4cqw 3cqw; border-radius: 99px; }
.m-brenner .m-photo { aspect-ratio: 1/1.1; border-radius: 1.6cqw; background: radial-gradient(circle at 50% 42%, oklch(0.55 0.15 50), oklch(0.28 0.06 40) 80%); position: relative; overflow: hidden; }
.m-brenner .m-photo::after { content: ""; position: absolute; inset: 12% 20% auto; height: 46%; border-radius: 50%; background: radial-gradient(circle at 45% 35%, oklch(0.7 0.14 60), oklch(0.4 0.1 40) 75%); box-shadow: 0 2cqw 5cqw oklch(0 0 0 / 0.4); }

/* ---------- Ablauf ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); }
.step { position: relative; padding-top: 30px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-style: italic; font-size: 2.6rem; font-weight: 470;
  color: var(--accent); display: block; margin-bottom: 16px;
}
.step::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.step h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 560; margin-bottom: 12px; }
.step p { color: var(--ink-dim); font-size: 0.98rem; }

/* ---------- Über uns ---------- */
.about { background: var(--bg-deep); border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.about-text p { color: var(--ink-dim); margin-bottom: 1.2em; max-width: 58ch; }
.about-text p strong { color: var(--ink); font-weight: 600; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: sticky; top: 110px; }
.founder {
  border-radius: 14px; padding: 26px 20px 22px; border: 1px solid var(--line);
  background: var(--bg-raise); text-align: center;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.founder:hover { transform: translateY(-4px); border-color: var(--accent-deep); }
.founder:nth-child(2) { transform: translateY(22px); }
.founder:nth-child(2):hover { transform: translateY(18px); }
.founder-mark {
  width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  background: radial-gradient(circle at 35% 30%, var(--accent-bright), var(--accent-deep));
  color: var(--bg-deep); font-weight: 560;
  border: 4px solid oklch(0.3 0.03 50);
}
.founder:nth-child(2) .founder-mark { background: radial-gradient(circle at 35% 30%, oklch(0.9 0.05 85), oklch(0.68 0.06 75)); }
.founder h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 560; }
.founder span { color: var(--ink-faint); font-size: 0.86rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
.quote { padding-top: 26px; border-top: 1px solid var(--line); }
.quote:nth-child(2) { margin-top: 44px; }
.quote:nth-child(3) { margin-top: 88px; }
.quote blockquote {
  font-family: var(--serif); font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 470; line-height: 1.4; letter-spacing: -0.005em;
}
.quote blockquote::before { content: "\201E"; color: var(--accent); }
.quote blockquote::after { content: "\201C"; color: var(--accent); }
.quote figcaption { margin-top: 18px; color: var(--ink-dim); font-size: 0.92rem; }
.quote figcaption b { color: var(--ink); font-weight: 600; display: block; }

/* ---------- Preise ---------- */
.pricing { background: var(--bg-deep); border-top: 1px solid var(--line); }
.menus { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 30px); align-items: stretch; }
.menu {
  border: 1px solid var(--line); border-radius: 16px; padding: clamp(28px, 3vw, 40px);
  background: var(--bg-raise); position: relative; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.menu:hover { transform: translateY(-6px); }
.menu.star { border-color: var(--accent-deep); background: linear-gradient(oklch(0.22 0.03 45), var(--bg-raise)); }
.menu-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--accent); color: var(--bg-deep); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 4px;
}
.menu h3 { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.06rem; color: var(--ink-dim); }
.menu-name { font-family: var(--serif); font-size: 1.75rem; font-weight: 560; margin: 6px 0 4px; }
.menu-price { font-family: var(--serif); font-size: 2.1rem; font-weight: 560; color: var(--accent-bright); margin-bottom: 22px; }
.menu-price small { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-faint); font-weight: 400; margin-left: 6px; }
.menu ul { list-style: none; flex: 1; }
.menu li {
  display: flex; align-items: baseline; gap: 8px;
  padding: 9px 0; color: var(--ink-dim); font-size: 0.96rem;
}
.menu li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); position: relative; top: -2px; }
.menu .btn { margin-top: 26px; justify-content: center; }
.pricing-note { text-align: center; margin-top: 36px; color: var(--ink-faint); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 24px 0; font-family: var(--serif); font-size: 1.2rem; font-weight: 560;
  transition: color 0.25s;
}
.faq-list summary:hover { color: var(--accent-bright); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--sans); font-weight: 400; font-size: 1.5rem;
  color: var(--accent); flex: none; transition: transform 0.3s var(--ease-out);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 40px 26px 0; color: var(--ink-dim); max-width: 62ch; }

/* ---------- Kontakt ---------- */
.contact { background: var(--bg-deep); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.contact-info p { color: var(--ink-dim); max-width: 42ch; margin: 22px 0 34px; }
.contact-direct { display: flex; flex-direction: column; gap: 12px; color: var(--ink-dim); font-size: 1rem; }
.contact-direct a { color: var(--ink); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--accent-deep); width: fit-content; transition: border-color 0.25s, color 0.25s; }
.contact-direct a:hover { color: var(--accent-bright); border-color: var(--accent-bright); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form label { font-size: 0.88rem; font-weight: 500; color: var(--ink-dim); display: block; margin-bottom: 7px; }
.form input, .form textarea {
  width: 100%; background: var(--bg-raise); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font-family: var(--sans); font-size: 1rem; padding: 14px 16px;
  transition: border-color 0.25s; resize: vertical;
}
.form input:focus, .form textarea:focus { outline: 2px solid transparent; border-color: var(--accent); }
.form .btn { align-self: flex-start; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 54px 0 40px; background: var(--bg-deep); }
.foot-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.foot-claim { color: var(--ink-faint); font-size: 0.95rem; margin-top: 14px; font-family: var(--serif); font-style: italic; }
.foot-links { display: flex; gap: 26px; list-style: none; flex-wrap: wrap; }
.foot-links a { color: var(--ink-dim); text-decoration: none; font-size: 0.92rem; transition: color 0.25s; }
.foot-links a:hover { color: var(--ink); }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.85rem; }

/* ---------- Legal pages ---------- */
.legal { padding: 160px 0 100px; max-width: 760px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 40px; }
.legal h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.legal p, .legal address { color: var(--ink-dim); margin-bottom: 1em; font-style: normal; }
.legal a { color: var(--accent-bright); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; } .reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-hint::after { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .quotes { grid-template-columns: 1fr; }
  .quote:nth-child(2), .quote:nth-child(3) { margin-top: 0; }
  .menus { grid-template-columns: 1fr; max-width: 520px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .founders { position: static; max-width: 440px; }
  .service { grid-template-columns: 60px 1fr; }
  .service p { grid-column: 2; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 0; background: var(--bg-deep);
    flex-direction: column; justify-content: center; gap: 30px;
    font-size: 1.3rem; transform: translateY(-100%); transition: transform 0.45s var(--ease-out);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.25rem; }
  .burger { display: block; position: relative; z-index: 10; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .steps { grid-template-columns: 1fr; }
  .mock-body { aspect-ratio: 16/11; }
}
