/* ================================================================
   Chillō café — brand site
   Warm, cream, minimal, high-end.
   ================================================================ */

:root {
  --cream:        #F4EBDD;
  --ivory:        #FBF6ED;
  --paper:        #EDE0CD;
  --brown-900:    #422818;
  --brown-700:    #5C3922;
  --sienna:       #96562F;
  --terracotta:   #C4774B;
  --peach:        #D9A16F;
  --orange:       #E68C3F;
  --berry:        #D95A50;
  --berry-deep:   #B94A44;
  --milk:         #FFF8EF;
  --matcha:       #97AA62;
  --matcha-light: #BBC98D;

  --font-display: "Baloo 2", "Nunito", sans-serif;
  --font-body:    "Nunito", -apple-system, sans-serif;

  --radius: 28px;
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown-700);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--terracotta); color: var(--ivory); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown-900);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--brown-900);
  color: var(--ivory);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 18px rgba(66, 40, 24, 0.18);
}
.btn:hover { transform: translateY(-2px); background: var(--sienna); box-shadow: 0 10px 24px rgba(66,40,24,.22); }

.btn--ghost {
  background: transparent;
  color: var(--brown-900);
  box-shadow: inset 0 0 0 2px var(--brown-900);
}
.btn--ghost:hover { background: var(--brown-900); color: var(--ivory); }

/* ---------------- Nav ---------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  border-bottom: 1px solid rgba(92, 57, 34, 0.08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px; color: var(--brown-900);
  letter-spacing: 0.01em;
}
.nav__logo img { width: 30px; height: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav__links a {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--brown-700);
  position: relative;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover { color: var(--brown-900); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  padding: 10px 22px; border-radius: 999px;
  background: var(--brown-900); color: var(--ivory) !important;
  transition: background .2s ease;
}
.nav__cta:hover { background: var(--sienna); }
.nav__cta::after { display: none; }

/* ---------------- Hero ---------------- */

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 128px 28px 96px;
  position: relative;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(66, 40, 24, 0.22);
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__media-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  background: rgba(66, 40, 24, 0.55);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 999px;
}
.hero__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--sienna);
  background: var(--ivory);
  border: 1px solid rgba(150, 86, 47, 0.22);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: 0 4px 14px rgba(66, 40, 24, 0.06);
}
.hero__logo { width: min(210px, 46vw); }
.hero h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  margin-top: 8px;
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--terracotta); }
.hero p {
  margin-top: 18px;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--sienna);
  max-width: 42ch;
}
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: flex-start; }

.hero__scrollcue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--terracotta);
  opacity: .9;
}
.hero__scrollcue span { animation: bob 2.2s ease-in-out infinite; font-size: 18px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------------- Pour (scroll animation) ---------------- */

.pour {
  position: relative;
  height: 520vh;
  background: linear-gradient(var(--cream), var(--ivory) 12%, var(--ivory) 88%, var(--cream));
}
.pour__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pour__scene {
  height: min(88svh, 760px);
  width: auto;
  display: block;
}
.pour__title {
  position: absolute;
  top: 12svh;
  left: 50%; transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 24px;
  transition: opacity .4s ease;
}
.pour__title h2 { font-size: clamp(28px, 4.4vw, 46px); }
.pour__title p { color: var(--sienna); margin-top: 6px; font-size: 16px; }

.pour__caption {
  position: absolute;
  top: 50%;
  max-width: 250px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.pour__caption.on { opacity: 1; transform: translateY(0); }
.pour__caption--l { left: max(4vw, calc(50% - 460px)); text-align: right; }
.pour__caption--r { right: max(4vw, calc(50% - 460px)); text-align: left; }
.pour__caption .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--terracotta);
  letter-spacing: .22em;
  display: block;
  margin-bottom: 6px;
}
.pour__caption h3 { font-size: clamp(22px, 2.6vw, 30px); }
.pour__caption p { margin-top: 8px; font-size: 15px; color: var(--sienna); }

.pour__final {
  position: absolute;
  bottom: 7svh;
  left: 50%; transform: translate(-50%, 24px);
  text-align: center;
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.pour__final.on { opacity: 1; transform: translate(-50%, 0); }
.pour__final .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--brown-900);
}
.pour__final .price { color: var(--terracotta); font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-top: 2px; }

/* liquid layers get a soft wobble */
.wobble { animation: wobble 3.4s ease-in-out infinite; transform-origin: center; }
@keyframes wobble { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2.5px); } }

/* ---------------- Sections ---------------- */

.section { padding: 110px 0; }
.section--tint { background: var(--ivory); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* About / values */
.about__head { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.about__head h2 { font-size: clamp(30px, 4.4vw, 48px); }
.about__head p { margin-top: 16px; color: var(--sienna); font-size: 18px; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value {
  background: var(--ivory);
  border: 1px solid rgba(92, 57, 34, 0.08);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.section--tint .value { background: var(--cream); }
.value:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(66,40,24,.10); }
.value svg { width: 56px; height: 56px; margin: 0 auto 16px; }
.value h3 { font-size: 21px; margin-bottom: 8px; }
.value p { font-size: 15px; color: var(--sienna); }

/* Visit */
.visit { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.visit h2 { font-size: clamp(30px, 4.2vw, 46px); }
.visit__lead { margin-top: 16px; color: var(--sienna); font-size: 17px; max-width: 46ch; }
.visit__facts { margin-top: 34px; display: grid; gap: 22px; }
.fact { display: flex; gap: 16px; align-items: flex-start; }
.fact svg { width: 26px; height: 26px; flex: none; margin-top: 3px; }
.fact h4 { font-size: 16px; letter-spacing: .02em; }
.fact p { font-size: 15.5px; color: var(--sienna); }
.fact a { color: var(--terracotta); font-weight: 700; }
.fact a:hover { text-decoration: underline; }

.visit__card {
  background: var(--sienna);
  border-radius: 36px;
  padding: 48px 40px;
  color: var(--ivory);
  text-align: center;
  box-shadow: 0 30px 60px rgba(66, 40, 24, 0.22);
  position: relative;
  overflow: hidden;
}
.visit__card img { width: min(320px, 80%); margin: 0 auto; }
.visit__card p {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 18px;
  font-size: 17px;
  color: #F3DCC8;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.gallery__item { margin: 0; position: relative; border-radius: 22px; overflow: hidden; background: var(--paper); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery__item:hover > img { transform: scale(1.04); }
.gallery__ph {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(135deg, var(--paper), var(--cream));
  border: 1px solid rgba(92, 57, 34, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section--tint .gallery__ph { background: linear-gradient(135deg, #EFE2CF, #F7EFE2); }
.gallery__ph img { width: 54px; height: auto; opacity: 0.55; }
.gallery__ph span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
}
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ivory);
  background: linear-gradient(transparent, rgba(66, 40, 24, 0.55));
}
.gallery__note { text-align: center; margin-top: 30px; color: var(--sienna); }
.gallery__note a { color: var(--terracotta); font-weight: 700; }
.gallery__note a:hover { text-decoration: underline; }

/* Loyalty */
.loyalty { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.loyalty h2 { font-size: clamp(30px, 4.2vw, 46px); }
.loyalty__lead { margin-top: 16px; color: var(--sienna); font-size: 17px; max-width: 46ch; }
.loyalty__perks { list-style: none; margin: 26px 0 30px; display: grid; gap: 14px; }
.loyalty__perks li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--brown-700);
}
.loyalty__perks li span {
  flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); color: var(--terracotta); font-size: 16px;
}
.loyalty__soon { margin-top: 14px; font-size: 14px; color: var(--peach); font-weight: 600; font-family: var(--font-display); }

.loyalty__card {
  background: var(--sienna);
  border-radius: 32px;
  padding: 44px 40px;
  color: var(--ivory);
  box-shadow: 0 30px 60px rgba(66, 40, 24, 0.22);
  text-align: center;
}
.loyalty__tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ivory);
  display: block;
  margin-bottom: 26px;
}
.loyalty__stamps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 260px;
  margin: 0 auto;
}
.loyalty__stamps .stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(251, 246, 237, 0.4);
  display: grid; place-items: center;
  font-size: 22px;
  color: rgba(251, 246, 237, 0.55);
}
.loyalty__stamps .stamp.on {
  background: var(--ivory);
  border-style: solid;
  border-color: var(--ivory);
  color: var(--sienna);
}
.loyalty__stamps .stamp.free {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ivory);
}
.loyalty__cardnote {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #F3DCC8;
}

/* Map */
.visit__map {
  margin-top: 56px;
  border-radius: 28px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(92, 57, 34, 0.10);
  box-shadow: 0 18px 40px rgba(66, 40, 24, 0.10);
}
.visit__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.visit__map-note {
  background: var(--ivory);
  border-top: 1px solid rgba(92, 57, 34, 0.08);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--sienna);
}
.visit__map-note a { color: var(--terracotta); }
.visit__map-note a:hover { text-decoration: underline; }
.visit__map { height: auto; }
.visit__map iframe { height: 380px; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--ivory);
  border: 1px solid rgba(92, 57, 34, 0.09);
  border-radius: 20px;
  padding: 20px 26px;
  transition: box-shadow .25s ease;
}
.faq details[open] { box-shadow: 0 12px 28px rgba(66, 40, 24, 0.08); }
.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--brown-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--terracotta);
  font-size: 24px;
  line-height: 1;
  transition: transform .25s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--sienna); font-size: 15.5px; }
.faq details a { color: var(--terracotta); font-weight: 700; }
.faq details a:hover { text-decoration: underline; }

/* ---------------- Footer ---------------- */

.footer {
  background: var(--brown-900);
  color: #E8D5C2;
  padding: 64px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.footer__brand .mark { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--ivory); }
.footer__brand .mark img { width: 32px; height: auto; }
.footer__brand p { margin-top: 14px; font-size: 15px; max-width: 30ch; color: #CBB09A; }
.footer h4 {
  color: var(--ivory);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 10px; font-size: 15px; }
.footer a:hover { color: var(--ivory); text-decoration: underline; }
.footer__bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 213, 194, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #B99A80;
}

/* ---------------- Menu page ---------------- */

.page-hero {
  padding: 170px 0 70px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(38px, 6vw, 62px); }
.page-hero h1 em { font-style: normal; color: var(--terracotta); }
.page-hero p { margin-top: 14px; color: var(--sienna); font-size: 18px; }

.steps {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 64px);
  margin-top: 46px;
  flex-wrap: wrap;
}
.step { display: flex; align-items: center; gap: 12px; }
.step .n {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: var(--ivory);
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(230, 140, 63, .35);
}
.step span { font-family: var(--font-display); font-weight: 700; color: var(--brown-900); font-size: 16px; }

.menu-section { padding: 74px 0; }
.menu-section--tint { background: var(--ivory); }

.menu-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.menu-grid__art { position: sticky; top: 110px; }
.menu-grid__art svg { width: 100%; height: auto; }
.menu-grid__art .art-note {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--terracotta);
  font-size: 14.5px;
}

.menu-head { margin-bottom: 26px; }
.menu-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.menu-head .sub { color: var(--sienna); margin-top: 8px; font-size: 16px; }
.menu-head .pill {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  background: var(--brown-900);
  color: var(--ivory);
  padding: 7px 16px;
  border-radius: 999px;
}

.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(92, 57, 34, 0.18);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list .item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--brown-900);
  white-space: nowrap;
}
.menu-list .tag {
  font-size: 12.5px;
  color: var(--terracotta);
  font-weight: 700;
  background: rgba(196, 119, 75, 0.12);
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.menu-list .dots { flex: 1; border-bottom: 2px dotted rgba(92, 57, 34, 0.22); transform: translateY(-4px); }
.menu-list .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--sienna);
  white-space: nowrap;
}
.menu-list li.star .item::before { content: "★ "; color: var(--orange); font-size: 14px; }

.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }

/* substitutes + picks band */
.band { padding: 84px 0; background: var(--brown-900); color: var(--ivory); }
.band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.band h3 { color: var(--ivory); font-size: 24px; margin-bottom: 20px; }
.band h3 .pricehint { color: var(--peach); font-size: 16px; margin-left: 8px; }
.subs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; list-style: none; }
.subs li {
  display: flex; align-items: center; gap: 12px;
  background: rgba(251, 246, 237, 0.07);
  border: 1px solid rgba(251, 246, 237, 0.12);
  padding: 14px 18px;
  border-radius: 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
}
.subs svg { width: 26px; height: 26px; flex: none; }
.picks { list-style: none; display: grid; gap: 14px; }
.picks li {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
}
.picks .star { color: var(--orange); }
.picks .note { color: var(--peach); font-size: 14.5px; font-weight: 600; }

/* Self-serve bubble tea steps */
.selfserve { background: var(--brown-900); color: #E8D5C2; padding: 92px 0; }
.selfserve__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.selfserve__eyebrow { color: var(--peach); }
.selfserve__head h2 { color: var(--ivory); font-size: clamp(28px, 4vw, 42px); }
.selfserve__head p { color: #CBB09A; margin-top: 14px; font-size: 17px; }
.steps6 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 12px 6px;
}
.step6 { display: flex; flex-direction: column; align-items: center; text-align: center; width: 150px; }
.step6__circle {
  position: relative;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--ivory);
  display: grid; place-items: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
.step6__circle svg { width: 46px; height: 46px; }
.step6__n {
  position: absolute; top: -6px; left: -6px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: var(--ivory);
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(230, 140, 63, 0.4);
}
.step6__en {
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 15px; color: var(--peach); margin-top: 15px;
}
.step6__zh { font-size: 13px; color: #B99A80; margin-top: 3px; }
.step6__arrow { align-self: flex-start; margin-top: 34px; color: var(--peach); font-size: 22px; font-weight: 700; opacity: 0.7; }
.steps6__note {
  margin: 46px auto 0;
  width: max-content; max-width: 92%;
  display: flex; align-items: center; gap: 10px;
  background: rgba(230, 140, 63, 0.15);
  border: 1px solid rgba(230, 140, 63, 0.4);
  color: #F3DCC8;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 12px 22px; border-radius: 999px;
}
.steps6__note svg { width: 22px; height: 22px; flex: none; }

.menu-cta { text-align: center; padding: 90px 24px 110px; }
.menu-cta h2 { font-size: clamp(28px, 4vw, 42px); }
.menu-cta p { color: var(--sienna); margin: 12px 0 28px; }

/* ---------------- Responsive ---------------- */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 116px 24px 80px;
    text-align: center;
  }
  .hero__content { align-items: center; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__media { aspect-ratio: 16 / 11; width: 100%; max-width: 560px; margin: 0 auto; }
  .hero__scrollcue { display: none; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .visit { grid-template-columns: 1fr; gap: 44px; }
  .band .wrap { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid__art { position: static; max-width: 240px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .loyalty { grid-template-columns: 1fr; gap: 40px; }
  .loyalty__card { order: 2; }
  .step6__arrow { display: none; }
  .step6 { width: 30%; min-width: 120px; }
}

@media (max-width: 640px) {
  .nav__links li:not(:last-child) { display: none; }
  .values { grid-template-columns: 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  .subs { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .step6 { width: 30%; }
  .pour__caption {
    max-width: none;
    width: min(88vw, 420px);
    text-align: center !important;
    left: 50% !important; right: auto !important;
    transform: translate(-50%, 26px);
    top: auto;
    bottom: 12svh;
    background: color-mix(in srgb, var(--ivory) 88%, transparent);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 14px 18px;
  }
  .pour__caption.on { transform: translate(-50%, 0); }
  .pour__final { bottom: 3svh; }
  .pour__scene { height: min(74svh, 620px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wobble, .hero__scrollcue span { animation: none; }
}
