/* site.css — Smoothie Life, Sidney OH. PlainGlow build v1, 2026-09-17.
   Same template family as Hocking (clients/hockingsurprise/build/css/site.css): locked header, split hero,
   .hs-panel, .hs-marquee conveyor, .hs-vgrid video wall, .hs-plate, .hs-dock. Her palette from STUDY §6:
   cream and white are the page, deep leaf is the chrome, peach is the one Order button, the fruit colours
   break through only in her photos and the menu bands. Prefix for new pieces: .sl- */
:root {
  --font-sans: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-cond: "Barlow Condensed", "Figtree", ui-sans-serif, sans-serif;
  --background: #FBF8F1;   /* cream base */
  --card: #FFFFFF;
  --foreground: #1F3B24;   /* ink: her green, deep enough to read */
  --ink: #1F3B24;
  --muted-fg: #5E6B5F;     /* 5.3:1 on cream */
  --primary: #2F6B36;      /* deep leaf */
  --primary-fg: #FBF8F1;
  --leaf: #48AE51;
  --lime: #A8C851;
  --trunk: #513426;
  --peach: #FD9A71;
  --peach-hover: #FF8A5C;
  --strawberry: #BC4E51;
  --mango: #E3B146;
  --secondary: #F1ECDF;
  --muted: #EDE7D8;
  --border: #E4DDCC;
  --shadow: 0 0 0 1px rgb(31 59 36 / 0.06), 0 1px 2px -1px rgb(31 59 36 / 0.06), 0 2px 8px rgb(31 59 36 / 0.04);
  --shadow-hover: 0 0 0 1px rgb(31 59 36 / 0.1), 0 10px 28px -10px rgb(31 59 36 / 0.22);
  --cream-70: rgb(251 248 241 / 0.7);
  --cream-85: rgb(251 248 241 / 0.85);
  --header-h: 4.25rem;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; background: var(--background); color: var(--foreground); scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body { margin: 0; font-family: var(--font-sans); line-height: 1.5; background: var(--background); color: var(--foreground); overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; } /* height:auto so CSS aspect-ratio wins over the HTML height attribute */
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1.12; font-weight: 500; text-wrap: balance; }
p { text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }
.wrap { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }
.site { min-height: 100dvh; display: flex; flex-direction: column; }

/* ---- Locked top panel. Solid from the first pixel, never moves, never changes. ---- */
.header { position: sticky; top: 0; z-index: 40; height: var(--header-h); background: var(--background); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; height: var(--header-h); align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.brand-mark { width: 2.9rem; height: 2.9rem; flex: none; display: grid; place-items: center; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-eye { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-fg); margin-top: 0.2rem; }
.nav { display: none; align-items: center; gap: 1.35rem; }
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--muted-fg); }
.nav a:hover, .nav a.is-on { color: var(--ink); }
.nav-phone { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600 !important; color: var(--ink) !important; white-space: nowrap; }
.nav-phone svg { width: 1rem; height: 1rem; color: var(--primary); }
.header-right { display: flex; align-items: center; gap: 0.6rem; }
.phone-sm { display: inline-flex; align-items: center; gap: 0.35rem; min-height: 2.75rem; padding: 0 0.35rem; font-size: 0.86rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.phone-sm svg { width: 1rem; height: 1rem; color: var(--primary); }
.menu-btn { display: inline-flex; height: 2.5rem; padding: 0 0.8rem; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 999px; background: var(--card); font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.mobile-nav { display: none; position: absolute; left: 0; right: 0; top: var(--header-h); border-bottom: 1px solid var(--border); background: var(--card); padding: 0.75rem 1rem 1rem; box-shadow: 0 20px 40px -20px rgb(31 59 36 / 0.3); }
.mobile-nav.open { display: flex; flex-direction: column; gap: 0.15rem; }
.mobile-nav a { display: flex; height: 2.75rem; align-items: center; border-radius: 0.5rem; padding: 0 0.75rem; font-size: 0.95rem; font-weight: 500; }
.mobile-nav a:hover { background: var(--secondary); }
.mobile-nav .btn { margin-top: 0.5rem; justify-content: center; }
@media (min-width: 640px) { .phone-sm { display: none; } }
@media (min-width: 960px) { .nav { display: flex; } .menu-btn { display: none; } .header-right .btn-order { display: none; } }
@media (max-width: 479px) { .brand-text { display: none; } .header-inner { gap: 0.5rem; } }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; min-height: 2.75rem; padding: 0 1.25rem; border: 0; border-radius: 999px; background: var(--primary); color: var(--primary-fg); font-size: 0.9rem; font-weight: 600; white-space: nowrap; transition: background 160ms ease-out, transform 160ms ease-out; }
.btn:hover { background: #255a2c; }
.btn-sm { min-height: 2.4rem; padding: 0 1rem; font-size: 0.86rem; }
@media (max-width: 959px) { .header .btn-sm, .menu-btn { min-height: 2.75rem; height: auto; } }
.btn-peach, .btn-order { background: var(--peach); color: var(--trunk); }
.btn-peach:hover, .btn-order:hover { background: var(--peach-hover); color: var(--trunk); }
.btn-outline { background: var(--card); color: var(--ink); box-shadow: inset 0 0 0 1px var(--border); }
.btn-outline:hover { background: var(--secondary); }
.btn-ghost-light { background: rgb(251 248 241 / 0.12); color: var(--primary-fg); box-shadow: inset 0 0 0 1px rgb(251 248 241 / 0.3); }
.btn-ghost-light:hover { background: rgb(251 248 241 / 0.2); }
.eyebrow { margin: 0; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.kicker { margin: 0; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-fg); }
.muted { color: var(--muted-fg); }

/* ---- Sections ---- */
.hs-section { padding: 5.5rem 0; }
.hs-section--card { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.section-head h2 { margin: 0.35rem 0 0; font-size: clamp(2rem, 3.6vw, 2.75rem); }
.section-head p { margin: 0.6rem 0 0; max-width: 38rem; font-size: 1rem; color: var(--muted-fg); }
@media (max-width: 639px) { .hs-section { padding: 3.75rem 0; } }

/* ---- Hero: cream, the split, her photo with a slow drift ---- */
.hs-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--background); }
.hs-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60rem 28rem at 88% 10%, rgb(253 154 113 / 0.16), transparent 60%), radial-gradient(40rem 22rem at 6% 90%, rgb(168 200 81 / 0.2), transparent 60%); }
.hs-hero__inner { padding: 3.5rem 0 3.75rem; display: grid; grid-template-columns: minmax(0, 38rem) 1fr; gap: 3rem; align-items: center; }
.hero-kicker { margin: 0; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.hs-hero h1 { margin: 0.75rem 0 0; font-size: clamp(2.7rem, 5.4vw, 4.6rem); line-height: 1.0; color: var(--ink); }
.hs-hero h1 em { font-style: italic; font-weight: 400; color: var(--primary); }
.hs-hero__promise { margin: 1.25rem 0 0; max-width: 30rem; font-size: 1.15rem; line-height: 1.5; color: var(--foreground); }
.hs-hero__tag { margin: 1rem 0 0; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--trunk); }
.hs-hero__photo { position: relative; margin: 0; justify-self: end; width: min(100%, 30rem); aspect-ratio: 3 / 4; overflow: hidden; border-radius: 1.75rem; background: var(--muted); box-shadow: 0 40px 80px -36px rgb(81 52 38 / 0.5), 0 0 0 1px rgb(31 59 36 / 0.08); }
.hs-hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform-origin: 50% 40%; animation: sl-kenburns 28s ease-in-out infinite alternate; }
.hs-hero__photo [data-slot="broll-hero"] { position: absolute; inset: 0; }
.hs-hero__photo [data-slot="broll-hero"][hidden] { display: none; }
.hs-hero__photo [data-slot="broll-hero"] video { width: 100%; height: 100%; object-fit: cover; }
.hs-hero__photo figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: 0.45rem 0.85rem; border-radius: 999px; background: rgb(31 59 36 / 0.6); backdrop-filter: blur(8px); font-size: 0.78rem; font-weight: 500; color: var(--primary-fg); }
@keyframes sl-kenburns { from { transform: scale(1.02) translate(0, 0); } to { transform: scale(1.1) translate(-1.6%, 1.2%); } }
@media (max-width: 959px) {
  .hs-hero__inner { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; }
  .hs-hero__photo { width: min(100%, 26rem); justify-self: start; aspect-ratio: 3 / 4; }
}

/* The small panel — hours, address, the Order button. */
.hs-panel { margin-top: 1.75rem; max-width: 34rem; border-radius: 1.25rem; background: var(--primary); color: var(--primary-fg); padding: 1.2rem 1.25rem 1.25rem; box-shadow: 0 0 0 1px rgb(31 59 36 / 0.2), 0 30px 60px -30px rgb(31 59 36 / 0.7); }
.hs-panel__kicker { margin: 0 0 0.75rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-85); }
.hs-panel__rows { display: grid; gap: 0.55rem; }
.hs-panel__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: 0.95rem; }
.hs-panel__row b { font-weight: 600; }
.hs-panel__row span { color: var(--cream-85); text-align: right; }
.hs-panel__row a { display: inline-block; padding: 0.7rem 0; margin: -0.7rem 0; text-decoration: underline; text-underline-offset: 0.18em; }
.hs-panel__acts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1rem; }
.hs-panel__acts .btn { min-height: 3rem; font-size: 0.95rem; width: 100%; }
.hs-panel__note { margin: 0.75rem 0 0; font-size: 0.78rem; color: var(--cream-85); }
.hs-panel__note b { color: var(--primary-fg); font-weight: 600; }
@media (max-width: 420px) { .hs-panel__acts { grid-template-columns: 1fr; } .hs-panel__row { display: grid; grid-template-columns: 1fr; gap: 0.1rem; } .hs-panel__row span { text-align: left; } }

/* Trust line. */
.hs-trust { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hs-trust ul { list-style: none; margin: 0; padding: 0.95rem 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 2.5rem; font-size: 0.9rem; font-weight: 500; }
.hs-trust li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hs-trust svg { width: 1.1rem; height: 1.1rem; color: var(--leaf); flex: none; }

/* ---- What we make: five photo tiles ---- */
.sl-tiles { margin-top: 2.25rem; display: grid; gap: 1rem; grid-template-columns: repeat(5, 1fr); }
.sl-tile { position: relative; display: block; overflow: hidden; border-radius: 1.25rem; aspect-ratio: 4 / 5; background: var(--muted); box-shadow: var(--shadow); color: var(--primary-fg); transition: transform 200ms ease-out, box-shadow 200ms ease-out; }
.sl-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease-out; }
.sl-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgb(31 59 36 / 0.86) 0%, rgb(31 59 36 / 0.78) 30%, rgb(31 59 36 / 0.45) 55%, rgb(31 59 36 / 0.08) 80%, transparent 100%); }
.sl-tile__copy { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.1rem 1.15rem 1.15rem; }
.sl-tile__copy h3 { margin: 0; font-size: 1.45rem; color: #fff; }
.sl-tile__copy p { margin: 0.25rem 0 0; font-size: 0.85rem; color: #fff; }
.sl-tile__copy small { display: inline-block; margin-top: 0.55rem; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--peach); }
.sl-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.sl-tile:hover img { transform: scale(1.04); }
@media (max-width: 959px) { .sl-tiles { grid-template-columns: repeat(3, 1fr); } .sl-tile:nth-child(4), .sl-tile:nth-child(5) { aspect-ratio: 16 / 10; } }
@media (max-width: 639px) {
  .sl-tiles { display: flex; gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(50% - 50vw); padding: 0 1rem 0.5rem; }
  .sl-tiles::-webkit-scrollbar { display: none; }
  .sl-tile, .sl-tile:nth-child(4), .sl-tile:nth-child(5) { flex: 0 0 62vw; aspect-ratio: 4 / 5; scroll-snap-align: start; }
}

/* ---- Top 6: her six, as menu cards. Colour = the section band. ---- */
.sl-top { --band: var(--mango); }
.sl-top__grid { margin-top: 2.25rem; display: grid; gap: 1.1rem; grid-template-columns: repeat(3, 1fr); }
.sl-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 1.4rem; background: var(--card); box-shadow: var(--shadow); transition: box-shadow 200ms ease-out, transform 200ms ease-out; }
.sl-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.sl-card__photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--muted); }
.sl-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.sl-card__photo span { position: absolute; left: 0.85rem; bottom: 0.75rem; padding: 0.35rem 0.7rem; border-radius: 999px; background: rgb(31 59 36 / 0.62); color: var(--primary-fg); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; backdrop-filter: blur(6px); }
.sl-card__band { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.7rem 1.25rem; background: color-mix(in srgb, var(--band) 36%, #fff); border-bottom: 1px solid color-mix(in srgb, var(--band) 55%, #fff); }
.sl-card__band .kicker { color: var(--ink); display: inline-flex; align-items: center; gap: 0.5rem; }
.sl-card__band .kicker::before { content: ""; width: 0.65rem; height: 0.65rem; border-radius: 999px; background: var(--band); box-shadow: 0 0 0 2px #fff; }
.sl-card__band .sl-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.sl-card__body { flex: 1; display: flex; flex-direction: column; padding: 1.15rem 1.25rem 1.3rem; }
.sl-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.sl-card h3 { margin: 0; font-size: 1.55rem; }
.sl-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; color: var(--primary); white-space: nowrap; }
.sl-price small { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; color: var(--muted-fg); letter-spacing: 0.04em; margin-left: 0.2rem; }
.sl-card__ing { margin: 0.6rem 0 0; font-size: 0.925rem; line-height: 1.5; color: var(--muted-fg); }
.sl-card__foot { margin-top: auto; padding-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.sl-pill { display: inline-flex; align-items: center; padding: 0.3rem 0.65rem; border-radius: 999px; background: var(--secondary); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
.sl-pill--peach { background: color-mix(in srgb, var(--peach) 35%, #fff); }
.sl-pill--lime { background: color-mix(in srgb, var(--lime) 40%, #fff); }
.sl-top__more { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.sl-top__more p { margin: 0; font-size: 0.86rem; color: var(--muted-fg); }
@media (max-width: 959px) { .sl-top__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .sl-top__grid { grid-template-columns: 1fr; } }

/* ---- Regulars at the shop ---- */
.sl-regulars { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sl-reg__grid { margin-top: 2.25rem; display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.sl-reg { display: flex; flex-direction: column; overflow: hidden; border-radius: 1.4rem; background: var(--background); box-shadow: var(--shadow); }
.sl-reg__photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--muted); }
.sl-reg__photo img { width: 100%; height: 100%; object-fit: cover; }
.sl-reg__body { flex: 1; padding: 1.1rem 1.2rem 1.25rem; }
.sl-reg__body .kicker { color: var(--primary); }
.sl-reg h3 { margin: 0.3rem 0 0.35rem; font-size: 1.45rem; }
.sl-reg p { margin: 0; font-size: 0.925rem; color: var(--muted-fg); }
.sl-reg--peach { background: var(--peach); color: var(--trunk); }
.sl-reg--peach .kicker { color: var(--trunk); opacity: 0.75; }
.sl-reg--peach h3 { color: var(--trunk); font-size: 2rem; }
.sl-reg--peach p { color: var(--trunk); }
.sl-reg--peach .sl-reg__body { padding-top: 1.5rem; display: flex; flex-direction: column; }
.sl-reg--peach .sl-reg__mark { margin-top: auto; padding-top: 1.75rem; font-family: var(--font-display); font-size: 4.5rem; line-height: 0.9; letter-spacing: -0.04em; color: var(--trunk); opacity: 0.9; }
.sl-reg__note { margin: 1.25rem 0 0; font-size: 0.82rem; color: var(--muted-fg); }
.sl-lunch { margin-top: 2.5rem; display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.25rem; align-items: start; }
.sl-lunch__card { align-self: start; }
.sl-lunch__card { border-radius: 1.4rem; background: var(--background); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow); }
.sl-lunch__card h3 { margin: 0.35rem 0 0; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.sl-lunch__card p { color: var(--muted-fg); }
.sl-lunch__card ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 1rem; font-size: 0.925rem; }
.sl-lunch__card li { position: relative; padding-left: 1rem; }
.sl-lunch__card li::before { content: ""; position: absolute; left: 0; top: 0.6rem; width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--leaf); }
.sl-lunch__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.sl-lunch__photos img { width: 100%; height: 100%; object-fit: cover; border-radius: 1rem; aspect-ratio: 1; }
@media (max-width: 959px) { .sl-reg__grid { grid-template-columns: 1fr 1fr; } .sl-lunch { grid-template-columns: 1fr; } }
@media (max-width: 519px) { .sl-reg__grid { grid-template-columns: 1fr; } .sl-lunch__card ul { grid-template-columns: 1fr; } }

/* ---- Gallery conveyor: two rows, opposite directions, her photos ---- */
.sl-gallery { overflow: hidden; }
.hs-marquee { margin-top: 1.5rem; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.hs-marquee + .hs-marquee { margin-top: 1rem; }
.hs-marquee__track { display: flex; gap: 1rem; width: max-content; animation: hs-marquee calc(var(--hs-marquee-n, 12) * 5.5s) linear infinite; will-change: transform; }
.hs-marquee--rev .hs-marquee__track { animation-direction: reverse; }
.hs-marquee:hover .hs-marquee__track { animation-play-state: paused; }
@keyframes hs-marquee { to { transform: translateX(-50%); } }
.hs-marquee figure { flex: 0 0 min(70vw, 16rem); margin: 0; }
.hs-marquee img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 1.1rem; background: var(--muted); }
.hs-marquee figure.is-wide { flex-basis: min(88vw, 21rem); }
.hs-marquee figure.is-wide img { aspect-ratio: 5 / 4; }
.hs-people__note { margin: 1.1rem 0 0; font-size: 0.82rem; color: var(--muted-fg); }
@media (prefers-reduced-motion: reduce) { .hs-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; } .hs-marquee__track { animation: none; } }

/* ---- Video wall: her reels in phone frames ---- */
.hs-videos { background: var(--primary); color: var(--primary-fg); }
.hs-videos .eyebrow { color: var(--peach); }
.hs-videos .section-head h2 { color: var(--primary-fg); }
.hs-videos .section-head p { color: var(--cream-85); }
.hs-vgrid { margin-top: 2.5rem; display: grid; gap: 1.25rem; grid-template-columns: repeat(6, 1fr); }
.hs-vframe { position: relative; margin: 0; aspect-ratio: 9 / 16; overflow: hidden; border-radius: 1.6rem; background: #1a3a22; box-shadow: 0 0 0 1px rgb(251 248 241 / 0.14), 0 0 0 5px #17301c, 0 24px 50px -24px rgb(0 0 0 / 0.6); }
.hs-vframe img, .hs-vframe video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs-vframe.is-missing video { display: none; }
.hs-vframe figcaption { position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 0.45rem 0.75rem; border-radius: 0.8rem; background: rgb(31 59 36 / 0.62); backdrop-filter: blur(8px); font-size: 0.76rem; font-weight: 500; line-height: 1.3; }
.hs-vframe::before { content: ""; position: absolute; top: 0.55rem; left: 50%; transform: translateX(-50%); width: 34%; height: 0.5rem; border-radius: 999px; background: #17301c; z-index: 2; }
.hs-videos__note { margin: 1.25rem 0 0; font-size: 0.8rem; color: var(--cream-85); }
@media (max-width: 1099px) { .hs-vgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 639px) {
  .hs-vgrid { display: flex; gap: 0.9rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(50% - 50vw); padding: 0 1rem 0.5rem; }
  .hs-vgrid::-webkit-scrollbar { display: none; }
  .hs-vframe { flex: 0 0 66vw; scroll-snap-align: start; }
}

/* ---- Photo plate: her photo behind, a cream card on top ---- */
.hs-plate { position: relative; isolation: isolate; overflow: hidden; padding: 7rem 0; }
.hs-plate__bg { position: absolute; left: 0; right: 0; top: -14%; bottom: -14%; z-index: -2; transform: scale(1.06); will-change: transform; }
.hs-plate__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hs-plate::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgb(31 59 36 / 0.34); }
.hs-plate__grid { display: grid; gap: 2.5rem; align-items: center; }
.hs-plate__card { background: var(--card); border-radius: 1.75rem; padding: clamp(1.5rem, 4vw, 3.25rem); box-shadow: 0 40px 80px -40px rgb(0 0 0 / 0.6), 0 0 0 1px rgb(31 59 36 / 0.06); }
.hs-plate__card h2 { margin: 0.4rem 0 0; font-size: clamp(1.9rem, 3vw, 2.5rem); }
.hs-plate__cap { position: absolute; right: 1.25rem; bottom: 0.9rem; z-index: 1; margin: 0; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgb(251 248 241 / 0.85); }
@media (min-width: 960px) { .hs-plate__grid { grid-template-columns: 52% 1fr; gap: 3rem; } }
@media (max-width: 639px) { .hs-plate { padding: 4rem 0; } }

/* Be the change */
.sl-change__quote { margin: 1.25rem 0 0; font-family: var(--font-display); font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.45; color: var(--ink); }
.sl-change__quote cite { display: block; margin-top: 0.6rem; font-family: var(--font-sans); font-style: normal; font-size: 0.8rem; color: var(--muted-fg); }
.sl-change__list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.sl-change__list li { display: grid; grid-template-columns: 2.4rem 1fr; gap: 0.85rem; align-items: start; padding-top: 0.9rem; border-top: 1px solid var(--border); }
.sl-change__list li:first-child { border-top: 0; padding-top: 0; }
.sl-change__ic { width: 2.4rem; height: 2.4rem; border-radius: 999px; display: grid; place-items: center; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--trunk); background: var(--peach); }
.sl-change__ic--lime { background: var(--lime); }
.sl-change__ic--mango { background: var(--mango); }
.sl-change__list b { display: block; font-weight: 600; }
.sl-change__list p { margin: 0.2rem 0 0; font-size: 0.925rem; color: var(--muted-fg); }
.sl-change__aside { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; align-content: center; }
.sl-change__aside figure { margin: 0; position: relative; }
.sl-change__aside img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 1.1rem; box-shadow: 0 20px 40px -20px rgb(0 0 0 / 0.6), 0 0 0 1px rgb(251 248 241 / 0.5); }
.sl-change__aside figure:nth-child(2) { transform: translateY(1.5rem); }
.sl-change__aside figure:nth-child(3) { transform: translateY(-0.5rem); }
.sl-change__aside figcaption { position: absolute; left: 0.6rem; bottom: 0.6rem; padding: 0.3rem 0.6rem; border-radius: 999px; background: rgb(31 59 36 / 0.62); backdrop-filter: blur(6px); color: var(--primary-fg); font-size: 0.68rem; font-weight: 600; }
.sl-change__reels { margin-top: 2.25rem; }
.sl-change__reels .hs-vgrid { margin-top: 0; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sl-change__reels .hs-vframe { box-shadow: 0 0 0 1px rgb(31 59 36 / 0.1), 0 0 0 5px #17301c, 0 30px 60px -28px rgb(31 59 36 / 0.4); }
.sl-change__posters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.25rem; }
.sl-change__posters img { width: 100%; aspect-ratio: 4 / 5; object-fit: contain; border-radius: 0.9rem; box-shadow: 0 0 0 1px rgb(31 59 36 / 0.08); background: #fff; padding: 0.5rem; }
.sl-change__note { margin: 1rem 0 0; font-size: 0.8rem; color: var(--muted-fg); }
@media (max-width: 959px) { .sl-change__aside { margin-top: 0; } .sl-change__aside figure:nth-child(2), .sl-change__aside figure:nth-child(3) { transform: none; } }
@media (max-width: 639px) {
  .sl-change__reels .hs-vgrid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(50% - 50vw); padding: 0 1rem 0.5rem; }
  .sl-change__reels .hs-vframe { flex: 0 0 66vw; }
  .sl-change__posters { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Find us: the location card ---- */
.sl-find__grid { margin-top: 2.25rem; display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.25rem; align-items: stretch; }
.sl-map { position: relative; min-height: 22rem; overflow: hidden; border-radius: 1.4rem; background: var(--muted); box-shadow: var(--shadow); }
.sl-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sl-map__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sl-find__card { display: flex; flex-direction: column; border-radius: 1.4rem; background: var(--card); padding: clamp(1.4rem, 3vw, 2.25rem); box-shadow: var(--shadow); }
.sl-find__card h3 { margin: 0.35rem 0 0; font-size: 1.8rem; }
.sl-find__rows { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.sl-find__rows li { display: grid; grid-template-columns: 1.6rem 1fr; gap: 0.75rem; align-items: start; font-size: 0.975rem; }
.sl-find__rows svg { width: 1.25rem; height: 1.25rem; color: var(--primary); margin-top: 0.15rem; }
.sl-find__rows b { font-weight: 600; }
.sl-find__rows a { text-decoration: underline; text-underline-offset: 0.18em; }
.sl-find__rows a:hover { color: var(--primary); }
.sl-find__rows .muted { display: block; font-size: 0.86rem; }
.sl-find__acts { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.sl-find__fb { margin-top: auto; padding-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.sl-find__fb .sl-fbmark { width: 2.2rem; height: 2.2rem; border-radius: 999px; background: var(--secondary); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--primary); flex: none; }
.sl-find__fb a { text-decoration: underline; text-underline-offset: 0.18em; }
.sl-find__fb small { display: block; color: var(--muted-fg); font-size: 0.8rem; }
.sl-msg { margin-top: 1.25rem; display: grid; grid-template-columns: 1fr 1.6fr; gap: 1.25rem; border-radius: 1.4rem; background: var(--card); padding: clamp(1.4rem, 3vw, 2.25rem); box-shadow: var(--shadow); }
.sl-msg h3 { margin: 0.35rem 0 0; font-size: 1.6rem; }
.sl-msg p { color: var(--muted-fg); font-size: 0.925rem; }
.sl-msg form { display: grid; gap: 0.7rem; }
.sl-msg .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.sl-field label { display: block; margin-bottom: 0.3rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-fg); }
.sl-field input, .sl-field textarea { width: 100%; min-height: 2.9rem; border: 1px solid var(--border); border-radius: 0.8rem; background: var(--background); padding: 0.6rem 0.85rem; font: inherit; color: var(--ink); }
.sl-field textarea { min-height: 6.5rem; resize: vertical; }
.sl-field input:focus-visible, .sl-field textarea:focus-visible { outline: 2px solid var(--primary); outline-offset: 1px; }
.sl-msg__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: 0.25rem; }
.sl-msg__foot small { font-size: 0.78rem; color: var(--muted-fg); }
@media (max-width: 959px) { .sl-find__grid { grid-template-columns: 1fr; } .sl-map { min-height: 16rem; } .sl-msg { grid-template-columns: 1fr; } }
@media (max-width: 519px) { .sl-msg .row2 { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--border); background: var(--card); padding-bottom: 5.5rem; }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0 2rem; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-muted { margin-top: 0.75rem; max-width: 24rem; font-size: 0.875rem; color: var(--muted-fg); }
.footer h3 { margin: 0; font-size: 0.8rem; font-family: var(--font-sans); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--muted-fg); }
.footer-links { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.footer-links a:hover, .footer-links button:hover { color: var(--primary); }
.footer-links button { border: 0; background: none; padding: 0; font: inherit; color: inherit; text-align: left; cursor: pointer; }
.footer-copy { border-top: 1px solid var(--border); padding: 1rem; text-align: center; font-size: 0.78rem; color: var(--muted-fg); }
.footer-copy a { text-decoration: underline; text-underline-offset: 0.18em; }
.footer-copy span { margin: 0 0.4rem; }
.hs-credits { border-top: 1px solid var(--border); padding: 1rem 0; font-size: 0.75rem; line-height: 1.6; color: var(--muted-fg); }
.hs-credits p { margin: 0; }
@media (max-width: 959px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 519px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Bottom dock: fixed pill, her palette ---- */
.hs-dock { position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 90; display: flex; align-items: center; gap: 0.25rem; padding: 0.375rem; border-radius: 0.9rem; background: rgb(47 107 54 / 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 24px 60px rgb(31 59 36 / 0.35), 0 0 0 1px rgb(255 255 255 / 0.08); max-width: calc(100vw - 2rem); }
.hs-dock__wm { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--primary-fg); padding: 0 0.75rem 0 0.6rem; letter-spacing: 0.02em; }
.hs-dock a, .hs-dock button { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; color: rgb(251 248 241 / 0.95); text-decoration: none; border: 1px solid rgb(255 255 255 / 0.14); border-radius: 0.6rem; background: transparent; padding: 0.6rem 0.85rem; white-space: nowrap; transition: color 200ms ease-out, border-color 200ms ease-out, background 200ms ease-out; }
.hs-dock a:hover, .hs-dock button:hover { color: #fff; border-color: rgb(255 255 255 / 0.4); }
.hs-dock .hs-dock__cta { background: var(--peach); border-color: var(--peach); color: var(--trunk); font-weight: 700; }
.hs-dock .hs-dock__cta:hover { background: var(--peach-hover); color: var(--trunk); }
.hs-dock__cta--phone { display: none; }
@media (max-width: 899px) {
  .hs-dock { bottom: 0.75rem; left: 0.75rem; right: 4.6rem; transform: none; max-width: none; overflow-x: auto; scrollbar-width: none; justify-content: flex-start; padding: 0.3rem; }
  .hs-dock a, .hs-dock button { min-height: 2.75rem; display: inline-flex; align-items: center; }
  .hs-dock .hs-dock__cta--desk { display: none; }
  .hs-dock .hs-dock__cta--phone { display: inline-flex; }
  .hs-dock::-webkit-scrollbar { display: none; }
  .hs-dock__wm { display: none; }
  .hs-dock__cta--desk { display: none; }
  .hs-dock__cta--phone { display: inline-block; }
}
@media (max-width: 479px) { .hs-dock a.hs-dock__opt { display: none !important; } }

/* ---- Order card: the honest one until she names her ordering system ---- */
.sl-order { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: 1rem; background: rgb(31 59 36 / 0.45); backdrop-filter: blur(4px); }
.sl-order[hidden] { display: none; }
.sl-order__box { width: min(24rem, 100%); overflow: hidden; border-radius: 1.25rem; background: var(--card); box-shadow: 0 40px 80px -30px rgb(0 0 0 / 0.6), 0 0 0 1px rgb(31 59 36 / 0.1); }
.sl-order__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.15rem 0.85rem; border-bottom: 1px solid var(--border); }
.sl-order__head b { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.sl-order__head button { border: 0; background: none; font-size: 1.4rem; line-height: 1; color: var(--muted-fg); cursor: pointer; }
.sl-order__row { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1.15rem; border-bottom: 1px solid var(--border); color: var(--ink); }
.sl-order__row:last-child { border-bottom: 0; }
.sl-order__row:hover { background: var(--background); }
.sl-order__ic { display: grid; place-items: center; width: 2.3rem; height: 2.3rem; flex: none; border-radius: 999px; background: var(--secondary); font-size: 1rem; }
.sl-order__ic--peach { background: var(--peach); }
.sl-order__row b { display: block; font-size: 0.9rem; font-weight: 600; }
.sl-order__row span { display: block; font-size: 0.8rem; color: var(--muted-fg); }
.sl-order__note { padding: 0.75rem 1.15rem 0.9rem; font-size: 0.74rem; color: var(--muted-fg); background: var(--background); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(0.875rem); transition: opacity 400ms ease-out, transform 400ms ease-out; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---- Menu page ---- */
.sl-menu-hero { background: var(--card); border-bottom: 1px solid var(--border); }
.sl-menu-hero__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; padding: 3rem 0 2.25rem; }
.sl-menu-hero h1 { margin: 0.5rem 0 0; font-size: clamp(2.5rem, 5vw, 3.75rem); }
.sl-menu-hero p { margin: 0.9rem 0 0; max-width: 34rem; font-size: 1.05rem; color: var(--muted-fg); }
.sl-menu-hero__strip { display: flex; gap: 0.6rem; justify-self: end; }
.sl-menu-hero__strip img { width: 8.5rem; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 1rem; box-shadow: var(--shadow); }
.sl-menu-hero__strip img:nth-child(2) { transform: translateY(1rem); }
.sl-menu-hero__strip img:nth-child(3) { transform: translateY(-0.5rem); }
.sl-menu-nav { position: sticky; top: var(--header-h); z-index: 30; background: var(--background); border-bottom: 1px solid var(--border); }
.sl-menu-nav__scroller { position: relative; }
.sl-menu-nav__row { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.7rem 2.75rem 0.7rem 0; scrollbar-width: none; scroll-behavior: smooth; }
.sl-menu-nav__scroller::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 5rem; pointer-events: none; background: linear-gradient(90deg, rgb(251 248 241 / 0), var(--background) 55%); }
.sl-menu-nav__more { position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: 1; width: 2.4rem; height: 2.4rem; border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: var(--ink); font-size: 1.3rem; line-height: 1; box-shadow: var(--shadow); }
.sl-menu-nav__scroller.is-end::after, .sl-menu-nav__scroller.is-end .sl-menu-nav__more { display: none; }
@media (min-width: 1200px) { .sl-menu-nav__row { flex-wrap: wrap; overflow: visible; padding-right: 0; } .sl-menu-nav__scroller::after, .sl-menu-nav__more { display: none; } }
.sl-menu-nav__row::-webkit-scrollbar { display: none; }
.sl-menu-nav__row a { flex: none; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; border-radius: 999px; border: 1px solid var(--border); background: var(--card); font-size: 0.84rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.sl-menu-nav__row a::before { content: ""; width: 0.65rem; height: 0.65rem; border-radius: 999px; background: var(--band, var(--primary)); box-shadow: 0 0 0 2px color-mix(in srgb, var(--band, var(--primary)) 35%, #fff); }
.sl-menu-nav__row a.is-on { background: var(--primary); border-color: var(--primary); color: var(--primary-fg); }
.sl-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding: 0 0 0.75rem; }
.sl-filters .kicker { margin-right: 0.35rem; }
.sl-filter { padding: 0.45rem 0.85rem; border-radius: 999px; border: 1px solid var(--border); background: var(--card); font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.sl-filter.is-on { background: var(--peach); border-color: var(--peach); color: var(--trunk); }
.sl-filters__count { margin-left: auto; font-size: 0.8rem; color: var(--muted-fg); }
@media (max-width: 639px) { .sl-filters { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; } .sl-filters::-webkit-scrollbar { display: none; } .sl-filter { flex: none; } .sl-filters__count { flex: none; margin-left: 0.5rem; } }
.sl-menu { padding: 2rem 0 5rem; }
.sl-msec { margin-top: 2.5rem; border-radius: 1.6rem; overflow: hidden; background: var(--card); box-shadow: var(--shadow); scroll-margin-top: calc(var(--header-h) + 4.5rem); }
.sl-msec[hidden] { display: none; }
.sl-msec__head { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: stretch; background: color-mix(in srgb, var(--band) 46%, #fff); border-bottom: 1px solid color-mix(in srgb, var(--band) 60%, #fff); }
.sl-msec { box-shadow: var(--shadow), inset 0 0 0 1px color-mix(in srgb, var(--band) 30%, #fff); }
.sl-msec__title { padding: 1.5rem 1.75rem; }
.sl-msec__title h2 { margin: 0; font-family: var(--font-cond); font-weight: 700; font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: 0.01em; text-transform: uppercase; line-height: 1; color: var(--ink); }
.sl-msec__title h2 span { display: inline-block; width: 0.8em; height: 0.8em; border-radius: 999px; background: var(--band); vertical-align: -0.08em; margin-right: 0.35rem; }
.sl-msec__title p { margin: 0.5rem 0 0; font-size: 0.95rem; color: var(--ink); }
.sl-msec__title .sl-msec__count { display: inline-block; margin-left: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.sl-msec__photo { width: 12rem; overflow: hidden; }
.sl-msec__photo img { width: 100%; height: 100%; object-fit: cover; }
.sl-items { display: grid; grid-template-columns: 1fr 1fr; }
.sl-item { display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 1rem; padding: 1.05rem 1.75rem; border-bottom: 1px solid var(--border); }
.sl-item:nth-child(odd) { border-right: 1px solid var(--border); }
.sl-item:nth-last-child(-n+2) { border-bottom: 0; }
.sl-item[hidden] { display: none; }
.sl-item h3 { margin: 0; font-size: 1.2rem; }
.sl-item__price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--primary); white-space: nowrap; }
.sl-item__ing { grid-column: 1 / -1; margin: 0; font-size: 0.9rem; color: var(--muted-fg); }
.sl-item__tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.15rem; }
.sl-item__tags span { padding: 0.2rem 0.55rem; border-radius: 999px; background: var(--secondary); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-fg); }
.sl-groups { padding: 1.25rem 1.75rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.sl-group h3 { margin: 0; font-family: var(--font-display); font-size: 1.35rem; color: var(--primary); }
.sl-group ul { list-style: none; margin: 0.6rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.sl-group li { padding: 0.35rem 0.7rem; border-radius: 999px; background: var(--background); border: 1px solid var(--border); font-size: 0.86rem; }
.sl-junior { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; border-radius: 1.6rem; background: var(--lime); box-shadow: var(--shadow); }
.sl-junior__copy { padding: clamp(1.5rem, 3vw, 2.5rem); color: var(--ink); }
.sl-junior__copy .kicker { color: var(--ink); }
.sl-junior__copy h2 { margin: 0; font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1; }
.sl-junior__copy .sl-price { font-size: 2.4rem; color: var(--ink); margin-top: 0.5rem; display: block; }
.sl-junior__copy p { margin: 0.75rem 0 0; font-size: 0.975rem; }
.sl-junior__photo { min-height: 16rem; }
.sl-junior__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.sl-allergen { margin: 2rem 0 0; padding: 1.25rem 1.5rem; border-radius: 1.2rem; background: var(--card); border: 1px dashed var(--border); font-size: 0.9rem; color: var(--muted-fg); }
.sl-allergen b { color: var(--ink); }
.sl-empty { margin-top: 2.5rem; padding: 2rem; text-align: center; border-radius: 1.2rem; background: var(--card); color: var(--muted-fg); }
.sl-empty[hidden] { display: none; }
@media (max-width: 959px) { .sl-menu-hero__inner { grid-template-columns: 1fr; } .sl-menu-hero__strip { justify-self: start; } .sl-menu-hero__strip img { width: 7rem; } }
@media (max-width: 639px) { .sl-menu-hero__inner { padding: 1.4rem 0 1.2rem; gap: 0.75rem; } .sl-menu-hero h1 { font-size: 1.9rem; } .sl-menu-hero p { font-size: 0.925rem; margin-top: 0.5rem; } .sl-menu-hero__strip { display: none; } }
@media (max-width: 719px) {
  .sl-items { grid-template-columns: 1fr; }
  .sl-item:nth-child(odd) { border-right: 0; }
  .sl-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .sl-item:last-child { border-bottom: 0; }
  .sl-item { padding: 0.95rem 1.25rem; }
  .sl-msec__title { padding: 1.25rem 1.25rem; }
  .sl-msec__photo { width: 7rem; }
  .sl-groups { grid-template-columns: 1fr; padding: 1.25rem; }
  .sl-junior { grid-template-columns: 1fr; }
  .sl-junior__photo { min-height: 14rem; order: -1; }
}
@media (max-width: 519px) { .sl-menu-hero__strip img:nth-child(3) { display: none; } }

/* Thanks page */
.sl-thanks { padding: 5rem 0; text-align: center; }
.sl-thanks h1 { margin: 0.5rem 0 0; font-size: clamp(2.2rem, 5vw, 3.25rem); }
.sl-thanks p { color: var(--muted-fg); max-width: 32rem; margin: 1rem auto 0; }

@media (prefers-reduced-motion: reduce) {
  .hs-slide.is-on img { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hs-hero__photo img { animation: none; }
  .hs-plate__bg { transform: none !important; }
}

/* form honeypot — off-screen, never shown */
.sl-hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ==== v3 — the shop and the clips in the hero, the strawberry plate before the Top 6 ==== */
.hs-hero--dark { background: var(--ink); color: var(--primary-fg); min-height: min(calc(100svh - var(--header-h)), 56rem); display: flex; align-items: center; }
.hs-hero--dark::before { display: none; }
.hs-hero__media { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.hs-hero__media img, .hs-hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs-hero__media video:not([src]) { display: none; }
.hs-hero__scrim { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(100deg, rgb(0 0 0 / 0.62) 0%, rgb(0 0 0 / 0.42) 38%, rgb(0 0 0 / 0.12) 62%, rgb(0 0 0 / 0) 100%),
  linear-gradient(to top, rgb(0 0 0 / 0.5), rgb(0 0 0 / 0) 40%); }
.hs-hero--dark .hero-kicker { color: var(--peach); }
.hs-hero--dark h1 { color: var(--primary-fg); }
.hs-hero--dark h1 em { color: var(--lime); }
.hs-hero--dark .hs-hero__promise { color: var(--cream-85); }
.hs-hero--dark .hs-hero__tag { color: var(--peach); }
.hs-hero--dark .hs-panel { box-shadow: 0 0 0 1px rgb(251 248 241 / 0.18), 0 30px 60px -30px rgb(0 0 0 / 0.8); }
.hs-hero--dark .hs-hero__inner { padding: 4rem 0 4.5rem; grid-template-columns: minmax(0, 36rem) 1fr; }
.hs-hero__frames { position: relative; justify-self: end; width: min(100%, 34rem); aspect-ratio: 5 / 4; }
.hs-hero__frames .hs-hero__photo { position: absolute; margin: 0; justify-self: auto; }
.hs-hero__frames .hs-hero__photo--shop { left: 0; bottom: 0; width: 72%; aspect-ratio: 4 / 5; z-index: 1; border-radius: 1.5rem; box-shadow: 0 40px 80px -30px rgb(0 0 0 / 0.75), 0 0 0 1px rgb(251 248 241 / 0.2); }
.hs-hero__photo--shop img { animation: none; object-position: center 60%; }
.hs-hero__frames .hs-hero__photo--drink { right: 0; top: 0; width: 44%; aspect-ratio: 3 / 4; z-index: 2; border-radius: 1.4rem; box-shadow: 0 40px 80px -30px rgb(0 0 0 / 0.8), 0 0 0 1px rgb(251 248 241 / 0.25); }
/* the product frame: a slow crossfade through her drinks, one Ken Burns per slide */
.hs-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; }
.hs-slide.is-on { opacity: 1; }
.hs-slide img { animation: none; }
.hs-slide.is-on img { animation: sl-kenburns 9s ease-in-out forwards; }
.hs-slide__dots { position: absolute; right: 0.85rem; bottom: 0.95rem; z-index: 3; display: flex; gap: 0.3rem; }
.hs-slide__dots i { width: 0.35rem; height: 0.35rem; border-radius: 999px; background: rgb(251 248 241 / 0.45); }
.hs-slide__dots i.is-on { background: var(--primary-fg); }
.hs-hero__frames figcaption { z-index: 3; }
.hs-hero__credit { display: none; }
.hs-hero--dark.has-clip .hs-hero__credit { display: block; }
.hs-hero__frames figcaption { left: 0.85rem; bottom: 0.85rem; }
.hs-hero__credit { position: absolute; right: 1.25rem; bottom: 0.7rem; z-index: 1; margin: 0; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgb(251 248 241 / 0.88); }
@media (max-width: 959px) {
  .hs-hero--dark .hs-hero__inner { grid-template-columns: 1fr; padding: 2.5rem 0 3.5rem; }
  .hs-hero__frames { width: 100%; justify-self: stretch; aspect-ratio: 5 / 4; }
  .hs-hero__credit { position: static; padding: 0 1rem 0.9rem; text-align: right; }
}
@media (max-width: 639px) { .hs-hero--dark { min-height: 0; } .hs-hero__frames { aspect-ratio: 4 / 3; } .hs-hero__frames .hs-hero__photo--shop { width: 66%; } .hs-hero__frames .hs-hero__photo--drink { width: 46%; } }

.hs-plate__bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs-plate__bg video:not([src]) { display: none; }
.hs-plate--video::after { background: linear-gradient(to right, rgb(31 59 36 / 0.55), rgb(31 59 36 / 0.3)); }
.sl-top-plate { padding: 6.5rem 0; }
.sl-top-plate .hs-plate__card { max-width: 40rem; }
.sl-top-plate__p { margin: 0.9rem 0 0; color: var(--muted-fg); }
.sl-top-plate__acts { margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.sl-top .sl-top__grid--first { margin-top: 0; }
#top6-cards { scroll-margin-top: calc(var(--header-h) + 1rem); }
@media (min-width: 960px) { .sl-top-plate .hs-plate__grid { grid-template-columns: 52% 1fr; } }
.hs-plate__cap { max-width: 60%; text-align: right; line-height: 1.4; }

/* v3.1 — storefront backplate: on phones push the sign lettering out from behind the headline, deepen the top. */
.hs-hero__media img { object-position: 50% 45%; }
@media (max-width: 639px) {
  .hs-hero__media img { object-position: 50% 0%; }
  .hs-hero__scrim { background: linear-gradient(to bottom, rgb(0 0 0 / 0.58) 0%, rgb(0 0 0 / 0.42) 50%, rgb(0 0 0 / 0.5) 100%); }
}
@media (max-width: 639px) {
  .hs-hero--dark h1, .hs-hero--dark .hs-hero__promise, .hs-hero--dark .hs-hero__tag, .hs-hero--dark .kicker { text-shadow: 0 1px 2px rgb(0 0 0 / 0.55), 0 2px 18px rgb(0 0 0 / 0.55); }
  .hs-hero__scrim { background: linear-gradient(to bottom, rgb(0 0 0 / 0.66) 0%, rgb(0 0 0 / 0.5) 55%, rgb(0 0 0 / 0.5) 100%); }
}
/* v3.6 (Pawel) — slogan moves to a quiet moving line at the foot of the hero; the panel becomes a low wide strip so the shop name on the glass shows. */
.hs-hero__ticker { position: absolute; left: 0; right: 0; bottom: 0.85rem; z-index: 1; display: flex; overflow: hidden; white-space: nowrap; pointer-events: none; font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.5rem); color: var(--cream, #FBF8F1); text-shadow: 0 1px 2px rgb(0 0 0 / 0.5); }
.hs-hero__ticker-track { display: flex; flex-shrink: 0; animation: sl-ticker 48s linear infinite; }
.hs-hero__ticker-track span { padding: 0 3rem; }
@keyframes sl-ticker { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .hs-hero__ticker-track { animation: none; } }
@media (min-width: 640px) {
  .hs-hero--dark { align-items: flex-start; }
  .hs-hero__inner { align-items: start; padding-top: 2.75rem; padding-bottom: 5.5rem; }
  .hs-panel--wide { grid-column: 1 / -1; max-width: none; margin-top: 4.5rem; display: grid; grid-template-columns: auto 1fr auto; gap: 0.6rem 2rem; align-items: center; padding: 1rem 1.4rem 1rem; }
  .hs-panel--wide .hs-panel__kicker { grid-column: 1 / -1; margin: 0; }
  .hs-panel--wide .hs-panel__rows { grid-auto-flow: column; gap: 2rem; justify-content: start; }
  .hs-panel--wide .hs-panel__row { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .hs-panel--wide .hs-panel__row span { text-align: left; }
  .hs-panel--wide .hs-panel__note { margin: 0; align-self: center; }
  .hs-panel--wide .hs-panel__acts { margin: 0; grid-template-columns: auto auto; }
  .hs-panel--wide .hs-panel__acts .btn { width: auto; padding-inline: 1.5rem; }
}
/* v3.7 (Pawel) — pill panel back in the text column, whole block sits higher; ticker stays. */
@media (min-width: 640px) {
  .hs-hero--dark { align-items: flex-start; }
  .hs-hero__inner { align-items: start; padding-top: 2rem; padding-bottom: 4.5rem; }
  .hs-hero--dark h1 { font-size: clamp(2.6rem, 4.4vw, 3.9rem); margin-bottom: 0.6rem; }
  .hs-hero__promise { margin-top: 0.5rem; }
  .hs-panel { margin-top: 1.1rem; padding: 1rem 1.15rem 1.05rem; }
  .hs-panel__rows { gap: 0.4rem; }
  .hs-panel__acts { margin-top: 0.8rem; }
}
/* v3.8 (Pawel) — the two frames sit a touch lower, in line with the kicker, clear of the glass lettering. */
@media (min-width: 640px) { .hs-hero__frames { margin-top: 0.9rem; } }
