:root {
  --ink: #1c2a38;
  --ink-soft: #445566;
  --muted: #6b7c8c;
  --sky-top: #b9e0f4;
  --sky-mid: #d7eef8;
  --sky-low: #eef6fb;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --line: rgba(28, 42, 56, 0.1);
  --coral: #d94b4b;
  --coral-deep: #c03d3d;
  --shadow: 0 18px 48px rgba(50, 100, 140, 0.12);
  --radius: 26px;
  --dock-h: 74px;
  --display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --soft: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--ink);
  background: var(--sky-low);
  overflow-x: hidden;
  padding-bottom: calc(var(--dock-h) + 1.4rem + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
}

body.gate-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  color: inherit;
}

/* Sky */
.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 20% -10%, #c8e9f8 0%, transparent 60%),
    radial-gradient(700px 420px at 100% 10%, #d9f0fa 0%, transparent 55%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 38%, var(--sky-low) 100%);
}

.sky__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sky__haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.35), transparent 35%),
    linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.4) 100%);
}

.sky__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cards: solid + grit, blur only on overlays */
.glass {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.agegate {
  background: rgba(150, 190, 215, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sheet__panel.glass,
.dock.glass,
.help-panel.glass,
.shopbar.is-scrolled {
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Order Ahead treatment */
.oa {
  display: inline-block;
  font-weight: 900;
  padding: 0 0.2em 0.08em 0.06em;
  line-height: 1.25;
  vertical-align: baseline;
  background-image: linear-gradient(
    100deg,
    #ff6b7a,
    #ffb347,
    #6ad1a0,
    #5bb8ff,
    #b07cff,
    #ff6b7a
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: oa-shift 5.5s linear infinite;
  filter: drop-shadow(0 0 8px rgba(120, 180, 255, 0.4));
  overflow: visible;
}

.review p .oa {
  font-style: normal;
  transform: none;
}

@keyframes oa-shift {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

/* Floating logo — no box, shimmer clipped to the logo pixels */
.logo-float {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}

.logo-float img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 16px 26px rgba(40, 90, 130, 0.2));
  position: relative;
  z-index: 1;
}

.logo-float::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.75) 45%,
    rgba(190, 230, 255, 0.35) 52%,
    transparent 70%
  );
  background-size: 220% 100%;
  animation: mist-sweep 6.5s ease-in-out infinite;
  -webkit-mask-image: url("../assets/logo-cloud.webp");
  mask-image: url("../assets/logo-cloud.webp");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  mix-blend-mode: soft-light;
}

@keyframes mist-sweep {
  0%, 100% { background-position: 120% 50%; opacity: 0.25; }
  50% { background-position: -20% 50%; opacity: 0.85; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.logo-float--gate {
  width: min(300px, 78vw);
  margin-bottom: 1rem;
  animation: floaty 5.5s ease-in-out infinite;
}

.logo-float--hero {
  width: min(240px, 62vw);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
}

body.hero-ready .logo-float--hero {
  animation:
    logo-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    floaty 5.5s ease-in-out 0.85s infinite;
}

@keyframes logo-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Age gate */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(150, 190, 215, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 0;
}

.agegate.is-live {
  opacity: 1;
}

.agegate.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.agegate__stack {
  width: min(400px, 100%);
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}

.agegate.is-live .agegate__stack {
  animation: gate-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes gate-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.agegate__panel {
  border-radius: 28px;
  padding: 1.4rem 1.25rem 1.35rem;
}

.agegate h1 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.agegate p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.agegate__actions {
  display: grid;
  gap: 0.6rem;
}

/* Shop chrome — expands on scroll */
.shopbar {
  position: sticky;
  top: 0;
  z-index: 45;
  padding: 0.55rem 0.85rem 0.55rem;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.shopbar__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.shopbar__logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  line-height: 0;
}

.shopbar__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 1px 0 rgba(40, 90, 120, 0.35))
    drop-shadow(0 4px 8px rgba(30, 70, 100, 0.35))
    drop-shadow(0 10px 18px rgba(20, 60, 90, 0.28));
}

.shopbar__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: var(--display);
  margin: 0 auto;
}

.shopbar__links a {
  text-decoration: none;
  color: var(--ink-soft);
}

.shopbar__utils {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.15rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.shopbar__icon {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.shopbar__icon:active {
  transform: scale(0.94);
}

.shopbar__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}

.shopbar__search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.25s ease;
}

.shopbar__search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  font-family: var(--display);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: none;
}

.shopbar__search input::placeholder {
  color: var(--muted);
}

.shopbar__search button {
  width: 44px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--coral), var(--coral-deep));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.shopbar.is-scrolled {
  background: rgba(232, 245, 251, 0.9);
  box-shadow: 0 8px 24px rgba(40, 90, 130, 0.1);
  padding-bottom: 0.7rem;
}

.shopbar.is-scrolled .shopbar__logo,
.shopbar.is-scrolled .shopbar__utils {
  opacity: 1;
  pointer-events: auto;
}

.shopbar.is-scrolled .shopbar__search {
  max-height: 56px;
  opacity: 1;
  margin-top: 0.55rem;
  pointer-events: auto;
}

.shopbar.is-scrolled .shopbar__links {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hours-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease;
  width: fit-content;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
}

body.hero-ready .hours-pill {
  animation: hours-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

@keyframes hours-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hours-pill:active {
  transform: scale(0.96);
}

.hero__mark {
  margin: 0 0 0.95rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.hero__mark-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.hero__mark-sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.72em;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--ink-soft);
}

.hero__mark .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
}

.hero__mark.is-in .word {
  animation: word-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__mark.is-in .hero__mark-row .word:nth-child(1) { animation-delay: 0.08s; }
.hero__mark.is-in .hero__mark-row .word:nth-child(2) { animation-delay: 0.18s; }
.hero__mark.is-in .hero__mark-sub { animation-delay: 0.3s; }

.feature {
  width: 100%;
  border-radius: 28px;
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  text-align: left;
  margin-bottom: 0.85rem;
  opacity: 0;
  transform: translateY(18px);
}

body.hero-ready .feature {
  animation: feature-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

@keyframes feature-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.feature__art {
  border: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.95), transparent 45%),
    linear-gradient(160deg, #d7ebf6, #b7d7ea);
  border-radius: 20px;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 1.4rem 1rem 1.8rem;
  cursor: pointer;
  overflow: visible;
}

.feature__art img {
  max-height: 210px;
  width: auto;
  filter: drop-shadow(0 18px 22px rgba(20, 50, 80, 0.28));
}

.feature__copy .eyebrow {
  margin-bottom: 0.35rem;
}

.feature__copy h1 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.55rem, 6vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.feature__copy > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.feature__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.promo-duo {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(14px);
}

body.hero-ready .promo-duo {
  animation: feature-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.promo {
  display: grid;
  grid-template-rows: 110px auto;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  padding: 0.75rem;
  text-align: left;
  transition: transform 0.15s ease;
  overflow: visible;
}

.promo:active {
  transform: scale(0.98);
}

.promo img {
  width: auto;
  max-width: 100%;
  max-height: 100px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(30, 60, 90, 0.22));
}

.promo strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
}

.promo em {
  font-family: var(--soft);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .feature {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 1.2rem;
  }

  .feature__art {
    min-height: 280px;
  }

  .promo-duo {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__slogan {
  margin: 0 0 0.9rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 8.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: center;
  width: 100%;
}

.hero__line {
  display: block;
}

.hero__line + .hero__line {
  margin-top: 0.3em;
}

.hero__line--soft {
  font-family: var(--soft);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
  font-size: 0.88em;
  color: var(--ink-soft);
}

.hero__slogan .word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transform: translateY(18px);
  vertical-align: middle;
}

.hero__slogan .word:last-child {
  margin-right: 0;
}

.gold-num {
  position: relative;
  display: inline-block;
  margin-left: 0.08em;
}

.gold-num__text {
  display: inline-flex;
  align-items: baseline;
  font-family: "Arial Black", "Arial Bold", Impact, "Helvetica Neue", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background-image: linear-gradient(
    165deg,
    #fff4c2 0%,
    #ffe08a 18%,
    #e6b422 42%,
    #f7d56a 55%,
    #b8860b 72%,
    #fff1a8 100%
  );
  background-size: 140% 140%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.6px rgba(90, 55, 5, 0.45);
  paint-order: stroke fill;
  filter:
    drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.95))
    drop-shadow(0 1px 0 rgba(255, 245, 200, 0.9))
    drop-shadow(0 2px 0 rgba(140, 90, 10, 0.35))
    drop-shadow(0 4px 8px rgba(180, 120, 20, 0.28));
  animation: gold-shimmer 3.8s ease-in-out infinite;
}

.gold-num__hash {
  font-family: "Arial Black", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  margin-right: 0.02em;
}

.gold-num__one {
  font-family: "Arial Black", Impact, sans-serif;
  font-weight: 900;
}

@keyframes gold-shimmer {
  0%, 100% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
}

.gold-num__spark {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #ffe9a0 35%, transparent 70%);
  box-shadow:
    0 0 6px 2px rgba(255, 240, 180, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: scale(0.4);
  animation: gold-spark 4.2s ease-in-out infinite;
  pointer-events: none;
}

.gold-num__spark::before,
.gold-num__spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  margin: -1px 0 0 -7px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  border-radius: 2px;
}

.gold-num__spark::after {
  transform: rotate(90deg);
}

@keyframes gold-spark {
  0%, 72%, 100% { opacity: 0; transform: scale(0.35); }
  78% { opacity: 1; transform: scale(1.15); }
  86% { opacity: 0.85; transform: scale(0.9); }
  92% { opacity: 0; transform: scale(0.4); }
}

.hero__slogan.is-in .word {
  animation: word-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__line:first-child .word:nth-child(1) { animation-delay: 0.08s; }
.hero__line:first-child .word:nth-child(2) { animation-delay: 0.2s; }
.hero__line--soft .word:nth-child(1) { animation-delay: 0.34s; }
.hero__line--soft .word:nth-child(2) { animation-delay: 0.42s; }
.hero__line--soft .word:nth-child(3) { animation-delay: 0.5s; }
.hero__line--soft .word:nth-child(4) { animation-delay: 0.58s; }

@keyframes word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__lead {
  margin: 0 auto 1.25rem;
  max-width: 30ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 0.88rem 1.25rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.96);
}

.btn--solid {
  background: linear-gradient(180deg, var(--coral), var(--coral-deep));
  color: #fff;
  box-shadow: 0 10px 22px rgba(217, 75, 75, 0.28);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.btn--mini {
  padding: 0.48rem 0.75rem;
  font-size: 0.78rem;
}

/* Blocks */
.block {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.6rem 0 0.4rem;
}

.block--order {
  padding-top: 2.2rem;
}

.block--visit {
  padding-bottom: 1rem;
}

.block__intro {
  margin-bottom: 1rem;
}

.block__intro--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.block__aside {
  margin: 0;
  max-width: 16ch;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.block__intro h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.55rem, 5.5vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Lanes */
.lane-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 58vw);
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.85rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.lane {
  position: relative;
  scroll-snap-align: start;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  padding: 1.1rem 1rem 1.15rem;
  cursor: pointer;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35));
  box-shadow: 0 10px 28px rgba(50, 100, 140, 0.1);
  transition: transform 0.15s ease;
}

.lane:nth-child(1) { background: linear-gradient(160deg, #ffe8b8, #ffd08a); }
.lane:nth-child(2) { background: linear-gradient(160deg, #cfefff, #9fd4f0); }
.lane:nth-child(3) { background: linear-gradient(160deg, #d8f6e8, #a6e3c6); }
.lane:nth-child(4) { background: linear-gradient(160deg, #ffd9e6, #f3a8c2); }
.lane:nth-child(5) { background: linear-gradient(160deg, #e6ddff, #c4b4f0); }
.lane:nth-child(6) { background: linear-gradient(160deg, #f3e2cf, #e2c4a0); }

.lane:active {
  transform: scale(0.97);
}

.lane__icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  box-shadow: 0 4px 10px rgba(40, 80, 110, 0.1);
}

.lane__icon svg,
.lane__icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.lane__icon img {
  filter: brightness(0) saturate(100%);
  opacity: 0.78;
}

.lane__tag {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.lane strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.lane em {
  font-family: var(--soft);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Brands marquee */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0.65rem;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}

.brand-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(50, 100, 140, 0.08);
  transition: transform 0.15s ease;
}

.brand-chip:active {
  transform: scale(0.96);
}

.brand-chip img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 3px;
}

.brand-chip span {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Products */
.rail-nav {
  display: none;
  gap: 0.4rem;
}

.rail-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.rail-nav__btn:active {
  transform: scale(0.94);
}

.product-rail,
.review-rail {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(80, 130, 170, 0.45) transparent;
  cursor: grab;
}

.product-rail:active,
.review-rail:active {
  cursor: grabbing;
}

.product-rail::-webkit-scrollbar,
.review-rail::-webkit-scrollbar,
.lane-rail::-webkit-scrollbar {
  height: 6px;
}

.product-rail::-webkit-scrollbar-thumb,
.review-rail::-webkit-scrollbar-thumb,
.lane-rail::-webkit-scrollbar-thumb {
  background: rgba(80, 130, 170, 0.4);
  border-radius: 999px;
}

.product {
  flex: 0 0 min(78vw, 270px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease;
}

.product:active {
  transform: scale(0.985);
}

.product__media {
  border: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.9), transparent 50%),
    linear-gradient(180deg, rgba(230, 244, 252, 0.9), rgba(210, 232, 244, 0.7));
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 1.6rem 1.2rem 1.9rem;
  cursor: pointer;
  overflow: visible;
  border-radius: 20px 20px 0 0;
}

.product__media img {
  max-height: 170px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(30, 60, 90, 0.28));
  transition: transform 0.25s ease;
}

.product__media:active img {
  transform: scale(1.04);
}

.product__media--tall img {
  max-height: 200px;
}

.product__body {
  padding: 0.95rem 1rem 1.05rem;
}

.product h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.product__body > p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.product__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product__price {
  font-weight: 900;
  font-size: 1.05rem;
}

.product__actions {
  display: flex;
  gap: 0.3rem;
}

/* Order panel */
.order-panel {
  border-radius: 30px;
  padding: 1.35rem 1.15rem 1.4rem;
}

.order-panel h2 {
  margin: 0.2rem 0 0.7rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.order-panel h2 em {
  font-family: var(--soft);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}

.order-panel__lead {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 36ch;
}

.steps {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.steps__hit {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.steps__hit:active {
  transform: scale(0.985);
}

.steps__num {
  font-family: var(--soft);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
}

.steps__hit strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  margin-bottom: 0.1rem;
}

.steps__hit small {
  color: var(--muted);
  font-size: 0.85rem;
}

.qr-demo {
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  padding: 1.15rem 1rem 1.2rem;
  min-height: 230px;
  overflow: hidden;
}

.qr-demo.is-flipped .qr-demo__front {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.qr-demo.is-flipped .qr-demo__back {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.qr-demo__front,
.qr-demo__back {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.qr-demo__back {
  position: absolute;
  inset: 0;
  padding: 1.15rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  background: rgba(255, 255, 255, 0.92);
}

.qr-demo__back[hidden] {
  display: flex;
}

.qr-demo__label {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.qr-demo h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 900;
}

.qr-demo__front > p:not(.qr-demo__label) {
  margin: 0 0 1rem;
  color: var(--muted);
}

.qr-code {
  width: 148px;
  height: 148px;
  margin: 0.35rem 0 0.7rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(11, 1fr);
  gap: 2px;
  padding: 10px;
}

.qr-code i {
  display: block;
  border-radius: 1px;
  background: transparent;
}

.qr-code i.on {
  background: #1c2a38;
}

.qr-demo__meta {
  margin: 0 0 0.2rem;
  font-weight: 800;
  font-size: 0.9rem;
}

.qr-demo__note {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Reviews */
.review {
  flex: 0 0 min(82vw, 300px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.review:active {
  transform: scale(0.985);
}

.review__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #6ec4ea, #3a8fbc);
}

.review__avatar--b {
  background: linear-gradient(145deg, #f0a0b8, #d46a8a);
}

.review__avatar--c {
  background: linear-gradient(145deg, #8fd6b5, #4fa884);
}

.review__top strong {
  display: block;
  font-size: 0.92rem;
}

.review__top small {
  color: var(--muted);
  font-size: 0.78rem;
}

.review__stars {
  color: #d9a441;
  font-size: 0.8rem;
}

.review p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
  font-size: 0.94rem;
  font-family: var(--soft);
  font-style: italic;
}

/* Visit / map */
.visit {
  border-radius: 28px;
  overflow: hidden;
  display: grid;
}

.visit__map {
  min-height: 220px;
  background: #cfe6f2;
}

.visit__map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.visit__info {
  padding: 1.15rem 1.1rem 1.25rem;
}

.visit__info h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.2rem;
}

.visit__info > p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.visit__info ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.visit__info li a,
.visit__info li button {
  width: 100%;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.35rem;
  text-align: left;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0.35rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
}

.visit__info li span {
  color: var(--muted);
  font-weight: 700;
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Footer */
.site-foot {
  width: min(980px, calc(100% - 2rem));
  margin: 2rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-foot p {
  margin: 0 0 0.25rem;
}

.site-foot__fine {
  font-size: 0.76rem;
}

/* Dock */
.dock {
  position: fixed;
  left: 50%;
  bottom: calc(0.65rem + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(120%);
  z-index: 50;
  width: min(420px, calc(100% - 1.2rem));
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: 22px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.25s ease,
    padding 0.25s ease,
    gap 0.25s ease;
  transform-origin: center bottom;
}

.dock.is-shown {
  transform: translateX(-50%) translateY(0);
}

.dock.is-compact {
  width: min(300px, calc(100% - 2.4rem));
  padding: 0.28rem;
  gap: 0.2rem;
  border-radius: 18px;
}

.dock.is-compact .dock__btn {
  min-height: 42px;
  font-size: 0.62rem;
  gap: 0;
}

.dock.is-compact .dock__icon svg {
  width: 15px;
  height: 15px;
}

.dock.is-compact .dock__btn--main {
  font-size: 0.68rem;
}

.dock__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-height: 54px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: transform 0.15s ease;
}

.dock__btn:active {
  transform: scale(0.96);
}

.dock__btn--main {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  font-size: 0.78rem;
}

.dock__icon {
  display: grid;
  place-items: center;
  line-height: 0;
}

/* Support chat fab */
.help-fab {
  position: fixed;
  right: calc(0.85rem + env(safe-area-inset-right));
  bottom: calc(var(--dock-h) + 1.15rem + env(safe-area-inset-bottom));
  z-index: 55;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, #5ec4ef, #2f8fc4);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(47, 143, 196, 0.35);
  transition: transform 0.15s ease;
}

.help-fab:active {
  transform: scale(0.94);
}

.help-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(94, 196, 239, 0.65);
  animation: help-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes help-pulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.help-panel {
  position: fixed;
  right: calc(0.85rem + env(safe-area-inset-right));
  bottom: calc(var(--dock-h) + 4.4rem + env(safe-area-inset-bottom));
  z-index: 56;
  width: min(280px, calc(100vw - 1.7rem));
  border-radius: 20px;
  padding: 0.85rem 0.9rem 0.95rem;
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.help-panel.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.help-panel[hidden] {
  display: block;
}

.help-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-family: var(--display);
}

.help-panel__x {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 42, 56, 0.06);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.help-panel__msgs {
  margin-bottom: 0.55rem;
}

.help-bubble {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border-radius: 16px 16px 16px 6px;
  background: rgba(94, 196, 239, 0.18);
  color: var(--ink);
  font-family: var(--soft);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.35;
}

.help-panel__note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
}

@media (min-width: 1100px) {
  .help-fab {
    bottom: calc(1.2rem + env(safe-area-inset-bottom));
  }

  .help-panel {
    bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}

/* Sheet */
.sheet[hidden] {
  display: none;
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 70, 95, 0.28);
}

.sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px 24px 0 0;
  padding: 0.7rem 1.2rem calc(1.35rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.sheet.is-open .sheet__panel {
  transform: none;
}

.sheet__handle {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(28, 42, 56, 0.18);
  margin: 0.15rem auto 1rem;
}

.sheet__panel h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.35rem;
  padding-right: 2rem;
}

.sheet__panel p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.sheet__cta {
  width: 100%;
}

.sheet__x {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 42, 56, 0.06);
  font-size: 1.35rem;
  cursor: pointer;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--dock-h) + 1.1rem + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(12px);
  z-index: 60;
  max-width: min(90vw, 340px);
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(28, 42, 56, 0.92);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast[hidden] {
  display: block;
}

@media (min-width: 860px) {
  .rail-nav {
    display: flex;
  }

  .product {
    flex-basis: 260px;
  }

  .product-rail {
    scroll-padding-left: 0.2rem;
    padding-right: 2rem;
  }

  .lane-rail {
    grid-auto-columns: minmax(170px, 180px);
  }

  .visit {
    grid-template-columns: 1.15fr 0.95fr;
  }

  .visit__map,
  .visit__map iframe {
    height: 100%;
    min-height: 320px;
  }

  .order-panel {
    padding: 1.8rem 1.7rem;
  }

  .qr-demo {
    max-width: 420px;
  }

  .logo-float--hero {
    width: 400px;
  }
}

@media (min-width: 1100px) {
  body {
    padding-bottom: 2rem;
  }

  .dock {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .logo-float,
  .logo-float::after,
  .marquee__track,
  .oa,
  .gold-num__text,
  .gold-num__spark,
  .agegate__stack,
  .help-fab__pulse {
    animation: none !important;
  }
  .logo-float--hero {
    opacity: 1;
    transform: none;
  }
  .hours-pill,
  .feature,
  .promo-duo {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .agegate,
  .agegate__stack {
    opacity: 1;
    transform: none;
  }
  .oa {
    color: var(--coral);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
  }
  .reveal,
  .hero__slogan .word {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .qr-demo__front,
  .qr-demo__back,
  .sheet__panel,
  .dock {
    transition: none;
  }
  .dock {
    transform: translateX(-50%) translateY(0);
  }
}
