/* ================== HOLY SMASH — Base Styles ================== */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #18181a;
  --line: #232326;
  --teal: #3dd6d0;
  --teal-deep: #1ea59f;
  --teal-glow: rgba(61, 214, 208, 0.35);
  --white: #f5f5f0;
  --muted: #a8a8a0;
  --orange: #f4a340;
  --red: #e63946;
  --ink: #0a2a29; /* text on accent fills — remapped per mood */
  /* Texture controls (driven by Tweaks via html[data-texture]) */
  --grain-opacity: 0.4;
  --deco-splash: 0.5;
  --glow-mult: 1;
  --display: "Anton", "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Space Grotesk", "Inter", system-ui, sans-serif;
  --hand: "Permanent Marker", "Caveat Brush", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smash: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  /* subtle grain via SVG noise data URI */
  background-image:
    radial-gradient(1200px 600px at 20% -10%, rgba(61, 214, 208, 0.06), transparent 60%),
    radial-gradient(900px 500px at 90% 110%, rgba(244, 163, 64, 0.04), transparent 60%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: var(--grain-opacity);
  z-index: 1;
  transition: opacity 0.5s var(--ease);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ================== Typography ================== */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.92;
}

.hand {
  font-family: var(--hand);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

/* ================== Layout ================== */
.app {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }
}

.section {
  padding: 84px 0;
  position: relative;
}

@media (max-width: 720px) {
  .section {
    padding: 54px 0;
  }
}

.section--tight {
  padding: 56px 0;
}

.section--dark {
  background: var(--bg-2);
}

.section--frame {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ================== Header ================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: backdrop-filter 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.header__logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(61, 214, 208, 0.25));
}

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

.header__link {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}

.header__link:hover::after,
.header__link.active::after {
  transform: scaleX(1);
}

.header__link.active {
  color: var(--teal);
}

.header__cta {
  margin-left: 12px;
}

.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.header__burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.header__burger span:nth-child(1) {
  top: 16px;
}
.header__burger span:nth-child(2) {
  top: 21px;
}
.header__burger span:nth-child(3) {
  top: 26px;
}
.header__burger.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.header__burger.open span:nth-child(2) {
  opacity: 0;
}
.header__burger.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 960px) {
  .header__nav,
  .header__cta {
    display: none;
  }
  .header__burger {
    display: block;
  }
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 49;
  display: flex;
  flex-direction: column;
  padding: 96px 24px 32px;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow: hidden;
}
.mobile-overlay.open {
  transform: translateY(0);
}
.mobile-overlay__splash {
  position: absolute;
  top: -10%;
  right: -20%;
  width: 80%;
  opacity: 0.25;
  pointer-events: none;
}
.mobile-overlay__link {
  font-family: var(--display);
  font-size: clamp(36px, 9vw, 64px);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.mobile-overlay__link.active {
  color: var(--teal);
}
.mobile-overlay__cta {
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

/* ================== Smash Button ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-smash), box-shadow 0.3s var(--ease);
  white-space: nowrap;
  user-select: none;
}

.btn--primary {
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 10px 30px -10px var(--teal-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
  transform: scaleY(0.88) scaleX(1.06);
  box-shadow: 0 6px 14px -6px var(--teal-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.btn--primary:active {
  transform: scaleY(0.78) scaleX(1.1);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.35s var(--ease);
  z-index: 0;
}
.btn--ghost > * {
  position: relative;
  z-index: 1;
  transition: color 0.25s var(--ease);
}
.btn--ghost:hover {
  transform: scaleY(0.92) scaleX(1.03);
  color: var(--ink);
}
.btn--ghost:hover::before {
  transform: scaleY(1);
}

.btn--orange {
  background: var(--orange);
  color: #2a1c08;
  box-shadow: 0 10px 30px -10px rgba(244, 163, 64, 0.4);
}
.btn--orange:hover {
  transform: scaleY(0.88) scaleX(1.06);
}

.btn--lg {
  padding: 18px 32px;
  font-size: 16px;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ================== Badges ================== */
.tape {
  display: inline-block;
  padding: 5px 12px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  transform: rotate(-2deg);
  position: relative;
}

.tape--teal {
  background: var(--teal);
  color: var(--ink);
}
.tape--orange {
  background: var(--orange);
  color: #2a1c08;
}
.tape--red {
  background: var(--red);
  color: #fff;
}
.tape--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

/* ================== Splash SVG decoration ================== */
.splash {
  position: absolute;
  pointer-events: none;
  color: var(--teal);
  opacity: var(--deco-splash);
  transition: opacity 0.5s var(--ease);
}

/* ===== Texture moods (Tweaks) ===== */
html[data-texture="clean"] {
  --grain-opacity: 0;
  --deco-splash: 0.14;
  --glow-mult: 0.5;
}
html[data-texture="street"] {
  --grain-opacity: 0.78;
  --deco-splash: 0.92;
  --glow-mult: 1.5;
}
/* Street turns up the hand-script accents */
html[data-texture="street"] .food__hand,
html[data-texture="street"] .hero__title .hand-tag {
  opacity: 1;
  text-shadow: 0 0 18px var(--teal-glow);
}
html[data-texture="clean"] .food__hand {
  opacity: 0.55;
}
html[data-texture="clean"] .hero__ring {
  opacity: 0.06;
}

/* ================== Marquee ================== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 48px;
  padding: 22px 0;
  animation: marquee 38s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee__item {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 48px;
  color: var(--white);
}
.marquee__item .dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}
.marquee--teal {
  background: var(--teal);
}
.marquee--teal .marquee__item {
  color: var(--ink);
}
.marquee--teal .marquee__item .dot {
  background: var(--ink);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================== Food placeholder ================== */
.food {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(ellipse at 50% 60%, #1a1a1c 0%, #0c0c0d 70%);
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}
.food--wide {
  aspect-ratio: 16 / 11;
}
.food__splash {
  position: absolute;
  inset: -10%;
  opacity: 0.55;
  z-index: 1;
  filter: blur(1px);
}
.food__disc {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    from 45deg,
    rgba(244, 163, 64, 0.45),
    rgba(230, 57, 70, 0.35),
    rgba(61, 214, 208, 0.4),
    rgba(244, 163, 64, 0.45)
  );
  filter: blur(28px);
  z-index: 1;
  opacity: 0.45;
}
.food__label {
  position: absolute;
  inset: auto 16px 14px 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.food__label .left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.food__hand {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  font-family: var(--hand);
  color: var(--teal);
  font-size: 20px;
  transform: rotate(-6deg);
}

/* Real photo variant */
.food--photo {
  background: #0c0c0d;
}
.food__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.food--photo .food__hand {
  z-index: 3;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}
.food__stripe {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 22px,
    rgba(255, 255, 255, 0.018) 22px 44px
  );
  pointer-events: none;
}

/* ================== Cards ================== */
.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.3s var(--ease);
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(140deg, var(--teal), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: transparent;
}
.card:hover::before {
  opacity: 1;
}
.card:hover .food {
  transform: scale(1.02);
}
.card .food {
  transition: transform 0.6s var(--ease);
}

.card__body {
  padding: 18px 8px 6px;
}
.card__title {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 6px;
}
.card__desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card__price {
  font-family: var(--display);
  font-size: 28px;
  color: var(--teal);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  transition: transform 0.3s var(--ease-smash);
}
.card:hover .card__price {
  transform: rotate(-3deg) scale(1.05);
}
.card__price small {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.card__badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 6px;
  z-index: 4;
}

/* ================== Scroll reveal ================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Stagger child reveals */
.reveal-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-children.in > * {
  opacity: 1;
  transform: none;
}
.reveal-children.in > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-children.in > *:nth-child(2) {
  transition-delay: 0.15s;
}
.reveal-children.in > *:nth-child(3) {
  transition-delay: 0.25s;
}
.reveal-children.in > *:nth-child(4) {
  transition-delay: 0.35s;
}
.reveal-children.in > *:nth-child(5) {
  transition-delay: 0.45s;
}
.reveal-children.in > *:nth-child(6) {
  transition-delay: 0.55s;
}

/* ================== Hero ================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 56px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__eyebrow .pulse {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--teal-glow);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 214, 208, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(61, 214, 208, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 214, 208, 0);
  }
}

.hero__title {
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.85;
  margin: 0;
  letter-spacing: -0.01em;
}
.hero__title .ln-1 {
  display: block;
  color: var(--teal);
  position: relative;
}
.hero__title .ln-2 {
  display: block;
  color: var(--white);
  margin-left: 0.06em;
}
.hero__title .hand-tag {
  font-family: var(--hand);
  text-transform: none;
  font-size: 0.22em;
  color: var(--orange);
  position: absolute;
  right: -10px;
  top: -0.1em;
  transform: rotate(-10deg);
}

.hero__sub {
  font-size: 18px;
  color: var(--muted);
  margin: 28px 0 36px;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo {
  width: 100%;
  max-width: 620px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(61, 214, 208, 0.25));
  position: relative;
  z-index: 2;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

.hero__rings {
  position: absolute;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
}
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--teal);
  opacity: 0.18;
}
.hero__ring:nth-child(1) {
  inset: 5%;
  animation: spin 24s linear infinite;
}
.hero__ring:nth-child(2) {
  inset: 18%;
  opacity: 0.1;
  border-style: dashed;
  animation: spin 18s linear infinite reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero__stats {
  position: static;
  margin-top: clamp(28px, 4.5vh, 56px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat .v {
  font-family: var(--display);
  font-size: 32px;
  color: var(--white);
}
.hero__stat .l {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .hero__stats {
    flex-wrap: wrap;
  }
  .hero__stat {
    flex: 1 1 40%;
  }
}

/* ================== Section header ================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head__title {
  font-size: clamp(40px, 6vw, 88px);
  max-width: 14ch;
}
.section-head__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 380px;
}

/* ================== Story ================== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .story {
    grid-template-columns: 1fr;
  }
}
.story__quote {
  font-family: var(--hand);
  font-size: 28px;
  color: var(--teal);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 18px;
}
.story__title {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 24px;
}
.story__body {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}
.story__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ================== Location card ================== */
.next-stop {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.next-stop::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 60%);
  z-index: 0;
}
.next-stop > * {
  position: relative;
  z-index: 1;
}
.next-stop__date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 32px;
}
.next-stop__date .day {
  font-family: var(--display);
  font-size: 64px;
  color: var(--teal);
  line-height: 1;
}
.next-stop__date .month {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.next-stop__info h3 {
  font-size: 32px;
  margin-bottom: 4px;
}
.next-stop__info .meta {
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 760px) {
  .next-stop {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .next-stop__date {
    border: none;
    padding: 0 0 16px 0;
    border-bottom: 1px solid var(--line);
  }
}

/* ================== Instagram grid ================== */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 880px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ig-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}
.ig-tile:hover {
  transform: scale(1.03);
}
.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.ig-tile:hover::after {
  opacity: 1;
}
.ig-tile--live img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.02);
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}
.ig-tile--live:hover img {
  transform: scale(1.07);
  filter: saturate(1.18) contrast(1.08);
}
.ig-tile__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ig-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(61,214,208,0.18);
  background: rgba(61,214,208,0.06);
  color: var(--muted);
  font-size: 14px;
}

/* ================== Big CTA ================== */
.big-cta {
  border-radius: 32px;
  background: var(--teal);
  color: var(--ink);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.big-cta__title {
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.9;
  margin-bottom: 24px;
  max-width: 14ch;
}
.big-cta__sub {
  font-size: 18px;
  max-width: 460px;
  margin-bottom: 36px;
  color: var(--ink);
}
.big-cta__splash {
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  opacity: 0.25;
  pointer-events: none;
}
.big-cta__arrow {
  position: absolute;
  bottom: 40px;
  right: 56px;
  font-family: var(--display);
  font-size: 240px;
  opacity: 0.1;
  line-height: 1;
}
@media (max-width: 720px) {
  .big-cta {
    padding: 48px 28px;
  }
  .big-cta__arrow {
    display: none;
  }
}

/* ================== Footer ================== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 60px 0 32px;
  margin-top: 56px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 760px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand img {
  height: 60px;
  margin-bottom: 16px;
}
.footer__tag {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.footer__social:hover {
  background: var(--teal);
  color: var(--ink);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.footer__col h4 {
  font-size: 14px;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s var(--ease);
  cursor: pointer;
}
.footer__col a:hover {
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ================== Mobile Sticky CTA ================== */
.sticky-order {
  display: none;
}
@media (max-width: 720px) {
  .sticky-order {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    justify-content: center;
  }
  .sticky-order .btn {
    width: 100%;
    justify-content: center;
    box-shadow: 0 14px 40px -10px var(--teal-glow), 0 0 0 1px rgba(0,0,0,0.4);
  }
}

/* ================== Menu Page ================== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}
.menu-tab {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.menu-tab:hover {
  color: var(--white);
}
.menu-tab.active {
  background: var(--teal);
  color: var(--ink);
}

.menu-group {
  margin-bottom: 52px;
}
.menu-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.menu-group__title {
  font-size: clamp(36px, 5vw, 64px);
}
.menu-group__title .num {
  font-family: var(--hand);
  font-size: 0.4em;
  color: var(--teal);
  margin-right: 16px;
  vertical-align: super;
}
.menu-group__desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 320px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.price-pair {
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.price-pair .lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.price-variant {
  cursor: help;
  border-radius: 8px;
  padding: 4px 6px;
  margin: -4px -6px;
  outline: none;
  transition: background 0.2s var(--ease);
}

/* Menü-Kombis: drei Preise immer in einer Reihe */
.price-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  align-items: start;
}
.price-trio .price-variant {
  margin: 0;
  padding: 6px 6px;
  min-width: 0;
}
.price-trio .lbl {
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.price-trio .card__price {
  font-size: 21px;
  white-space: nowrap;
}
.price-trio .card__price small {
  font-size: 10px;
}
.price-variant:hover,
.price-variant:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}
.price-variant:focus-visible {
  box-shadow: 0 0 0 2px var(--teal-glow);
}

/* Schwebendes Menü-Inhalt-Popup (folgt dem Cursor) */
.menu-tip {
  position: fixed;
  z-index: 60;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 16px)) scale(0.96);
  transform-origin: bottom center;
  opacity: 0;
  transition: opacity 0.16s var(--ease), transform 0.18s var(--ease);
  background: rgba(18, 18, 20, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  color: var(--white);
  padding: 13px 17px;
  border-radius: 14px;
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.75), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.menu-tip.show {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 14px)) scale(1);
}
.menu-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 13px;
  height: 13px;
  background: rgba(18, 18, 20, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 0 0 3px 0;
}
.menu-tip__title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.menu-tip__body {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
}

.allergens {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
  align-items: center;
}
.allergens__lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 2px;
}
.allergen {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 22px;
  text-align: center;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--bg-3);
  color: var(--teal);
  border: 1px solid var(--line);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* Allergen legend block */
.allergen-legend {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-2);
  padding: 36px;
}
.allergen-legend__head {
  margin-bottom: 24px;
}
.allergen-legend__head h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-top: 10px;
}
.allergen-legend__grid {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
}
@media (max-width: 720px) {
  .allergen-legend {
    padding: 26px;
  }
  .allergen-legend__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.allergen-legend__grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.allergen-legend__note {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 18px;
  margin: 0;
}

/* ================== Standorte ================== */
.main-loc {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
@media (max-width: 960px) {
  .main-loc {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
.main-loc__map {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: #0c0c0e;
  position: relative;
  border: 1px solid var(--line);
}
.main-loc__map--live {
  box-shadow: inset 0 0 0 1px rgba(61,214,208,0.08), 0 24px 70px rgba(0,0,0,0.35);
}
.holy-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0c0c0e;
}
.holy-map__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 24%, rgba(61,214,208,0.08) 25%, transparent 42%),
    linear-gradient(180deg, rgba(7,7,8,0.18), rgba(7,7,8,0.34));
  mix-blend-mode: screen;
}
.holy-map__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  pointer-events: none;
}
.holy-map__card {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  max-width: min(280px, calc(100% - 120px));
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(9,9,11,0.78);
  border: 1px solid rgba(61,214,208,0.22);
  box-shadow: 0 16px 40px rgba(0,0,0,0.38);
  backdrop-filter: blur(10px);
}
.holy-map__card strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.holy-map__card span {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--teal);
}
.holy-map__route {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--teal);
  color: #061111;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 34px rgba(61,214,208,0.22);
}
.holy-map__route:hover {
  transform: translateY(-2px);
}
.holy-map-pin {
  position: relative;
}
.holy-map-pin__pulse,
.holy-map-pin__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}
.holy-map-pin__pulse {
  width: 72px;
  height: 72px;
  background: rgba(61,214,208,0.18);
  box-shadow: 0 0 0 14px rgba(61,214,208,0.08), 0 0 42px rgba(61,214,208,0.52);
  animation: holyPinPulse 2.4s ease-in-out infinite;
}
.holy-map-pin__dot {
  width: 20px;
  height: 20px;
  background: var(--teal);
  box-shadow: inset 0 0 0 7px #071010, 0 0 22px rgba(61,214,208,0.95);
}
@keyframes holyPinPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.78); opacity: 0.9; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.28; }
}
.main-loc__map .leaflet-control-attribution {
  background: rgba(5,5,6,0.72);
  color: rgba(245,245,242,0.45);
  font-size: 10px;
}
.main-loc__map .leaflet-control-attribution a {
  color: rgba(61,214,208,0.72);
}
.main-loc__map .leaflet-control-zoom {
  border: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,0.36);
}
.main-loc__map .leaflet-control-zoom a {
  background: rgba(245,245,242,0.92);
  color: #08080a;
  border-color: rgba(0,0,0,0.12);
  font-family: var(--display);
}
.main-loc__map .leaflet-popup-content-wrapper,
.main-loc__map .leaflet-popup-tip {
  background: #101014;
  color: var(--text);
  border: 1px solid rgba(61,214,208,0.25);
  box-shadow: 0 18px 46px rgba(0,0,0,0.5);
}
@media (max-width: 560px) {
  .holy-map__card {
    max-width: calc(100% - 28px);
    right: 14px;
    bottom: 64px;
  }
  .holy-map__route {
    left: 14px;
    right: auto;
  }
}
.hours {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hours li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.hours li .day {
  font-family: var(--display);
  font-size: 22px;
}
.hours li .time {
  font-family: ui-monospace, monospace;
  font-size: 14px;
  color: var(--teal);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.event {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.event:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}
.event__date {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.event__date .d {
  font-family: var(--display);
  font-size: 44px;
  color: var(--teal);
  line-height: 0.9;
}
.event__date .m {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.event__title {
  font-size: 22px;
  margin-bottom: 6px;
}
.event__meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event__tag {
  position: absolute;
  top: 14px;
  right: 14px;
}
.event--load-more {
  cursor: pointer;
  text-align: left;
  color: inherit;
  min-height: 190px;
  background:
    radial-gradient(circle at 80% 20%, rgba(61,214,208,0.16), transparent 42%),
    var(--bg-2);
}
.event--load-more .event__title {
  color: var(--teal);
}
.event--load-more:hover {
  border-color: var(--orange);
}

/* ================== Catering ================== */
.cater-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .cater-hero {
    grid-template-columns: 1fr;
  }
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.pkg {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-2);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.pkg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(61,214,208,0.06));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.pkg:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
}
.pkg:hover::before {
  opacity: 1;
}
.pkg__icon {
  font-family: var(--display);
  font-size: 36px;
  color: var(--teal);
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.pkg p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}
.pkg__from {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-2);
  counter-increment: step;
  position: relative;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--display);
  font-size: 56px;
  color: var(--teal);
  opacity: 0.4;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 {
  font-size: 20px;
  margin-bottom: 6px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
}

/* ================== Forms ================== */
.form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.form .full {
  grid-column: 1 / -1;
}
@media (max-width: 720px) {
  .form {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  transition: all 0.25s var(--ease);
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-success {
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(61, 214, 208, 0.15), rgba(61, 214, 208, 0.02));
  border: 1px solid var(--teal);
  text-align: center;
}
.form-success h3 {
  font-size: 32px;
  color: var(--teal);
  margin-bottom: 8px;
}

/* ================== Page header ================== */
.page-head {
  padding: 180px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-head__eyebrow {
  margin-bottom: 16px;
}
.page-head__title {
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.88;
  max-width: 12ch;
  /* Guard against stray inline height/width from direct-manipulation
     resizes — the headline must always size to its own text so it can
     never overlap the paragraph or CTAs below it. */
  height: auto !important;
  width: auto !important;
  min-height: 0 !important;
  overflow: visible;
}
.page-head__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-top: 28px;
}
.page-head__splash {
  position: absolute;
  right: -8%;
  top: 0;
  width: 50%;
  opacity: 0.4;
  pointer-events: none;
}

/* ================== Contact ================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-tile {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.contact-tile:hover {
  border-color: var(--teal);
  background: var(--bg-2);
}
.contact-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-tile__body .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-tile__body .val {
  font-family: var(--display);
  font-size: 22px;
}

/* ================== WhatsApp CTA ================== */
.wa-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #3dd6d0, #1fb6b0);
  color: #02312f;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 10px 30px -12px rgba(61, 214, 208, 0.6);
}
.wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px -14px rgba(61, 214, 208, 0.8);
}
.wa-cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #02312f;
  flex-shrink: 0;
}
.wa-cta__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.wa-cta__lbl {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
}
.wa-cta__sub {
  font-size: 13px;
  opacity: 0.75;
}
.wa-cta__arrow {
  font-family: var(--display);
  font-size: 24px;
  transition: transform 0.25s var(--ease);
}
.wa-cta:hover .wa-cta__arrow {
  transform: translateX(4px);
}

/* ================== Selection ================== */
::selection {
  background: var(--teal);
  color: var(--ink);
}

/* ================== Legal / Prose pages ================== */
.legal {
  max-width: 840px;
}
.legal__updated {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.legal__updated::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.legal h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 56px 0 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal h3 {
  font-family: var(--body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  margin: 28px 0 8px;
  color: var(--white);
}
.legal p,
.legal li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.legal p {
  margin-bottom: 14px;
}
.legal a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal a:hover {
  color: var(--teal-deep);
}
.legal strong {
  color: var(--white);
  font-weight: 600;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal ul li::marker {
  color: var(--teal);
}
.legal__fill {
  color: var(--orange);
  background: rgba(244, 163, 64, 0.1);
  border: 1px dashed rgba(244, 163, 64, 0.45);
  border-radius: 6px;
  padding: 1px 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.82em;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.legal__note {
  margin-top: 56px;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.legal__note .tape {
  flex-shrink: 0;
  margin-top: 2px;
}
.legal__note p {
  margin: 0;
  font-size: 14px;
}
.legal__card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 24px;
}
.legal__card p:last-child {
  margin-bottom: 0;
}
.footer__legal {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.footer__legal:hover {
  color: var(--white);
}

/* ================== Scrollbar ================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal-deep);
}

.form-error {
  border: 1px solid rgba(230, 57, 70, 0.45);
  background: rgba(230, 57, 70, 0.12);
  color: #ffb4b4;
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 700;
  line-height: 1.35;
}

.review-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.review-card__stars {
  margin: -6px 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card__stars span {
  color: var(--muted);
  margin-left: 8px;
  font-size: 11px;
}
