/* ===== Zenya Coffee Co. =====
   Performans kuralı: döngüsel animasyonlar yalnızca transform/opacity kullanır
   ve HTML seviyesindeki kutulara uygulanır (GPU katmanında çalışır, mobilde kasmaz). */

:root {
  --bg: #120a07;
  --bg-2: #1a110c;
  --cream: #eadcc4;
  --cream-2: #f3ebdd;
  --ink: #2a1810;
  --muted: #a3907c;
  --gold: #c9a266;
  --gold-2: #e2c28b;
  --line: rgba(234, 220, 196, .14);
  --serif: "Bodoni Moda", "Didot", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --pad: clamp(20px, 5vw, 72px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font: 300 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
em { font-style: italic; color: var(--gold); }
::selection { background: var(--gold); color: var(--bg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 30px;
  font: 400 12px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s;
}
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-ghost { color: var(--cream); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(14px + env(safe-area-inset-top)) var(--pad) 14px;
  transition: background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(18, 10, 7, .92); border-color: var(--line); }
@media (hover: hover) and (min-width: 861px) {
  .nav.scrolled { background: rgba(18, 10, 7, .7); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
}
.nav-brand { display: flex; align-items: center; gap: 12px; font: 500 15px/1 var(--sans); letter-spacing: .42em; z-index: 2; }
.nav-brand .mark { width: 44px; fill: var(--cream); }
.nav-links { display: flex; gap: clamp(20px, 3vw, 44px); }
.nav-links a { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.nav-links a:hover { color: var(--cream); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle {
    display: grid; place-content: center; gap: 7px; z-index: 2;
    width: 44px; height: 44px; padding: 0; background: none; border: 0; cursor: pointer;
  }
  .nav-toggle i { display: block; width: 26px; height: 1px; background: var(--cream); transition: transform .45s var(--ease); }
  .nav-open .nav-toggle i:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-open .nav-toggle i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    background: var(--bg);
    opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility 0s .45s;
  }
  .nav-links a { font: italic 400 34px/1 var(--serif); letter-spacing: 0; text-transform: none; color: var(--cream); }
  .nav-open .nav-links { opacity: 1; visibility: visible; transition: opacity .45s var(--ease); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center; overflow: hidden;
  padding: 96px var(--pad) 72px;
  background:
    radial-gradient(120% 70% at 50% 110%, #2b1a10 0%, transparent 60%),
    var(--bg);
}
.hero::before { /* sabit film grenı — animasyonsuz */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .07; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; animation: heroZoom 9s var(--ease) both; }
.hero-photo::after { /* fotoğrafı koyulaştırıp logoyu öne çıkarır */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 48%, rgba(18, 10, 7, .55), rgba(18, 10, 7, .25) 70%),
    linear-gradient(180deg, rgba(18, 10, 7, .7) 0%, rgba(18, 10, 7, .45) 35%, rgba(18, 10, 7, .6) 70%, var(--bg) 100%);
}
.hero-glow {
  position: absolute; left: 50%; top: 46%; width: min(120vw, 900px); aspect-ratio: 1;
  translate: -50% -50%;
  background: radial-gradient(closest-side, rgba(201, 162, 102, .22), rgba(201, 162, 102, .06) 55%, transparent 72%);
  animation: glowIn 2.4s var(--ease) .2s both, breathe 7s ease-in-out 2.6s infinite alternate;
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; will-change: transform, opacity; }

.hero-eyebrow {
  margin: 0 0 clamp(18px, 3.5vh, 34px);
  font-size: 11px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp 1.2s var(--ease) 2.2s both;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .6; }

/* Logo: katmanlı SVG */
.hero-logo {
  position: relative;
  width: clamp(190px, min(58vw, 40svh), 390px);
  aspect-ratio: 476 / 592;
}
.hero-logo .l, .hero-logo .steam-wrap { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-logo svg { overflow: visible; }
.l.bear { fill: var(--cream); animation: bearIn 1.6s var(--ease) .35s both; }
.l.steam { fill: var(--gold); }
.l.word { fill: var(--cream); }
.l.coffee { fill: var(--gold); }

/* buhar: çıkış (wrapper) + sonsuz salınım (svg) ayrı katmanlarda */
.steam-wrap { transform-origin: 46% 29%; animation: steamIn 1.4s var(--ease) 1.1s both; }
.l.steam { transform-origin: 46% 29%; will-change: transform, opacity; }
.l.s1 { animation: sway 3.6s ease-in-out 2.5s infinite alternate; }
.l.s2 { animation: sway2 4.4s ease-in-out 2.5s infinite alternate; }

.l .ch {
  transform-box: fill-box; transform-origin: 50% 100%;
  animation: charUp 1s var(--ease) both;
}
.l.word .ch { animation-delay: calc(1.35s + var(--i) * .09s); }
.l.coffee .ch { animation-duration: .8s; animation-delay: calc(1.9s + var(--i) * .045s); }

.hero-tag {
  margin: clamp(22px, 4vh, 38px) 0 4px;
  font: italic 400 clamp(22px, 3.2vw, 30px)/1.2 var(--serif);
  animation: fadeUp 1.2s var(--ease) 2.35s both;
}
.hero-loc {
  margin: 0; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
  animation: fadeUp 1.2s var(--ease) 2.45s both;
}
.hero-loc b { color: var(--gold); font-weight: 400; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(24px, 4vh, 40px); animation: fadeUp 1.2s var(--ease) 2.6s both; }

/* Dönen rozet */
.badge {
  position: absolute; right: var(--pad); bottom: 40px; width: 118px; z-index: 1;
  fill: var(--gold); font: 400 13.5px var(--sans); letter-spacing: .32em;
  animation: fadeIn 1.5s ease 2.8s both, spin 26s linear infinite;
}
.scroll-cue { position: absolute; left: 50%; bottom: 22px; translate: -50% 0; width: 1px; height: 46px; background: var(--line); overflow: hidden; z-index: 2; animation: fadeIn 1s ease 3s both; }
.scroll-cue span { position: absolute; inset: 0; background: var(--gold); animation: drip 2.2s var(--ease) infinite; }

/* Kahve çekirdekleri */
.beans { position: absolute; inset: 0; pointer-events: none; }
.bean {
  position: absolute; width: 22px; height: 30px; border-radius: 50%;
  background: radial-gradient(60% 60% at 35% 30%, #6a4128, #2d1a10 70%);
  opacity: 0; animation: fadeIn 2s ease both, float 9s ease-in-out infinite alternate;
}
.bean::after { content: ""; position: absolute; left: 50%; top: 12%; bottom: 12%; width: 2px; translate: -50% 0; border-radius: 2px; background: #140a05; transform: rotate(8deg); }
.b1 { left: 9%;  top: 22%; animation-delay: 2.4s, 0s;  rotate: -25deg; }
.b2 { left: 84%; top: 18%; animation-delay: 2.6s, -3s; rotate: 30deg; scale: .8; }
.b3 { left: 14%; top: 72%; animation-delay: 2.8s, -5s; rotate: 60deg; scale: .7; }
.b4 { left: 78%; top: 62%; animation-delay: 3s,   -2s; rotate: -40deg; scale: 1.2; }
.b5 { left: 30%; top: 10%; animation-delay: 3.1s, -6s; rotate: 10deg; scale: .55; }
.b6 { left: 66%; top: 84%; animation-delay: 3.2s, -4s; rotate: -70deg; scale: .6; }
@media (max-width: 600px) { .b3, .b5, .b6 { display: none; } .badge { width: 88px; bottom: 26px; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); padding: 20px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee span { font: italic 400 clamp(26px, 4vw, 44px)/1 var(--serif); padding: 0 clamp(18px, 2.4vw, 34px); white-space: nowrap; }
.marquee i { font-style: normal; color: var(--gold); font-size: 16px; align-self: center; }

/* ---------- Sections ---------- */
section:not(.hero) { padding: clamp(80px, 13vw, 160px) var(--pad); }
.kicker { margin: 0 0 20px; font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); }
h2 { font: 400 clamp(38px, 6.4vw, 78px)/1.04 var(--serif); letter-spacing: -.01em; }
.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.65; }
.section-head { max-width: 1240px; margin: 0 auto clamp(44px, 6vw, 80px); }

/* Hikâye — krem bölüm */
.story { background: var(--cream-2); color: var(--ink); }
.story em { color: #8a5a32; }
.story .kicker { color: #8a5a32; }
.story-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.story-text h2 { margin-bottom: 30px; }
.story-text p:not(.kicker) { color: #4d3526; max-width: 34em; }
.pillars { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(42, 24, 16, .16); }
.pillars li { padding: 20px 12px 0 0; }
.pillars b { display: block; font: 400 30px/1 var(--serif); color: #8a5a32; margin-bottom: 8px; }
.pillars span { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.story-media { margin: 0; position: relative; }
.story-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story-media::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 1px solid rgba(138, 90, 50, .4); z-index: -1; }
.story-media figcaption { margin-top: 14px; font: italic 400 15px var(--serif); color: #6e4d36; }

/* Menü */
.menu { background: var(--bg); }
.signatures { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 28px); }
.sig-img { overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-2); }
.sig-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
@media (hover: hover) { .sig:hover .sig-img img { transform: scale(1.06); } }
.sig h3 { font: 400 clamp(21px, 2vw, 26px)/1.2 var(--serif); margin: 20px 0 8px; }
.sig p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.caps { display: block; margin-top: 6px; font-size: 10.5px; letter-spacing: .3em; color: var(--gold); }

/* Menü panosu: sekmeli liste (fiyatsız) */
.menu-board { max-width: 1240px; margin: clamp(64px, 8vw, 110px) auto 0; }
.menu-tabs {
  display: flex; gap: 6px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; width: max-content; max-width: 100%;
  margin: 0 auto clamp(30px, 4vw, 52px); background: var(--bg);
}
.menu-tabs button {
  appearance: none; border: 0; background: none; color: var(--muted); cursor: pointer;
  font: 400 12px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
  padding: 14px 22px; border-radius: 999px; transition: background .35s var(--ease), color .35s;
}
.menu-tabs button sup { font-size: 9px; letter-spacing: 0; margin-left: 5px; color: var(--gold); vertical-align: 5px; }
.menu-tabs button[aria-selected="true"] { background: var(--gold); color: var(--bg); }
.menu-tabs button[aria-selected="true"] sup { color: var(--bg); }
.js .menu-panel[hidden] { display: none; }
.menu-panel { animation: panelIn .6s var(--ease) both; }
.panel-title { font: 400 clamp(26px, 3vw, 34px)/1.1 var(--serif); margin: 0 0 18px; }
.js .panel-title { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-sub { margin: clamp(40px, 5vw, 60px) 0 6px; font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 16px; }
.menu-sub::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-items { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); column-gap: clamp(28px, 4vw, 60px); counter-reset: m; }
.menu-items li {
  counter-increment: m; display: flex; align-items: baseline; gap: 14px;
  font: 400 clamp(19px, 1.7vw, 22px)/1.3 var(--serif); padding: 15px 0; border-bottom: 1px solid var(--line);
}
.menu-items li::before { content: counter(m, decimal-leading-zero); font: 400 10px/1 var(--sans); letter-spacing: .12em; color: var(--gold); min-width: 18px; }
@keyframes panelIn { from { opacity: 0; transform: translate3d(0, 12px, 0); } to { opacity: 1; transform: none; } }
.menu-note { max-width: 1240px; margin: 36px auto 0; text-align: center; font-size: 13px; color: var(--muted); letter-spacing: .06em; }

/* Zenya Hours */
.hours { background: var(--bg-2); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; max-width: none; }
.hours-media { margin: 0; max-width: 560px; justify-self: end; width: 100%; }
.hours-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.hours-time { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); font-size: clamp(64px, 10vw, 140px); line-height: 1; margin: 6px 0 28px; }
.hours-time sup { font-size: .32em; color: var(--gold); vertical-align: .95em; margin-left: 4px; }
.hours-time i { width: clamp(30px, 4vw, 60px); height: 1px; background: var(--gold); }
.hours-text .lead { max-width: 26em; color: #cdbda5; }

/* Galeri */
.gallery { background: var(--bg); }
.g-track { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 22px); }
.g-item { margin: 0; overflow: hidden; background: var(--bg-2); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
@media (hover: hover) { .g-item:hover img { transform: scale(1.05); } }
.g-item { aspect-ratio: 4 / 5; }

/* Ziyaret */
.visit {
  position: relative; display: grid; place-items: center; min-height: 80vh;
  background: linear-gradient(rgba(18, 10, 7, .72), rgba(18, 10, 7, .9)), url("assets/img/door-1100.webp") center / cover no-repeat;
}
.visit-card { text-align: center; max-width: 620px; }
.visit-card h2 { margin-bottom: 40px; }
.visit dl { margin: 0 0 44px; display: grid; gap: 22px; }
.visit dt { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.visit dd { margin: 0; font: 400 clamp(19px, 2vw, 23px)/1.5 var(--serif); }

/* Footer */
.foot { padding: 70px var(--pad) calc(40px + env(safe-area-inset-bottom)); text-align: center; border-top: 1px solid var(--line); }
.foot .full-logo { width: 104px; margin: 0 auto 22px; fill: var(--cream); }
.foot p { margin: 0 0 10px; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }
.foot small { font-size: 12px; color: #6d5d4f; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translate3d(0, 28px, 0); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  body { font-size: 16px; }
  .story-grid, .hours { grid-template-columns: 1fr; }
  .story-media { max-width: 520px; }
  .hours-media { justify-self: stretch; order: 2; }
  .pillars span { display: block; font-size: 10.5px; letter-spacing: .12em; line-height: 1.45; }
  .hero-loc { font-size: 10px; letter-spacing: .2em; }
  .signatures { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .sig p { font-size: 14px; }
  .menu-board { margin-top: 64px; }
  .menu-tabs {
    position: sticky; top: calc(72px + env(safe-area-inset-top)); z-index: 5;
    width: auto; margin: 0 calc(var(--pad) * -1) 24px; padding: 8px var(--pad); gap: 6px;
    border: 0; border-block: 1px solid var(--line); border-radius: 0; background: rgba(18, 10, 7, .96);
  }
  .menu-tabs button {
    flex: 1 1 0; min-width: 0; white-space: normal; line-height: 1.3;
    padding: 11px 6px; font-size: 10.5px; letter-spacing: .1em; border-radius: 12px;
  }
  .menu-tabs button sup { display: none; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-items li { padding: 14px 0; font-size: 19px; }
  /* galeri: yatay kaydırmalı şerit */
  .g-track {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px;
    margin: 0 calc(var(--pad) * -1); padding: 0 var(--pad); scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .g-track::-webkit-scrollbar { display: none; }
  .g-item { flex: 0 0 78vw; aspect-ratio: 4 / 5; scroll-snap-align: center; }
  .js .g-track .reveal { opacity: 1; transform: none; }
}
@media (max-width: 400px) { .btn { padding: 0 22px; letter-spacing: .22em; } }

/* ---------- Keyframes ---------- */
/* Hero fotoğrafı: masaüstünde sağ yarı (bölünmüş düzen), mobilde arka plan — bardak logonun arkasına düşmesin */
@media (min-width: 861px) {
  .hero { place-items: center start; }
  .hero-photo { left: 50%; }
  .hero-photo img { object-position: 50% 40%; }
  .hero-photo::after {
    background:
      linear-gradient(90deg, var(--bg) 0%, rgba(18, 10, 7, .35) 22%, rgba(18, 10, 7, .08) 60%, rgba(18, 10, 7, .2) 100%),
      linear-gradient(180deg, rgba(18, 10, 7, .55) 0%, transparent 25%, transparent 75%, var(--bg) 100%);
  }
  .hero-inner { width: calc(50vw - 2 * var(--pad)); }
  .hero-glow { left: 25%; }
  .scroll-cue { left: 25%; }
  .b2, .b4, .b6 { display: none; }
}
@media (max-width: 860px) {
  /* mobil: logo + yazılar üstte, kadın fotoğrafı hemen altta akışta — hiçbir ekran boyutunda üst üste binmez */
  .hero { display: flex; flex-direction: column; align-items: center; min-height: 0; padding: calc(84px + env(safe-area-inset-top)) var(--pad) 0; }
  .hero-inner { order: 1; }
  .hero-photo {
    order: 2; position: relative; inset: auto; z-index: 0;
    width: 100vw; margin: -36px calc(var(--pad) * -1) 0; aspect-ratio: 1086 / 1250;
  }
  .hero-photo img { object-position: 50% 0%; }
  .hero-photo::after { background: linear-gradient(180deg, var(--bg) 0%, rgba(18, 10, 7, .25) 22%, transparent 40%, transparent 78%, var(--bg) 100%); }
  .hero-glow { top: 32svh; }
  .hero-cta { margin-top: 26px; }
  .hero-eyebrow { letter-spacing: .32em; font-size: 10px; margin-bottom: 18px; }
  .scroll-cue, .badge { display: none; }
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
@keyframes bearIn   { from { opacity: 0; transform: translate3d(-5%, 1.5%, 0); } to { opacity: 1; transform: none; } }
@keyframes steamIn  { from { opacity: 0; transform: translate3d(0, 4%, 0) scaleY(.2); } to { opacity: 1; transform: none; } }
@keyframes sway     { 0% { transform: skewX(3deg) scaleY(.96); opacity: .75; } 100% { transform: skewX(-5deg) translate3d(0, -1.6%, 0) scaleY(1.06); opacity: 1; } }
@keyframes sway2    { 0% { transform: skewX(-4deg) scaleY(1.04); opacity: 1; } 100% { transform: skewX(5deg) translate3d(0, -1%, 0) scaleY(.95); opacity: .7; } }
@keyframes charUp   { from { opacity: 0; transform: translate3d(0, 38%, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeUp   { from { opacity: 0; transform: translate3d(0, 18px, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes glowIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes breathe  { from { opacity: 1; } to { opacity: .55; } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes float    { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(0, -26px, 0) rotate(24deg); } }
@keyframes drip     { from { transform: translateY(-100%); } to { transform: translateY(100%); } }
@keyframes marquee  { to { transform: translate3d(-50%, 0, 0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (min-width: 561px) and (max-width: 860px) { .menu-items { grid-template-columns: 1fr 1fr; column-gap: 32px; } }
