:root {
  --forest: #073f2b;
  --forest-deep: #042d20;
  --forest-soft: #155c41;
  --leaf: #2b7a55;
  --orange: #ff6b1a;
  --orange-soft: #ff9b58;
  --cream: #fff8ec;
  --cream-deep: #f3e7d5;
  --paper: #fffdf8;
  --ink: #10271d;
  --muted: #617066;
  --line: rgba(7, 63, 43, .15);
  --uber: #06c167;
  --shadow: 0 22px 60px rgba(6, 47, 32, .13);
  --shadow-soft: 0 12px 34px rgba(6, 47, 32, .09);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
[hidden] { display: none !important; }

::selection { color: white; background: var(--orange); }
::-webkit-scrollbar { width: 11px; height: 9px; }
::-webkit-scrollbar-track { background: #efe3d2; }
::-webkit-scrollbar-thumb { border: 2px solid #efe3d2; border-radius: 999px; background: linear-gradient(180deg, var(--forest), var(--orange)); }
.scroll-progress { position: fixed; z-index: 120; top: 0; right: 0; left: 0; height: 4px; pointer-events: none; background: rgba(255,255,255,.15); }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--orange), #ffbe63 46%, var(--forest)); transform: scaleX(0); transform-origin: left center; will-change: transform; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: var(--forest);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: .96; letter-spacing: -.045em; }
h1 { margin-bottom: 30px; font-size: clamp(4rem, 8.4vw, 8.1rem); }
h2 { margin-bottom: 24px; font-size: clamp(3rem, 6.1vw, 6.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.4rem); }
h1 em, h2 em { color: var(--orange); font-style: italic; font-weight: 600; }
p { color: var(--muted); }

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--forest-soft);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker > span { width: 42px; height: 2px; background: var(--orange); }
.kicker--light { color: rgba(255,255,255,.7); }
.kicker--light > span { background: var(--orange-soft); }

.button,
.uber-button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover,
.uber-button:hover { transform: translateY(-3px); }
.button:focus-visible,
.uber-button:focus-visible,
button:focus-visible,
a:focus-visible { outline: 3px solid rgba(255,107,26,.35); outline-offset: 3px; }
.button--primary { color: white; background: var(--forest); box-shadow: 0 15px 34px rgba(7,63,43,.2); }
.button--primary:hover { background: var(--forest-deep); box-shadow: 0 18px 42px rgba(7,63,43,.27); }
.button--light { color: var(--forest); background: white; box-shadow: 0 15px 34px rgba(0,0,0,.12); }
.button--uber { color: white; background: #101010; box-shadow: 0 15px 34px rgba(0,0,0,.17); }
.uber-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--uber); box-shadow: 0 0 0 5px rgba(6,193,103,.16); }
.uber-button { color: white; background: #111; }
.uber-button__mark { width: 29px; height: 29px; border-radius: 8px; display: grid; place-items: center; color: #111; background: var(--uber); font-size: .7rem; font-weight: 800; }
.uber-button--header { min-height: 47px; padding: 9px 17px 9px 10px; }

.top-strip {
  min-height: 40px;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: white;
  background: var(--forest-deep);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.top-strip__track { display: flex; align-items: center; gap: 12px; }
.top-strip__track i { width: 3px; height: 3px; border-radius: 50%; background: var(--orange-soft); }
.opening-status { margin-left: auto; padding: 5px 10px; border-radius: 999px; color: #0b5639; background: #d8f7e6; font-weight: 700; white-space: nowrap; }
.opening-status.is-closed { color: #8d2c1d; background: #ffe2da; }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(7,63,43,.11);
  background: rgba(255,248,236,.9);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(255,253,248,.96); box-shadow: 0 12px 30px rgba(7,63,43,.08); }
.header-shell { min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand img { width: 126px; height: 72px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #314a3d;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: none; place-items: center; background: white; cursor: pointer; }
.menu-toggle span { width: 18px; height: 2px; display: block; background: var(--forest); transition: transform .2s ease; }
.menu-toggle span + span { margin-top: 5px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 75; inset: 122px 16px auto; padding: 24px; border: 1px solid var(--line); border-radius: 26px; display: grid; gap: 5px; background: var(--paper); box-shadow: var(--shadow); }
.mobile-menu a:not(.uber-button) { padding: 13px 8px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.35rem; text-decoration: none; }
.mobile-menu .uber-button { margin-top: 12px; }

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  padding: 78px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(255,107,26,.14), transparent 31%),
    radial-gradient(circle at 18% 92%, rgba(43,122,85,.10), transparent 28%),
    var(--cream);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image: radial-gradient(rgba(7,63,43,.24) .7px, transparent .7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; gap: 46px; align-items: center; }
.hero-copy { padding-top: 20px; }
.hero-copy h1 { color: var(--forest-deep); }
.hero-lead { max-width: 680px; margin-bottom: 34px; font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-facts { max-width: 650px; margin-top: 48px; padding-top: 27px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-facts div { min-height: 55px; padding: 0 20px; border-right: 1px solid var(--line); display: grid; align-content: start; }
.hero-facts div:first-child { padding-left: 0; }
.hero-facts div:last-child { border-right: 0; }
.hero-facts strong { color: var(--forest); font-family: var(--serif); font-size: 1.35rem; }
.hero-facts span { color: var(--muted); font-size: .75rem; font-weight: 600; }

.hero-art { position: relative; min-height: 650px; }
.hero-frame { position: absolute; margin: 0; overflow: hidden; background: white; box-shadow: var(--shadow); }
.hero-frame--main { top: 30px; right: 0; width: min(78%, 510px); height: 570px; border: 14px solid white; border-radius: 45% 45% 24px 24px; transform: translate3d(0, var(--parallax-y, 0), 0) rotate(1.5deg); will-change: transform; }
.hero-frame--main img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame--main figcaption { position: absolute; right: 15px; bottom: 15px; left: 15px; padding: 14px 16px; border-radius: 16px; display: flex; justify-content: space-between; gap: 12px; color: white; background: rgba(4,45,32,.88); backdrop-filter: blur(8px); }
.hero-frame--main figcaption span { color: #ffcfaa; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.hero-frame--main figcaption strong { font-family: var(--serif); }
.hero-frame--mini { bottom: 15px; left: 7%; width: 210px; height: 210px; border: 10px solid white; border-radius: 50%; transform: translate3d(0, var(--parallax-y, 0), 0) rotate(-5deg); will-change: transform; }
.hero-frame--mini img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp { position: absolute; right: -4%; bottom: 40px; width: 165px; aspect-ratio: 1; border: 7px solid white; border-radius: 50%; display: grid; place-items: center; align-content: center; color: white; background: var(--orange); text-align: center; transform: rotate(6deg); box-shadow: var(--shadow-soft); }
.hero-stamp small { font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-stamp strong { margin: 2px 0; font-family: var(--serif); font-size: 2rem; font-style: italic; }
.hero-sun { position: absolute; top: 4px; left: 7%; width: 130px; height: 130px; border: 1px solid rgba(255,107,26,.4); border-radius: 50%; transform: translate3d(0, var(--parallax-y, 0), 0); will-change: transform; }
.hero-sun::before,
.hero-sun::after { content: ""; position: absolute; inset: 18px; border: 1px dashed rgba(255,107,26,.4); border-radius: 50%; }
.hero-sun::after { inset: 40px; background: rgba(255,107,26,.12); }
.scroll-cue { position: absolute; z-index: 4; right: 36px; bottom: 24px; display: flex; align-items: center; gap: 9px; color: var(--forest); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 48px; background: linear-gradient(var(--orange), transparent); }

.marquee { overflow: hidden; color: white; background: var(--orange); transform: rotate(-1deg) scale(1.01); }
.marquee__track { width: max-content; padding: 13px 0; display: flex; align-items: center; gap: 27px; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; letter-spacing: .08em; }
.marquee b { color: var(--forest-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-dock {
  position: sticky;
  z-index: 45;
  top: 91px;
  width: min(calc(100% - 48px), 760px);
  margin: 28px auto -32px;
  padding: 8px;
  border: 1px solid rgba(7,63,43,.12);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  background: rgba(255,253,248,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(7,63,43,.09);
}
.section-dock a { padding: 9px 13px; border-radius: 999px; display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--forest); font-size: .78rem; font-weight: 700; text-decoration: none; transition: background .2s ease, color .2s ease, transform .2s ease; }
.section-dock a span { color: var(--orange); font-size: .65rem; }
.section-dock a:hover { transform: translateY(-1px); }
.section-dock a.is-active { color: white; background: var(--forest); }
.section-dock a.is-active span { color: #ffb98e; }

.signatures { padding-top: 150px; background: var(--paper); }
.section-head { margin-bottom: 60px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.section-head h2 { color: var(--forest-deep); }
.section-head__aside { max-width: 460px; padding-bottom: 12px; }
.section-head__aside p { font-size: 1.02rem; line-height: 1.72; }
.text-button { padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--forest); color: var(--forest); background: transparent; font-weight: 700; cursor: pointer; }
.text-button span { color: var(--orange); }

.signature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.signature-card { position: relative; min-height: 500px; overflow: hidden; border-radius: 28px; color: white; background: var(--forest); box-shadow: var(--shadow-soft); cursor: pointer; isolation: isolate; }
.signature-card:nth-child(1) { grid-column: span 7; }
.signature-card:nth-child(2) { grid-column: span 5; }
.signature-card:nth-child(3), .signature-card:nth-child(4), .signature-card:nth-child(5) { min-height: 420px; grid-column: span 4; }
.signature-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 40%, rgba(3,30,21,.9) 100%); }
.signature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.signature-card:hover img { transform: scale(1.06); }
.signature-card__badge { position: absolute; z-index: 3; top: 18px; left: 18px; padding: 7px 11px; border-radius: 999px; color: var(--forest); background: rgba(255,255,255,.93); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.signature-card__content { position: absolute; z-index: 3; right: 24px; bottom: 22px; left: 24px; }
.signature-card__top { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.signature-card h3 { margin: 0; color: white; font-size: clamp(1.8rem, 3.4vw, 3.6rem); }
.signature-card:nth-child(n+3) h3 { font-size: clamp(1.55rem, 2.3vw, 2.4rem); }
.signature-card__price { color: #ffd1b2; font-family: var(--serif); font-size: 1.35rem; font-weight: 700; white-space: nowrap; }
.signature-card p { max-width: 560px; margin: 12px 0 0; color: rgba(255,255,255,.78); font-size: .86rem; }
.signature-card__arrow { position: absolute; z-index: 4; right: 18px; top: 18px; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--forest); background: var(--orange); font-size: 1.2rem; transform: rotate(-45deg); transition: transform .25s ease; }
.signature-card:hover .signature-card__arrow { transform: rotate(0); }

.menu-note { margin-top: 25px; padding: 22px 25px; border: 1px solid var(--line); border-radius: 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; background: #f8f2e7; }
.menu-note > span { padding: 7px 10px; border-radius: 999px; color: white; background: var(--forest); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-note p { margin: 0; font-size: .86rem; }
.menu-note a { color: var(--forest); font-size: .82rem; font-weight: 700; text-decoration: none; white-space: nowrap; }

.compose-section { overflow: hidden; color: white; background: var(--forest-deep); }
.compose-background { position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(rgba(255,255,255,.25) .8px, transparent .8px); background-size: 22px 22px; mask-image: radial-gradient(circle at 75% 50%, black, transparent 68%); }
.compose-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; align-items: center; }
.compose-intro h2 { color: white; }
.compose-intro > p:not(.kicker) { max-width: 460px; color: rgba(255,255,255,.68); font-size: 1rem; line-height: 1.72; }
.compose-price { margin: 38px 0; display: flex; align-items: center; gap: 16px; }
.compose-price strong { color: var(--orange-soft); font-family: var(--serif); font-size: 3rem; }
.compose-price span { color: rgba(255,255,255,.6); font-size: .78rem; line-height: 1.35; }
.compose-explorer { min-width: 0; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 32px; background: rgba(255,255,255,.065); backdrop-filter: blur(8px); box-shadow: 0 24px 70px rgba(0,0,0,.18); touch-action: pan-y; }
.compose-mobile-guide { display: none; align-items: center; justify-content: space-between; gap: 12px; margin: 0 2px 10px; color: rgba(255,255,255,.68); font-size: .68rem; }
.compose-mobile-guide strong { color: var(--orange-soft); letter-spacing: .04em; }
.compose-panel--from-right { opacity: 0; transform: translateX(18px) scale(.992); }
.compose-panel--from-left { opacity: 0; transform: translateX(-18px) scale(.992); }
.compose-panel--animate { opacity: 1; transform: none; transition: opacity .3s ease, transform .42s cubic-bezier(.2,.75,.2,1); }
.compose-tabs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; }
.compose-tab { min-height: 70px; padding: 8px 5px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; display: grid; place-items: center; align-content: center; gap: 3px; color: rgba(255,255,255,.64); background: rgba(255,255,255,.04); cursor: pointer; transition: .2s ease; }
.compose-tab span { color: var(--orange-soft); font-size: .67rem; font-weight: 800; }
.compose-tab strong { font-size: .68rem; }
.compose-tab:hover { background: rgba(255,255,255,.08); }
.compose-tab.is-active { color: var(--forest-deep); background: white; transform: translateY(-3px); }
.compose-tab.is-active span { color: var(--orange); }
.compose-panel { min-height: 375px; margin-top: 18px; padding: 30px; border-radius: 24px; color: var(--ink); background: var(--paper); }
.compose-panel__head { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.compose-panel__number { color: var(--orange); font-family: var(--serif); font-size: 3.8rem; line-height: .8; }
.compose-panel h3 { margin: 0 0 10px; color: var(--forest-deep); font-size: 2.4rem; }
.compose-panel__description { max-width: 550px; margin: 0; font-size: .86rem; }
.ingredient-chips { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.ingredient-chip { padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; color: var(--forest); background: #fffaf2; font-size: .78rem; font-weight: 700; }
.ingredient-chip i { font-style: normal; font-size: 1rem; }
.compose-panel__included { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .78rem; }
.compose-panel__included strong { color: var(--forest); }
.compose-foot { padding: 16px 6px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.compose-foot > span { color: rgba(255,255,255,.55); font-size: .72rem; }
.compose-arrows { display: flex; gap: 7px; }
.compose-arrows button { width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: white; background: rgba(255,255,255,.07); cursor: pointer; }
.compose-arrows button:hover { color: var(--forest); background: white; }

.brunch-section { background: linear-gradient(180deg, #fff4e2 0%, #fffaf2 100%); }
.section-head--brunch > p { max-width: 460px; padding-bottom: 10px; font-size: 1rem; line-height: 1.7; }
.brunch-bento { min-height: 600px; display: grid; grid-template-columns: 1.45fr .8fr .8fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.brunch-feature,
.brunch-mini,
.brunch-quote { position: relative; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-soft); }
.brunch-feature { grid-row: 1 / 3; }
.brunch-feature img,
.brunch-mini img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.brunch-feature:hover img,
.brunch-mini:hover img { transform: scale(1.05); }
.brunch-feature__overlay { position: absolute; inset: auto 0 0; padding: 34px; color: white; background: linear-gradient(transparent, rgba(3,34,23,.94)); }
.brunch-feature__overlay > span { color: #ffc99e; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.brunch-feature__overlay h3 { margin: 10px 0; color: white; font-size: 3.1rem; }
.brunch-feature__overlay p { max-width: 470px; color: rgba(255,255,255,.7); }
.brunch-feature__overlay a { color: white; font-weight: 700; text-decoration: none; }
.brunch-mini { min-height: 270px; }
.brunch-mini > div { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 13px 15px; border-radius: 15px; color: var(--forest); background: rgba(255,255,255,.9); backdrop-filter: blur(8px); }
.brunch-mini span { display: block; color: var(--orange); font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.brunch-mini strong { font-family: var(--serif); font-size: 1.2rem; }
.brunch-quote { padding: 26px; display: grid; align-content: center; color: white; background: var(--orange); }
.brunch-quote span { position: absolute; top: -15px; right: 15px; color: rgba(255,255,255,.22); font-family: var(--serif); font-size: 9rem; line-height: 1; }
.brunch-quote p { position: relative; z-index: 2; margin: 0; color: white; font-family: var(--serif); font-size: 1.6rem; font-style: italic; line-height: 1.25; }
.category-switcher { margin: 54px 0 22px; padding-bottom: 10px; border-bottom: 1px solid var(--line); display: flex; gap: 12px; overflow-x: auto; }
.category-switcher button,
.drink-toggle button { padding: 10px 15px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; font-weight: 700; white-space: nowrap; cursor: pointer; }
.category-switcher button.is-active { color: white; background: var(--forest); }
.product-rail { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.menu-product { border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--paper); box-shadow: 0 9px 26px rgba(7,63,43,.06); cursor: pointer; transition: transform .22s ease, box-shadow .22s ease; }
.menu-product:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.menu-product__image { height: 215px; overflow: hidden; }
.menu-product__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.menu-product:hover img { transform: scale(1.055); }
.menu-product__body { padding: 17px; }
.menu-product__top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.menu-product h3 { margin: 0; color: var(--forest); font-family: var(--sans); font-size: 1rem; letter-spacing: -.02em; line-height: 1.25; }
.menu-product__price { color: var(--orange); font-family: var(--serif); font-weight: 700; white-space: nowrap; }
.menu-product p { min-height: 40px; margin: 9px 0 0; font-size: .76rem; }
.menu-product__more { margin-top: 13px; display: inline-block; color: var(--forest); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }

.drinks-section { color: white; overflow: hidden; background: var(--forest); }
.drinks-section::before { content: ""; position: absolute; top: -170px; right: -90px; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.drinks-heading { position: relative; z-index: 2; margin-bottom: 50px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.drinks-heading h2 { margin-bottom: 0; color: white; }
.drink-toggle { padding: 6px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; display: flex; background: rgba(255,255,255,.06); }
.drink-toggle button { color: rgba(255,255,255,.6); }
.drink-toggle button.is-active { color: var(--forest); background: white; }
.drink-shelf { position: relative; z-index: 2; padding-bottom: 10px; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(235px, 1fr); gap: 16px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.drink-shelf::-webkit-scrollbar { display: none; }
.drink-card { scroll-snap-align: start; border-radius: 26px; overflow: hidden; color: var(--ink); background: #fff9ef; transition: transform .22s ease; cursor: pointer; }
.drink-card:hover { transform: translateY(-7px); }
.drink-card__image { height: 310px; overflow: hidden; background: #f8eee0; }
.drink-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.drink-card:hover img { transform: scale(1.05); }
.drink-card__body { min-height: 120px; padding: 18px; }
.drink-card__top { display: flex; justify-content: space-between; gap: 12px; }
.drink-card h3 { margin: 0; color: var(--forest); font-family: var(--sans); font-size: 1rem; letter-spacing: -.02em; line-height: 1.25; }
.drink-card__price { color: var(--orange); font-family: var(--serif); font-weight: 700; white-space: nowrap; }
.drink-card p { margin: 8px 0 0; font-size: .75rem; }
.rail-controls { position: relative; z-index: 2; margin-top: 26px; display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.rail-controls span { margin-right: 5px; color: rgba(255,255,255,.5); font-size: .72rem; }
.rail-controls button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; background: transparent; cursor: pointer; }
.rail-controls button:hover { color: var(--forest); background: white; }

.story-section { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.story-collage { position: relative; min-height: 680px; }
.story-collage__large { position: absolute; top: 0; left: 0; width: 82%; height: 560px; border-radius: 220px 220px 26px 26px; object-fit: cover; box-shadow: var(--shadow); transform: translate3d(0, var(--parallax-y, 0), 0); will-change: transform; }
.story-collage__small { position: absolute; right: 0; bottom: 0; width: 45%; aspect-ratio: 1; border: 12px solid var(--paper); border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-soft); transform: translate3d(0, var(--parallax-y, 0), 0); will-change: transform; }
.story-label { position: absolute; left: -28px; bottom: 92px; padding: 14px 17px; border-radius: 14px; color: white; background: var(--orange); font-size: .72rem; font-weight: 800; line-height: 1.35; text-transform: uppercase; letter-spacing: .09em; transform: rotate(-4deg); }
.story-copy h2 { color: var(--forest-deep); }
.story-lead { max-width: 610px; font-size: 1.04rem; line-height: 1.78; }
.story-points { margin: 35px 0 0; padding: 0; list-style: none; }
.story-points li { padding: 18px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 55px 1fr; gap: 18px; }
.story-points li > span { color: var(--orange); font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.story-points strong { color: var(--forest); }
.story-points p { margin: 4px 0 0; font-size: .84rem; }

.order-banner { position: relative; overflow: hidden; padding: 110px 0; color: white; background: #0c0c0c; }
.order-banner__pattern { position: absolute; inset: 0; opacity: .13; background: repeating-linear-gradient(135deg, transparent 0 35px, rgba(6,193,103,.35) 35px 36px); }
.order-banner__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.order-banner h2 { color: white; }
.order-banner h2 em { color: var(--uber); }
.order-banner p:not(.kicker) { max-width: 650px; color: rgba(255,255,255,.6); }
.uber-order-card { position: relative; min-height: 310px; padding: 35px; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; display: grid; align-content: end; color: white; background: linear-gradient(145deg, #111 0%, #161616 60%, #063b25 100%); box-shadow: 0 24px 70px rgba(0,0,0,.35); text-decoration: none; transition: transform .25s ease, border-color .25s ease; }
.uber-order-card:hover { transform: translateY(-7px) rotate(-.5deg); border-color: rgba(6,193,103,.7); }
.uber-order-card__logo { position: absolute; top: 30px; left: 35px; font-size: 1.1rem; font-weight: 800; letter-spacing: -.04em; }
.uber-order-card__logo b { color: var(--uber); }
.uber-order-card strong { max-width: 250px; font-family: var(--serif); font-size: 2.2rem; line-height: 1.05; }
.uber-order-card small { margin-top: 12px; color: rgba(255,255,255,.55); }
.uber-order-card i { position: absolute; right: 25px; bottom: 25px; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #111; background: var(--uber); font-style: normal; font-size: 1.4rem; }

.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.contact-intro h2 { color: var(--forest-deep); }
.contact-intro > p:not(.kicker) { max-width: 560px; font-size: 1rem; line-height: 1.72; }
.contact-links { margin-top: 35px; display: grid; }
.contact-links a { padding: 17px 0; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; text-decoration: none; }
.contact-links a:hover strong { color: var(--orange); }
.contact-links span { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-links strong { color: var(--forest); transition: color .2s ease; }
.hours-card { padding: 32px; border: 1px solid var(--line); border-radius: 30px; background: var(--paper); box-shadow: var(--shadow-soft); }
.hours-card__head { margin-bottom: 20px; padding-bottom: 19px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; }
.hours-card__head span { color: var(--muted); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hours-card__head strong { color: var(--forest); }
.hours-list { display: grid; gap: 9px; }
.hours-row { padding: 8px 0; display: flex; justify-content: space-between; gap: 18px; font-size: .85rem; }
.hours-row.is-today { padding: 10px 12px; border-radius: 12px; color: white; background: var(--forest); }
.hours-row.is-today span:last-child { color: #ffe0c8; }
.hours-card > p { margin: 22px 0 0; font-size: .72rem; }

.site-footer { padding: 76px 0 22px; color: white; background: var(--forest-deep); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .9fr; gap: 70px; }
.footer-brand img { width: 145px; filter: drop-shadow(0 5px 10px rgba(0,0,0,.18)); }
.footer-brand p { max-width: 390px; margin: 16px 0 24px; color: rgba(255,255,255,.6); }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 10px; color: #ffc49c; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .87rem; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.42); font-size: .72rem; }

.mobile-uber-bar { position: fixed; z-index: 70; right: 14px; bottom: 14px; left: 14px; min-height: 58px; padding: 13px 18px; border-radius: 999px; display: none; align-items: center; justify-content: space-between; gap: 10px; color: white; background: #111; box-shadow: 0 18px 45px rgba(0,0,0,.25); text-decoration: none; opacity: 0; transform: translateY(120%); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.mobile-uber-bar.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.mobile-uber-bar > span:last-child { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #111; background: var(--uber); }

.product-dialog,
.menu-dialog { width: min(960px, calc(100% - 30px)); max-height: min(90vh, 900px); padding: 0; border: 0; border-radius: 30px; overflow: auto; color: var(--ink); background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.product-dialog::backdrop,
.menu-dialog::backdrop { background: rgba(3,25,17,.72); backdrop-filter: blur(5px); }
.dialog-close { position: sticky; z-index: 4; top: 14px; float: right; margin: 14px 14px -58px 0; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--forest); background: rgba(255,255,255,.94); cursor: pointer; font-size: 1.5rem; }
.product-dialog__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.product-dialog__image { min-height: 540px; }
.product-dialog__image img { width: 100%; height: 100%; object-fit: cover; }
.product-dialog__copy { padding: 58px 45px 42px; }
.product-dialog__copy .kicker { margin-bottom: 16px; }
.product-dialog__copy h2 { margin-bottom: 10px; color: var(--forest-deep); font-size: 3.3rem; }
.product-dialog__price { color: var(--orange); font-family: var(--serif); font-size: 1.8rem; font-weight: 700; }
.product-dialog__description { margin: 20px 0; line-height: 1.7; }
.product-dialog__detail { padding: 16px 0; border-top: 1px solid var(--line); }
.product-dialog__detail strong { display: block; margin-bottom: 7px; color: var(--forest); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.product-dialog__detail p { margin: 0; font-size: .84rem; }
.allergen-list { display: flex; flex-wrap: wrap; gap: 7px; }
.allergen-pill { padding: 6px 9px; border-radius: 999px; color: #6c4d36; background: #f2e6d9; font-size: .69rem; font-weight: 700; }
.product-dialog__copy .button { width: 100%; margin-top: 22px; }
.menu-dialog { padding: 42px; }
.menu-dialog__head h2 { color: var(--forest); font-size: 3rem; }
.menu-dialog__images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.menu-dialog__images img { width: 100%; border-radius: 18px; }
.toast { position: fixed; z-index: 120; right: 20px; bottom: 24px; max-width: 390px; padding: 14px 18px; border-radius: 14px; color: white; background: var(--forest-deep); box-shadow: var(--shadow); font-size: .84rem; }

.reveal { opacity: 0; transform: translateY(28px) scale(.992); filter: blur(2px); transition: opacity .62s ease, transform .72s cubic-bezier(.2,.72,.2,1), filter .62s ease; }
body.scroll-up .reveal:not(.is-visible) { transform: translateY(-24px) scale(.992); }
body.scroll-down .reveal:not(.is-visible) { transform: translateY(28px) scale(.992); }
.reveal--delay { transition-delay: .1s; }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: .8rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-art { min-height: 590px; }
  .hero-frame--main { width: 84%; height: 515px; }
  .hero-frame--mini { width: 180px; height: 180px; }
  .hero-stamp { width: 145px; }
  .signature-card:nth-child(1), .signature-card:nth-child(2) { grid-column: span 6; }
  .signature-card:nth-child(n+3) { grid-column: span 4; }
  .compose-layout { gap: 42px; }
  .brunch-bento { min-height: 530px; }
  .product-rail { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 34px), var(--shell)); }
  .section { padding: 88px 0; }
  .top-strip__track span:nth-of-type(2),
  .top-strip__track span:nth-of-type(3),
  .top-strip__track i:nth-of-type(2),
  .top-strip__track i:nth-of-type(3) { display: none; }
  .desktop-nav, .uber-button--header { display: none; }
  .menu-toggle { display: grid; }
  .header-actions { margin-left: auto; }
  .hero { min-height: auto; padding-top: 50px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-copy h1 { font-size: clamp(4rem, 12vw, 6.9rem); }
  .hero-art { width: min(100%, 680px); min-height: 620px; margin: 15px auto 0; }
  .scroll-cue { display: none; }
  .section-dock { top: 87px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head__aside { max-width: 650px; }
  .signature-card:nth-child(1), .signature-card:nth-child(2) { min-height: 480px; grid-column: span 6; }
  .signature-card:nth-child(n+3) { min-height: 390px; grid-column: span 6; }
  .menu-note { grid-template-columns: auto 1fr; }
  .menu-note a { grid-column: 2; }
  .compose-layout { grid-template-columns: 1fr; }
  .compose-intro { max-width: 650px; }
  .brunch-bento { min-height: 780px; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1.2fr .8fr .8fr; }
  .brunch-feature { grid-row: 1 / 4; }
  .brunch-mini, .brunch-quote { min-height: 240px; }
  .product-rail { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .drinks-heading { align-items: start; flex-direction: column; }
  .story-grid { grid-template-columns: 1fr; }
  .story-collage { width: min(100%, 690px); margin-inline: auto; }
  .order-banner__inner { grid-template-columns: 1fr; gap: 38px; }
  .uber-order-card { min-height: 270px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 80px; }
  .shell { width: min(calc(100% - 26px), var(--shell)); }
  .section { padding: 72px 0; }
  .top-strip { min-height: 35px; padding-inline: 12px; gap: 8px; font-size: .66rem; }
  .top-strip__track { gap: 7px; }
  .opening-status { padding: 4px 8px; }
  .header-shell { min-height: 70px; }
  .brand img { width: 106px; height: 62px; }
  .mobile-menu { inset: 110px 10px auto; }
  h1 { font-size: clamp(3.5rem, 17vw, 5.1rem); }
  h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero { padding: 40px 0 70px; }
  .hero-lead { font-size: .94rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 30px; padding-top: 18px; }
  .hero-facts div { min-height: auto; padding: 3px 8px; border-right: 1px solid var(--line); border-bottom: 0; display: block; text-align: center; }
  .hero-facts div:first-child { padding-left: 0; }
  .hero-facts div:last-child { padding-right: 0; border-right: 0; }
  .hero-facts strong { display: block; font-size: 1rem; }
  .hero-facts span { display: block; font-size: .62rem; line-height: 1.25; }
  .hero-art { min-height: 510px; }
  .hero-frame--main { top: 25px; width: 88%; height: 430px; border-width: 9px; }
  .hero-frame--mini { bottom: 0; left: 0; width: 145px; height: 145px; border-width: 7px; }
  .hero-stamp { right: -1%; bottom: 15px; width: 120px; border-width: 5px; }
  .hero-stamp strong { font-size: 1.45rem; }
  .hero-sun { width: 90px; height: 90px; }
  .marquee span { font-size: .96rem; }
  .section-dock { top: 76px; width: calc(100% - 20px); margin-top: 18px; padding: 6px; overflow-x: auto; display: flex; }
  .section-dock a { min-width: 100px; flex: 1 0 auto; }
  .signatures { padding-top: 120px; }
  .signature-grid { display: grid; grid-template-columns: 1fr; }
  .signature-card:nth-child(n) { min-height: 420px; grid-column: auto; }
  .signature-card h3,
  .signature-card:nth-child(n+3) h3 { font-size: 2.25rem; }
  .menu-note { grid-template-columns: 1fr; }
  .menu-note a { grid-column: auto; }
  .compose-explorer { padding: 13px; border-radius: 23px; }
  .compose-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; overflow: visible; }
  .compose-tab { min-width: 0; min-height: 62px; padding: 7px 4px; }
  .compose-panel { min-height: 390px; padding: 23px 18px; }
  .compose-panel__head { flex-direction: column-reverse; }
  .compose-panel__number { font-size: 3rem; }
  .compose-panel h3 { font-size: 2rem; }
  .compose-panel__included { flex-direction: column; gap: 5px; }
  .compose-foot { align-items: start; flex-direction: column; }
  .compose-arrows { align-self: flex-end; }
  .brunch-bento { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto; }
  .brunch-feature { min-height: 530px; grid-row: auto; }
  .brunch-mini { min-height: 280px; }
  .brunch-quote { min-height: 200px; }
  .product-rail { grid-template-columns: 1fr; }
  .menu-product__image { height: 260px; }
  .drink-toggle { width: 100%; }
  .drink-toggle button { flex: 1; }
  .drink-shelf { grid-auto-columns: 76%; }
  .drink-card__image { height: 290px; }
  .rail-controls { justify-content: space-between; }
  .rail-controls span { display: none; }
  .story-collage { min-height: 540px; }
  .story-collage__large { width: 90%; height: 440px; }
  .story-collage__small { width: 47%; border-width: 8px; }
  .story-label { left: -4px; bottom: 55px; }
  .order-banner { padding: 75px 0; }
  .uber-order-card { min-height: 255px; padding: 28px; }
  .uber-order-card strong { font-size: 1.9rem; }
  .contact-links a { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding-bottom: 72px; flex-direction: column; }
  .mobile-uber-bar { display: flex; }
  .product-dialog__grid { grid-template-columns: 1fr; }
  .product-dialog__image { min-height: 300px; height: 330px; }
  .product-dialog__copy { padding: 32px 22px 28px; }
  .product-dialog__copy h2 { font-size: 2.6rem; }
  .menu-dialog { padding: 26px 17px; }
  .menu-dialog__images { grid-template-columns: 1fr; }
}


/* Mobile composition: every step remains visible without horizontal overflow. */
@media (max-width: 680px) {
  .compose-layout, .compose-intro, .compose-explorer, .compose-panel, .compose-panel__head { min-width: 0; width: 100%; }
  .compose-layout { gap: 34px; }
  .compose-mobile-guide { display: flex; }
  .compose-tabs { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; overflow: visible; padding: 0; scrollbar-width: auto; }
  .compose-tab { width: 100%; min-width: 0; min-height: 64px; padding: 7px 4px; border-radius: 13px; }
  .compose-tab span { font-size: .61rem; }
  .compose-tab strong { max-width: 100%; font-size: .62rem; line-height: 1.12; overflow-wrap: anywhere; }
  .compose-panel { overflow: hidden; padding: 21px 16px; }
  .compose-panel__description { max-width: 100%; overflow-wrap: anywhere; }
  .ingredient-chips { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ingredient-chip { min-width: 0; width: 100%; border-radius: 14px; align-items: center; white-space: normal; line-height: 1.2; }
  .ingredient-chip span { min-width: 0; overflow-wrap: anywhere; }
  .compose-foot { width: 100%; }
  .compose-arrows { width: 100%; align-self: stretch; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .compose-arrows button { width: 100%; height: 48px; border-radius: 15px; }
}
@media (max-width: 355px) {
  .compose-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ingredient-chips { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero-frame--main, .hero-frame--mini, .hero-sun, .story-collage__large, .story-collage__small { --parallax-y: 0px !important; }
  .site-header { transform: none !important; }
}

.formula-strip {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  color: var(--forest);
  background: rgba(255,255,255,.74);
  box-shadow: 0 10px 26px rgba(7,63,43,.05);
}
.formula-strip > span { flex: 0 0 auto; padding: 8px 12px; border-radius: 999px; color: white; background: var(--orange); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.formula-strip div { flex: 0 0 auto; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.formula-strip b { color: var(--orange); font-family: var(--serif); font-size: 1.15rem; }
.formula-strip i { color: #c7ae94; font-style: normal; }

.extras-board { margin-top: 30px; padding: 28px; border-radius: 26px; color: white; background: var(--forest); box-shadow: var(--shadow-soft); }
.extras-board__head { margin-bottom: 22px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.extras-board__head h3 { margin: 0; color: white; font-size: 2.3rem; }
.extras-board__head p { max-width: 520px; margin: 0; color: rgba(255,255,255,.6); font-size: .82rem; }
.extras-board__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.extras-board__group { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.extras-board__group > strong { display: block; margin-bottom: 12px; color: #ffc49c; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.extras-board__items { display: flex; flex-wrap: wrap; gap: 8px; }
.extras-board__item { padding: 8px 10px; border-radius: 999px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); font-size: .73rem; }
.extras-board__item b { margin-left: 5px; color: #ffc49c; }

@media (max-width: 680px) {
  .formula-strip { margin-top: 20px; }
  .extras-board { padding: 22px 18px; }
  .extras-board__head { align-items: start; flex-direction: column; }
  .extras-board__grid { grid-template-columns: 1fr; }
}

/* Pages d'information */
.legal-page { background: var(--cream); }
.legal-header { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,248,236,.94); backdrop-filter: blur(14px); }
.legal-header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-header img { width: 120px; height: 68px; object-fit: contain; }
.legal-back { color: var(--forest); font-weight: 700; text-decoration: none; }
.legal-main { padding: 75px 0 110px; }
.legal-content { max-width: 900px; }
.legal-content h1 { margin-bottom: 32px; color: var(--forest-deep); font-size: clamp(3.3rem, 8vw, 6rem); }
.legal-content h2 { margin: 48px 0 14px; color: var(--forest); font-size: 2rem; letter-spacing: -.035em; }
.legal-content p, .legal-content li { line-height: 1.75; }
.legal-notice { margin: 25px 0 40px; padding: 18px 20px; border-left: 4px solid var(--orange); border-radius: 0 15px 15px 0; color: #674f3e; background: #fff0df; }
.legal-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: white; }
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table th, .legal-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .82rem; }
.legal-table th { color: var(--forest); }
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: 0; }
.legal-actions { margin-top: 55px; }

/* =========================================================
   MORNING BOWL — finition premium Uber Eats
   ========================================================= */
:root {
  --cream: #fff9ef;
  --paper: #fffefa;
  --coral: #ff8650;
  --lime: #b9f45b;
}

body {
  background:
    linear-gradient(90deg, rgba(7,63,43,.025) 1px, transparent 1px) 0 0 / 34px 34px,
    var(--cream);
}

.section { content-visibility: auto; contain-intrinsic-size: 900px; }

.uber-live-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(6,193,103,.24);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #123c2c;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 32px rgba(7,63,43,.08);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform .2s ease, box-shadow .2s ease;
}
.uber-live-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(7,63,43,.12); }
.uber-live-badge > span { width: 10px; height: 10px; border-radius: 50%; background: var(--uber); box-shadow: 0 0 0 6px rgba(6,193,103,.13); }
.uber-live-badge strong { font-size: .75rem; }
.uber-live-badge i { padding-left: 9px; border-left: 1px solid rgba(7,63,43,.12); color: var(--muted); font-size: .7rem; font-style: normal; }

.uber-button__mark { border-radius: 50%; background: rgba(6,193,103,.16); }
.uber-button__mark i { width: 10px; height: 10px; border-radius: 50%; display: block; background: var(--uber); }

.hero { isolation: isolate; }
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 4%;
  right: -8%;
  width: 42vw;
  max-width: 650px;
  aspect-ratio: 1;
  border: 1px solid rgba(7,63,43,.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(255,255,255,.2), inset 0 0 0 43px rgba(7,63,43,.05);
}
.hero-copy { position: relative; z-index: 3; }
.hero-copy::before {
  content: "MORNING BOWL";
  position: absolute;
  z-index: -1;
  top: -56px;
  left: -4px;
  color: rgba(7,63,43,.045);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.hero-delivery-note { margin: 17px 0 0; display: flex; align-items: center; gap: 8px; color: #4c6257; font-size: .78rem; }
.hero-delivery-note span { width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; color: #075933; background: #d9f8e8; font-size: .68rem; font-weight: 900; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 7% 6% 3% 12%;
  border-radius: 48% 48% 28px 28px;
  background: linear-gradient(150deg, #ffe0b8, rgba(255,107,26,.08));
  transform: rotate(-3deg);
}
.hero-frame--main { box-shadow: 0 38px 85px rgba(4,45,32,.21); }
.hero-frame--mini { box-shadow: 0 22px 48px rgba(4,45,32,.18); }
.hero-facts { border-top-color: rgba(7,63,43,.12); }
.hero-facts strong { font-size: 1.2rem; }

.marquee { box-shadow: 0 10px 35px rgba(255,107,26,.18); }
.section-dock { border-color: rgba(7,63,43,.09); }
.section-dock a.is-active { background: linear-gradient(135deg, var(--forest-deep), var(--forest-soft)); box-shadow: 0 8px 18px rgba(7,63,43,.18); }

.section-head h2,
.drinks-heading h2,
.story-copy h2,
.contact-intro h2 { text-wrap: balance; }

.signatures::before,
.brunch-section::before,
.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--shell));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7,63,43,.16), transparent);
  transform: translateX(-50%);
}

.signature-card { border: 1px solid rgba(255,255,255,.14); }
.signature-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: inherit;
  pointer-events: none;
}
.signature-card__index {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 20px;
  color: rgba(255,255,255,.32);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  line-height: .8;
  pointer-events: none;
}
.signature-card__content { padding-right: 74px; }
.signature-card__arrow { background: #fff; }
.signature-card:hover .signature-card__arrow { color: white; background: var(--orange); }

.compose-explorer {
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
}
.compose-panel { box-shadow: 0 28px 70px rgba(0,0,0,.17); }
.compose-tab.is-active { box-shadow: 0 14px 28px rgba(0,0,0,.18); }
.ingredient-chip { transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.ingredient-chip:hover { border-color: rgba(255,107,26,.4); background: #fff1e5; transform: translateY(-2px); }

.brunch-bento { perspective: 1200px; }
.brunch-feature,
.brunch-mini,
.brunch-quote { border: 1px solid rgba(7,63,43,.08); }
.brunch-feature:hover,
.brunch-mini:hover { transform: translateY(-4px); }
.brunch-feature,
.brunch-mini { transition: transform .25s ease; }
.category-switcher { scrollbar-width: none; }
.category-switcher::-webkit-scrollbar { display: none; }
.category-switcher button.is-active { box-shadow: 0 9px 21px rgba(7,63,43,.18); }
.product-rail { scroll-snap-type: x mandatory; }
.menu-product { scroll-snap-align: start; }
.menu-product__more { position: relative; }
.menu-product__more::after { content: ""; position: absolute; right: 0; bottom: -3px; left: 0; height: 1px; background: var(--orange); transform: scaleX(.25); transform-origin: left; transition: transform .2s ease; }
.menu-product:hover .menu-product__more::after { transform: scaleX(1); }

.drink-shelf { padding: 8px 2px 18px; }
.drink-card { border-color: rgba(255,255,255,.11); background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045)); backdrop-filter: blur(8px); }
.drink-card:hover { transform: translateY(-7px); }
.drink-card__image { border-radius: 18px 18px 7px 7px; }

.uber-order-card {
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 90% 10%, rgba(6,193,103,.22), transparent 35%),
    linear-gradient(145deg, #171717, #090909);
}
.uber-order-card::after {
  content: "FICHE DIRECTE";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #111;
  background: var(--uber);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.mobile-uber-bar { padding-bottom: max(13px, env(safe-area-inset-bottom)); }
.mobile-uber-bar .uber-dot { flex: 0 0 auto; }

.back-to-top {
  position: fixed;
  z-index: 66;
  right: 22px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7,63,43,.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(255,253,248,.92);
  box-shadow: 0 13px 32px rgba(7,63,43,.14);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }

.product-dialog__copy .button--uber { position: sticky; bottom: 12px; z-index: 2; }

@media (max-width: 1020px) {
  .hero-grid { gap: 12px; }
  .hero-copy::before { top: -40px; }
  .section-dock { top: 76px; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .section { content-visibility: visible; contain-intrinsic-size: auto; }
  .top-strip { min-height: 34px; justify-content: space-between; }
  .top-strip__track span:nth-of-type(2),
  .top-strip__track span:nth-of-type(3),
  .top-strip__track i:nth-of-type(1),
  .top-strip__track i:nth-of-type(2) { display: none; }
  .top-strip__track { min-width: 0; overflow: hidden; }
  .top-strip__track span { white-space: nowrap; }
  .opening-status { margin-left: 0; font-size: .62rem; }

  .site-header { background: rgba(255,250,241,.96); }
  .header-shell { min-height: 68px; }
  .mobile-menu {
    inset: 106px 10px calc(12px + env(safe-area-inset-bottom));
    overflow-y: auto;
    align-content: start;
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(4,45,32,.22);
  }
  .mobile-menu a:not(.uber-button) { padding: 15px 9px; font-size: 1.42rem; }

  .hero { padding-top: 34px; }
  .hero::before { right: -42%; width: 110vw; }
  .hero-copy::before { display: none; }
  .uber-live-badge { margin-bottom: 18px; }
  .hero-copy h1 { margin-bottom: 22px; font-size: clamp(3.45rem, 17vw, 4.8rem); line-height: .9; }
  .hero-lead { margin-bottom: 25px; line-height: 1.62; }
  .hero-delivery-note { align-items: flex-start; }
  .hero-facts { margin-top: 25px; }
  .hero-facts strong { font-size: .95rem; }
  .hero-art { min-height: 445px; }
  .hero-art::before { inset: 9% 6% 6% 7%; }
  .hero-frame--main { top: 18px; width: 90%; height: 370px; border-width: 8px; border-radius: 44% 44% 20px 20px; }
  .hero-frame--main figcaption { right: 9px; bottom: 9px; left: 9px; padding: 11px 12px; }
  .hero-frame--mini { width: 128px; height: 128px; border-width: 6px; }
  .hero-stamp { right: 0; bottom: 8px; width: 104px; border-width: 4px; }
  .hero-stamp small { font-size: .52rem; }
  .hero-stamp strong { font-size: 1.25rem; }
  .hero-sun { width: 76px; height: 76px; }

  .section-dock {
    top: 68px;
    width: calc(100% - 16px);
    margin-top: 12px;
    padding: 5px;
    gap: 3px;
    border-radius: 18px;
  }
  .section-dock a { min-width: 82px; padding: 9px 10px; font-size: .72rem; }
  .section-dock a span { display: none; }

  .signatures { padding-top: 105px; }
  .signature-grid {
    width: calc(100vw - 13px);
    margin-left: 0;
    padding: 2px 22px 22px 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .signature-grid::-webkit-scrollbar { display: none; }
  .signature-card:nth-child(n) {
    min-width: min(84vw, 390px);
    min-height: 445px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .signature-card__content { padding-right: 56px; }
  .signature-card__index { font-size: 4rem; }

  .compose-price { margin: 26px 0; }
  .compose-price strong { font-size: 2.6rem; }
  .compose-panel { min-height: auto; }
  .ingredient-chips { margin-top: 20px; gap: 7px; }
  .ingredient-chip { padding: 8px 10px; font-size: .72rem; }

  .brunch-feature { min-height: 470px; }
  .brunch-feature__overlay { padding: 24px 20px; }
  .brunch-feature__overlay h3 { font-size: 2.55rem; }
  .formula-strip { scroll-snap-type: x proximity; }
  .formula-strip > * { scroll-snap-align: start; }
  .category-switcher { position: sticky; z-index: 7; top: 130px; margin-top: 38px; padding: 7px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,249,239,.92); backdrop-filter: blur(12px); }
  .product-rail {
    width: calc(100vw - 13px);
    margin-left: 0;
    padding: 2px 22px 18px 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .product-rail::-webkit-scrollbar { display: none; }
  .menu-product { min-width: min(80vw, 350px); flex: 0 0 auto; }
  .menu-product__image { height: 245px; }

  .drink-shelf { grid-auto-columns: 82%; }
  .drink-card__image { height: 280px; }
  .rail-controls { margin-top: 6px; }

  .story-collage { min-height: 490px; }
  .story-collage__large { height: 395px; }
  .story-label { max-width: 180px; padding: 13px 15px; font-size: .75rem; }

  .order-banner__inner { gap: 30px; }
  .uber-order-card::after { top: 13px; right: 13px; }
  .contact-links a { padding: 17px 0; }

  .mobile-uber-bar {
    right: 9px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 9px;
    min-height: 58px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 22px 55px rgba(0,0,0,.30);
  }
  .back-to-top { right: 13px; bottom: calc(82px + env(safe-area-inset-bottom)); width: 42px; height: 42px; }

  .product-dialog { width: calc(100% - 12px); max-height: calc(100dvh - 12px); border-radius: 22px; }
  .product-dialog__grid { min-height: auto; }
  .product-dialog__image { min-height: 240px; height: 280px; }
  .product-dialog__copy { padding: 26px 18px calc(22px + env(safe-area-inset-bottom)); }
  .product-dialog__copy .button--uber { bottom: 4px; }
  .dialog-close { top: 10px; right: 10px; }
}

@media (max-width: 390px) {
  .shell { width: min(calc(100% - 20px), var(--shell)); }
  .top-strip__track span:first-of-type { display: none; }
  .top-strip__track span:last-of-type { display: inline; }
  .hero-copy h1 { font-size: 3.25rem; }
  .hero-facts span { font-size: .56rem; }
  .section-dock a { min-width: 74px; padding-inline: 8px; }
  .uber-live-badge i { display: none; }
  .signature-card:nth-child(n) { min-width: 88vw; }
  .menu-product { min-width: 84vw; }
}

@media (max-width: 680px) {
  .hero-facts { display: none; }
  .hero-art { margin-top: 18px; }
}
.marquee { transform: rotate(-.65deg); }

/* Direction-aware navigation: more space while descending, instant access when going back up. */
.site-header {
  transition: transform .38s cubic-bezier(.2,.75,.2,1), box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.section-dock { transition: top .32s cubic-bezier(.2,.75,.2,1), box-shadow .25s ease; }
body.scroll-down:not(.near-top) .site-header:not(:focus-within) { transform: translateY(-106%); }
body.scroll-up .site-header,
body.near-top .site-header { transform: translateY(0); }
body.scroll-down:not(.near-top) .section-dock { top: 12px; }
body.scroll-up .section-dock,
body.near-top .section-dock { top: 91px; }
body.scroll-down .mobile-uber-bar.is-visible {
  opacity: 0;
  transform: translateY(calc(135% + env(safe-area-inset-bottom)));
  pointer-events: none;
}
body.scroll-up .mobile-uber-bar.is-visible { opacity: 1; transform: none; pointer-events: auto; }

@media (max-width: 1020px) {
  body.scroll-up .section-dock,
  body.near-top .section-dock { top: 87px; }
}

@media (max-width: 680px) {
  body.scroll-down:not(.near-top) .section-dock { top: 8px; }
  body.scroll-up .section-dock,
  body.near-top .section-dock { top: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header { transform: none !important; }
  .section-dock { transition: none !important; }
  body.scroll-down .mobile-uber-bar.is-visible,
  body.scroll-up .mobile-uber-bar.is-visible { opacity: 1; transform: none; pointer-events: auto; }
}


/* Correctif final : composition lisible sur tous les téléphones */
html, body { max-width: 100%; overflow-x: clip; }
.compose-section, .compose-section .shell, .compose-layout, .compose-explorer, .compose-panel { max-width: 100%; }
.compose-panel__head > div { min-width: 0; }
.compose-panel__included span { min-width: 0; overflow-wrap: anywhere; }

.brunch-availability { max-width: 500px; padding: 18px 20px; border: 1px solid rgba(255,107,26,.22); border-radius: 18px; background: rgba(255,255,255,.72); }
.brunch-availability strong { display: block; margin-bottom: 5px; color: var(--forest); font-size: 1rem; }
.brunch-availability p { margin: 0; font-size: .9rem; line-height: 1.55; }
.brunch-notice { margin: -8px 0 28px; padding: 18px 22px; border: 1px solid rgba(255,107,26,.24); border-radius: 20px; display: flex; align-items: flex-start; gap: 14px; color: var(--forest); background: #fff3e5; box-shadow: 0 12px 28px rgba(7,63,43,.06); }
.brunch-notice > span { font-size: 1.45rem; }
.brunch-notice strong { display: block; margin-bottom: 3px; }
.brunch-notice p { margin: 0; font-size: .86rem; line-height: 1.5; }
.brunch-onsite-badge { display: inline-flex; padding: 9px 13px; border-radius: 999px; color: var(--forest-deep); background: #fff3df; font-size: .78rem; font-weight: 800; }
.dialog-onsite-notice { margin-top: 18px; padding: 15px 17px; border-radius: 16px; display: grid; gap: 4px; color: var(--forest); background: #fff2df; }
.dialog-onsite-notice strong { font-size: .94rem; }
.dialog-onsite-notice span { color: var(--muted); font-size: .8rem; line-height: 1.45; }

@media (max-width: 680px) {
  .compose-section .shell { width: calc(100% - 18px) !important; }
  .compose-explorer { width: 100% !important; padding: 10px !important; overflow: hidden !important; }
  .compose-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .compose-tab { min-height: 56px !important; }
  .compose-panel { width: 100% !important; min-width: 0 !important; padding: 18px 13px !important; overflow: visible !important; }
  .compose-panel__head { width: 100% !important; }
  .compose-panel h3 { font-size: clamp(1.7rem, 9vw, 2.15rem) !important; line-height: 1.02; }
  .compose-panel__description { font-size: .79rem !important; line-height: 1.45; }
  .ingredient-chips { width: 100% !important; grid-template-columns: 1fr !important; gap: 8px !important; }
  .ingredient-chip { width: 100% !important; max-width: 100% !important; min-height: 46px; padding: 10px 12px !important; justify-content: flex-start; overflow: hidden; }
  .ingredient-chip i { flex: 0 0 25px; text-align: center; }
  .ingredient-chip span { display: block; min-width: 0; white-space: normal !important; overflow-wrap: anywhere !important; word-break: normal; }
  .compose-panel__included { width: 100%; font-size: .74rem !important; line-height: 1.4; }
  .compose-foot > span { max-width: 100%; line-height: 1.45; }
  .brunch-notice { margin-top: 0; padding: 15px 16px; }
  .brunch-availability { padding: 15px 16px; }
}
