/* ==========================================================================
   the KAHVI House — Cars · Business · Coffee
   Soft & elegant: cream / ivory, blush pink, warm brown
   ========================================================================== */

:root {
  /* Colour */
  --cream:        #FDF9F3;
  --ivory:        #FFFCF7;
  --sand:         #F6EDE2;
  --blush:        #E9BEBB;
  --blush-soft:   #F7E3E0;
  --blush-deep:   #C4807B;
  --brown:        #4A3428;
  --brown-mid:    #85684F;
  --brown-soft:   #B79C89;
  --ink:          #3B2A1F;
  --ink-soft:     #6B584A;
  --line:         #EADFD2;
  --white:        #FFFFFF;

  /* Type */
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --script:  "Parisienne", "Snell Roundhand", cursive;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Space & shape */
  --radius:    22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(74, 52, 40, .06);
  --shadow:    0 10px 30px rgba(74, 52, 40, .09);
  --shadow-lg: 0 24px 60px rgba(74, 52, 40, .13);
  --nav-h: 62px;
  --wrap: 1140px;
  --gutter: clamp(18px, 5vw, 40px);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--brown);
  margin: 0 0 .45em;
}
h1 { font-size: clamp(2.5rem, 8.6vw, 4.3rem); }
h2 { font-size: clamp(2rem, 6.4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 4vw, 1.7rem); }
p  { margin: 0 0 1.1em; }

/* ------------------------------------------------------------- helpers -- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 780px; }
.section { padding: clamp(64px, 12vw, 116px) 0; }
.section--sand  { background: var(--sand); }
.section--ivory { background: var(--ivory); }
.section--blush { background: linear-gradient(180deg, var(--blush-soft) 0%, #FBEEEB 100%); }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: 8px; transform: translate(-50%, -300%);
  background: var(--brown); color: var(--cream); padding: 10px 18px;
  border-radius: var(--radius-pill); z-index: 200; text-decoration: none;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.eyebrow {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--blush-deep); margin: 0 0 .9em;
}
.eyebrow--brown { color: var(--brown-mid); }
.script {
  font-family: var(--script); font-size: clamp(1.5rem, 4.6vw, 2.1rem);
  color: var(--blush-deep); line-height: 1.35;
}
.lede { font-size: clamp(1.05rem, 2.6vw, 1.25rem); color: var(--ink-soft); line-height: 1.75; }
.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }

.rule { width: 54px; height: 1px; background: var(--blush); border: 0; margin: 0 0 1.6rem; }
.center .rule, .rule--center { margin-inline: auto; }

/* -------------------------------------------------------------- button -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 30px; min-height: 50px;
  font-size: .95rem; font-weight: 600; letter-spacing: .02em;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brown); color: var(--ivory); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #5B4132; box-shadow: var(--shadow); }
.btn--blush { background: var(--blush); color: var(--brown); box-shadow: var(--shadow-sm); }
.btn--blush:hover { background: var(--blush-deep); color: var(--ivory); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--brown); border-color: var(--brown-soft); }
.btn--ghost:hover { background: var(--brown); color: var(--ivory); border-color: var(--brown); }
.btn--light { background: var(--ivory); color: var(--brown); box-shadow: var(--shadow-sm); }
.btn--light:hover { box-shadow: var(--shadow); }
.btn--sm { padding: 11px 20px; min-height: 42px; font-size: .85rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row, .btn-row--center { justify-content: center; }

:where(a, button, input, [tabindex]):focus-visible {
  outline: 2.5px solid var(--blush-deep); outline-offset: 3px; border-radius: 6px;
}

/* ----------------------------------------------------------------- nav -- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 249, 243, .9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 16px rgba(74, 52, 40, .05); }
.nav__inner {
  display: grid; grid-template-columns: 46px 1fr 46px; align-items: center;
  min-height: var(--nav-h); gap: 8px;
}
.nav__logo { justify-self: center; text-decoration: none; text-align: center; display: block; line-height: 1; }
.logo-mark { display: block; font-family: var(--display); color: var(--brown); }
.logo-mark .the {
  display: block; font-family: var(--script); font-size: .82rem;
  color: var(--blush-deep); line-height: 1; margin-bottom: 1px;
}
.logo-mark .kahvi {
  display: block; font-size: 1.24rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; padding-left: .3em;
}
.logo-mark .house {
  display: block; font-size: .62rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--brown-mid); padding-left: .34em; margin-top: 3px;
}
.nav__links { display: none; }
.nav__cta { display: none; }

.nav__toggle, .nav__phone {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: none; border: 0; padding: 0; cursor: pointer; color: var(--brown);
  border-radius: 50%; text-decoration: none;
}
.nav__toggle:hover, .nav__phone:hover { background: var(--sand); }
.nav__toggle span {
  display: block; width: 20px; height: 1.6px; background: var(--brown);
  border-radius: 2px; transition: transform .3s ease, opacity .2s ease;
}
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.nav__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .34s cubic-bezier(.4, 0, .2, 1);
  border-top: 1px solid transparent;
}
.nav__panel.is-open { grid-template-rows: 1fr; border-top-color: var(--line); }
.nav__panel > div { overflow: hidden; }
.nav__panel ul { list-style: none; margin: 0; padding: 8px 0 4px; }
.nav__panel a {
  display: block; padding: 13px 2px; text-decoration: none;
  font-size: 1.05rem; color: var(--brown); border-bottom: 1px solid var(--line);
}
.nav__panel .btn { margin: 18px 0 22px; }

@media (min-width: 940px) {
  :root { --nav-h: 78px; }
  .nav__inner { grid-template-columns: 1fr auto 1fr; }
  .nav__toggle, .nav__phone { display: none; }
  .nav__panel { display: none; }
  .nav__links {
    display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px);
    list-style: none; margin: 0; padding: 0;
  }
  .nav__links a {
    text-decoration: none; font-size: .82rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--brown-mid);
    padding: 6px 0; position: relative; transition: color .2s ease;
  }
  .nav__links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: var(--blush-deep); transform: scaleX(0); transform-origin: left;
    transition: transform .28s ease;
  }
  .nav__links a:hover { color: var(--brown); }
  .nav__links a:hover::after { transform: scaleX(1); }
  .nav__cta { display: flex; justify-self: end; }
  .logo-mark .kahvi { font-size: 1.5rem; }
  .logo-mark .the { font-size: .95rem; }
}

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--blush-soft) 0%, var(--cream) 62%);
}
.hero::before {
  content: ""; position: absolute; top: -18%; right: -22%; width: 62vw; height: 62vw;
  max-width: 640px; max-height: 640px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(233, 190, 187, .5), rgba(233, 190, 187, 0) 68%);
  pointer-events: none;
}
.hero__inner {
  position: relative; display: grid; gap: clamp(40px, 6vw, 64px);
  align-items: center; padding: clamp(40px, 8vw, 84px) 0 clamp(58px, 9vw, 100px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--ivory); color: var(--brown); box-shadow: var(--shadow-sm);
  border-radius: var(--radius-pill); padding: 9px 20px; margin-bottom: 22px;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blush-deep); }
.hero h1 { margin-bottom: .16em; }
.hero h1 em {
  font-family: var(--script); font-style: normal; color: var(--blush-deep);
  display: block; font-size: .74em; line-height: 1.25;
}
.hero__price {
  font-size: .95rem; color: var(--brown-mid); font-weight: 700;
  letter-spacing: .04em; margin-bottom: 1.7em;
}
.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero__tag {
  position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%);
  background: var(--ivory); border-radius: var(--radius-pill); padding: 11px 26px;
  box-shadow: var(--shadow); white-space: nowrap;
  font-family: var(--script); color: var(--blush-deep); font-size: 1.15rem;
}
@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1.02fr .98fr; }
  .hero__media { order: 2; }
}

/* --------------------------------------------------------------- intro -- */
.intro { background: var(--ivory); }
.intro p {
  font-family: var(--display); font-size: clamp(1.45rem, 4.2vw, 2.05rem);
  line-height: 1.5; color: var(--brown); margin: 0;
}

/* --------------------------------------------------------------- steps -- */
.steps { display: grid; gap: 22px; margin: 46px 0 42px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.step {
  background: var(--ivory); border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.step__num {
  width: 46px; height: 46px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; background: var(--blush-soft);
  color: var(--brown); font-family: var(--display); font-size: 1.35rem; font-weight: 700;
}
.step h3 { font-size: 1.28rem; margin-bottom: .3em; }
.step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

.qr-card {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  background: var(--ivory); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm); margin: 0;
}
.qr-card img { width: 168px; height: 168px; border-radius: 10px; }
.qr-card figcaption {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brown-mid); font-weight: 700;
}

/* ---------------------------------------------------------- menu cards -- */
.cards { display: grid; gap: 24px; }
@media (min-width: 700px)  { .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--ivory); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
a.card { text-decoration: none; color: inherit; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .25em; }
.card__body p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1em; }
.card__price { margin-top: auto; font-weight: 700; color: var(--blush-deep); letter-spacing: .02em; }
.card__more {
  margin-top: auto; font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brown-mid);
}

/* --------------------------------------------------------------- shops -- */
.shop-card { text-align: center; }
.shop-card .card__body { padding: 30px 22px 28px; }
/* Real shop logos are wordmarks on their own background colours, so they get a
   rounded brand tile rather than a circular avatar crop. */
.shop-logo {
  display: block; width: 100%; max-width: 230px; height: auto;
  aspect-ratio: 2 / 1; object-fit: cover;
  margin: 0 auto 20px; border-radius: 14px;
  background: var(--sand); overflow: hidden;
  box-shadow: 0 1px 5px rgba(74, 52, 40, .09);
}
.shop-card h3 { font-size: 1.3rem; margin-bottom: .2em; }
.shop-card .role {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blush-deep); font-weight: 700; margin-bottom: .8em;
}
.shop-card .handle { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.3em; }
.note-pill {
  display: inline-flex; align-items: center; gap: .5em; background: var(--blush-soft);
  color: var(--brown); border-radius: var(--radius-pill); padding: 9px 18px;
  font-size: .82rem; font-weight: 600; letter-spacing: .03em;
}

/* ---------------------------------------------------------- club/perks -- */
.club {
  background: var(--brown); color: var(--sand); border-radius: var(--radius-lg);
  padding: clamp(36px, 7vw, 68px); box-shadow: var(--shadow);
}
.club h2, .club h3 { color: var(--ivory); }
.club .eyebrow { color: var(--blush); }
.club .price {
  font-family: var(--display); font-size: clamp(3rem, 10vw, 4.4rem);
  color: var(--blush); line-height: 1; margin: 0 0 .1em;
}
.club .price span {
  font-family: var(--body); font-size: .95rem; font-weight: 600;
  letter-spacing: .1em; color: var(--brown-soft);
}
.perks { list-style: none; margin: 30px 0; padding: 0; display: grid; gap: 14px; }
.perks li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
.perks li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 4px; border-radius: 50%;
  background: var(--blush) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A3428' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
@media (min-width: 840px) {
  .club__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
  .perks { margin-top: 0; }
}

/* ------------------------------------------------------------- rewards -- */
.punch {
  background: var(--ivory); border-radius: var(--radius-lg);
  padding: clamp(30px, 6vw, 52px); box-shadow: var(--shadow-sm);
}
.punch__dots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; max-width: 400px; margin: 0 auto 28px; }
@media (min-width: 620px) { .punch__dots { grid-template-columns: repeat(10, 1fr); max-width: 660px; } }
.punch__dots span {
  aspect-ratio: 1; border-radius: 50%; border: 1.5px dashed var(--blush);
  display: grid; place-items: center; font-size: .8rem; color: var(--brown-soft);
}
.punch__dots span.free {
  border: 0; background: var(--blush); color: var(--brown);
  font-family: var(--display); font-weight: 700; font-size: .95rem;
}
.split { display: grid; gap: 26px; }
@media (min-width: 760px) { .split { grid-template-columns: 1fr 1fr; gap: 30px; } }
.split > div {
  background: var(--ivory); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------- visit -- */
.visit__grid { display: grid; gap: 34px; }
@media (min-width: 880px) { .visit__grid { grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; } }
.info-list { margin: 0 0 28px; padding: 0; display: grid; gap: 22px; }
.info-list dt {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blush-deep); font-weight: 700; margin-bottom: .35em;
}
.info-list dd { margin: 0; font-size: 1.05rem; line-height: 1.6; }
.info-list a { color: var(--brown); text-decoration: none; border-bottom: 1px solid var(--blush); }
.info-list a:hover { border-bottom-color: var(--brown); }
.map-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  background: var(--sand); aspect-ratio: 4 / 3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* -------------------------------------------------------------- footer -- */
.footer { background: var(--brown); color: var(--brown-soft); padding: clamp(52px, 9vw, 78px) 0 32px; }
.footer .logo-mark { color: var(--ivory); }
.footer .logo-mark .the { color: var(--blush); }
.footer .logo-mark .kahvi { font-size: 1.6rem; }
.footer .logo-mark .house { color: var(--brown-soft); }
.footer__grid { display: grid; gap: 36px; text-align: center; }
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; text-align: left; align-items: start; }
  .footer .logo-mark { display: inline-block; }
}
.footer h4 {
  color: var(--ivory); font-family: var(--body); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2em;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer a { color: var(--brown-soft); text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: var(--blush); }
.footer .tagline {
  font-size: .76rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--blush); margin: 16px 0 14px;
}
.footer__legal {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .11);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  font-size: .84rem;
}
.footer__legal span { color: rgba(255, 255, 255, .3); }
.footer__bottom {
  margin-top: 18px; padding-top: 0;
  font-size: .82rem; text-align: center; color: rgba(255, 255, 255, .45);
}
.footer__bottom p { margin: 0; }

/* ---------------------------------------------------------- page heads -- */
.page-head {
  background: linear-gradient(170deg, var(--blush-soft) 0%, var(--cream) 78%);
  padding: clamp(46px, 9vw, 84px) 0 clamp(34px, 6vw, 54px); text-align: center;
}
.page-head h1 { margin-bottom: .2em; }
.back-link {
  display: inline-flex; align-items: center; gap: .5em; text-decoration: none;
  color: var(--brown-mid); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.back-link:hover { color: var(--brown); }

/* ---------------------------------------------------------- menu page -- */
.menu-nav {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: rgba(253, 249, 243, .95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.menu-nav ul {
  display: flex; gap: 8px; list-style: none; margin: 0;
  padding: 12px var(--gutter); overflow-x: auto; scrollbar-width: none;
}
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a {
  display: block; white-space: nowrap; text-decoration: none; padding: 8px 16px;
  border-radius: var(--radius-pill); background: var(--ivory); border: 1px solid var(--line);
  font-size: .82rem; font-weight: 600; color: var(--brown-mid);
}
.menu-nav a:hover { background: var(--blush-soft); border-color: var(--blush); color: var(--brown); }

.menu-block { padding: clamp(44px, 7vw, 72px) 0 0; }
.menu-block:last-of-type { padding-bottom: clamp(46px, 8vw, 78px); }
.menu-block__head { margin-bottom: 26px; }
.menu-block__head h2 { margin-bottom: .12em; }
.menu-block__head p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.menu-table { background: var(--ivory); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.menu-sizes {
  display: none; padding: 14px 26px; background: var(--sand);
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brown-mid); font-weight: 700;
}
.menu-item { padding: 22px 24px; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item h3 { font-size: 1.22rem; margin: 0 0 .18em; }
.menu-item p { margin: 0 0 .7em; font-size: .93rem; color: var(--ink-soft); }
.menu-prices { display: flex; flex-wrap: wrap; gap: 8px; }
.menu-prices span {
  display: inline-flex; align-items: baseline; gap: .4em;
  background: var(--blush-soft); border-radius: var(--radius-pill);
  padding: 5px 14px; font-size: .88rem; font-weight: 700; color: var(--brown);
}
.menu-prices span i {
  font-style: normal; font-size: .66rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brown-mid); font-weight: 700;
}

@media (min-width: 720px) {
  .menu-sizes { display: grid; grid-template-columns: 1fr 300px; }
  .menu-sizes > div { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
  .menu-sizes--2 > div { grid-template-columns: repeat(2, 1fr); }
  .menu-sizes--1 > div { grid-template-columns: 1fr; }
  .menu-item { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: center; }
  .menu-item p { margin-bottom: 0; }
  .menu-prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .menu-prices--2 { grid-template-columns: repeat(2, 1fr); }
  .menu-prices--1 { grid-template-columns: 1fr; }
  .menu-prices span { justify-content: center; background: transparent; padding: 5px 0; font-size: 1.02rem; }
  .menu-prices span i { display: none; }
  .menu-prices--show-size span { background: var(--blush-soft); border-radius: var(--radius-pill); padding: 5px 14px; }
  .menu-prices--show-size span i { display: inline; }
}

.flavor-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.flavor-cloud span {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 7px 15px; font-size: .87rem; color: var(--ink-soft);
}
.flavor-group + .flavor-group { margin-top: 30px; }
.flavor-group h3 { font-size: 1.15rem; margin-bottom: .7em; }

/* ---------------------------------------------------------- shop page -- */
.shop-hero { text-align: center; }
.shop-hero .shop-logo {
  max-width: 320px; margin-bottom: 26px; border-radius: 18px;
  box-shadow: var(--shadow); background: var(--ivory);
}
.shop-hero h1 { font-size: clamp(2.2rem, 8vw, 3.4rem); margin-bottom: .12em; }
.shop-hero .role {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blush-deep); font-weight: 700; margin-bottom: 1.1em;
}
.book-panel {
  background: var(--ivory); border-radius: var(--radius-lg);
  padding: clamp(30px, 6vw, 52px); box-shadow: var(--shadow-sm);
  display: grid; gap: 30px; align-items: center; text-align: center;
}
@media (min-width: 760px) {
  .book-panel { grid-template-columns: 220px 1fr; text-align: left; gap: 44px; }
  .book-panel .btn-row { justify-content: flex-start; }
  .book-panel .services { justify-content: flex-start; }
}
.book-panel img.qr { width: 200px; height: 200px; margin: 0 auto; border-radius: 12px; }
.services { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.services li {
  background: var(--blush-soft); color: var(--brown); border-radius: var(--radius-pill);
  padding: 8px 17px; font-size: .89rem; font-weight: 600;
}

/* ------------------------------------------------------------ legal -- */
.legal { max-width: 760px; }
.legal h2 { font-size: clamp(1.5rem, 4.4vw, 2rem); margin-top: 2.2em; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.15rem; margin-top: 1.8em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 1.2em; display: grid; gap: .55em; margin-bottom: 1.2em; }
.legal a { color: var(--brown); }
.legal strong { color: var(--ink); }
.legal .updated {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brown-mid); font-weight: 700; margin-bottom: 2.4em;
}
.legal .callout {
  background: var(--ivory); border-left: 3px solid var(--blush);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 26px; margin: 1.6em 0;
}
.legal .callout p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- reveal -- */
/* Only hide content when JS is running to bring it back (see the inline
   script in <head> that sets .js on <html>). No JS, no hidden content. */
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }

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