/* ════════════════════════════════════════════════
   VELVET TREATS — cinematic, photography-led
   Brand: burgundy #582F33 · cream #F1E4D4 · rose #A9545C
   Type: Playfair Display display · Mulish body ·
         IBM Plex Mono labels
   ════════════════════════════════════════════════ */

:root {
  --bg: #1c1013;          /* near-black burgundy               */
  --bg-2: #241418;        /* raised panels                     */
  --wine: #582F33;        /* brand burgundy                    */
  --line: rgba(230, 183, 173, .16);
  --ink: #f1e4d4;         /* brand cream                       */
  --ink-dim: #b39a93;     /* muted rose-taupe                  */
  --rose: #c98a92;        /* lifted brand rose                 */
  --rose-bright: #e6b7ad; /* highlight rose                    */
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Mulish", -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease-lux: cubic-bezier(.65, 0, .35, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--rose); color: #241418; }

/* ═══════ PRELOADER ═══════ */
.preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease-lux), visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; place-items: center; gap: 16px; text-align: center; }
.preloader__seal {
  width: 84px;
  opacity: 0; transform: scale(.85) rotate(-8deg);
  animation: sealIn 1s .05s var(--ease-out) forwards;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .4));
}
@keyframes sealIn { to { opacity: 1; transform: none; } }
.preloader__word {
  font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 500; letter-spacing: .06em; color: var(--ink);
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .9s .25s var(--ease-out) forwards;
}
.preloader__rule { width: 150px; height: 1px; background: var(--line); overflow: hidden; }
.preloader__rule i {
  display: block; height: 100%; width: 100%;
  background: var(--rose);
  transform: translateX(-101%);
  animation: ruleFill 1.2s .5s var(--ease-lux) forwards;
}
@keyframes ruleFill { to { transform: none; } }
.preloader__tag {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0; animation: fadeUp .9s .65s var(--ease-out) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 56px);
  transition: padding .4s var(--ease-lux), background .4s, box-shadow .4s;
}
.nav.is-scrolled {
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(28, 16, 19, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); text-decoration: none;
  font-family: var(--sans); font-weight: 600;
  font-size: .9rem; letter-spacing: .28em;
}
.nav__logo img { width: 40px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); transition: transform .6s var(--ease-out); }
.nav__logo:hover img { transform: rotate(-10deg) scale(1.06); }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__order {
  color: var(--ink-dim); text-decoration: none;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  transition: color .3s;
}
.nav__order:hover { color: var(--rose-bright); }
.nav__menu-btn {
  background: rgba(241, 228, 212, .08);
  border: 1px solid rgba(241, 228, 212, .24);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--ink); cursor: pointer;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 100px;
  transition: background .3s, border-color .3s, color .3s;
}
.nav__menu-btn:hover { background: var(--ink); color: var(--wine); border-color: var(--ink); }

/* ═══════ OVERLAY MENU ═══════ */
.overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: #150b0e;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(24px, 8vw, 120px);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .8s var(--ease-lux), visibility .8s;
}
.overlay.is-open { clip-path: inset(0 0 0% 0); visibility: visible; }
.overlay__close {
  position: absolute; top: 20px; right: clamp(18px, 4vw, 56px);
  background: none; border: 1px solid rgba(241, 228, 212, .25);
  color: var(--ink); cursor: pointer;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 100px;
  transition: background .3s, color .3s;
}
.overlay__close:hover { background: var(--ink); color: var(--wine); }
.overlay__links { display: grid; }
.overlay__links a {
  color: var(--ink); text-decoration: none;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 6.4vw, 4.4rem); line-height: 1.22;
  border-bottom: 1px solid rgba(230, 183, 173, .12);
  padding: clamp(6px, 1.2vh, 14px) 0;
  display: flex; align-items: baseline; gap: 26px;
  opacity: 0; transform: translateY(34px);
  transition: color .35s, padding-left .45s var(--ease-lux);
}
.overlay.is-open .overlay__links a { animation: fadeUp .8s var(--ease-lux) forwards; }
.overlay.is-open .overlay__links a[data-idx="1"] { animation-delay: .25s; }
.overlay.is-open .overlay__links a[data-idx="2"] { animation-delay: .32s; }
.overlay.is-open .overlay__links a[data-idx="3"] { animation-delay: .39s; }
.overlay.is-open .overlay__links a[data-idx="4"] { animation-delay: .46s; }
.overlay.is-open .overlay__links a[data-idx="5"] { animation-delay: .53s; }
.overlay.is-open .overlay__links a[data-idx="6"] { animation-delay: .6s; }
.overlay__links a em {
  font-family: var(--mono); font-style: normal;
  font-size: .78rem; color: var(--rose); letter-spacing: .1em;
}
.overlay__links a:hover { color: var(--rose-bright); padding-left: 18px; }
.overlay__foot {
  position: absolute; bottom: 28px; left: clamp(24px, 8vw, 120px); right: clamp(24px, 8vw, 120px);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px 28px;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: grid; place-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,16,19,.52) 0%, rgba(28,16,19,.2) 38%, rgba(28,16,19,.3) 70%, rgba(28,16,19,.88) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 5vw; }
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3rem, 9.4vw, 8rem);
  line-height: 1.06; letter-spacing: .005em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .4);
}
.hero__title em { font-style: italic; color: var(--rose-bright); }
.hero__line { display: block; overflow: hidden; }
.hero__line > span {
  display: block; transform: translateY(112%);
  animation: lineUp 1.15s var(--ease-lux) forwards;
}
.hero__line:nth-child(1) > span { animation-delay: .95s; }
.hero__line:nth-child(2) > span { animation-delay: 1.08s; }
@keyframes lineUp { to { transform: none; } }
.hero__cta {
  position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(241, 228, 212, .09);
  border: 1px solid rgba(241, 228, 212, .3);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--ink); text-decoration: none;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 100px;
  opacity: 0;
  animation: ctaIn 1s 1.9s var(--ease-out) forwards;
  transition: background .35s, color .35s, border-color .35s;
}
@keyframes ctaIn { from { opacity: 0; transform: translate(-50%, 16px); } to { opacity: 1; transform: translate(-50%, 0); } }
.hero__cta i { font-style: normal; transition: transform .35s var(--ease-out); }
.hero__cta:hover { background: var(--ink); color: var(--wine); border-color: var(--ink); }
.hero__cta:hover i { transform: translateX(5px); }
.hero__meta {
  position: absolute; bottom: 46px; z-index: 2;
  left: clamp(18px, 4vw, 56px); right: clamp(18px, 4vw, 56px);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(241, 228, 212, .68);
  opacity: 0; animation: fadeUp 1s 2.2s var(--ease-out) forwards;
  pointer-events: none;
}
.hero__meta span:nth-child(2) { display: none; }
@media (min-width: 760px) { .hero__meta span:nth-child(2) { display: block; } }

/* ═══════ MARQUEE ═══════ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden; padding: 17px 0;
}
.marquee__track { display: flex; gap: 44px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  color: var(--ink-dim); white-space: nowrap;
}
.marquee__track em { color: var(--rose); font-style: normal; font-size: .8rem; align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════ SCROLLY — chaptered crossfade ═══════ */
.scrolly { position: relative; height: 440vh; }
.scrolly__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scrolly__bgs { position: absolute; inset: 0; }
.scrolly__bg {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-lux);
}
.scrolly__bg.is-active { opacity: 1; }
.scrolly__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1);
  transition: transform 7s linear;
  will-change: transform;
}
.scrolly__bg.is-active img { transform: scale(1); }
.scrolly__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(21,11,14,.68) 0%, rgba(21,11,14,.42) 45%, rgba(21,11,14,.72) 100%);
}
.scrolly__head {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 96px clamp(18px, 4vw, 56px) 0;
  pointer-events: none;
}
.scrolly__label {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--rose-bright);
}
.scrolly__counter {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em;
  color: rgba(241, 228, 212, .55);
}
.scrolly__counter b { color: var(--ink); font-weight: 500; font-size: .95rem; }
.scrolly__steps { position: absolute; inset: 0; z-index: 2; }
.scrolly__steps p {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center; padding: 0 6vw;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 6.6vw, 5.4rem);
  line-height: 1.12;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .45);
  pointer-events: none;
}
.scrolly__steps p em { font-style: italic; color: var(--rose-bright); }
.scrolly__steps p span {
  display: block;
  opacity: 0; transform: translateY(56px);
  filter: blur(8px);
  transition: opacity .7s var(--ease-lux), transform .7s var(--ease-lux), filter .7s var(--ease-lux);
}
.scrolly__steps p.is-active span { opacity: 1; transform: none; filter: none; }
.scrolly__steps p.is-past span { opacity: 0; transform: translateY(-56px); filter: blur(8px); }
.scrolly__foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  padding: 0 clamp(18px, 4vw, 56px) 34px;
}
.scrolly__foot .scrolly__progress { align-self: stretch; }
.scrolly__progress {
  height: 1px; background: rgba(241, 228, 212, .18);
  overflow: hidden;
}
.scrolly__progress i {
  display: block; height: 100%; width: 0;
  background: var(--rose-bright);
}
.chip {
  display: inline-block;
  background: var(--ink); color: var(--wine);
  font-family: var(--mono); font-size: .58rem; font-weight: 500;
  letter-spacing: .13em; padding: 6px 10px;
  position: relative; z-index: 2;
}
.chip--card { position: absolute; left: 14px; top: 14px; z-index: 3; }

/* ═══════ STATEMENT ═══════ */
.statement {
  position: relative; height: 82vh; min-height: 480px;
  display: grid; place-items: center;
  overflow: hidden;
}
.statement__media { position: absolute; inset: -16% 0; }
.statement__media img { width: 100%; height: 100%; object-fit: cover; }
.statement__scrim { position: absolute; inset: 0; background: rgba(21, 11, 14, .66); }
.statement__text {
  position: relative; z-index: 2; text-align: center;
  padding: 0 6vw; max-width: 1000px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem); line-height: 1.3;
}
.statement__text em { font-style: italic; color: var(--rose-bright); }

/* ═══════ COMMON ═══════ */
.section { padding: 150px clamp(18px, 4vw, 56px); max-width: 1380px; margin: 0 auto; }
.section__head { text-align: center; margin-bottom: 72px; }
.kicker {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--rose); font-weight: 400; margin-bottom: 22px;
}
.kicker--center { display: flex; align-items: center; justify-content: center; gap: 18px; }
.kicker--center::before, .kicker--center::after {
  content: ""; width: 44px; height: 1px; background: var(--line); display: block;
}
.section__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.12; letter-spacing: -.005em;
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
}
.reveal.is-in { opacity: 1; transform: none; }

.img-reveal { position: relative; overflow: hidden; }
.img-reveal img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.14);
  transition: transform 1.6s var(--ease-lux);
}
.img-reveal::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: var(--bg-2);
  transform: scaleX(1); transform-origin: right;
  transition: transform 1s var(--ease-lux);
}
.img-reveal.is-in img { transform: scale(1); }
.img-reveal.is-in::after { transform: scaleX(0); }

/* ═══════ STORY ═══════ */
.story__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 100px); align-items: center;
}
.story__visuals { position: relative; padding-bottom: 90px; }
.story__main { aspect-ratio: 4 / 5; }
.story__accent {
  position: absolute; right: -5%; bottom: 0;
  width: 52%; aspect-ratio: 4 / 3;
  border: 8px solid var(--bg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.story__seal {
  position: absolute; left: -26px; top: -26px; z-index: 3;
  width: 92px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .45));
  animation: sealSpin 26s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
.story__text .section__title { margin-bottom: 30px; }
.story__text p:not(.kicker) { color: var(--ink-dim); margin-bottom: 20px; font-size: 1.02rem; }
.story__pillars { list-style: none; margin-top: 38px; }
.story__pillars li {
  display: flex; align-items: baseline; gap: 24px;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.story__pillars strong {
  font-family: var(--serif); font-size: 1.55rem; color: var(--rose-bright);
  min-width: 128px; font-weight: 600;
}
.story__pillars span { color: var(--ink-dim); font-size: .93rem; }

/* ═══════ FAVOURITES ═══════ */
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.sig-card__media { aspect-ratio: 4 / 5; }
.sig-card__media img { transition: transform 1.6s var(--ease-lux); }
.sig-card:hover .sig-card__media.is-in img { transform: scale(1.05); }
.sig-card__body { padding: 24px 2px 0; }
.sig-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; margin-bottom: 10px;
  border-bottom: 1px solid var(--line); padding-bottom: 12px;
}
.sig-card__row h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.sig-card__body > p { color: var(--ink-dim); font-size: .93rem; }

/* ═══════ MENU ═══════ */
.menu__tabs {
  position: relative;
  display: flex; gap: 4px; flex-wrap: wrap; justify-content: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.menu__tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: .68rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-dim); padding: 14px 20px;
  transition: color .3s; position: relative; z-index: 1;
}
.menu__tab:hover { color: var(--ink); }
.menu__tab.is-active { color: var(--rose-bright); }
.menu__tab-ink {
  position: absolute; bottom: -1px; height: 1px;
  background: var(--rose);
  transition: left .45s var(--ease-lux), width .45s var(--ease-lux);
}
.menu__list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 76px; min-height: 320px;
  max-width: 1100px; margin: 0 auto;
}
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 2px 18px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(230, 183, 173, .09);
  opacity: 0; transform: translateY(16px);
  animation: menuIn .6s var(--ease-out) forwards;
}
@keyframes menuIn { to { opacity: 1; transform: none; } }
.menu-item__name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.menu-item__name .diet {
  font-size: .52rem; letter-spacing: .12em; font-family: var(--mono); font-weight: 500;
  padding: 3px 7px; border: 1px solid rgba(230, 183, 173, .5);
  color: var(--rose-bright);
}
.menu-item__desc { grid-column: 1 / -1; color: var(--ink-dim); font-size: .89rem; }
.menu-item__flavours {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.menu-item__flavours span {
  font-family: var(--mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose-bright);
  border: 1px solid rgba(230, 183, 173, .35);
  padding: 4px 10px; border-radius: 100px;
}
.menu__cta { text-align: center; margin-top: 52px; }

.btn {
  display: inline-block; cursor: pointer;
  font-family: var(--mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 17px 38px; border: 1px solid transparent; border-radius: 100px;
  transition: background .35s, color .35s, transform .35s var(--ease-out), border-color .35s;
  text-decoration: none;
}
.btn--rose { background: var(--ink); color: var(--wine); }
.btn--rose:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: rgba(241, 228, 212, .35); color: var(--ink); }
.btn--ghost:hover { border-color: var(--rose-bright); color: var(--rose-bright); transform: translateY(-2px); }

/* ═══════ GALLERY ═══════ */
.gallery__grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
}
.g1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.g2 { grid-column: 3 / 4; } .g3 { grid-column: 4 / 5; }
.g4 { grid-column: 3 / 4; } .g5 { grid-column: 4 / 5; }
.gallery__item { position: relative; }
.gallery__item img { transition: transform 1.4s var(--ease-lux); }
.gallery__item.is-in:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 46px 16px 13px;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(to top, rgba(14, 7, 9, .85), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s, transform .5s var(--ease-out);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }

/* ═══════ VOICES ═══════ */
.voices { border-top: 1px solid var(--line); padding-top: 110px; padding-bottom: 110px; }
.voices__slider { overflow: hidden; position: relative; }
.voices__track { display: flex; transition: transform .8s var(--ease-lux); }
.voice { min-width: 100%; padding: 10px 8vw; text-align: center; }
.voice p {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.9vw, 2.2rem);
  font-style: italic; font-weight: 500; line-height: 1.42;
  max-width: 880px; margin: 0 auto 30px;
}
.voice footer strong {
  display: block; color: var(--ink); font-weight: 400;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
}
.voice footer span { color: var(--ink-dim); font-size: .8rem; }
.voices__dots { display: flex; gap: 10px; justify-content: center; margin-top: 42px; }
.voices__dots button {
  width: 32px; height: 2px; border: none; cursor: pointer;
  background: rgba(241, 228, 212, .2);
  transition: background .4s, width .4s;
}
.voices__dots button.is-active { background: var(--rose); width: 52px; }

/* ═══════ VISIT ═══════ */
.visit {
  display: grid; grid-template-columns: 1fr 1.1fr;
  border-top: 1px solid var(--line);
  min-height: 640px;
}
.visit__media { min-height: 420px; }
.visit__panel {
  padding: clamp(48px, 6vw, 100px);
  background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center;
}
.visit__panel .section__title { margin-bottom: 18px; }
.visit__note { color: var(--ink-dim); margin-bottom: 36px; font-size: .96rem; max-width: 480px; }
.visit__info { list-style: none; display: grid; gap: 16px; margin-bottom: 40px; }
.visit__info li { color: var(--ink); font-size: .95rem; }
.visit__info li a { text-decoration: none; transition: color .3s; }
.visit__info li a:hover { color: var(--rose-bright); }
.visit__info span {
  display: block;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 2px;
}
.visit__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════ FOOTER ═══════ */
.footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer__top {
  max-width: 1380px; margin: 0 auto;
  padding: 76px clamp(18px, 4vw, 56px) 54px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
}
.footer__brand img { width: 64px; margin-bottom: 16px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.footer__logo {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--ink);
  display: block; margin-bottom: 10px;
}
.footer__brand p { color: var(--ink-dim); font-style: italic; font-family: var(--serif); font-size: 1.02rem; }
.footer__col h4 {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px; font-weight: 500;
}
.footer__col p { color: var(--ink-dim); font-size: .9rem; }
.footer__col a { text-decoration: none; transition: color .3s; }
.footer__col a:hover { color: var(--rose-bright); }
.footer__bar {
  border-top: 1px solid rgba(230, 183, 173, .09);
  max-width: 1380px; margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 56px);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: #8d7570; font-size: .76rem;
}
.footer__bar a { color: var(--rose); text-decoration: none; }
.footer__bar a:hover { color: var(--rose-bright); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1000px) {
  .story__grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .menu__list { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 220px 220px; }
  .g1 { grid-column: 1 / 3; grid-row: 1; }
  .g2 { grid-column: 1; grid-row: 2; } .g3 { grid-column: 2; grid-row: 2; }
  .g4 { grid-column: 1; grid-row: 3; } .g5 { grid-column: 2; grid-row: 3; }
  .visit { grid-template-columns: 1fr; }
  .visit__media { max-height: 380px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .scrolly__inset--right { top: auto; bottom: 24%; }
  .scrolly__inset--left { top: 52%; }
}
@media (max-width: 760px) {
  .section { padding: 96px 6vw; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; text-align: center; }
  .story__accent { right: 0; }
  .story__seal { left: -10px; top: -18px; width: 72px; }
  .nav__order { display: none; }
  .scrolly { height: 480vh; }
  .scrolly__lines { top: 9vh; }
  .scrolly__lines p { font-size: 1.1rem; }
  .scrolly__inset { width: 46vw; }
  .scrolly__inset--left { left: 6vw; top: 56%; }
  .scrolly__inset--right { right: 6vw; bottom: 26%; }
  .scrolly__inset--left2 { left: 10vw; bottom: 6%; }
  .visit__actions .btn { width: 100%; text-align: center; }
}

/* ═══════ SIPO LIVE DATA (injected components) ═══════ */

/* status strip — floating glass pill, bottom-left */
.status-strip {
  position: fixed; left: 20px; bottom: 20px; z-index: 1200;
  background: rgba(28, 16, 19, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 100px;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp .8s 2.6s var(--ease-out) forwards;
}
.status-strip-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-dim); white-space: nowrap;
}
.status-strip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9aa0a6; flex: none;
}
.status-strip.open .status-strip-text { color: var(--ink); }
.status-strip.open .status-strip-dot {
  background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, .16);
  animation: dotPulse 2.2s ease-in-out infinite;
}
.status-strip.closed .status-strip-text { color: #f0b9b0; }
.status-strip.closed .status-strip-dot { background: #f87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, .16); }
.status-strip.error .status-strip-dot { background: #fbbf24; box-shadow: 0 0 0 3px rgba(251, 191, 36, .16); }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, .16); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, .06); }
}
.countdown-timer { font-variant-numeric: tabular-nums; color: var(--ink); }

/* footer hours list (live-updated) */
.footer-hours { list-style: none; display: grid; gap: 8px; }
.footer-hours li {
  display: flex; justify-content: space-between; gap: 18px;
  color: var(--ink-dim); font-size: .9rem;
}
.footer-hours .day { color: var(--ink-dim); }
.footer-hours .time { color: var(--ink); text-align: right; }
.footer-hours .closed-day { color: var(--rose); }
.footer-hours li.today .day,
.footer-hours li.today .time { color: var(--rose-bright); }

/* visit hours table (live-updated) */
.hours-table { display: grid; gap: 6px; }
.hours-row {
  display: flex; justify-content: space-between; gap: 18px;
  font-size: .92rem; color: var(--ink);
}
.hours-row .day { color: var(--ink-dim); }
.hours-row .closed-day { color: var(--rose); }
.hours-row.today .day, .hours-row.today .time { color: var(--rose-bright); }

/* google rating badge (live) */
#footer-rating { margin-top: 14px; }
.google-rating-badge {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  text-decoration: none;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .08em;
  color: var(--ink-dim);
  transition: color .3s;
}
.google-rating-badge:hover { color: var(--ink); }
.google-rating-badge .rating-stars { color: var(--rose-bright); letter-spacing: .1em; }
.google-rating-badge .rating-num { color: var(--ink); font-weight: 500; }

/* SIPO modals (closed notice / offers) — dark theme */
.sipo-modal-overlay {
  position: fixed; inset: 0; z-index: 1600;
  background: rgba(14, 7, 9, .7);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.sipo-modal-overlay.active { opacity: 1; pointer-events: auto; }
.sipo-modal {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  max-width: 420px; width: calc(100vw - 48px);
  padding: 44px 36px 36px;
  text-align: center;
  transform: translateY(20px);
  transition: transform .4s var(--ease-out);
}
.sipo-modal-overlay.active .sipo-modal { transform: none; }
.sipo-modal-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--ink); margin: 14px 0 10px;
}
.sipo-modal-text { color: var(--ink-dim); font-size: .94rem; margin-bottom: 24px; }
.sipo-modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--ink-dim); font-size: 1.5rem; line-height: 1;
  transition: color .3s;
}
.sipo-modal-close:hover { color: var(--ink); }
.sipo-modal .btn, .sipo-modal-btn {
  background: var(--ink); color: var(--wine);
  border: none; border-radius: 100px; cursor: pointer;
  font-family: var(--mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 15px 34px;
  transition: background .3s;
}
.sipo-modal .btn:hover, .sipo-modal-btn:hover { background: #fff; }

/* live strip replaces the decorative bottom-left hero label */
body.has-status-strip .hero__meta span:first-child { visibility: hidden; }

@media (max-width: 760px) {
  .status-strip { left: 12px; bottom: 12px; }
  .status-strip-inner { padding: 9px 15px; font-size: .58rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .status-strip { opacity: 1; transform: none; }
}
