:root {
  --bg: #f3f0f7;
  --bg-elev: #faf9fc;
  --ink: #16131e;
  --muted: #5b5568;
  --line: rgba(22, 19, 30, 0.09);
  --purple: #6b4dff;
  --purple-deep: #4a2fe0;
  --purple-soft: #8b78ff;
  --lavender: #c4b6ff;
  --mint: #3ddc97;
  --mint-deep: #1fb877;
  --peach: #ff8a5b;
  --gold: #ffc44d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(75, 47, 180, 0.14);
  --shadow-sm: 0 10px 30px rgba(75, 47, 180, 0.1);
  --radius: 28px;
  --pill: 999px;
  --header: 76px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --grad-a: linear-gradient(120deg, #7a55ff 0%, #5b86ff 52%, #7c6bff 100%);
  --grad-b: linear-gradient(120deg, #8f6bff 0%, #6d5cff 100%);
  --grad-mint: linear-gradient(120deg, #3ddc97 0%, #2ec4a0 100%);
  --grad-peach: linear-gradient(120deg, #ff9a62 0%, #ff7a45 100%);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.05rem;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.03em; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.container-wide {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

/* Background atmosphere */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}

.blob-a { width: 42vw; height: 42vw; background: #c9b8ff; top: -12vw; left: -8vw; }
.blob-b { width: 36vw; height: 36vw; background: #9ecbff; top: 18vh; right: -12vw; animation-delay: -6s; }
.blob-c { width: 28vw; height: 28vw; background: #ffd2b0; bottom: -8vw; left: 22vw; animation-delay: -11s; opacity: 0.4; }
.blob-d { width: 22vw; height: 22vw; background: #b6f3d8; bottom: 10vh; right: 18vw; animation-delay: -3s; opacity: 0.35; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 4%) scale(1.08); }
}

.site-header,
main,
.site-footer,
.cookie-root { position: relative; z-index: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}

.site-header.is-scrolled {
  background: rgba(243, 240, 247, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--grad-a);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(107, 77, 255, 0.28);
}

.logo-mark svg { width: 22px; height: 22px; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--pill);
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(107, 77, 255, 0.1);
  color: var(--purple-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  margin: 0 auto;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: var(--pill);
  padding: 13px 22px;
  font-weight: 560;
  letter-spacing: -0.01em;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(22, 19, 30, 0.18);
}

.btn-primary:hover { transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-ghost:hover { background: var(--white); }

.btn-mint {
  background: var(--grad-mint);
  color: #083322;
  box-shadow: 0 12px 28px rgba(61, 220, 151, 0.28);
}

.btn-purple {
  background: var(--grad-a);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(107, 77, 255, 0.28);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.4rem;
}

/* Hero — capsule composition */
.hero {
  padding: 28px 0 40px;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
}

.hero-stage {
  position: relative;
  width: min(1080px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 560px;
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-deco span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107, 77, 255, 0.18);
}

.hero-deco .d1 { width: 12px; height: 12px; top: 8%; left: 8%; background: var(--mint); }
.hero-deco .d2 { width: 8px; height: 8px; top: 22%; right: 18%; }
.hero-deco .d3 { width: 14px; height: 14px; bottom: 18%; left: 42%; background: var(--gold); }
.hero-deco .d4 { width: 10px; height: 10px; top: 48%; left: 2%; background: var(--peach); }

.hero-path {
  position: absolute;
  left: 22%;
  top: 90px;
  width: 280px;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.pill {
  position: relative;
  color: #fff;
  background: var(--grad-a);
  border-radius: var(--pill);
  padding: 22px 36px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.pill h1,
.pill h2,
.pill p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.pill-lg { width: min(720px, 100%); font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.pill-md { width: min(640px, 92%); font-size: clamp(1.35rem, 2.6vw, 2.15rem); }
.pill-sm { width: min(520px, 88%); font-size: clamp(1.15rem, 2.1vw, 1.7rem); }

.pill-a { margin-left: 4%; }
.pill-b { margin: 28px 0 0 18%; background: var(--grad-b); }
.pill-c { margin: 28px 0 0 10%; }

.pill-mint { background: var(--grad-mint); color: #083322; }
.pill-peach { background: var(--grad-peach); }

.orb {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(22, 19, 30, 0.16), 0 0 0 6px rgba(255, 255, 255, 0.7);
  z-index: 3;
}

.orb img { width: 100%; height: 100%; object-fit: cover; }

.orb-lg { width: 118px; height: 118px; right: -28px; top: 50%; transform: translateY(-50%); }
.orb-md { width: 78px; height: 78px; right: -18px; top: 50%; transform: translateY(-50%); }
.orb-sm { width: 58px; height: 58px; right: 18px; top: 50%; transform: translateY(-50%); background: #fff; display: grid; place-items: center; }

.orb-icon svg { width: 26px; height: 26px; }

.node-line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.node-line svg { width: 100%; height: 100%; overflow: visible; }

.tag-pill {
  margin: 36px 0 0 6%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: #fff;
  border-radius: 22px;
  padding: 16px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  box-shadow: var(--shadow-sm);
  max-width: 340px;
}

.page-hero {
  padding: 36px 0 20px;
}

.page-hero .hero-stage { min-height: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-deep);
  font-weight: 600;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 62ch;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.card h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(107, 77, 255, 0.12);
  color: var(--purple-deep);
  flex-shrink: 0;
}

.icon-wrap.mint { background: rgba(61, 220, 151, 0.18); color: #0d6b45; }
.icon-wrap.peach { background: rgba(255, 138, 91, 0.18); color: #b3451d; }
.icon-wrap.gold { background: rgba(255, 196, 77, 0.28); color: #8a5a00; }

.icon-wrap svg { width: 22px; height: 22px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }

.frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
  aspect-ratio: 16 / 11;
}

.frame img { width: 100%; height: 100%; object-fit: cover; }

.frame-round {
  border-radius: 50%;
  aspect-ratio: 1;
  width: min(100%, 460px);
  margin-inline: auto;
  box-shadow: 0 0 0 10px #fff, var(--shadow);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.chip {
  background: #fff;
  border-radius: var(--pill);
  padding: 7px 12px;
  font-size: 0.85rem;
  box-shadow: inset 0 0 0 1px var(--line);
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.menu-item h3 { margin: 0; font-size: 1.05rem; }
.menu-item p { margin: 0; color: var(--muted); font-size: 0.92rem; grid-column: 1 / -1; }
.price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple-deep);
  white-space: nowrap;
}

.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.loc-card a { color: var(--purple-deep); text-decoration: none; }
.loc-card a:hover { text-decoration: underline; }

.map-frame {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  filter: grayscale(0.15) contrast(1.05);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 560;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
}

.form-grid textarea { min-height: 130px; resize: vertical; }

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid var(--lavender);
  border-color: var(--purple);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--muted);
}

.check input { margin-top: 4px; }

.form-status {
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--mint-deep);
}

.legal {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 32px;
  padding: 36px;
  border: 1px solid var(--line);
}

.legal h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.legal h2 { font-size: 1.25rem; margin-top: 1.6em; }
.legal ul { padding-left: 1.15em; color: var(--muted); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.stat span { color: var(--muted); font-size: 0.85rem; }

.site-footer {
  padding: 48px 0 28px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 760;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.footer-col h4 { font-size: 0.95rem; margin-bottom: 10px; }

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 4px 0;
}

.footer-col a:hover { color: var(--purple-deep); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.link-btn {
  background: none;
  border: 0;
  color: var(--purple-deep);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* Cookie CMP */
.cookie-root {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.cookie-root.is-open { display: block; }

.cookie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 19, 30, 0.38);
  backdrop-filter: blur(6px);
}

.cookie-sheet {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 24px));
  max-height: min(86vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(22, 19, 30, 0.28);
  padding: 26px;
}

.cookie-sheet h2 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-cat {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
}

.cookie-cat p { grid-column: 1 / -1; color: var(--muted); font-size: 0.9rem; margin: 0; }

.toggle {
  position: relative;
  width: 48px;
  height: 28px;
}

.toggle input {
  opacity: 0;
  width: 48px;
  height: 28px;
  margin: 0;
  cursor: pointer;
}

.toggle input:disabled { cursor: not-allowed; }

.toggle span {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 999px;
  pointer-events: none;
  transition: background 0.2s;
}

.toggle span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.toggle input:checked + span { background: var(--purple); }
.toggle input:checked + span::after { transform: translateX(20px); }
.toggle input:disabled + span { background: var(--mint-deep); }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 16px;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.reveal-2 { animation-delay: 0.12s; }
.reveal-3 { animation-delay: 0.24s; }
.reveal-4 { animation-delay: 0.36s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

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

@media (max-width: 980px) {
  .card-grid,
  .locations,
  .stat-row,
  .footer-grid,
  .split,
  .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-copy { order: 0; }
  .pill-a, .pill-b, .pill-c, .tag-pill { margin-left: 0; width: 100%; }
  .hero-stage { min-height: auto; }
  .hero-path { display: none; }
  .orb-lg { width: 84px; height: 84px; right: -10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    inset: var(--header) 12px auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-sheet { bottom: 8px; padding: 18px; }
  .legal { padding: 22px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
