/* ==========================================================================
   Churros Time — Stylesheet
   ========================================================================== */

:root {
  --cyan: #00beF8;
  --cyan-deep: #009fd6;
  --pink: #ec3fef;
  --pink-deep: #c026c8;
  --purple: #b34bea;
  --gold: #ffb648;
  --gold-deep: #f2871f;
  --dark: #12081c;
  --dark-2: #1c0f2a;
  --dark-3: #261637;
  --cream: #fff8f0;
  --white: #ffffff;

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --container: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body, h1, h2, h3, p, ul, figure, address, table { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; width: 100%; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  margin-bottom: 18px;
}
.section-title span { color: var(--pink); }

.section-sub {
  max-width: 560px;
  color: rgba(255,248,240,.72);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  margin-top: 18px;
  transition: gap .25s var(--ease-out);
}
.link-arrow:hover { gap: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s;
  white-space: nowrap;
}
.btn--primary, .btn--cta {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  box-shadow: 0 8px 24px -6px rgba(236,63,239,.55);
}
.btn--primary:hover, .btn--cta:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -6px rgba(236,63,239,.7); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 18px;
  transition: background .35s var(--ease-out), padding .35s var(--ease-out), box-shadow .35s;
}
.nav.is-scrolled {
  background: rgba(18,8,28,.94);
  padding-block: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
@media (min-width: 900px) {
  .nav.is-scrolled { background: rgba(18,8,28,.82); backdrop-filter: blur(14px); }
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img { width: 46px; height: 46px; border-radius: 50%; }
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  display: none;
}
.nav__logo-text span { color: var(--pink); }
@media (min-width: 480px) { .nav__logo-text { display: inline; } }

.nav__links {
  display: none;
  align-items: center;
  gap: 30px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
}
.nav__links a { position: relative; padding-block: 4px; opacity: .88; transition: opacity .2s; }
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s var(--ease-out);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: none; padding: 11px 24px; font-size: .9rem; }

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  border: none;
  align-items: center;
}
.nav__burger span { width: 18px; height: 2px; background: var(--cream); transition: transform .3s, opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(18,8,28,.98);
  backdrop-filter: blur(14px);
  transition: max-height .4s var(--ease-out);
}
/* Volle Resthöhe des Viewports, statt einer festen px-Grenze zu erraten —
   verhindert, dass der Seiteninhalt darunter durchscheint und mit dem
   Menü um Taps konkurriert. */
.nav__mobile.is-open { max-height: calc(100svh - 78px); padding-bottom: 24px; }
.nav__mobile a {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__mobile .btn { margin: 18px 24px 4px; }
@media (min-width: 900px) { .nav__mobile { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.15);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.15);
  opacity: 0;
  transition: opacity .6s ease;
}
.hero__video.is-ready { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 15%, rgba(18,8,28,.35), rgba(18,8,28,.55) 45%, rgba(18,8,28,.92) 88%),
    linear-gradient(0deg, var(--dark) 0%, rgba(18,8,28,.4) 30%);
}
.hero__drip {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
  background: var(--dark);
  clip-path: polygon(0 40%, 5% 55%, 10% 35%, 15% 60%, 20% 30%, 25% 58%, 30% 38%, 35% 62%, 40% 32%, 45% 55%, 50% 36%, 55% 60%, 60% 34%, 65% 58%, 70% 30%, 75% 56%, 80% 38%, 85% 60%, 90% 32%, 95% 55%, 100% 40%, 100% 100%, 0 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  width: 128px; height: 128px;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.45));
}
.hero__claim {
  font-size: clamp(2.4rem, 9vw, 5.2rem);
  color: var(--white);
  text-shadow: 0 6px 30px rgba(0,0,0,.4);
}
.hero__claim-line { display: block; overflow: hidden; }
.hero__claim-line--accent {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold) 45%, #fff3d6 65%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 18px;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: rgba(255,248,240,.88);
  max-width: 480px;
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,248,240,.7);
}
.hero__scroll-dot {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,248,240,.55);
  border-radius: 20px;
  position: relative;
}
.hero__scroll-dot::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top:8px; opacity:1;} 70% { top:22px; opacity:0; } 100% {top:22px; opacity:0;} }

/* ==========================================================================
   Produkte
   ========================================================================== */
.produkte { padding-block: 100px 80px; position: relative; }

.produkte__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) { .produkte__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
@media (min-width: 1024px) { .produkte__grid { gap: 32px; } }

.produkt-card {
  background: var(--dark-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .4s var(--ease-out), border-color .4s;
}
.produkt-card:hover { transform: translateY(-8px); border-color: rgba(236,63,239,.4); }
.produkt-card__img { aspect-ratio: 4/3; overflow: hidden; }
.produkt-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.produkt-card:hover .produkt-card__img img { transform: scale(1.08); }
.produkt-card h3 {
  font-size: 1.02rem;
  padding: 16px 16px 4px;
}
.produkt-card p {
  font-size: .82rem;
  color: rgba(255,248,240,.62);
  padding: 0 16px 18px;
}
/* ==========================================================================
   Açaí
   ========================================================================== */
.acai {
  position: relative;
  padding-block: 90px 100px;
}
.acai__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 140%;
  aspect-ratio: 1.6/1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(179,75,234,.28), rgba(179,75,234,0) 65%);
  pointer-events: none;
  z-index: 0;
}
.acai .container { position: relative; z-index: 1; }

.acai__intro {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.acai__sticker {
  width: 108px; height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(179,75,234,.5);
  filter: drop-shadow(0 10px 24px rgba(179,75,234,.4));
}
@media (min-width: 720px) {
  .acai__intro { flex-direction: row; text-align: left; gap: 40px; }
  .acai__sticker { width: 150px; height: 150px; flex-shrink: 0; }
}

/* Origin-story banner: reused for açaí (Amazon) and churros (Spain) heritage */
.origin-band {
  position: relative;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.6);
}
.origin-band img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.origin-band__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(10,4,16,.88) 10%, rgba(10,4,16,.25) 60%, rgba(10,4,16,.15));
}
.origin-band__text p {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 480px;
  margin: 0;
}
.origin-band__text strong {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
}
@media (min-width: 720px) {
  .origin-band { aspect-ratio: 16/6; }
  .origin-band__text { padding: 40px; }
  .origin-band__text p { font-size: 1.2rem; }
}

/* Large-format pour video */
.acai__video-card {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 9/13;
  margin: 56px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.7);
  background: var(--dark-2);
}
.acai__video-poster,
.acai__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acai__video {
  opacity: 0;
  transition: opacity .5s ease;
}
.acai__video.is-ready { opacity: 1; }
.acai__video-badge {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(18,8,28,.6);
  backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--cream);
}

/* Bowl size showcase */
.acai__showcase {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}
.acai__bowl {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.6);
}
.acai__bowl img { width: 100%; height: 100%; object-fit: cover; display: block; }
.acai__bowl--s, .acai__bowl--l { aspect-ratio: 3/5; }
.acai__bowl--m { aspect-ratio: 3/5.6; }
@media (min-width: 640px) {
  .acai__bowl--m { align-self: start; }
}
.acai__bowl figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(18,8,28,.55);
  backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-size: .78rem;
  color: rgba(255,248,240,.85);
}
.acai__bowl figcaption span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ==========================================================================
   Über uns
   ========================================================================== */
.ueber-uns { padding-block: 80px; }
.ueber-uns__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
}
@media (min-width: 900px) { .ueber-uns__grid { grid-template-columns: 1fr 1fr; gap: 70px; } }

.ueber-uns__img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.ueber-uns__poster,
.ueber-uns__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ueber-uns__video {
  opacity: 0;
  transition: opacity .5s ease;
}
.ueber-uns__video.is-ready { opacity: 1; }

.ueber-uns__text p { color: rgba(255,248,240,.78); margin-bottom: 16px; }

/* ==========================================================================
   Catering
   ========================================================================== */
.catering {
  position: relative;
  padding-block: 100px;
  background: var(--dark-2);
  overflow: hidden;
}
.catering .hero__drip--catering {
  position: absolute; top: -1px; left: 0; right: 0; bottom: auto; height: 60px;
  background: var(--dark-2);
  transform: rotate(180deg);
}

.catering__grid {
  display: grid;
  gap: 50px;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) { .catering__grid { grid-template-columns: .85fr 1.15fr; gap: 70px; } }

.catering__points { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.catering__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--cream);
}
.catering__points li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.catering__form {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,.07);
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-row--split { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 480px) { .form-row--split { grid-template-columns: 1fr 1fr; } }
.form-row--split > div { display: flex; flex-direction: column; gap: 7px; }

label { font-size: .84rem; font-weight: 500; color: rgba(255,248,240,.7); }
input, textarea {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--cream);
  transition: border-color .25s, background .25s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255,255,255,.09);
}
textarea { resize: vertical; min-height: 100px; }

.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.catering__submit { width: 100%; margin-top: 6px; }
.catering__status { margin-top: 14px; font-size: .9rem; min-height: 1.2em; }
.catering__status.is-success { color: #7CF29B; }
.catering__status.is-error { color: #ff8a8a; }

/* ==========================================================================
   Standort
   ========================================================================== */
.standort { padding-block: 100px; }
.standort__grid {
  display: grid;
  gap: 44px;
}
@media (min-width: 900px) { .standort__grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; } }

address { font-style: normal; margin-top: 16px; color: rgba(255,248,240,.85); font-size: 1.05rem; line-height: 1.7; }

.standort__hours { margin-top: 26px; max-width: 360px; }
.standort__hours tr { border-bottom: 1px solid rgba(255,255,255,.09); }
.standort__hours tr:last-child { border-bottom: none; }
.standort__hours th, .standort__hours td { text-align: left; padding: 12px 0; font-weight: 400; }
.standort__hours th { font-family: var(--font-display); font-weight: 500; color: var(--cream); }
.standort__hours td { color: var(--gold); font-weight: 600; text-align: right; }

.standort__map { border-radius: var(--radius-lg); overflow: hidden; }
.map-embed { position: relative; width: 100%; aspect-ratio: 4/3.4; background: var(--dark-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-embed__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 16px;
  background:
    linear-gradient(160deg, rgba(179,75,234,.25), rgba(0,190,248,.18)),
    var(--dark-2);
}
.map-embed__placeholder p { color: rgba(255,248,240,.75); max-width: 320px; }
.map-embed__hint { font-size: .74rem; color: rgba(255,248,240,.5); max-width: 300px; }
.map-embed__hint a { text-decoration: underline; }

/* ==========================================================================
   Social
   ========================================================================== */
.social { padding-block: 90px 110px; text-align: center; }
.social .section-sub { margin-inline: auto; }
.social__buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.social-btn svg { width: 24px; height: 24px; fill: currentColor; }
.social-btn--instagram { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.social-btn--tiktok { background: linear-gradient(135deg, #25f4ee, #111, #fe2c55); }
.social-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 34px -10px rgba(0,0,0,.5); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--dark-2); padding-top: 70px; border-top: 1px solid rgba(255,255,255,.06); }
.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 50px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer__brand p { font-family: var(--font-display); color: rgba(255,248,240,.7); }

.footer h3 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__contact, .footer__social, .footer__legal { display: flex; flex-direction: column; gap: 10px; }
.footer__contact p, .footer__contact a, .footer__social a, .footer__legal a {
  color: rgba(255,248,240,.75);
  font-size: .92rem;
}
.footer__contact a:hover, .footer__social a:hover, .footer__legal a:hover { color: var(--pink); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 20px;
  font-size: .8rem;
  color: rgba(255,248,240,.45);
}

/* Reveal utility: initial hidden state is applied by main.js (gsap.set),
   so content stays visible by default if JavaScript fails to load. */

/* ==========================================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================================== */
.legal {
  padding-top: 150px;
  padding-bottom: 100px;
  min-height: 100vh;
}
.legal .container { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 40px; }
.legal h2 {
  font-size: 1.3rem;
  margin-top: 46px;
  margin-bottom: 14px;
  color: var(--pink);
}
.legal h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--gold);
}
.legal p, .legal li { color: rgba(255,248,240,.82); margin-bottom: 14px; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
}
.legal strong { color: var(--cream); }
