/* ============================================================
   OREEBUBBLES — Croydon · style.css
   Playful, pink, boba-inspired design system
   ============================================================ */

:root {
  --cocoa: #2f171f;
  --cocoa-2: #3e222c;
  --cocoa-3: #4c2b38;
  --cream: #fdf3ee;
  --cream-2: #f9e7e0;
  --paper: #fffbf8;
  --pink: #d9578b;
  --pink-dark: #b93f70;
  --blush: #e5aebf;
  --blush-light: #f3d3dc;
  --caramel: #c98a4b;
  --matcha: #5e8c4f;
  --ink: #33212a;
  --muted: #8d707b;
  --line: #efd9d3;

  --ff-display: "Fredoka", "Trebuchet MS", sans-serif;
  --ff-body: "Outfit", system-ui, -apple-system, sans-serif;

  --radius: 20px;
  --cup: 24px 24px 999px 999px;
  --shadow-soft: 0 10px 40px rgb(47 23 31 / .10);
  --shadow-lift: 0 18px 60px rgb(47 23 31 / .16);
  --wrap: 1180px;

  /* scattered boba pearls, tiled */
  --pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='%23ffffff' fill-opacity='.06'%3E%3Ccircle cx='14' cy='18' r='5'/%3E%3Ccircle cx='58' cy='10' r='3.4'/%3E%3Ccircle cx='74' cy='44' r='5'/%3E%3Ccircle cx='34' cy='52' r='3.4'/%3E%3Ccircle cx='10' cy='70' r='3.4'/%3E%3Ccircle cx='52' cy='76' r='5'/%3E%3C/g%3E%3C/svg%3E");
  --pattern-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='%232f171f' fill-opacity='.05'%3E%3Ccircle cx='14' cy='18' r='5'/%3E%3Ccircle cx='58' cy='10' r='3.4'/%3E%3Ccircle cx='74' cy='44' r='5'/%3E%3Ccircle cx='34' cy='52' r='3.4'/%3E%3Ccircle cx='10' cy='70' r='3.4'/%3E%3Ccircle cx='52' cy='76' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 4vw, 36px); }

::selection { background: var(--pink); color: #fff; }

/* ---------- wordmark ---------- */
.wordmark {
  font-family: var(--ff-display); font-weight: 600; letter-spacing: -.015em;
  display: inline-flex; align-items: baseline;
}
.wordmark em { font-style: normal; color: var(--pink); }

/* ---------- typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink);
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--caramel); border-radius: 2px; }
.section-title { font-size: clamp(34px, 4.6vw, 54px); font-weight: 600; letter-spacing: -.015em; }
.section-head { display: grid; gap: 14px; max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.lead { font-size: clamp(16px, 1.9vw, 19px); color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px; letter-spacing: .01em; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 8px 24px rgb(217 87 139 / .38); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgb(255 255 255 / .35); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgb(255 255 255 / .08); transform: translateY(-2px); }
.btn-dark { background: var(--cocoa); color: var(--cream); }
.btn-dark:hover { background: var(--cocoa-3); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--cocoa); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
}
/* frosted background lives on a pseudo-element: backdrop-filter on the header
   itself would make it the containing block for the fixed mobile nav overlay */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgb(253 243 238 / .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgb(47 23 31 / .06);
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.site-header.scrolled::before { opacity: 1; }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 30px; height: 30px; }
.brand .wordmark { font-size: 23px; color: #fff; transition: color .25s ease; }
.site-header.scrolled .brand .wordmark { color: var(--cocoa); }
.brand:hover { opacity: .85; }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.main-nav a {
  text-decoration: none; font-weight: 500; font-size: 15.5px;
  color: rgb(255 255 255 / .85);
  transition: color .18s ease;
  position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--caramel); border-radius: 2px; transition: width .22s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }
.site-header.scrolled .main-nav a { color: var(--ink); }
.site-header.scrolled .main-nav a:hover { color: var(--pink); }

.nav-call {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  background: var(--pink); color: #fff !important; font-weight: 600; font-size: 14.5px;
  box-shadow: 0 6px 18px rgb(217 87 139 / .38);
  transition: background .18s ease, transform .18s ease;
}
.nav-call:hover { background: var(--pink-dark); transform: translateY(-1px); }
.nav-call svg { width: 15px; height: 15px; fill: currentColor; }
.nav-call::after { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; z-index: 70; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; position: absolute; left: 10px; right: 10px; height: 2.4px;
  border-radius: 2px; background: #fff; transition: transform .25s ease, top .25s ease, opacity .2s ease;
}
.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after { background: var(--ink); }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; left: 0; right: 0; }
.nav-toggle span::after { top: 8px; left: 0; right: 0; }
body.nav-open .nav-toggle span { background: transparent !important; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); background: #fff !important; }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); background: #fff !important; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 65;
    flex-direction: column; justify-content: center; gap: 30px;
    background: rgb(47 23 31 / .97);
    opacity: 0; pointer-events: none; transition: opacity .28s ease;
  }
  .main-nav a { font-size: 24px; font-family: var(--ff-display); font-weight: 600; color: #fff !important; }
  .site-header.scrolled .main-nav a { color: #fff !important; }
  body.nav-open .main-nav { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 85% -10%, #5a2c40 0%, transparent 55%),
    radial-gradient(900px 700px at -10% 110%, #33402a 0%, transparent 50%),
    var(--cocoa);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--pattern);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.25));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.25));
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding-top: clamp(130px, 16vh, 180px);
  padding-bottom: clamp(70px, 10vh, 120px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 22px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: "●"; font-size: 9px; }
.hero-title {
  font-size: clamp(52px, 7.2vw, 86px); font-weight: 600; letter-spacing: -.02em;
  color: #fff; margin-bottom: 10px;
}
.hero-tag {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(19px, 2.4vw, 26px); color: var(--blush);
  margin-bottom: 18px;
}
.hero-sub {
  max-width: 46ch; color: rgb(255 255 255 / .72);
  font-size: clamp(15.5px, 1.8vw, 17.5px); margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; }
.hero-point { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgb(255 255 255 / .78); }
.hero-point svg { width: 19px; height: 19px; fill: var(--caramel); flex: none; }

/* hero visual */
.hero-visual { position: relative; justify-self: center; width: min(460px, 100%); }
.hero-cup {
  position: relative;
  border-radius: var(--cup);
  overflow: hidden;
  border: 6px solid rgb(255 255 255 / .12);
  box-shadow: 0 30px 80px rgb(0 0 0 / .45);
  aspect-ratio: 4 / 5;
}
.hero-cup img { width: 100%; height: 100%; object-fit: cover; }
.hero-cup::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .25), inset 0 -80px 120px rgb(47 23 31 / .35);
}
/* rotating stamp */
.stamp {
  position: absolute; top: -34px; right: -30px; width: 128px; height: 128px; z-index: 3;
  filter: drop-shadow(0 10px 24px rgb(0 0 0 / .4));
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stamp text { font-family: var(--ff-body); font-size: 11.4px; font-weight: 700; letter-spacing: .32em; fill: var(--cream); }
.stamp .stamp-bg { fill: var(--pink); }
.stamp .stamp-pearl { fill: var(--cocoa); }

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: rgb(255 251 248 / .97); color: var(--ink);
  border-radius: 16px; padding: 13px 18px;
  box-shadow: var(--shadow-lift);
  font-size: 14px; font-weight: 600; line-height: 1.3;
}
.float-card small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; }
.float-card .fc-ico {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cream-2); color: var(--pink);
}
.float-card .fc-ico svg { width: 21px; height: 21px; fill: currentColor; }
.fc-hours { bottom: 34px; left: -44px; animation: bob 6s ease-in-out infinite; }
.fc-rating { top: 84px; left: -58px; animation: bob 7s ease-in-out .8s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  color: rgb(255 255 255 / .5); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after { content: ""; width: 1.5px; height: 34px; background: linear-gradient(rgb(255 255 255 / .6), transparent); animation: drip 2s ease-in-out infinite; }
@keyframes drip { 50% { transform: translateY(6px); opacity: .5; } }

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-points { justify-content: center; }
  .hero-visual { margin-top: 26px; }
  .fc-hours { left: -8px; }
  .fc-rating { left: -12px; }
  .stamp { right: -12px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--pink); color: #fff;
  overflow: hidden; white-space: nowrap;
  padding: 13px 0;
  border-block: 1px solid rgb(0 0 0 / .12);
}
.marquee-track { display: inline-flex; gap: 0; animation: marquee 30s linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: 26px; padding-inline: 13px;
  font-weight: 600; font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
}
.marquee span::after { content: "●"; color: var(--cocoa); font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .stamp, .fc-hours, .fc-rating, .hero-scroll::after { animation: none !important; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-block: clamp(70px, 10vw, 130px); position: relative; }
.about::before {
  content: ""; position: absolute; inset: 0; background-image: var(--pattern-dark); pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.5), transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.5), transparent);
}
.about .wrap { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(36px, 6vw, 80px); align-items: center; }

.about-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-visual .av {
  border-radius: var(--cup); overflow: hidden; box-shadow: var(--shadow-soft);
  border: 5px solid var(--paper);
}
.about-visual .av img { width: 100%; height: 100%; object-fit: cover; }
.about-visual .av-1 { aspect-ratio: 3/4.1; }
.about-visual .av-2 { aspect-ratio: 3/4.1; margin-top: 44px; }
.about-badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--cocoa); color: var(--cream);
  border-radius: 999px; width: 120px; height: 120px;
  display: grid; place-items: center; text-align: center;
  font-family: var(--ff-display); font-weight: 600; font-size: 15px; line-height: 1.25;
  box-shadow: 0 14px 40px rgb(47 23 31 / .4);
  border: 4px solid var(--cream);
  rotate: -6deg;
}
.about-badge b { font-size: 24px; color: var(--blush); display: block; font-weight: 700; }

.about-body { display: grid; gap: 22px; }
.about-body .lead { color: var(--ink); font-size: clamp(17px, 2vw, 20px); }
.about-body p + p { color: var(--muted); }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.feature {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line);
  padding: 18px; border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.feature-ico {
  width: 44px; height: 44px; flex: none; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff;
}
.feature-ico svg { width: 22px; height: 22px; fill: currentColor; }
.feature h4 { font-family: var(--ff-body); font-size: 15.5px; font-weight: 700; margin-bottom: 3px; }
.feature p { font-size: 13.8px; color: var(--muted); line-height: 1.45; }

@media (max-width: 900px) {
  .about .wrap { grid-template-columns: minmax(0, 1fr); }
  .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding-block: clamp(70px, 10vw, 130px);
  background:
    radial-gradient(800px 400px at 110% 0%, #f6ded6 0%, transparent 60%),
    var(--cream-2);
  border-block: 1px solid var(--line);
  position: relative;
}
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: clamp(30px, 4vw, 46px);
}
.menu-tab {
  padding: 11px 20px; border-radius: 999px;
  background: var(--paper); border: 1.5px solid var(--line);
  font-weight: 600; font-size: 14.5px; color: var(--muted);
  transition: all .18s ease;
}
.menu-tab:hover { border-color: var(--blush); color: var(--ink); transform: translateY(-1px); }
.menu-tab.is-active {
  background: var(--cocoa); border-color: var(--cocoa); color: var(--cream);
  box-shadow: 0 8px 22px rgb(47 23 31 / .25);
}

.menu-panel { animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }

.menu-section { margin-bottom: clamp(34px, 5vw, 54px); }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.menu-section-head h3 {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 600; color: var(--cocoa);
  display: inline-flex; align-items: center; gap: 14px;
}
.menu-section-head h3::after { content: ""; width: 46px; height: 2px; background: var(--caramel); border-radius: 2px; }
.menu-note { font-size: 14px; color: var(--muted); font-style: italic; }

.menu-items {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 4.5vw, 64px); row-gap: 20px;
}
.menu-item { break-inside: avoid; }
.item-row { display: flex; align-items: baseline; gap: 10px; }
.item-name { font-weight: 600; font-size: 16.5px; color: var(--cocoa); display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.item-dots { flex: 1; border-bottom: 2px dotted #d8b6ab; transform: translateY(-4px); min-width: 24px; }
.item-price { font-family: var(--ff-display); font-weight: 600; font-size: 17px; color: var(--pink); white-space: nowrap; }
.item-desc { font-size: 14px; color: var(--muted); margin-top: 4px; max-width: 52ch; line-height: 1.5; }

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 999px; text-transform: uppercase;
  position: relative; top: -1.5px;
}
.badge svg { width: 11px; height: 11px; fill: currentColor; }
.badge-v { background: #e3efe5; color: var(--matcha); }
.badge-sig { background: #f9e2ec; color: var(--pink-dark); }

.menu-extras {
  margin-top: 18px; padding: 14px 18px;
  background: var(--paper); border: 1px dashed var(--blush);
  border-radius: 14px;
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.extras-label {
  font-family: var(--ff-display); font-weight: 600; color: var(--pink);
  letter-spacing: .04em; text-transform: uppercase; font-size: 13px;
}
.menu-extras ul { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.menu-extras li { font-size: 14px; color: var(--muted); }
.menu-extras li b { color: var(--ink); font-weight: 600; }

.menu-cta { text-align: center; margin-top: clamp(36px, 5vw, 54px); display: grid; gap: 14px; justify-items: center; }
.menu-cta p { color: var(--muted); font-size: 15px; }

@media (max-width: 760px) {
  .menu-items { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding-block: clamp(70px, 9vw, 110px); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid figure {
  margin: 0; border-radius: var(--cup); overflow: hidden;
  aspect-ratio: 3/3.9; box-shadow: var(--shadow-soft);
  border: 5px solid var(--paper);
  position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 30px 16px 18px;
  background: linear-gradient(transparent, rgb(47 23 31 / .82));
  color: var(--cream); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-align: center;
}
.gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(4) { translate: 0 26px; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(4) { translate: 0 0; }
}

/* ============================================================
   SOCIALS
   ============================================================ */
.social { padding-block: clamp(70px, 9vw, 110px); text-align: center; }
.social .section-head { margin-bottom: 10px; }
.social-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

/* ============================================================
   MATCHA BAR (dark feature)
   ============================================================ */
.matcha-bar {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(900px 500px at 15% 0%, #33402a 0%, transparent 55%),
    var(--cocoa);
}
.matcha-bar::before { content: ""; position: absolute; inset: 0; background-image: var(--pattern); opacity: .8; pointer-events: none; }
.matcha-bar .wrap {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(36px, 6vw, 80px); align-items: center;
  padding-block: clamp(70px, 10vw, 120px);
}
.matcha-bar .kicker { color: #9fc48b; }
.matcha-bar .kicker::before { background: #9fc48b; }
.matcha-bar h2 { color: #fff; }
.matcha-bar .lead { color: rgb(255 255 255 / .75); }
.matcha-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.matcha-visual { position: relative; }
.matcha-visual .mv {
  border-radius: var(--cup); overflow: hidden; aspect-ratio: 4/4.6;
  border: 6px solid rgb(255 255 255 / .12);
  box-shadow: 0 30px 80px rgb(0 0 0 / .45);
}
.matcha-visual img { width: 100%; height: 100%; object-fit: cover; }
.matcha-seal {
  position: absolute; top: -28px; left: -28px; width: 116px; height: 116px;
  animation: spin 26s linear infinite reverse;
  filter: drop-shadow(0 10px 24px rgb(0 0 0 / .4));
}
.matcha-seal .seal-bg { fill: var(--matcha); }
.matcha-seal text { font-family: var(--ff-body); font-size: 11.6px; font-weight: 700; letter-spacing: .3em; fill: #fff; }
@media (max-width: 900px) {
  .matcha-bar .wrap { grid-template-columns: minmax(0, 1fr); }
  .matcha-visual { max-width: 420px; margin-inline: auto; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding-block: clamp(70px, 10vw, 120px); text-align: center; position: relative; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 9px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; color: var(--ink);
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}
.rating-pill svg { width: 17px; height: 17px; fill: var(--caramel); }
.review-quote {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(21px, 3vw, 30px); line-height: 1.4;
  max-width: 21em; margin-inline: auto; color: var(--cocoa);
}
.review-meta { margin-top: 18px; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.reviews .btn { margin-top: 30px; }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--cream-2); border-top: 1px solid var(--line); padding-block: clamp(70px, 10vw, 120px); }
.visit-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(26px, 4vw, 44px); align-items: stretch; }
.visit-cards { display: grid; gap: 16px; align-content: start; }
.vcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 18px; align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.vcard-ico {
  width: 48px; height: 48px; flex: none; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--cocoa); color: var(--blush);
}
.vcard-ico svg { width: 23px; height: 23px; fill: currentColor; }
.vcard h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.vcard p, .vcard li { color: var(--muted); font-size: 15px; }
.vcard a { color: var(--pink); font-weight: 600; text-decoration: none; }
.vcard a:hover { text-decoration: underline; }
.hours-list { display: grid; gap: 5px; margin-top: 4px; }
.hours-list li { display: flex; justify-content: space-between; gap: 24px; }
.hours-list b { color: var(--ink); font-weight: 600; }
.hours-list .closed { color: var(--pink); font-weight: 600; }
.visit-map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); min-height: 420px; background: var(--paper);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: minmax(0, 1fr); } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cocoa); color: rgb(255 255 255 / .75); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background-image: var(--pattern); opacity: .5; pointer-events: none; }
.footer-main {
  position: relative;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 70px);
  padding-block: clamp(50px, 7vw, 80px);
}
.footer-brand .wordmark { font-size: 27px; color: #fff; margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 14.5px; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgb(255 255 255 / .08); color: var(--cream);
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.footer-social a:hover { background: var(--pink); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--ff-body); color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgb(255 255 255 / .72); text-decoration: none; font-size: 15px; transition: color .15s ease; }
.footer-col a:hover { color: var(--blush); }
.footer-col li { font-size: 15px; }
.footer-bottom {
  position: relative;
  border-top: 1px solid rgb(255 255 255 / .1);
  padding-block: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: rgb(255 255 255 / .45);
}
.footer-bottom a { color: inherit; }
@media (max-width: 820px) { .footer-main { grid-template-columns: minmax(0, 1fr); } }

/* ---------- reveal on scroll (only when JS is available) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--cocoa); color: var(--cream);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lift);
  opacity: 0; pointer-events: none; translate: 0 10px;
  transition: opacity .25s ease, translate .25s ease, background .2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; translate: 0 0; }
.to-top:hover { background: var(--pink); }
.to-top svg { width: 20px; height: 20px; fill: currentColor; }
