/* ==========================================================================
   Texas Tea Café — main.css  (mobile-first, max content width 1440px)
   ========================================================================== */

@font-face { font-family: 'Fraunces'; src: url('../assets/fonts/Fraunces.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: block; }
@font-face { font-family: 'Fraunces'; src: url('../assets/fonts/Fraunces-Italic.woff2') format('woff2'); font-weight: 100 900; font-style: italic; font-display: block; }
@font-face { font-family: 'Instrument Sans'; src: url('../assets/fonts/InstrumentSans.woff2') format('woff2'); font-weight: 400 700; font-style: normal; font-display: block; }
@font-face { font-family: 'Instrument Sans'; src: url('../assets/fonts/InstrumentSans-Italic.woff2') format('woff2'); font-weight: 400 700; font-style: italic; font-display: block; }

:root {
  --cream: #FBF4E8;
  --cream-2: #F3E6CF;
  --milk: #FFFBF4;
  --terra: #C4552B;
  --terra-2: #A8431F;
  --amber: #E8962E;
  --honey: #F5BF55;
  --blue: #4F6BD3;
  --blue-2: #8B9CE6;
  --saddle: #A66A3A;
  --ink: #231F1C;
  --tapioca: #150F0C;
  --line: rgba(35, 31, 28, .14);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  --wrap: 1440px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 22px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
  --nav-h: 68px;
  --sticky-h: 72px;
  --fx: 'SOFT' 100, 'WONK' 1, 'opsz' 144;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
.lenis.lenis-smooth { scroll-behavior: auto; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--body); font-size: 1.0625rem; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
address { font-style: normal; }
::selection { background: var(--honey); color: var(--ink); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 10000; }
.skip:focus { top: 12px; }

/* ---------- type ---------- */
h1, h2, h3, .h2, .h3 { font-family: var(--display); font-weight: 600; line-height: 1; letter-spacing: -.02em; margin: 0; text-wrap: balance; font-variation-settings: var(--fx); }
h1 em, h2 em, .h2 em { font-style: italic; font-weight: 500; color: var(--terra); }
.hero__title { font-size: clamp(2.9rem, 11vw, 7.5rem); line-height: .96; }
.h2 { font-size: clamp(2.3rem, 7.5vw, 5.4rem); line-height: .98; }
.h2--xl { font-size: clamp(2.4rem, 8.5vw, 6.6rem); }
.h3 { font-size: clamp(1.5rem, 4.5vw, 2.4rem); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.55; max-width: 62ch; margin: 1.1rem 0 0; }
p { margin: 0; }

/* split text: words wrapped in spans by JS */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .14em; margin-bottom: -.14em; }
.split .w > span { display: inline-block; will-change: transform; }
html.js .split.pending .w > span { transform: translateY(110%); }

/* reveal: only hidden when JS present */
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }

/* ---------- buttons / chips / badges ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.35em; border-radius: 999px; border: 2px solid var(--ink);
  font-weight: 600; font-size: .95rem; line-height: 1; white-space: nowrap;
  background: var(--milk); color: var(--ink);
  transition: transform .35s var(--ease-out), background .25s, color .25s, box-shadow .35s var(--ease-out), border-color .25s;
  position: relative; isolation: isolate; overflow: hidden;
}
.btn .arrow { display: inline-block; transition: transform .35s var(--ease-back); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--terra); border-color: var(--terra); color: #fff; box-shadow: 0 6px 0 -2px var(--terra-2); }
.btn--primary::after { content: ''; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .45s var(--ease-expo); z-index: -1; border-radius: inherit; }
.btn--primary:hover::after { transform: translateY(0); }
.btn--primary:hover { border-color: var(--ink); box-shadow: 0 6px 0 -2px var(--ink); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--honey); border-color: var(--honey); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: var(--cream); }
.btn--outline-light:hover { border-color: var(--cream); background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.05em 1.6em; font-size: 1.05rem; }
.btn--sm { padding: .6em 1em; font-size: .85rem; }
.btn--block { width: 100%; }

.dots { text-align: center; margin-top: 1.25rem; }
.badge i { width: 9px; height: 9px; border-radius: 50%; background: #2fa86b; box-shadow: 0 0 0 3px rgba(47,168,107,.22); flex: none; }
.badge.is-closed i { background: var(--terra); box-shadow: 0 0 0 3px rgba(196,85,43,.2); }
.badge { display: none; align-items: center; gap: .5em; font-size: .82rem; font-weight: 600; }
.badge b { font-weight: 600; }

/* ---------- loader ---------- */
.loader { position: fixed; inset: 0; z-index: 9000; background: var(--terra); display: grid; place-items: center; color: var(--cream); }
html.no-js .loader { display: none; }
.loader__inner { display: grid; place-items: center; gap: 1.6rem; }
.loader__logo { width: min(58vw, 260px); height: auto; filter: drop-shadow(0 18px 30px rgba(0,0,0,.18)); }
.loader__pearls { display: flex; gap: 10px; }
.loader__pearls span { width: 14px; height: 14px; border-radius: 50%; background: var(--tapioca); animation: pearlBounce 1s var(--ease-back) infinite; }
.loader__pearls span:nth-child(2) { animation-delay: .12s; }
.loader__pearls span:nth-child(3) { animation-delay: .24s; }
@keyframes pearlBounce { 0%, 100% { transform: translateY(0); } 40% { transform: translateY(-16px) scale(1.08); } }
.loader__count { position: absolute; right: var(--gutter); bottom: calc(var(--gutter) - 6px); font-family: var(--display); font-variation-settings: var(--fx); font-size: clamp(3rem, 9vw, 6rem); line-height: 1; font-variant-numeric: tabular-nums; }
.loader__place { position: absolute; left: var(--gutter); bottom: var(--gutter); font-weight: 600; letter-spacing: .04em; font-size: .85rem; text-transform: uppercase; }

/* ---------- cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; position: fixed; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--tapioca); pointer-events: none; z-index: 8000; transform: translate(-50%, -50%); mix-blend-mode: multiply; transition: width .25s, height .25s, opacity .25s; opacity: .85; }
  .cursor.is-hover { width: 44px; height: 44px; opacity: .25; }
  .cursor.is-drag { width: 64px; height: 64px; opacity: .18; }
}

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h); background: rgba(251,244,232,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, transform .5s var(--ease-expo); }
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-variation-settings: var(--fx); font-weight: 600; font-size: 1.15rem; letter-spacing: -.01em; }
.nav__brand img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--ink); }
.nav__brand em { font-style: italic; color: var(--terra); font-weight: 500; }
.nav__links { display: none; gap: 1.6rem; font-weight: 600; font-size: .95rem; }
.nav__links a { position: relative; padding: .3em 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--terra); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-expo); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: .8rem; }
.nav__right .btn { display: none; }
.nav__burger { width: 44px; height: 44px; border: 2px solid var(--ink); border-radius: 50%; background: transparent; display: grid; place-items: center; align-content: center; gap: 5px; padding: 0; }
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .35s var(--ease-expo); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 850; background: var(--cream); padding-top: var(--nav-h); clip-path: circle(0% at calc(100% - 44px) 34px); transition: clip-path .7s var(--ease-expo); pointer-events: none; }
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 44px) 34px); pointer-events: auto; }
.mobile-menu__inner { display: flex; flex-direction: column; gap: .2rem; padding-top: 1.5rem; height: 100%; }
.mobile-menu__inner > a { font-family: var(--display); font-variation-settings: var(--fx); font-size: clamp(2.2rem, 9vw, 3.4rem); font-weight: 600; padding: .25em 0; border-bottom: 1px solid var(--line); }
.mobile-menu__foot { margin-top: auto; display: grid; gap: .6rem; padding-bottom: calc(var(--gutter) + env(safe-area-inset-bottom)); }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3rem; overflow: hidden; min-height: min(100svh, 980px); display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.blob--amber { width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; background: var(--honey); right: -18vw; top: 10%; animation: drift 16s ease-in-out infinite alternate; }
.blob--blue { width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; background: var(--blue-2); left: -14vw; bottom: 0; opacity: .38; animation: drift 20s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(-6%, 8%) scale(1.12); } }
.hero__wrap { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
.hero__lede { margin-top: 1.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

.hero__cup { position: relative; width: min(100%, 420px); margin-inline: auto; aspect-ratio: 400 / 520; }
.hero__cup .cup { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
#bobaCanvas { position: absolute; inset: 0; width: 100%; height: 100%; touch-action: pan-y; cursor: grab; }
#bobaCanvas:active { cursor: grabbing; }

/* ---------- why ---------- */
.why { padding: clamp(4rem, 9vw, 8rem) 0; }
.facts { display: grid; gap: 1rem; margin-top: 2.5rem; }
.fact { background: var(--milk); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.4rem 1.3rem; position: relative; overflow: hidden; }
.fact::before { content: ''; position: absolute; width: 140px; height: 140px; right: -50px; top: -50px; border-radius: 50%; background: var(--cream-2); z-index: 0; transition: transform .6s var(--ease-expo); }
.fact:hover::before { transform: scale(1.5); }
.fact > * { position: relative; z-index: 1; }
.fact__big { display: block; font-family: var(--display); font-variation-settings: var(--fx); font-weight: 600; font-size: clamp(2.8rem, 8vw, 4.2rem); line-height: 1; letter-spacing: -.03em; color: var(--terra); }
.fact__big small { font-size: .45em; font-style: italic; font-weight: 500; }
.fact p { margin-top: .5rem; font-weight: 500; }

/* ---------- regulars ---------- */
.regulars { padding: clamp(3rem, 8vw, 7rem) 0; background: var(--cream-2); position: relative; }
.regulars__head { position: sticky; top: var(--nav-h); z-index: 20; background: var(--cream-2); padding: .9rem 0 .7rem; margin-top: -.9rem; }
.cards { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
.card { --tint: var(--amber); background: var(--milk); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--line); display: flex; flex-direction: column; transition: transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo); }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(35,31,28,.35); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 78%, transparent 100%); mask-image: radial-gradient(circle at 50% 50%, #000 78%, transparent 100%); -webkit-mask-size: 260% 260%; mask-size: 260% 260%; -webkit-mask-position: center; mask-position: center; transition: transform 1s var(--ease-expo), -webkit-mask-size 1s var(--ease-expo), mask-size 1s var(--ease-expo); }
.card:hover .card__media img { transform: scale(1.06); -webkit-mask-size: 160% 160%; mask-size: 160% 160%; }
.card__media::after { content: ''; position: absolute; inset: 0; background: var(--tint); opacity: 0; mix-blend-mode: multiply; transition: opacity .6s; pointer-events: none; }
.card:hover .card__media::after { opacity: .12; }
.card__art { aspect-ratio: 4 / 3; position: relative; overflow: hidden; background: var(--tint); }
.card__art .orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,.22); animation: orb 7s ease-in-out infinite alternate; }
.card__art .orb:nth-child(1) { width: 60%; padding-top: 60%; left: -12%; top: 10%; }
.card__art .orb:nth-child(2) { width: 38%; padding-top: 38%; right: 8%; top: -8%; animation-delay: -2s; background: rgba(255,255,255,.3); }
.card__art .orb:nth-child(3) { width: 30%; padding-top: 30%; right: 18%; bottom: -6%; animation-delay: -4s; background: rgba(21,15,12,.28); }
@keyframes orb { from { transform: translate(0, 0) scale(1); } to { transform: translate(6%, -8%) scale(1.15); } }
.card__art--blue { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-2) 100%); }
.card__art--night { background: radial-gradient(120% 100% at 30% 20%, #3b2a24 0%, var(--tapioca) 70%); }
.card__body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card__body h3 { font-size: 1.55rem; }
.card__body p { color: rgba(35,31,28,.78); font-size: .98rem; }
.card__foot { margin-top: auto; padding-top: .9rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.price { font-family: var(--display); font-variation-settings: var(--fx); font-weight: 600; font-size: 1.35rem; font-variant-numeric: tabular-nums; }
.price small { font-family: var(--body); font-size: .62em; font-weight: 500; color: rgba(35,31,28,.55); margin-left: .15em; letter-spacing: 0; }

.season { margin-top: 2.5rem; background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 1.6rem 1.4rem; overflow: hidden; position: relative; }
.season::after { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: var(--terra); right: -110px; top: -120px; opacity: .8; }
.season > * { position: relative; z-index: 1; }
.season__row { display: grid; gap: .8rem; margin-top: 1.2rem; }
.season__item { display: grid; gap: .15rem; padding: .8rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.season__item b { font-family: var(--display); font-variation-settings: var(--fx); font-weight: 600; font-size: 1.3rem; }
.season__item span { color: rgba(251,244,232,.7); font-size: .92rem; }

.build { margin-top: 1.5rem; background: var(--milk); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.build__grid { display: grid; gap: 1.2rem; margin-top: 1rem; }
.build__label { display: block; font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--saddle); }
.build .dots { margin-top: .5rem; }
.build__label { text-align: center; }

.fullmenu { margin-top: 1.5rem; background: var(--milk); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.4rem 1.6rem; }
.fullmenu__tabs { display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none; padding-bottom: .4rem; margin-inline: -1.4rem; padding-inline: 1.4rem; }
.fullmenu__tabs::-webkit-scrollbar { display: none; }
.fullmenu__tabs button { flex: none; padding: .6em 1.05em; border-radius: 999px; border: 1.5px solid var(--line); background: transparent; font-weight: 600; font-size: .9rem; transition: background .25s, color .25s, border-color .25s; }
.fullmenu__tabs button[aria-selected="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.fullmenu__sizes { margin: .9rem 0 .4rem; font-size: .85rem; font-weight: 600; color: var(--saddle); }
.fullmenu__sizes span { font-weight: 400; color: rgba(35,31,28,.6); }
.fullmenu__panel { display: grid; }
.fullmenu__panel[hidden] { display: none; }
.mrow { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: .7rem 0; border-bottom: 1px dashed var(--line); }
.mrow span { font-weight: 500; }
.mrow em { font-style: normal; font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; color: var(--terra-2); font-size: .92rem; }
.mrow--note { border-bottom: 0; }
.mrow--note span { font-weight: 400; font-size: .88rem; color: rgba(35,31,28,.7); }
.fullmenu__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.2rem; font-size: .85rem; color: rgba(35,31,28,.65); }

/* ---------- coffee ---------- */
.coffee { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; overflow: hidden; }
.coffee__wrap { display: grid; gap: 2.5rem; }
.coffee__art { width: min(100%, 420px); margin-inline: auto; }
.mug { width: 100%; height: auto; overflow: visible; }
.steam__p { opacity: 0; transform-box: fill-box; transform-origin: 50% 100%; animation: rise 4.2s ease-in-out infinite; }
.steam__p--2 { animation-delay: 1.4s; animation-duration: 4.8s; }
.steam__p--3 { animation-delay: 2.6s; animation-duration: 4s; }
.steam__o { fill: none; stroke: var(--ink); stroke-width: 18; stroke-linecap: round; stroke-linejoin: round; }
.steam__i { fill: none; stroke: var(--milk); stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; }
@keyframes rise { 0% { opacity: 0; transform: translateY(22px) scale(.8); } 20% { opacity: 1; } 75% { opacity: 1; } 100% { opacity: 0; transform: translateY(-70px) scale(1.12); } }

/* ---------- tea ---------- */
.tea { padding: clamp(4rem, 9vw, 8rem) 0; background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.tea::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 20%, rgba(232,150,46,.22), transparent 70%), radial-gradient(40% 40% at 10% 90%, rgba(79,107,211,.25), transparent 70%); pointer-events: none; }
.tea .h2 em { color: var(--honey); }
.tea .btn--ghost { color: var(--cream); border-color: rgba(255,255,255,.5); }
.tea .btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.tea__wrap { display: grid; gap: 2.5rem; position: relative; }
.tea__art { width: min(100%, 460px); margin-inline: auto; position: relative; }
.teacup { width: 100%; height: auto; overflow: visible; }


/* ---------- eats ---------- */
.eats { padding: clamp(4rem, 9vw, 8rem) 0; }
.eats__wrap { display: grid; gap: 2.2rem; }
.eats__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%); }
.eats__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- room ---------- */
.room { padding: clamp(4rem, 9vw, 8rem) 0; background: var(--cream-2); }
.room__grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.room__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

/* ---------- late ---------- */
.late { padding: clamp(5rem, 12vw, 10rem) 0; background: var(--tapioca); color: var(--cream); position: relative; overflow: hidden; }
.late .h2 em { color: var(--honey); }
.late__geo { position: absolute; inset: 0; pointer-events: none; display: grid; place-items: center; }
.burst { width: min(140vw, 1100px); height: auto; opacity: .16; animation: spin 90s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.late__wrap { position: relative; }
.late__row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.late__hours { display: grid; gap: .1rem; padding: .9rem 1.1rem; border: 1.5px solid rgba(255,255,255,.2); border-radius: 16px; min-width: 150px; }
.late__hours span { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(251,244,232,.65); font-weight: 600; }
.late__hours b { font-family: var(--display); font-variation-settings: var(--fx); font-size: 1.4rem; font-weight: 600; }
.late .hero__cta { margin-top: 2rem; }

/* ---------- word ---------- */
.word { padding: clamp(4rem, 9vw, 8rem) 0; }
.quotes { display: grid; gap: 1.2rem; margin-top: 2rem; }
.quote { margin: 0; background: var(--milk); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; display: grid; gap: 1rem; align-content: start; }
.quote--big p { font-family: var(--display); font-variation-settings: var(--fx); font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.25; font-weight: 500; }
.quote footer { font-size: .85rem; font-weight: 600; color: var(--saddle); }
.quote--cta { background: var(--cream-2); }
.ratings { display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: .9rem; }
.ratings b { font-family: var(--display); font-variation-settings: var(--fx); font-size: 1.5rem; font-weight: 600; color: var(--terra); margin-right: .2em; }
.quote--cta .btn { justify-self: start; }

/* ---------- perks ---------- */
.perks { padding: 0 0 clamp(3rem, 6vw, 5rem); }
.perks__grid { display: grid; gap: .8rem; }
.perk { display: grid; gap: .2rem; padding: 1.2rem 1.3rem; border-radius: 16px; background: var(--ink); color: var(--cream); }
.perk b { font-family: var(--display); font-variation-settings: var(--fx); font-weight: 600; font-size: 1.3rem; }
.perk span { color: rgba(251,244,232,.7); font-size: .92rem; }
.perk a { color: var(--honey); font-weight: 600; }

/* ---------- visit ---------- */
.visit { padding: clamp(4rem, 9vw, 8rem) 0; background: var(--cream-2); }
.visit__wrap { display: grid; gap: 2.5rem; }
.visit__addr { display: grid; gap: .3rem; margin-top: 1.4rem; font-family: var(--display); font-variation-settings: var(--fx); font-size: 1.4rem; font-weight: 500; line-height: 1.25; }
.visit__addr a:hover { color: var(--terra); }
.hours { display: grid; margin-top: 1.4rem; border-top: 1.5px solid var(--line); }
.hours > div { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1.5px solid var(--line); font-weight: 500; }
.hours > div b { font-weight: 600; font-variant-numeric: tabular-nums; }
.hours > div.is-today { color: var(--terra); font-weight: 700; }
.hours > div.is-today span::after { content: ' · today'; font-style: italic; font-weight: 500; }
.visit .hero__cta { margin-top: 1.6rem; }
.visit__media { display: grid; gap: 1rem; }
.visit__photo { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--line); }
.visit__photo img { width: 100%; height: 100%; object-fit: cover; }
.visit__map { border-radius: var(--radius); overflow: hidden; background: var(--milk); border: 1.5px solid var(--line); aspect-ratio: 16 / 10; display: grid; place-items: center; position: relative; }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.footer__wrap { display: grid; gap: 2rem; }
.footer__brand { display: grid; gap: 1rem; }
.footer__brand img { width: 64px; height: 64px; border-radius: 50%; }
.footer__brand p { color: rgba(251,244,232,.75); max-width: 40ch; }
.footer__col { display: grid; gap: .5rem; font-weight: 600; align-content: start; }
.footer__col a:hover { color: var(--honey); }
.footer__fine { grid-column: 1 / -1; font-size: .82rem; color: rgba(251,244,232,.55); border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; }

/* ---------- sticky mobile bar ---------- */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 880; height: calc(var(--sticky-h) + env(safe-area-inset-bottom)); padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: rgba(251,244,232,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: .6rem; transform: translateY(110%); transition: transform .6s var(--ease-expo); }
.stickybar.is-in { transform: none; }
.stickybar .btn { padding-block: .95em; }

/* ---------- breakpoints (mobile-first) ---------- */
@media (min-width: 560px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .season__row { grid-template-columns: repeat(2, 1fr); }
  .build__grid { grid-template-columns: repeat(2, 1fr); }
  .perks__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__wrap { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  :root { --nav-h: 80px; }
  body { padding-bottom: 0; }
  .stickybar { display: none; }
  .nav__links { display: flex; }
  .nav__right .btn { display: inline-flex; }
  .badge { display: inline-flex; }
  .nav__burger { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  .hero__wrap { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 3rem; }
  .hero__cup { width: min(100%, 480px); margin-inline: 0 auto; }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .season__row { grid-template-columns: repeat(5, 1fr); }
  .season__item { border-top: 0; border-left: 1px solid rgba(255,255,255,.14); padding: .2rem 0 .2rem 1rem; }
  .build__grid { grid-template-columns: repeat(4, 1fr); }
  .coffee__wrap { grid-template-columns: .9fr 1.1fr; align-items: center; gap: 4rem; }
  .tea__wrap { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 4rem; }
  .eats__wrap { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
  .eats__media { aspect-ratio: 4 / 3; }
  .room__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .quotes { grid-template-columns: 1.4fr 1fr; }
  .visit__wrap { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .footer__wrap { grid-template-columns: 2fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
}
@media (min-width: 1200px) {
  .hero__wrap { grid-template-columns: 1.2fr .8fr; }
  .hero__cup { width: min(100%, 520px); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .steam__p, .burst, .loader__pearls span, .card__art .orb { animation: none !important; }
  .steam__p { opacity: 1; }
  .steam__p { opacity: .35; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .split.pending .w > span { transform: none; }
  .cursor { display: none !important; }
}
