/* ==========================================================================
   Qishr Coffee House — single-page site
   Design language adapted from a sibling sample (MTeaShop, a different
   client) at the owner's request — same techniques (grain wash, reveal-on-
   scroll, blob-fill buttons, marquee, custom cursor, dot-leader menu,
   watermark quote section), recolored and rewritten for a Yemeni
   coffeehouse. See CLAUDE.md > Brand & Design System.
   ========================================================================== */

:root {
  --paper: #FBF7F1;
  --cream: #F3E9DA;
  --cream-2: #EEE0C9;
  --ink: #34281E;
  --ink-soft: #6E5C4C;
  --ink-faint: #9C8B78;
  --wood: #C08A55;
  --wood-deep: #A5673A;
  --spice: #8FA36B;
  --spice-deep: #6C8049;
  --cherry: #D98A72;
  --cherry-deep: #B85A3E;
  --line: #E7D9C2;
  --shadow: 0 24px 50px -34px rgba(120, 85, 45, .45);
  --shadow-lg: 0 40px 70px -32px rgba(150, 100, 55, .5);
  --maxw: 1180px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* warm light wash + paper grain, purely decorative */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120vw 80vh at 78% -10%, rgba(192, 138, 85, .12), transparent 60%),
    radial-gradient(90vw 70vh at 5% 110%, rgba(217, 138, 114, .12), transparent 55%),
    radial-gradient(60vw 60vh at 95% 95%, rgba(143, 163, 107, .10), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 2; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--wood-deep); outline-offset: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.kicker {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; color: var(--spice-deep);
  margin-bottom: 1.4rem;
}
.kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50% 50% 50% 0;
  background: var(--spice); transform: rotate(45deg); display: inline-block;
}

.h2 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 48ch; font-weight: 300; }
.ital { font-style: italic; font-weight: 400; color: var(--wood-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.4rem, 5vw, 3.5rem); }
section { padding: clamp(5rem, 11vw, 9rem) 0; }

/* ---------- top-bar (disclosure notice + nav, one fixed stack) ---------- */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  transition: background .5s ease, box-shadow .5s ease;
}
.top-bar.scrolled {
  background: rgba(251, 247, 241, .82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(231, 217, 194, .9);
}

.notice {
  text-align: center; font-size: .76rem; color: var(--ink-faint);
  padding: .5rem 1rem; letter-spacing: .02em;
  border-bottom: 1px solid rgba(231, 217, 194, .6);
}

/* ---------- nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.4rem, 5vw, 3.5rem);
  transition: padding .4s ease;
}
.top-bar.scrolled .nav { padding-top: .8rem; padding-bottom: .8rem; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: .01em; }
.brand svg { width: 26px; height: 26px; flex: none; }
/* The real logo file is a tall badge+wordmark lockup — for this small
   inline mark we crop to just the round badge at the top via object-fit,
   masked to a circle. The full lockup gets shown properly elsewhere
   (see .brand-full in the footer). */
.brand-mark {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  object-fit: cover; object-position: top center;
}
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { position: relative; text-decoration: none; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 400; transition: color .35s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--wood-deep); transition: width .4s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.btn-mini { padding: .6rem 1.3rem; border: 1.4px solid var(--wood); border-radius: 40px; color: var(--ink) !important; overflow: hidden; }

/* Hamburger toggle — hidden unless JS confirms it can work (html.has-js,
   set before first paint) AND the viewport is narrow. Without JS, .nav-links
   below just falls back to a plain wrapped row of links, always visible —
   never hidden behind a control that doesn't do anything. */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 26px; height: 26px; background: transparent; border: none; cursor: pointer; padding: 0; flex: none;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 820px) {
  /* Base (no-JS-safe) fallback: links just wrap onto their own row,
     centered, still fully visible and clickable. */
  .nav { flex-wrap: wrap; row-gap: .6rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: .5rem 1.4rem; width: 100%; order: 3; }

  html.has-js .nav-toggle { display: inline-flex; }

  html.has-js .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; width: auto; order: initial;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0 clamp(1.4rem, 5vw, 3.5rem);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .4s ease, opacity .3s ease, padding .4s ease;
  }
  html.has-js .nav-links.is-open { max-height: 20rem; opacity: 1; padding: .5rem clamp(1.4rem, 5vw, 3.5rem) 1rem; }
  html.has-js .nav-links a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  html.has-js .nav-links a:last-child { border-bottom: none; }
  html.has-js .nav-links a::after { display: none; }
}

/* Tightest phones (SE-width, ~320-400px): brand text + "Order Ahead" +
   hamburger were fitting on one row with almost no gap between them.
   Not an overflow bug (verified no horizontal scroll), just visually
   cramped — trim padding/sizing rather than let it wrap awkwardly. */
@media (max-width: 400px) {
  .nav { padding-inline: 1rem; }
  .brand { font-size: 1.2rem; gap: .5rem; }
  .nav-actions { gap: .5rem; }
  .btn-mini { padding: .5rem .9rem; font-size: .68rem; }
}

/* ---------- buttons (wood & bloom fill) ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .6em;
  padding: 1.05em 2.3em; border: 1.5px solid var(--wood); border-radius: 50px;
  background: transparent; color: var(--ink);
  font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; overflow: hidden; text-decoration: none;
  transition: border-color .5s, color .5s, transform .4s;
}
.btn span, .btn svg { position: relative; z-index: 2; transition: color .45s; }
.btn::before {
  /* Sized off the button's own height (not width) on both axes so a short,
     wide pill button can't end up with an oversized circle that pokes into
     view at rest — width/aspect-ratio-off-width did exactly that. */
  content: ""; position: absolute; left: 50%; bottom: -165%;
  width: 150%; height: 140%; background: var(--spice);
  border-radius: 46% 54% 48% 52%; transform: translateX(-50%);
  transition: bottom .62s cubic-bezier(.62, 0, .25, 1), border-radius .62s ease;
  z-index: 1;
}
.btn:hover { color: #fff; border-color: var(--spice-deep); transform: translateY(-2px); }
.btn:hover span { color: #fff; }
.btn:hover::before { bottom: -34%; animation: blob 4.2s ease-in-out infinite; }
.btn:active { transform: translateY(0); }
.btn--cherry::before { background: var(--cherry-deep); }
.btn--cherry { border-color: var(--cherry-deep); }
.btn--cherry:hover { border-color: var(--cherry-deep); color: #5c281c; }
.btn--cherry:hover span { color: #5c281c; }
@keyframes blob {
  0%, 100% { border-radius: 46% 54% 48% 52%; }
  50% { border-radius: 54% 46% 55% 45%; }
}

/* ---------- hero ---------- */
.hero { padding-top: clamp(8rem, 16vh, 11rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { font-size: clamp(4.2rem, 13vw, 8.5rem); font-weight: 500; letter-spacing: -.025em; line-height: .92; }
.hero-tag { margin: 1.6rem 0 2rem; font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--ink-soft); max-width: 42ch; font-weight: 300; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-bottom: 2.4rem; }
.pill {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .42rem 1rem; border: 1px solid var(--line); border-radius: 40px;
  font-size: .78rem; letter-spacing: .06em; color: var(--ink-soft); background: rgba(255, 255, 255, .5);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--spice); box-shadow: 0 0 0 3px rgba(143, 163, 107, .18); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-art { display: flex; justify-content: center; }
.hero-art-svg { width: min(100%, 440px); height: auto; overflow: visible; }
.steam { fill: none; stroke: #cdbfa8; stroke-width: 5; stroke-linecap: round; opacity: 0; transform-origin: center bottom; animation: steam 5.5s ease-in-out infinite; }
.steam.s2 { animation-delay: 1.8s; }
.steam.s3 { animation-delay: 3.4s; }
@keyframes steam {
  0% { opacity: 0; transform: translateY(8px) scaleY(.85); }
  28% { opacity: .5; }
  100% { opacity: 0; transform: translateY(-30px) scaleY(1.25); }
}
.float-bit { transform-origin: center; animation: floatBit 9s ease-in-out infinite; }
.float-bit.fb2 { animation-duration: 11s; animation-delay: 1.5s; }
.float-bit.fb3 { animation-duration: 13s; animation-delay: .6s; }
@keyframes floatBit {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(16deg); }
}

/* ---------- marquee divider ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 1.25rem 0; background: rgba(243, 233, 218, .4); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: scrollx 32s linear infinite; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 3rem; }
.marquee span::after { content: "\2727"; color: var(--cherry-deep); font-size: .9rem; font-style: normal; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- services ---------- */
.sec-head { max-width: 60ch; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); margin-top: 3.5rem; }
.card {
  position: relative; padding: clamp(2rem, 3vw, 3rem) clamp(1.6rem, 2.4vw, 2.4rem);
  background: linear-gradient(180deg, #ffffff, #fdf9f0);
  border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), box-shadow .55s ease, border-color .55s ease;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--wood); }
.card-ico {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(150deg, #f7f0e2, #efe0c9);
  border: 1px solid var(--line); margin-bottom: 1.6rem; color: var(--wood-deep);
  transition: background .5s, color .5s;
}
.card:hover .card-ico { background: linear-gradient(150deg, #eef3e3, #e7efd6); color: var(--spice-deep); }
.card-ico svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.7rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card .tag { display: inline-block; margin-top: 1.2rem; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--wood-deep); }

/* ---------- menu ---------- */
.menu-sec { background: linear-gradient(180deg, transparent, rgba(243, 233, 218, .55), transparent); }
.menu-cat { margin-top: 3.4rem; }
.menu-cat:first-of-type { margin-top: 3rem; }
.menu-cat-head { font-family: var(--sans); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--wood-deep); font-weight: 600; margin-bottom: 1rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 3.5rem; }
.menu-item {
  display: flex; align-items: flex-end; gap: 1rem; padding: 1.05rem .4rem 1rem;
  border-bottom: 1px solid var(--line); cursor: default;
  transition: padding .45s ease, border-color .45s ease;
}
.menu-item:hover { padding-left: 1.1rem; border-color: var(--wood); }
.mi-main { flex: 1 1 auto; }
.mi-main h3 { font-size: 1.35rem; font-weight: 500; display: inline; transition: color .4s; }
.menu-item:hover .mi-main h3 { color: var(--wood-deep); }
.mi-main p { font-size: .84rem; color: var(--ink-faint); margin-top: .15rem; }
.mi-dots { flex: 1 1 auto; border-bottom: 1.5px dotted var(--line); transform: translateY(-6px); min-width: 24px; }
.mi-price { font-family: var(--serif); font-size: 1.3rem; color: var(--spice-deep); font-weight: 500; white-space: nowrap; }
.menu-note { margin-top: 2.4rem; font-size: .85rem; color: var(--ink-faint); letter-spacing: .04em; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1rem; margin-top: 3rem; }
.gallery-tile {
  aspect-ratio: 4 / 3; border-radius: 20px; border: 1px solid var(--line);
  margin: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem;
  font-family: var(--serif); font-style: italic; font-size: 1rem; color: #fff;
  background: linear-gradient(155deg, var(--wood) 0%, var(--wood-deep) 100%);
  box-shadow: var(--shadow);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), box-shadow .55s ease;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Photo tiles go full-bleed (no padding/gradient mat) — the padding above
   is only for the text placeholder look, unused now that real photos are in. */
figure.gallery-tile { padding: 0; }
.gallery-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-tile:nth-child(3n+2) { background: linear-gradient(155deg, var(--spice) 0%, var(--spice-deep) 100%); }
.gallery-tile:nth-child(3n) { background: linear-gradient(155deg, var(--cherry) 0%, var(--cherry-deep) 100%); }

/* ---------- story / quote ---------- */
.story { position: relative; text-align: center; overflow: hidden; }
.story .wrap { position: relative; z-index: 2; }
.story .watermark {
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(900px, 120%); opacity: .07; color: var(--wood-deep);
}
.story-seal { width: min(100%, 128px); height: auto; margin: 0 auto 2rem; }
.quote { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.22; max-width: 19ch; margin: 0 auto; }
.quote em { font-style: italic; color: var(--wood-deep); }
.story p.sub { margin: 2rem auto 0; max-width: 52ch; color: var(--ink-soft); }

/* ---------- visit / footer block ---------- */
.visit { background: linear-gradient(160deg, #f7efdf, #f0e3cd); border-top: 1px solid var(--line); }
.visit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
.info-col { display: flex; flex-direction: column; gap: 2rem; }
.info-block { padding-left: 1.6rem; border-left: 2px solid var(--wood); position: relative; }
.info-block h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--wood-deep); margin: 0 0 .6rem; font-weight: 600; }
.info-block p, .info-block a { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--ink); text-decoration: none; line-height: 1.3; font-weight: 500; display: block; }
.info-block .small { display: block; font-family: var(--sans); font-size: .92rem; color: var(--ink-soft); font-weight: 300; margin-top: .3rem; letter-spacing: 0; }
.link-arrow { display: inline-flex !important; align-items: center; gap: .5em; font-size: 1.05rem !important; font-family: var(--sans) !important; font-weight: 500 !important; color: var(--spice-deep) !important; margin-top: .7rem; letter-spacing: .02em; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .4s; }
.link-arrow:hover svg { transform: translateX(5px); }

/* order-ahead link with coffee-bloom ripple */
.ripple { position: relative; overflow: hidden; display: inline-block; border-radius: 12px; padding: .15em .35em; margin-left: -.35em; }
.bloom-stain {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(165, 103, 58, .42), rgba(165, 103, 58, .16) 55%, transparent 72%);
  pointer-events: none; animation: stain 1.15s ease-out forwards;
}
@keyframes stain {
  0% { transform: translate(-50%, -50%) scale(0); opacity: .9; }
  70% { opacity: .55; }
  100% { transform: translate(-50%, -50%) scale(16); opacity: 0; }
}

.visit-card {
  background: linear-gradient(165deg, #ffffff, #fdf7ea);
  border: 1px solid var(--line); border-radius: 26px; padding: 2.4rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
}
.map-illus { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16 / 10; background: linear-gradient(160deg, #eef3e3, #f7efdf); border: 1px solid var(--line); }
.map-illus svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -100%); color: var(--cherry-deep); animation: pinDrop 3s ease-in-out infinite; }
.map-pin svg { width: 38px; height: 38px; filter: drop-shadow(0 8px 8px rgba(150, 100, 55, .3)); }
@keyframes pinDrop { 0%, 100% { transform: translate(-50%, -100%); } 50% { transform: translate(-50%, -115%); } }
.visit-card .vc-cta { display: flex; flex-direction: column; gap: .9rem; }
.visit-card .btn { justify-content: center; }

/* ---------- footer ---------- */
.foot { padding: 2.6rem 0; border-top: 1px solid var(--line); background: var(--paper); }
.foot-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.foot-row .brand { font-size: 1.25rem; }
.foot-links { display: flex; gap: 1.2rem; }
.foot-links a { font-size: .8rem; text-decoration: none; color: var(--ink-soft); transition: color .3s; }
.foot-links a:hover { color: var(--wood-deep); }
.foot small { color: var(--ink-faint); font-size: .82rem; letter-spacing: .04em; display: block; margin-top: .6rem; }

/* ---------- reveal (steam-load) ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(10px); transition: opacity 1.15s ease, transform 1.15s cubic-bezier(.2, .7, .2, 1), filter 1.15s ease; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }

/* ---------- custom spice-fleck cursor ---------- */
.cursor { position: fixed; left: 0; top: 0; width: 30px; height: 30px; margin: -15px 0 0 -15px; z-index: 99999; pointer-events: none; will-change: transform; opacity: 0; transition: opacity .4s; }
body.has-cursor .cursor { opacity: 1; }
.cursor-inner { width: 100%; height: 100%; transition: transform .35s cubic-bezier(.2, .8, .2, 1); }
.cursor svg { width: 100%; height: 100%; display: block; }
.cursor .pod-fill { fill: var(--cherry-deep); transition: fill .35s; }
.cursor .pod-vein { fill: none; stroke: rgba(255, 255, 255, .65); stroke-width: 1; }
.cursor.hot .cursor-inner { transform: scale(1.75); }
.cursor.hot .pod-fill { fill: var(--spice); }
.cursor.down .cursor-inner { transform: scale(.78); }
body.has-cursor, body.has-cursor * { cursor: none !important; }
.trail-bit {
  position: fixed; z-index: 99998; pointer-events: none;
  border-radius: 60% 0 60% 60%;
  background: linear-gradient(135deg, var(--cherry), var(--spice));
  opacity: .5; transform: translate(-50%, -50%) rotate(var(--r));
  animation: trailFade .9s ease-out forwards; will-change: transform, opacity;
}
@keyframes trailFade {
  to { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(calc(var(--r) + 140deg)) scale(.35); }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-art { order: -1; margin-bottom: 1rem; }
  .hero-art-svg { width: min(78%, 320px); }
  .cards { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .visit-grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .steam, .marquee-track { animation: none; }
}

/* ---------- no-JS fallback ----------
   Everything above assumes JS drives .in on .reveal elements. Without JS,
   html lacks .has-js and this rule wins on specificity/order, so content
   is simply visible — never permanently hidden. */
html:not(.has-js) .reveal { opacity: 1; transform: none; filter: none; }
