/* ==========================================================================
   Pasta Lovers — design system
   Static site, no build step. Fonts are self-hosted in assets/fonts.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url('../assets/fonts/bricolage-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url('../assets/fonts/bricolage-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #121826;
  --ink-soft: #1e2735;
  --ink-60: rgba(18, 24, 38, .6);
  --ink-40: rgba(18, 24, 38, .4);
  --ink-12: rgba(18, 24, 38, .12);

  --cream: #fdf4e7;
  --paper: #f7ead6;
  --white: #ffffff;

  --red: #e4242c;
  --orange: #ffa615;
  --green: #79a04c;

  --font-display: 'Bricolage Grotesque', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1560px;
  --radius: 22px;
  --radius-lg: 34px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);
  --dur: .8s;

  --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* No native scrollbar: the .progress bar under the header shows position. */
html { scrollbar-width: none; }
html::-webkit-scrollbar { width: 0; height: 0; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type scale ---------- */
.display,
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.d1 { font-size: clamp(2.5rem, 6.4vw, 7rem); }
.d2 { font-size: clamp(2.5rem, 6.5vw, 6rem); }
.d3 { font-size: clamp(1.8rem, 3.4vw, 3.1rem); line-height: 1; }
.d4 { font-size: clamp(1.3rem, 1.9vw, 1.7rem); line-height: 1.08; letter-spacing: -.02em; }

.kicker {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.kicker::before {
  content: '';
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.lead { font-size: clamp(1.05rem, .95rem + .55vw, 1.4rem); line-height: 1.5; color: var(--ink-60); text-wrap: pretty; }
.muted { color: var(--ink-60); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 10vw, 10rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 6rem); }
.stack > * + * { margin-top: 1.1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.skip {
  position: fixed; top: .6rem; left: .6rem; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .3s var(--ease);
}
.skip:focus-visible { transform: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: 1.02em 1.9em;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--red);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .55s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover { box-shadow: 0 14px 34px -14px rgba(228, 36, 44, .8); }
.btn:active { transform: scale(.97); }
.btn .btn-i { transition: transform .45s var(--ease); }
.btn:hover .btn-i { transform: translateX(4px); }

.btn--accent { --bg: var(--red); --fg: #fff; }
.btn--accent::before { background: var(--ink); }
.btn--accent:hover { box-shadow: 0 14px 34px -14px rgba(18, 24, 38, .7); }

.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink-12);
}
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { --fg: var(--cream); box-shadow: inset 0 0 0 1.5px transparent; }

.btn--sm { padding: .72em 1.35em; font-size: .85rem; }
.btn--lg { padding: 1.15em 2.3em; font-size: 1.02rem; }

.link-u {
  position: relative;
  display: inline-block;
  font-weight: 600;
  padding-bottom: 2px;
}
.link-u::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform .45s var(--ease);
}
.link-u:hover::after { transform-origin: left; animation: linkSwipe .55s var(--ease); }
@keyframes linkSwipe {
  0% { transform: scaleX(1); transform-origin: right; }
  49% { transform: scaleX(0); transform-origin: right; }
  51% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--ink);
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader__logo { width: min(230px, 46vw); opacity: 0; transform: scale(.94); animation: plIn .9s var(--ease) forwards; }
.preloader__bar {
  position: absolute; left: 50%; bottom: 22%;
  translate: -50% 0;
  width: min(220px, 44vw); height: 2px;
  background: rgba(255, 255, 255, .16);
  border-radius: 2px; overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--orange);
  transition: width .35s var(--ease);
}
@keyframes plIn { to { opacity: 1; transform: none; } }
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto; z-index: 120;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: transform .55s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.header::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(253, 244, 231, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.header.is-stuck::before { opacity: 1; }
.header.is-stuck { box-shadow: 0 1px 0 var(--ink-12); }
.header.is-hidden { transform: translateY(-102%); }

/* Every page opens on a dark hero, so the header starts light and
   flips to ink once it sticks over the cream background. */
.header:not(.is-stuck) { color: var(--cream); }
.header:not(.is-stuck) .brand img { filter: brightness(0) invert(1); }
.header:not(.is-stuck) .lang__btn,
.header:not(.is-stuck) .burger { box-shadow: inset 0 0 0 1.5px rgba(253, 244, 231, .38); }
.header:not(.is-stuck) .lang__btn:hover,
.header:not(.is-stuck) .burger:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }
.header:not(.is-stuck) .burger span { background: var(--cream); }
.header:not(.is-stuck) .lang__btn .lang__code { color: rgba(253, 244, 231, .6); }

.header__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
}
.brand { flex: none; display: block; }
.brand img { width: clamp(132px, 13vw, 176px); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__link {
  position: relative;
  font-size: .93rem; font-weight: 500;
  padding: .3rem 0;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: .6rem; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: .45em;
  padding: .55em .85em;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px var(--ink-12);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.lang__btn:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.lang__btn svg { width: 10px; transition: transform .35s var(--ease); }
.lang[data-open="true"] .lang__btn svg { transform: rotate(180deg); }
/* The panel is always light, so it opts out of the inverted colours the
   header uses while it sits over a dark hero. */
.lang__menu {
  position: absolute; top: calc(100% + .55rem); right: 0;
  min-width: 168px; padding: .4rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 20px 50px -18px rgba(18, 24, 38, .38), 0 0 0 1px var(--ink-12);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.lang[data-open="true"] .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__opt {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: .62rem .8rem;
  border-radius: 11px;
  font-size: .9rem; text-align: left;
  transition: background .22s var(--ease);
}
.lang__opt:hover { background: var(--paper); }
.lang__opt[aria-selected="true"] { font-weight: 600; }
.lang__opt[aria-selected="true"]::after { content: '●'; color: var(--red); font-size: .6rem; }
.lang__code { font-size: .7rem; letter-spacing: .1em; color: var(--ink-40); }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px var(--ink-12);
  position: relative;
}
.burger span {
  position: absolute; left: 50%; translate: -50% 0;
  width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 28px; }
body.is-menu-open .burger span:nth-child(1) { transform: translate(-50%, 5px) rotate(45deg); }
body.is-menu-open .burger span:nth-child(2) { opacity: 0; }
body.is-menu-open .burger span:nth-child(3) { transform: translate(-50%, -5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink);
  color: var(--cream);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .75s var(--ease);
  visibility: hidden;
}
body.is-menu-open .drawer { clip-path: inset(0 0 0 0); visibility: visible; }
.drawer__list { display: flex; flex-direction: column; gap: .3rem; }
.drawer__link {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 10vw, 3.4rem); line-height: 1.05;
  letter-spacing: -.04em;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.drawer__link:hover { color: var(--orange); }
body.is-menu-open .drawer__link { opacity: 1; transform: none; }
body.is-menu-open .drawer__link:nth-child(1) { transition-delay: .18s; }
body.is-menu-open .drawer__link:nth-child(2) { transition-delay: .24s; }
body.is-menu-open .drawer__link:nth-child(3) { transition-delay: .3s; }
body.is-menu-open .drawer__link:nth-child(4) { transition-delay: .36s; }
body.is-menu-open .drawer__link:nth-child(5) { transition-delay: .42s; }
body.is-menu-open .drawer__link:nth-child(6) { transition-delay: .48s; }
.drawer__foot { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; color: rgba(253, 244, 231, .6); font-size: .9rem; }
.drawer__foot a:hover { color: var(--orange); }

/* Scroll progress */
.progress {
  position: fixed; top: 0; left: 0; z-index: 130;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0); transform-origin: left;
  will-change: transform;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: calc(var(--header-h) + 2rem) clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 24, 38, .62) 0%, rgba(18, 24, 38, .22) 34%, rgba(18, 24, 38, .5) 66%, rgba(18, 24, 38, .88) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(228, 36, 44, .22), transparent 60%);
}
.hero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hero__title { text-transform: uppercase; margin-bottom: clamp(1.2rem, 2.5vw, 2rem); }
.hero__title em { font-style: normal; color: var(--orange); }
.hero__row {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: clamp(1.2rem, 3vw, 3rem);
  justify-content: space-between;
}
.hero__tag {
  max-width: 30ch;
  font-size: clamp(1rem, .9rem + .5vw, 1.3rem);
  color: rgba(253, 244, 231, .82);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero .btn--ghost { --fg: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(253, 244, 231, .35); }
.hero .btn--ghost::before { background: var(--cream); }
.hero .btn--ghost:hover { --fg: var(--ink); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; translate: -50% 0;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(253, 244, 231, .65);
}
.hero__scroll i {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(180deg, transparent, rgba(253, 244, 231, .8));
  animation: scrollCue 2.2s var(--ease-io) infinite;
  transform-origin: top;
}
@keyframes scrollCue {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(42px); opacity: 0; }
}

/* Kinetic split text */
.split-line { display: block; overflow: hidden; }
.split-word { display: inline-block; }
.js .split-word {
  transform: translateY(110%) rotate(4deg);
  opacity: 0;
  transition: transform 1.05s var(--ease), opacity .7s var(--ease);
}
.is-in .split-word, .split-ready .split-word { transform: none; opacity: 1; }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  --speed: 34s;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(.9rem, 1.6vw, 1.3rem);
  border-block: 1px solid rgba(253, 244, 231, .1);
}
.marquee--accent { background: var(--red); color: #fff; }
.marquee__track { display: flex; width: max-content; animation: marquee var(--speed) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  display: inline-flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.6rem);
  padding-inline: clamp(.8rem, 2vw, 1.6rem);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  letter-spacing: -.02em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item::after {
  content: ''; width: .5em; height: .5em; border-radius: 50%;
  background: var(--orange); flex: none;
}
.marquee--accent .marquee__item::after { background: #fff; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Intro
   ========================================================================== */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
@media (min-width: 900px) { .intro__grid { grid-template-columns: 1.05fr .95fr; } }
.intro__media { position: relative; }
.figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.figure img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 4 / 3; }
.figure--square { aspect-ratio: 1; }
.figure__cap {
  position: absolute; left: 1rem; bottom: 1rem;
  padding: .5rem .9rem; border-radius: 999px;
  background: rgba(18, 24, 38, .58);
  backdrop-filter: blur(8px);
  color: var(--cream); font-size: .78rem;
}
.badge-round {
  position: absolute; z-index: 2;
  width: clamp(96px, 11vw, 134px); aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(.8rem, 1vw, .95rem); line-height: 1.05;
  text-align: center; text-transform: uppercase; letter-spacing: -.01em;
  box-shadow: 0 18px 40px -18px rgba(18, 24, 38, .55);
  animation: spinSlow 22s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ==========================================================================
   Dishes rail
   ========================================================================== */
.dishes__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.dishes__head .lead { max-width: 46ch; }

.rail {
  display: flex;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1);
  padding-bottom: 1.4rem;
  scrollbar-width: none;
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail.is-dragging * { pointer-events: none; }

.card {
  flex: none;
  width: clamp(255px, 27vw, 360px);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 1px 0 var(--ink-12);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  will-change: transform;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -32px rgba(18, 24, 38, .5); }
.card__media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--paper); }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__price {
  position: absolute; top: .9rem; right: .9rem;
  padding: .42rem .8rem; border-radius: 999px;
  background: var(--cream); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  letter-spacing: -.02em;
}
.card__body { padding: 1.15rem 1.25rem 1.4rem; }
.card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; letter-spacing: -.025em; line-height: 1.12; }
.card__desc { margin-top: .5rem; font-size: .9rem; color: var(--ink-60); line-height: 1.5; }
.card__tag {
  display: inline-block; margin-top: .9rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.rail__hint {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .3rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-40);
}
.rail__hint i { display: block; width: 30px; height: 1px; background: currentColor; animation: hintSlide 2s var(--ease-io) infinite; }
@keyframes hintSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

/* ==========================================================================
   Story
   ========================================================================== */
.story { background: var(--ink); color: var(--cream); }
.story .kicker { color: var(--orange); }
.story .lead { color: rgba(253, 244, 231, .7); }
.story__grid {
  display: grid; gap: clamp(2.2rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) { .story__grid { grid-template-columns: .95fr 1.05fr; } }
.story__media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.8rem, 1.6vw, 1.4rem); }
.story__media .figure:first-child { margin-top: clamp(1.5rem, 4vw, 3.5rem); }
.story__stats {
  display: grid; gap: 1px;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: rgba(253, 244, 231, .16);
  border-radius: 18px; overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.story__stat { background: var(--ink); padding: 1.15rem 1.2rem; }
.story__stat dt { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(253, 244, 231, .5); }
.story__stat dd { margin: .35rem 0 0; font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; }

/* ==========================================================================
   Order
   ========================================================================== */
.order__grid {
  display: grid; gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) { .order__grid { grid-template-columns: .85fr 1.15fr; } }
.steps { display: grid; gap: 1px; background: var(--ink-12); border-radius: var(--radius); overflow: hidden; }
.step {
  position: relative;
  background: var(--cream);
  padding: clamp(1.4rem, 2.6vw, 2.1rem);
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  transition: background .45s var(--ease);
}
.step:hover { background: var(--white); }
.step__n {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  transition: background .45s var(--ease), transform .45s var(--ease);
}
.step:hover .step__n { background: var(--red); transform: rotate(-8deg) scale(1.06); }
.step h3 { font-size: 1.24rem; letter-spacing: -.03em; }
.step p { margin-top: .35rem; font-size: .93rem; color: var(--ink-60); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { background: var(--paper); }
.grid-masonry { columns: 2; column-gap: clamp(.7rem, 1.4vw, 1.2rem); }
@media (min-width: 780px) { .grid-masonry { columns: 3; } }
@media (min-width: 1200px) { .grid-masonry { columns: 4; } }
.tile {
  break-inside: avoid;
  margin-bottom: clamp(.7rem, 1.4vw, 1.2rem);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  background: var(--ink-12);
  cursor: zoom-in;
}
.tile img { width: 100%; transition: transform 1.1s var(--ease), filter .5s var(--ease); }
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 24, 38, .5));
  opacity: 0; transition: opacity .45s var(--ease);
}
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(18, 24, 38, .94);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 92vw); max-height: 84svh;
  width: auto; border-radius: 16px;
  transform: scale(.94); opacity: 0;
  transition: transform .55s var(--ease), opacity .4s var(--ease);
}
.lightbox.is-open img { transform: none; opacity: 1; }
.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(253, 244, 231, .12);
  color: var(--cream);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox__btn:hover { background: var(--red); transform: scale(1.08); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__prev { left: clamp(.6rem, 3vw, 2rem); top: 50%; translate: 0 -50%; }
.lightbox__next { right: clamp(.6rem, 3vw, 2rem); top: 50%; translate: 0 -50%; }

/* ==========================================================================
   Visit
   ========================================================================== */
.visit__grid { display: grid; gap: clamp(2rem, 4vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .visit__grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.infolist { display: grid; gap: 1px; background: var(--ink-12); border-radius: var(--radius); overflow: hidden; margin-top: 2rem; }
.infolist > div { background: var(--cream); padding: 1.15rem 1.3rem; display: grid; gap: .25rem; }
.infolist dt { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-40); }
.infolist dd { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem, 1.3vw, 1.2rem); letter-spacing: -.02em; }
.infolist a:hover { color: var(--red); }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.news { background: var(--red); color: #fff; }
.news .kicker { color: rgba(255, 255, 255, .8); }
.news__grid { display: grid; gap: clamp(1.8rem, 4vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) { .news__grid { grid-template-columns: 1fr 1fr; } }
.news p { color: rgba(255, 255, 255, .82); }
.field {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .4rem .4rem .4rem 1.3rem;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.field:focus-within { background: rgba(255, 255, 255, .2); box-shadow: 0 0 0 2px rgba(255, 255, 255, .5); }
.field input {
  flex: 1; min-width: 0;
  background: none; border: 0; outline: none;
  color: #fff; padding: .85rem 0; font-size: 1rem;
}
.field input::placeholder { color: rgba(255, 255, 255, .6); }
.field .btn { --bg: #fff; --fg: var(--red); }
.field .btn::before { background: var(--ink); }
.field .btn:hover { --fg: #fff; }
.consent { display: flex; align-items: flex-start; gap: .6rem; margin-top: .9rem; font-size: .85rem; color: rgba(255, 255, 255, .8); }
.consent input { accent-color: #fff; margin-top: .2rem; }
.formnote { margin-top: .8rem; font-size: .88rem; min-height: 1.3em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: rgba(253, 244, 231, .72); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer a:hover { color: var(--orange); }
.footer__grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__logo { width: min(200px, 52vw); margin-bottom: 1.1rem; }
.footer h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(253, 244, 231, .45); margin-bottom: .9rem; font-weight: 600; }
.footer li + li { margin-top: .5rem; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 244, 231, .14);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem;
}

/* ==========================================================================
   Menu page
   ========================================================================== */
.pagehead {
  position: relative;
  padding-block: calc(var(--header-h) + clamp(3rem, 7vw, 6rem)) clamp(2.5rem, 5vw, 4rem);
  background: var(--ink); color: var(--cream);
  overflow: hidden;
}
.pagehead .kicker { color: var(--orange); }
.pagehead .lead { color: rgba(253, 244, 231, .7); max-width: 52ch; }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; opacity: .38; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; }
/* Scrim keeps the cream copy legible over the brighter photo. */
.pagehead__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--ink) 8%, rgba(18, 24, 38, .55) 55%, rgba(18, 24, 38, .1) 100%);
}
.pagehead .wrap { position: relative; z-index: 1; }

.menunav {
  position: sticky; top: var(--header-h); z-index: 60;
  background: rgba(253, 244, 231, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-12);
}
.menunav__inner { display: flex; align-items: center; gap: 1rem; padding-block: .7rem; overflow-x: auto; scrollbar-width: none; }
.menunav__inner::-webkit-scrollbar { display: none; }
.menunav__label { flex: none; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-40); }
.chip {
  flex: none;
  padding: .5rem 1rem; border-radius: 999px;
  font-size: .86rem; font-weight: 500; white-space: nowrap;
  box-shadow: inset 0 0 0 1.5px var(--ink-12);
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.chip:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.chip.is-active { background: var(--ink); color: var(--cream); box-shadow: none; }

.msection + .msection { margin-top: clamp(3rem, 6vw, 5.5rem); }
.msection__head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); max-width: 60ch; }
.msection__head h2 { margin-bottom: .5rem; }

.mlist { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .mlist { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .mlist--dense { grid-template-columns: repeat(3, 1fr); } }

.mitem {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 var(--ink-12);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.mitem:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -30px rgba(18, 24, 38, .45); }
.mitem--photo { grid-template-columns: 128px 1fr; }
@media (min-width: 560px) { .mitem--photo { grid-template-columns: 168px 1fr; } }
.mitem__media { overflow: hidden; background: var(--paper); }
.mitem__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.mitem:hover .mitem__media img { transform: scale(1.07); }
.mitem__body { padding: 1.15rem 1.25rem; display: flex; flex-direction: column; }
.mitem__top { display: flex; align-items: baseline; gap: .8rem; justify-content: space-between; }
.mitem__name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: -.025em; line-height: 1.15; }
.mitem__price { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--red); white-space: nowrap; }
.mitem__desc { margin-top: .45rem; font-size: .9rem; color: var(--ink-60); line-height: 1.5; }
.mitem__variants { margin-top: .7rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.vpill {
  display: inline-flex; gap: .45em; align-items: baseline;
  padding: .32rem .7rem; border-radius: 999px;
  background: var(--paper);
  font-size: .8rem;
}
.vpill b { font-family: var(--font-display); font-weight: 800; }

.addons { margin-top: auto; padding-top: .9rem; }
.addons summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-40);
  transition: color .3s var(--ease);
}
.addons summary::-webkit-details-marker { display: none; }
.addons summary:hover { color: var(--ink); }
.addons summary svg { width: 9px; transition: transform .35s var(--ease); }
.addons[open] summary svg { transform: rotate(180deg); }
.addons__list { margin-top: .6rem; display: flex; flex-wrap: wrap; gap: .4rem; }

.glossary {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: .9rem; color: var(--ink-60);
}
.glossary h3 { font-size: 1rem; color: var(--ink); margin-bottom: .6rem; }
.glossary li + li { margin-top: .3rem; }

/* ==========================================================================
   Blog / article / legal
   ========================================================================== */
.posts { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); grid-template-columns: 1fr; }
@media (min-width: 820px) { .posts { grid-template-columns: repeat(3, 1fr); } }
.post {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 0 var(--ink-12);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -30px rgba(18, 24, 38, .45); }
.post__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--paper); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__body { padding: 1.3rem 1.35rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40); }
.post__title { margin-top: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.03em; line-height: 1.12; }
.post__excerpt { margin-top: .6rem; font-size: .92rem; color: var(--ink-60); }
.post__more { margin-top: 1.1rem; }

.prose { max-width: 68ch; margin-inline: auto; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-top: 2.4rem; }
.prose h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); margin-top: 1.8rem; }
.prose p, .prose li { color: rgba(18, 24, 38, .78); line-height: 1.72; }
.prose ul { list-style: disc; padding-left: 1.2rem; }
.prose ul li + li { margin-top: .45rem; }
.prose strong { font-weight: 600; color: var(--ink); }
.notice {
  padding: .9rem 1.1rem; border-radius: 14px;
  background: var(--paper); font-size: .88rem; color: var(--ink-60);
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
/* Scoped to .js so the page stays fully readable if scripting is off
   or fails to load — nothing is hidden behind an animation we cannot run. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="left"] { transform: translateX(-40px); }
.js [data-reveal="right"] { transform: translateX(40px); }
.js [data-reveal="zoom"] { transform: scale(.92); }
.js [data-reveal="clip"] {
  opacity: 1; transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 250;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  mix-blend-mode: normal;
  translate: -50% -50%;
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), opacity .3s;
  opacity: 0;
  will-change: transform;
}
.cursor.is-on { opacity: 1; }
.cursor.is-hover { width: 52px; height: 52px; background: rgba(228, 36, 44, .28); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__actions { margin-left: auto; }
}
@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .story__media { grid-template-columns: 1fr; }
  .story__media .figure:first-child { margin-top: 0; }
  .mitem--photo { grid-template-columns: 108px 1fr; }
  .badge-round { display: none; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .split-word { opacity: 1 !important; transform: none !important; }
  .cursor { display: none; }
  .hero__media video, .hero__media img { transform: none; }
}
