/* =========================================================================
   BLOOP — Colorful Soft PC Club
   Layout container: F — alternating-bleed (odd = boxed 1140px, even = full-bleed 5vw)
   Spacing scale:    airy (128px / 72px sections; 64px mobile)
   Motif:            drops & blobs (blob plaques, drop bullets, wave dividers,
                     squash-on-click buttons, bubble captions)
   Tokens live in :root; no magic numbers in components.
   ========================================================================= */

:root {
  /* Colors */
  --c-bg: #faf3ff;
  --c-bg-dark: #1f1a33;
  --c-ink: #1f1a33;
  --c-ink-inv: #fbfaff;
  --c-a1: #a06bff;          /* soft purple */
  --c-a2: #ff3d8a;          /* vivid hot-pink */
  --c-mint-fill: #e6faf6;
  --c-soft-fill: #f2ecff;
  --c-lounge-fill: #fff3e6;

  /* Fonts */
  --f-display: "Chango", "Arial Black", system-ui, sans-serif;
  --f-body: "Kumbh Sans", system-ui, -apple-system, sans-serif;

  /* Radii — blob sets */
  --r-card: 38% 62% 55% 45% / 45% 40% 60% 55%;
  --r-btn: 999px;
  --r-soft: 28px;

  /* Spacing scale (8px step) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;

  /* airy section rhythm */
  --sec-y: 128px;
  --block-y: 72px;

  /* container widths */
  --w-container: 1140px;
  --w-bleed-pad: 5vw;
}

@media (max-width: 768px) {
  :root { --sec-y: 64px; --block-y: 40px; }
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--c-a1); text-decoration: none; }

h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 1.05; margin: 0; }

h1 { font-size: clamp(38px, 6.5vw, 84px); }
h2 { font-size: clamp(28px, 4.5vw, 50px); letter-spacing: 0.2px; }
h3 { font-size: clamp(20px, 2.4vw, 27px); }

p { margin: 0 0 var(--s-2); }

strong { font-weight: 700; }

/* ---------- Utilities ---------- */
.u-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-a1); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-soft) 0; z-index: 200;
}
.u-skip:focus { left: 0; }

.eyebrow {
  font-family: var(--f-body); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: 12.5px; color: var(--c-a1);
  margin: 0 0 var(--s-2);
}
.eyebrow--inv { color: var(--c-a2); }

/* Signature bloop word — wavy baseline */
.bloop-word {
  font-family: var(--f-display);
  color: var(--c-a2);
  display: inline-block;
}
.bloop-word::first-letter { position: relative; }

/* ---------- Section layout: alternating-bleed ---------- */
.section { padding-block: var(--sec-y); position: relative; }

.section--boxed {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--s-4);
}
@media (max-width: 768px) { .section--boxed { padding-inline: var(--s-2); } }

.section--bleed { padding-inline: var(--w-bleed-pad); }
.section__inner, .section__head, .book__inner, .lounge__grid, .book__inner {
  max-width: var(--w-container);
  margin-inline: auto;
}

.section__head { margin-bottom: var(--block-y); max-width: 760px; }
.section__intro { font-size: 18px; color: #4a4360; }
.section--boxed > .section__head { margin-left: auto; margin-right: auto; }

/* section fills */
.section--mint { background: var(--c-mint-fill); }
.section--soft { background: var(--c-soft-fill); }
.section--lounge { background: var(--c-lounge-fill); }
.section--dark { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.section--dark .section__intro { color: #c9c2e6; }
.section__intro--inv { color: #c9c2e6 !important; }

/* ---------- Drop chips & bullets (motif) ---------- */
.drop-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; font-weight: 600; font-size: 14.5px;
  background: #fff; color: var(--c-ink);
  border-radius: 62% 38% 45% 55% / 55% 45% 60% 40%;
}
.drop-chip strong { color: var(--c-a1); font-family: var(--f-display); font-weight: 400; }
.drop-chip--solid {
  background: var(--c-a1); color: #fff; font-family: var(--f-display);
  padding: 4px 14px; font-size: 16px;
}

.drops { list-style: none; margin: var(--s-2) 0 0; padding: 0; }
.drops li {
  position: relative; padding-left: 26px; margin-bottom: var(--s-1);
}
.drops li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 12px; height: 12px; background: var(--c-a2);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  transform: translateY(-50%);
}
.section--dark .drops li::before { background: var(--c-a2); }

/* ---------- Buttons (drop shape, squash on click) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-body); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: var(--r-btn); border: none;
  cursor: pointer; text-align: center;
  transition: transform 300ms cubic-bezier(.34,1.56,.64,1), background-color 200ms, color 200ms;
  will-change: transform;
}
.btn--small { padding: 12px 22px; font-size: 15px; }
.btn--primary { background: var(--c-a1); color: #fff; }
.btn--primary:hover { background: #8b4dff; }
.btn--ghost { background: transparent; color: var(--c-a1); box-shadow: inset 0 0 0 2px var(--c-a1); }
.btn--ghost:hover { background: var(--c-a1); color: #fff; }
.btn.is-splash { animation: btn-splash 300ms ease; }
@keyframes btn-splash {
  0% { transform: scale(1,1); }
  35% { transform: scale(1.08,0.86); }
  70% { transform: scale(0.96,1.06); }
  100% { transform: scale(1,1); }
}

/* ======================================================================
   NAV — nav-hamburger-first
   ====================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(16px, 5vw, 48px);
  background: rgba(251,250,255,0.82);
  backdrop-filter: blur(12px);
}
.nav__logo { display: inline-flex; align-items: center; gap: 10px; color: var(--c-ink); }
.nav__mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; font-family: var(--f-display);
  color: #fff; background: var(--c-a1);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  font-size: 20px;
}
.nav__word { font-family: var(--f-display); font-size: 21px; letter-spacing: 0.5px; }
.nav__badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px;
  background: var(--c-a2); color: var(--c-bg-dark);
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase;
}
@media (max-width: 620px) { .nav__badge { display: none; } }

.nav__toggle {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-weight: 700; font-size: 15px;
  background: var(--c-bg-dark); color: var(--c-ink-inv);
  border: none; cursor: pointer; padding: 10px 20px; border-radius: 999px;
}
.nav__toggle-drop {
  width: 12px; height: 12px; background: var(--c-a2);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
}

.nav__overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(31,26,51,0.97);
  display: grid; place-items: center;
  opacity: 0; transform: scale(1.04);
  transition: opacity 260ms ease, transform 260ms ease;
}
.nav__overlay:not([hidden]) { opacity: 1; transform: scale(1); }
.nav__overlay[hidden] { display: none; }
.nav__close {
  position: absolute; top: 22px; right: clamp(16px,5vw,48px);
  background: none; border: none; color: var(--c-ink-inv);
  font-family: var(--f-body); font-weight: 700; font-size: 16px; cursor: pointer;
}
.nav__overlay-links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.nav__overlay-links a {
  font-family: var(--f-display); color: var(--c-ink-inv);
  font-size: clamp(34px, 8vw, 64px); padding: 6px 20px;
  transition: color 180ms, transform 180ms;
}
.nav__overlay-links a:hover, .nav__overlay-links a.is-active { color: var(--c-a2); transform: translateX(6px); }

/* ======================================================================
   HERO — hero-centered-fullbleed + Blob Morph
   ====================================================================== */
.s-hero {
  position: relative; min-height: 100vh;
  display: grid; place-items: center;
  padding: 140px clamp(16px,5vw,48px) 90px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) brightness(1.03);
}
.hero__wash {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(251,250,255,0.55) 0%, rgba(251,250,255,0.78) 55%, rgba(251,250,255,0.92) 100%);
}
.hero__blob {
  position: absolute; top: 50%; left: 50%;
  width: min(62vw, 640px); height: min(62vw, 640px);
  margin: calc(min(62vw,640px) / -2) 0 0 calc(min(62vw,640px) / -2);
  background: radial-gradient(circle at 35% 35%, rgba(160,107,255,0.55), rgba(255,61,138,0.42));
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  filter: blur(6px);
  will-change: transform, border-radius;
  z-index: 0;
}
/* Extra decorative soft spots scattered behind the hero content */
.hero__spot {
  position: absolute; z-index: 0; display: block;
  border-radius: 58% 42% 47% 53% / 52% 60% 40% 48%;
  filter: blur(10px);
  pointer-events: none;
}
.hero__spot--1 {
  top: 12%; left: 8%; width: 190px; height: 190px;
  background: radial-gradient(circle at 40% 35%, rgba(160,107,255,0.30), rgba(160,107,255,0));
}
.hero__spot--2 {
  top: 20%; right: 9%; width: 230px; height: 230px;
  background: radial-gradient(circle at 40% 35%, rgba(255,61,138,0.24), rgba(255,61,138,0));
}
.hero__spot--3 {
  bottom: 14%; left: 14%; width: 150px; height: 150px;
  background: radial-gradient(circle at 40% 35%, rgba(255,61,138,0.22), rgba(255,61,138,0));
  border-radius: 45% 55% 60% 40% / 42% 58% 42% 58%;
}
.hero__spot--4 {
  bottom: 10%; right: 12%; width: 210px; height: 210px;
  background: radial-gradient(circle at 40% 35%, rgba(160,107,255,0.26), rgba(160,107,255,0));
  border-radius: 63% 37% 41% 59% / 55% 63% 37% 45%;
}
.hero__spot--5 {
  top: 46%; left: 2%; width: 120px; height: 120px;
  background: radial-gradient(circle at 40% 35%, rgba(255,61,138,0.20), rgba(255,61,138,0));
}
.hero__spot--6 {
  top: 40%; right: 3%; width: 130px; height: 130px;
  background: radial-gradient(circle at 40% 35%, rgba(160,107,255,0.22), rgba(160,107,255,0));
  border-radius: 55% 45% 33% 67% / 60% 38% 62% 40%;
}
.hero__spot--7 {
  top: 6%; left: 44%; width: 110px; height: 110px;
  background: radial-gradient(circle at 40% 35%, rgba(255,61,138,0.16), rgba(255,61,138,0));
}

.hero__inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; margin-inline: auto;
}
.hero__eyebrow {
  font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase;
  font-size: 12.5px; color: var(--c-a1); margin-bottom: var(--s-3);
}
.hero__title { margin-bottom: var(--s-3); }
.hero__lead {
  font-size: clamp(16.5px, 2.1vw, 20px); color: #3c3556;
  max-width: 640px; margin-inline: auto var(--s-5);
}
.hero__actions { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; }
.hero__facts {
  list-style: none; display: flex; gap: var(--s-2); flex-wrap: wrap;
  justify-content: center; padding: 0; margin: var(--s-5) 0 0;
}

/* ---------- Wave divider ---------- */
.wave-divider { line-height: 0; margin-top: -1px; }
.wave-divider svg { width: 100%; height: 46px; display: block; }
.wave-divider__path { fill: var(--c-soft-fill); }

/* ======================================================================
   STATIONS — card blob plaques
   ====================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.card { display: flex; flex-direction: column; }
.card__media {
  aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: var(--r-card);
  background: linear-gradient(135deg, var(--c-a1), var(--c-a2));
  transition: border-radius 600ms cubic-bezier(.4,0,.2,1);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.card:hover .card__media { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
.card__media--tint { display: grid; place-items: center; }
.card__media--corner { background: linear-gradient(135deg, #2b2450, var(--c-a1)); }
.card__media--duo { background: linear-gradient(135deg, var(--c-a2), #ff8fb8); }
.card__body { padding: var(--s-4) var(--s-2) 0; }
.card__count { margin: var(--s-1) 0 var(--s-2); }

/* ======================================================================
   RATES
   ====================================================================== */
.rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.rate {
  background: #fff; padding: var(--s-5) var(--s-4);
  border-radius: 46px 46px 46px 12px;
  position: relative;
}
.rate--feature { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.rate--feature .drops li::before { background: var(--c-a2); }
.rate__flag {
  position: absolute; top: -14px; left: var(--s-4);
  background: var(--c-a2); color: var(--c-bg-dark);
  font-weight: 700; font-size: 12.5px; letter-spacing: 0.6px;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase;
}
.rate__price { margin: var(--s-2) 0 0; font-weight: 600; }
.rate__num { font-family: var(--f-display); color: var(--c-a1); font-size: 30px; margin-right: 8px; }
.rate--feature .rate__num { color: var(--c-a2); }
.rates__note { margin-top: var(--s-5); font-style: italic; color: #4a4360; text-align: center; }

/* ======================================================================
   HARDWARE (dark)
   ====================================================================== */
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
.spec {
  background: rgba(255,255,255,0.05);
  padding: var(--s-5) var(--s-4);
  border-radius: 40px 18px 40px 18px;
}
.spec h3 { color: var(--c-a2); margin-bottom: var(--s-2); }
.spec p { color: #d5cfec; margin: 0; }

/* ======================================================================
   LOUNGE
   ====================================================================== */
.lounge__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--s-6); align-items: center; }
.lounge__media { border-radius: var(--r-card); overflow: hidden; }
.lounge__media img { width: 100%; aspect-ratio: 1344 / 768; object-fit: cover; filter: saturate(1.05); }
.lounge__text h2 { margin-bottom: var(--s-3); }

/* ======================================================================
   SPLASH LOG (timeline)
   ====================================================================== */
.log { list-style: none; margin: 0; padding: 0; max-width: 780px; }
.log__item {
  position: relative; padding-left: 46px; padding-bottom: var(--s-6);
  border-left: 3px solid var(--c-soft-fill); margin-left: 8px;
}
.log__item:last-child { border-left-color: transparent; padding-bottom: 0; }
.log__dot {
  position: absolute; left: -12px; top: 2px;
  width: 22px; height: 22px; background: var(--c-a1);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  box-shadow: 0 0 0 6px var(--c-bg);
}
.log__item h3 { margin-bottom: var(--s-1); }

/* ======================================================================
   GALLERY
   ====================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.gallery__item { margin: 0; overflow: hidden; border-radius: var(--r-card); }
.gallery__item:nth-child(2) { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
.gallery__item:nth-child(3) { border-radius: 45% 55% 60% 40% / 42% 58% 42% 58%; }
.gallery__item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; filter: saturate(1.05); transition: transform 700ms ease; }
.gallery__item:hover img { transform: scale(1.05); }

/* ======================================================================
   FAQ
   ====================================================================== */
.faq { max-width: 820px; }
.faq__item {
  background: #fff; border-radius: 26px;
  padding: var(--s-3) var(--s-4); margin-bottom: var(--s-2);
}
.faq__item summary {
  font-family: var(--f-display); font-size: clamp(18px,2.2vw,23px);
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: ""; width: 16px; height: 16px; flex: none;
  background: var(--c-a2);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  transition: transform 250ms ease;
}
.faq__item[open] summary::before { transform: rotate(45deg) scale(1.1); background: var(--c-a1); }
.faq__item p { margin: var(--s-2) 0 0; padding-left: 28px; }

/* ======================================================================
   GAMES — highlighted free-slots feature card
   ====================================================================== */
.games__feature { margin-top: var(--s-6); }
.games__feature .rate__price { margin-top: var(--s-3); }
.games__feature > p { color: #d5cfec; }

/* ======================================================================
   BOOK FORM
   ====================================================================== */
.book__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s-6); align-items: start; }
.book__intro { position: sticky; top: 100px; }
.book__form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field:nth-child(1), .field:nth-child(3) { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 14px; }
.book__form input, .book__form select {
  font-family: var(--f-body); font-size: 16px;
  padding: 14px 20px; border: none; border-radius: 999px;
  background: #fff; color: var(--c-ink);
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 200ms ease;
}
.book__form input:focus, .book__form select:focus {
  outline: none; box-shadow: inset 0 0 0 2px var(--c-a2);
}
.field.is-rippling { position: relative; }
.field .ripple {
  position: absolute; left: var(--rx,50%); top: var(--ry,50%);
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--c-a2); transform: translate(-50%,-50%) scale(0);
  pointer-events: none; opacity: 0.9;
  animation: ring-ripple 620ms ease-out forwards;
}
@keyframes ring-ripple {
  to { transform: translate(-50%,-50%) scale(14); opacity: 0; }
}
.book__submit { grid-column: 1 / -1; margin-top: var(--s-1); }
.book__status { grid-column: 1 / -1; margin: 0; font-weight: 600; min-height: 1.4em; }
.book__status.success { color: #0a8f7a; }
.book__status.error { color: #c0392b; }

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

/* ======================================================================
   FOOTER — footer-newsletter-embed
   ====================================================================== */
.footer {
  background: var(--c-bg-dark); color: var(--c-ink-inv);
  padding: var(--block-y) clamp(16px,5vw,48px) var(--s-5);
}
.footer__top {
  max-width: var(--w-container); margin-inline: auto;
  display: grid; grid-template-columns: 1.2fr 1.4fr 0.9fr 1fr; gap: var(--s-6);
  align-items: start;
}
.footer__logo { display: inline-flex; align-items: center; gap: 10px; color: var(--c-ink-inv); font-family: var(--f-display); font-size: 24px; }
.footer__tag { color: #c9c2e6; margin-top: var(--s-2); }
.footer__news-label { font-weight: 600; display: block; margin-bottom: var(--s-2); }
.footer__news-row { display: flex; gap: 8px; }
.footer__newsletter input {
  flex: 1; font-family: var(--f-body); font-size: 15px;
  padding: 12px 18px; border: none; border-radius: 999px;
  background: rgba(255,255,255,0.08); color: #fff;
  box-shadow: inset 0 0 0 2px transparent; transition: box-shadow 200ms;
}
.footer__newsletter input::placeholder { color: #9c95b8; }
.footer__newsletter input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--c-a2); }
.footer__news-status { margin: var(--s-2) 0 0; font-size: 14px; min-height: 1.2em; }
.footer__news-status.success { color: var(--c-a2); }
.footer__news-status.error { color: #ff9c8f; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: #d5cfec; }
.footer__links a:hover { color: var(--c-a2); }
.footer__contact { display: flex; flex-direction: column; gap: var(--s-1); }
.footer__address { font-style: normal; color: #c9c2e6; line-height: 1.6; }
.footer__phone { color: #d5cfec; font-weight: 700; }
.footer__phone:hover { color: var(--c-a2); }
.footer__hours {
  max-width: var(--w-container); margin: var(--s-6) auto 0;
  padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,0.1);
  color: #b7afd4; font-size: 14.5px;
}
.footer__bottom {
  max-width: var(--w-container); margin: var(--s-4) auto 0;
  display: flex; justify-content: space-between; gap: var(--s-2); flex-wrap: wrap;
  align-items: center;
}
.footer__disclaimer {
  font-family: var(--f-display); font-size: 17px; color: var(--c-a2); margin: 0;
}
.footer__copy { color: #9c95b8; font-size: 14px; margin: 0; }

/* ======================================================================
   Scroll reveal
   ====================================================================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 560ms ease, transform 560ms ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ======================================================================
   Responsive
   ====================================================================== */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .specs { gap: var(--s-4); }
}
@media (max-width: 780px) and (min-width: 621px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .cards, .rates, .gallery { grid-template-columns: 1fr 1fr; }
  .lounge__grid, .book__inner { grid-template-columns: 1fr; }
  .book__intro { position: static; }
  .specs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .cards, .rates, .gallery, .specs { grid-template-columns: 1fr; }
  .book__form { grid-template-columns: 1fr; }
  .field:nth-child(2), .field:nth-child(4), .field:nth-child(5) { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__facts { gap: var(--s-1); }
}

/* ======================================================================
   LEGAL / DOC PAGES (soft-docs) — narrow column
   ====================================================================== */
.doc {
  max-width: 760px; margin: 0 auto;
  padding: 140px clamp(16px, 5vw, 32px) var(--block-y);
}
.doc__title { margin-bottom: var(--s-3); }
.doc__lead { font-size: 19px; color: #3c3556; margin-bottom: var(--s-6); }
.doc__card {
  background: var(--c-soft-fill);
  border-radius: 40px 18px 40px 18px;
  padding: var(--s-5) var(--s-4); margin-bottom: var(--s-4);
}
.doc__card h2 { font-size: clamp(23px, 3vw, 31px); margin-bottom: var(--s-2); }
.doc__card p:last-child { margin-bottom: 0; }
.doc__footer {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: var(--s-2);
}
.doc__footer-links { flex-direction: row; gap: var(--s-3); }

/* ======================================================================
   Reduced motion — kill all motion, keep everything usable
   ====================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__blob { display: none; }
  .field .ripple { display: none; }
}
