/* ============================================================
   JAAD CAFE — jaadcafe.com
   Clean & elegant: terang, hijau emerald sebagai AKSEN, emas halus
   Fraunces (display) + Hanken Grotesk (body)
   ============================================================ */

:root {
  /* palet mengikuti foto brand: hijau forest pekat + kayu karamel + krem */
  --paper:    #fbf9f3;
  --cream:    #f3edE0;
  --white:    #ffffff;
  --ink:      #182420;   /* teks utama, hampir hitam */
  --muted:    #57615b;
  --emerald:  #103528;   /* hijau forest — aksen brand */
  --emerald-dk: #0a2119; /* blok gelap: hero, footer */
  --gold:     #b9854a;   /* kayu karamel dari foto */
  --gold-soft:#d8b071;
  --line:     rgba(24, 36, 32, .12);
  --line-lt:  rgba(251, 249, 243, .16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", "Segoe UI", sans-serif;

  --radius: 20px;
  --pad: clamp(20px, 5vw, 80px);
  --maxw: 1140px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- bilingual ---------- */
[data-lang="id"] .en { display: none !important; }
[data-lang="en"] .id { display: none !important; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--emerald); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  font-size: .95rem; letter-spacing: .02em;
  padding: 14px 30px; border-radius: 999px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn--em { background: var(--emerald); color: var(--paper); }
.btn--em:hover { background: #1a5a48; box-shadow: 0 14px 30px rgba(20, 73, 58, .22); }
.btn--gold { background: var(--gold); color: #241a08; }
.btn--gold:hover { background: var(--gold-soft); box-shadow: 0 14px 30px rgba(194, 154, 85, .3); }
.btn--line { border: 1px solid var(--line); color: var(--emerald); }
.btn--line:hover { border-color: var(--gold); color: var(--gold); }
.btn--line-lt { border: 1px solid var(--line-lt); color: var(--paper); }
.btn--line-lt:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn--sm { padding: 9px 20px; font-size: .85rem; }
.btn--lg { padding: 16px 38px; font-size: 1.02rem; }

.tlink {
  font-weight: 600; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--emerald); text-decoration: none; position: relative; padding-bottom: 3px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(.35); transform-origin: left;
  transition: transform .4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px var(--pad);
  background: rgba(253, 252, 248, .88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; text-decoration: none; }
.nav__brand img { height: 40px; width: auto; }
.nav__links { display: flex; gap: clamp(14px, 2.6vw, 32px); }
.nav__links a {
  color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 500;
  letter-spacing: .03em; opacity: .78; position: relative; padding-bottom: 4px;
  transition: opacity .2s, color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-active { opacity: 1; color: var(--emerald); font-weight: 600; }
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.lang {
  background: none; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink); font-family: var(--font-body); font-weight: 700; font-size: .76rem;
  padding: 7px 13px; cursor: pointer; letter-spacing: .06em;
}
.lang__sep { opacity: .35; margin: 0 4px; }
[data-lang="id"] .lang__opt--id, [data-lang="en"] .lang__opt--en { color: var(--gold); }
[data-lang="id"] .lang__opt--en, [data-lang="en"] .lang__opt--id { opacity: .45; }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5.5px 0; transition: transform .3s, opacity .3s; }

/* ---------- page hero (halaman dalam) ---------- */
.phead {
  padding: clamp(56px, 8vw, 100px) var(--pad) clamp(30px, 4vw, 48px);
  max-width: var(--maxw); margin: 0 auto;
}
.phead p.lead { max-width: 60ch; margin-top: 18px; }

/* ---------- home hero (gelap, mengikuti foto brand) ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 100px) var(--pad) clamp(48px, 6vw, 88px);
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(216, 176, 113, .08), transparent 60%),
    linear-gradient(180deg, var(--emerald-dk), #0d2b20 70%, var(--emerald-dk));
  color: var(--paper);
}
.hero h1 { color: var(--paper); }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 80px); max-width: var(--maxw); margin: 0 auto; align-items: center;
}
.hero__sub { max-width: 48ch; color: var(--paper); opacity: .8; font-size: 1.06rem; margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 38px;
  font-size: .85rem; color: var(--paper); opacity: .82;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust i { font-style: normal; color: var(--gold-soft); }

.hero__art { position: relative; }
.hero__photo {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .45);
  animation: heroIn 1.1s var(--ease) both;
}
.hero__photo img { width: 100%; aspect-ratio: 4/4.7; object-fit: cover; }
@keyframes heroIn { from { opacity: 0; transform: translateY(28px) scale(.97); } }
.hero__chip {
  position: absolute; left: -14px; bottom: 26px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  animation: chipFloat 6s ease-in-out infinite;
}
.hero__chip i { font-style: normal; color: var(--gold); margin-right: 6px; }
@keyframes chipFloat { 50% { transform: translateY(-9px); } }

/* ---------- stats band ---------- */
.band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white);
}
.band__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: var(--maxw); margin: 0 auto; padding: 34px var(--pad);
}
.band__item { display: grid; gap: 2px; font-size: .85rem; color: var(--muted); }
.band__item strong {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--emerald);
}
.band__item strong .u { color: var(--gold); }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 116px) var(--pad); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section__head { max-width: var(--maxw); margin: 0 auto clamp(36px, 5vw, 56px); }
.section__head .lead { max-width: 58ch; margin-top: 16px; }
.section__foot { max-width: var(--maxw); margin: 44px auto 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; }

/* ---------- chain (hulu-hilir) ---------- */
.chain { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); max-width: var(--maxw); margin: 0 auto; }
.chain__item { border-top: 1px solid var(--emerald); padding-top: 22px; }
.chain__num { font-family: var(--font-display); font-style: italic; font-size: .95rem; color: var(--gold); }
.chain__item h3 { font-size: 1.4rem; margin: 10px 0; }
.chain__item p { font-size: .96rem; color: var(--muted); max-width: 36ch; }

/* ---------- dish cards ---------- */
.dishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.dish { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.dish:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(28, 37, 33, .12); }
.dish figure { aspect-ratio: 4/4.2; overflow: hidden; }
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.dish:hover img { transform: scale(1.05); }
.dish h3 { font-size: 1.2rem; margin: 18px 20px 4px; }
.dish p { font-size: .92rem; color: var(--muted); margin: 0 20px 20px; }

/* ---------- outlet cards (teaser & detail) ---------- */
.olist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: var(--maxw); margin: 0 auto; }
.ocard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .35s var(--ease), border-color .35s;
}
.ocard:hover { transform: translateY(-4px); border-color: var(--gold); }
.ocard__tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--emerald); background: rgba(20, 73, 58, .08); border-radius: 999px; padding: 5px 13px; margin-bottom: 16px;
}
.ocard h3 { font-size: 1.35rem; margin-bottom: 6px; }
.ocard p { font-size: .93rem; color: var(--muted); }

/* outlet detail (halaman lokasi) */
.odetail {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 64px);
  max-width: var(--maxw); margin: 0 auto clamp(56px, 8vw, 90px); align-items: center;
}
.odetail:last-child { margin-bottom: 0; }
.odetail--flip .odetail__photo { order: 2; }
.odetail__photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 56px rgba(28, 37, 33, .14); }
.odetail__photo img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; transition: transform .8s var(--ease); }
.odetail__photo:hover img { transform: scale(1.04); }
.odetail__photo--stack { display: grid; gap: 12px; box-shadow: none; overflow: visible; border-radius: 0; }
.odetail__photo--stack img {
  aspect-ratio: 16/9.5; border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(28, 37, 33, .14);
}
.odetail h2 { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.odetail__star { font-family: var(--font-body); font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; }
.odetail__addr { font-size: .92rem; color: var(--muted); margin: 8px 0 16px; }
.odetail__desc { color: var(--muted); font-size: 1rem; max-width: 52ch; }
.odetail ul { list-style: none; margin: 18px 0 24px; display: grid; gap: 9px; }
.odetail li { padding-left: 22px; position: relative; font-size: .95rem; }
.odetail li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.odetail__links { display: flex; gap: 16px; }

/* ---------- franchise band (home) ---------- */
.frband { background: var(--emerald-dk); color: var(--paper); position: relative; overflow: hidden; }
.frband::before {
  content: ""; position: absolute; right: -140px; top: -140px; width: 420px; height: 420px;
  border-radius: 50%; background: var(--emerald); opacity: .5;
}
.frband__inner {
  position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 64px);
  max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 92px) var(--pad); align-items: center;
}
.frband h2 { color: var(--paper); }
.frband p { opacity: .82; margin-top: 14px; max-width: 46ch; }
.frband__stats { display: grid; gap: 22px; }
.frband__stats div { border-left: 2px solid var(--gold); padding-left: 18px; }
.frband__stats strong { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; color: var(--gold-soft); display: block; }
.frband__stats span { font-size: .85rem; opacity: .8; }
.frband .btn { margin-top: 28px; }

/* ---------- menu page ---------- */
.mphotos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.mphotos figure { border-radius: var(--radius); overflow: hidden; }
.mphotos img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; transition: transform .7s var(--ease); }
.mphotos figure:hover img { transform: scale(1.05); }

.mcats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 36px); max-width: var(--maxw); margin: 0 auto; }
.mcat h4 {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 700; font-family: var(--font-body);
}
.mcat ul { list-style: none; }
.mcat li { font-family: var(--font-display); font-size: 1.04rem; padding: 8px 0; border-bottom: 1px dotted var(--line); color: var(--ink); }
.mcat li:last-child { border-bottom: 0; }
.mcat li small { display: block; font-family: var(--font-body); font-size: .78rem; color: var(--muted); }

.order {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  max-width: var(--maxw); margin: clamp(40px, 6vw, 60px) auto 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px;
}
.order h3 { font-size: 1.15rem; }
.order__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.order__chip {
  font-size: .82rem; font-weight: 600; padding: 8px 16px; border-radius: 999px;
  background: rgba(194, 154, 85, .12); color: #8a6a33; border: 1px solid rgba(194, 154, 85, .3);
}
.order p { font-size: .82rem; color: var(--muted); width: 100%; }

/* ---------- franchise page ---------- */
.fgrid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.fgrid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.fcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .35s var(--ease), border-color .35s; }
.fcard:hover { transform: translateY(-4px); border-color: var(--gold); }
.fcard h3 { font-size: 1.16rem; margin-bottom: 8px; }
.fcard p { font-size: .9rem; color: var(--muted); }

.ftable { width: 100%; max-width: var(--maxw); margin: 0 auto; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 0 var(--line); }
.ftable th, .ftable td { text-align: left; padding: 16px 20px; font-size: .93rem; border-bottom: 1px solid var(--line); }
.ftable th { background: var(--emerald); color: var(--paper); font-weight: 600; letter-spacing: .05em; font-size: .8rem; text-transform: uppercase; }
.ftable td:first-child { font-family: var(--font-display); font-size: 1.05rem; color: var(--emerald); }
.ftable tr:last-child td { border-bottom: 0; }

.fstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: var(--maxw); margin: 0 auto; }
.fstat { border-top: 1px solid var(--gold); padding-top: 16px; display: grid; gap: 2px; font-size: .85rem; color: var(--muted); }
.fstat strong { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--emerald); }
.fine { max-width: var(--maxw); margin: 18px auto 0; font-size: .78rem; color: var(--muted); }

.fchips { display: flex; flex-wrap: wrap; gap: 10px; max-width: var(--maxw); margin: 0 auto; }
.fchips li {
  list-style: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 22px; font-size: .9rem; background: var(--white);
}

.fcta {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; flex-wrap: wrap; gap: 22px;
}
.fcta__phone { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--emerald); letter-spacing: .04em; }

/* ---------- tim ---------- */
.team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.tcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: transform .35s var(--ease), border-color .35s;
}
.tcard:hover { transform: translateY(-4px); border-color: var(--gold); }
.tcard h3 { font-size: 1.05rem; margin-bottom: 6px; }
.tcard p { font-size: .86rem; color: var(--muted); }
.tcard__ico {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(185, 133, 74, .14); color: var(--gold); font-size: 1.05rem; margin-bottom: 14px;
}

/* ---------- download ---------- */
.dlrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.dl {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; text-decoration: none; color: var(--ink);
  transition: transform .3s var(--ease), border-color .3s;
}
.dl:hover { transform: translateY(-3px); border-color: var(--gold); }
.dl__ico {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: var(--emerald); color: var(--paper);
  font-size: 1.1rem;
}
.dl strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; color: var(--emerald); }
.dl span { font-size: .8rem; color: var(--muted); }
.dl--deck { background: var(--emerald); border-color: var(--emerald); color: var(--paper); }
.dl--deck strong { color: var(--paper); }
.dl--deck span { color: var(--gold-soft); }
.dl--deck .dl__ico { background: var(--gold); color: #241a08; }

/* ---------- kontak ---------- */
.kgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: var(--maxw); margin: 0 auto; }
.kcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.kcard h3 { font-size: 1.1rem; margin-bottom: 14px; }
.kcard a, .kcard p { display: block; font-size: .95rem; color: var(--muted); text-decoration: none; margin-bottom: 9px; }
.kcard a:hover { color: var(--emerald); }

/* ---------- values (tentang) ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.value { border-top: 1px solid var(--gold); padding-top: 16px; }
.value h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value p { font-size: .88rem; color: var(--muted); }

.split {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 64px);
  max-width: var(--maxw); margin: 0 auto; align-items: center;
}
.split__photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 56px rgba(28, 37, 33, .14); }
.split__photo img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
.split .lead { margin: 14px 0 18px; }

.jcbrand {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  max-width: var(--maxw); margin: 0 auto; padding: clamp(28px, 4vw, 44px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px;
}
.jcbrand strong { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--emerald); display: block; }
.jcbrand p { color: var(--muted); font-size: .95rem; max-width: 52ch; }
.jcbrand .btn { margin-left: auto; }

/* ---------- footer ---------- */
.foot { background: var(--emerald-dk); color: var(--paper); padding: clamp(52px, 7vw, 80px) var(--pad) 26px; }
.foot__inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr .8fr; gap: 36px; max-width: var(--maxw); margin: 0 auto 46px; }
.foot__logo { height: 44px; width: auto; margin-bottom: 18px; }
.foot__tag { font-family: var(--font-display); font-style: italic; opacity: .85; }
.foot__pt { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; opacity: .5; margin-top: 10px; }
.foot__col h4 { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; font-weight: 600; }
.foot__col a, .foot__col p { display: block; color: var(--paper); text-decoration: none; font-size: .92rem; margin-bottom: 10px; opacity: .8; }
.foot__col a:hover { opacity: 1; color: var(--gold-soft); }
.foot__legal { text-align: center; font-size: .78rem; opacity: .45; border-top: 1px solid var(--line-lt); padding-top: 22px; max-width: var(--maxw); margin: 0 auto; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-img img { clip-path: inset(0 0 96% 0); transition: clip-path 1.1s var(--ease); }
.reveal-img.is-in img { clip-path: inset(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1; transform: none; transition: none; }
  .reveal-img img { clip-path: none; transition: none; }
  .hero__photo, .hero__chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .dishes, .olist, .fgrid3, .dlrow { grid-template-columns: repeat(2, 1fr); }
  .fgrid4, .values, .mcats, .fstats { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(3, 1fr); }
  .band__inner { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .kgrid { grid-template-columns: 1fr 1fr; }
  .foot__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px var(--pad); }
  .nav__burger { display: block; }
  .nav .btn { display: none; }

  .hero__inner, .split, .frband__inner, .odetail { grid-template-columns: 1fr; }
  .odetail--flip .odetail__photo { order: 0; }
  .hero__photo img { aspect-ratio: 4/3.6; }
  .chain { grid-template-columns: 1fr; }
  .jcbrand .btn { margin-left: 0; }
}

@media (max-width: 560px) {
  .dishes, .olist, .fgrid3, .fgrid4, .values, .mcats, .mphotos, .kgrid, .foot__inner, .dlrow, .team { grid-template-columns: 1fr; }
  .fstats, .band__inner { grid-template-columns: 1fr 1fr; }
  .ftable th:nth-child(4), .ftable td:nth-child(4) { display: none; }
}
