/* =====================================================================
   ANTIGRAV — Recliner PC Club
   Layout: Container A (boxed-1200) · Spacing scale: monastic (160/96, 72 mobile)
   Motif: weightlessness — elements hover above trailing shadows,
          orbit lines around numbers, 1–2° tilts, "cm off the floor" tags.
   ===================================================================== */

:root {
  /* palette */
  --c-bg: #f8f9fb;
  --c-bg-dark: #1d2230;
  --c-ink: #1d2230;
  --c-ink-inv: #f8f9fb;
  --c-a1: #6366f1;   /* orbital indigo */
  --c-a2: #f0abfc;   /* pink haze */
  --c-ink-soft: #565c72;
  --c-tint: #eef0f7;
  --c-hair: rgba(99, 102, 241, 0.25);

  /* fonts */
  --f-display: "Poiret One", "Segoe UI", sans-serif;
  --f-body: "Spline Sans", "Segoe UI", system-ui, sans-serif;

  /* radius */
  --r-card: 26px;
  --r-pill: 999px;

  /* container */
  --w-container: 1200px;
  --pad-x: 32px;

  /* trailing-shadow motif (the single, deliberate shadow series) */
  --sh-1: 0 14px 30px -12px rgba(29, 34, 48, 0.16);
  --sh-2: 0 20px 44px -14px rgba(29, 34, 48, 0.22);
  --sh-a: 0 18px 40px -16px rgba(99, 102, 241, 0.40);

  /* 8px inner steps */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;

  /* monastic vertical rhythm */
  --sec-y: 160px;
  --blk-y: 96px;
}

@media (max-width: 768px) {
  :root { --pad-x: 16px; --sec-y: 72px; --blk-y: 56px; }
}

/* ---- base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.08; margin: 0 0 var(--s-3); }
h1 { font-size: clamp(40px, 6.5vw, 84px); letter-spacing: 0.5px; }
h2 { font-size: clamp(30px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); }
h4 { font-size: 18px; letter-spacing: 0.4px; }
p { margin: 0 0 var(--s-3); }

.container { max-width: var(--w-container); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--sec-y); }
.section__head { max-width: 720px; margin-bottom: var(--blk-y); }
.section__intro { color: var(--c-ink-soft); font-size: 1.06rem; margin: 0; }
.section__eyebrow, .hero__eyebrow, .book__note {
  font-family: var(--f-display); letter-spacing: 1px; color: var(--c-a1);
}
.section--tint { background: var(--c-tint); }

.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.u-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--c-a1); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0;
}
.u-skip:focus { left: 0; }

/* ---- motif helpers ---- */
.orbit-num {
  position: relative; display: inline-block;
  font-family: var(--f-display); font-size: 1.5em; color: var(--c-a1);
  padding: 0 0.14em;
}
.orbit-num::before {
  content: ""; position: absolute; left: -6px; right: -6px; top: 50%;
  height: 1.55em; transform: translateY(-50%) rotate(-8deg);
  border: 1px solid var(--c-a2); border-radius: 50%; opacity: 0.7; pointer-events: none;
}
.float-word { position: relative; top: -2px; color: var(--c-a1); }

/* divider — a lone satellite dot on a thin orbit */
.divider { display: grid; place-items: center; padding-block: var(--s-6); }
.divider__orbit {
  position: relative; width: 90px; height: 26px;
  border: 1px solid var(--c-hair); border-radius: 50%;
}
.divider__dot {
  position: absolute; top: -3px; left: 50%; width: 7px; height: 7px; margin-left: -3px;
  background: var(--c-a1); border-radius: 50%; box-shadow: 0 6px 10px -3px rgba(99,102,241,0.5);
  offset-path: ellipse(45px 13px at 50% 50%);
}

/* ---- buttons ---- */
.btn {
  display: inline-block; font-family: var(--f-body); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: var(--r-pill); text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.btn--primary { background: var(--c-a1); color: #fff; box-shadow: var(--sh-a); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 46px -16px rgba(99,102,241,0.5); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-hair); box-shadow: var(--sh-1); }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.btn:focus-visible { outline: 3px solid var(--c-a2); outline-offset: 3px; }

/* =====================  NAV  ===================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(248,249,251,0.85); backdrop-filter: blur(10px);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: var(--s-3); }
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--f-display); }
.nav__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: var(--c-bg-dark); color: var(--c-a1); font-size: 24px; box-shadow: var(--sh-1);
  transform: rotate(-2deg);
}
.nav__word { font-size: 24px; letter-spacing: 1.5px; }
.nav__badge {
  font-family: var(--f-body); font-weight: 600; font-size: 10px; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: var(--r-pill); border: 1px solid var(--c-hair);
  background: rgba(248,249,251,0.7); color: var(--c-a1);
  position: relative; top: -4px; box-shadow: var(--sh-1);
}
.nav__links { display: flex; align-items: center; gap: var(--s-4); }
.nav__links a { text-decoration: none; font-weight: 500; font-size: 0.96rem; color: var(--c-ink); }
.nav__links a:not(.nav__cta):hover,
.nav__links a.is-active:not(.nav__cta) { color: var(--c-a1); }
.nav__cta {
  background: var(--c-a1); color: #fff !important; padding: 10px 20px; border-radius: var(--r-pill);
  box-shadow: var(--sh-a); transition: transform .25s ease;
}
.nav__cta:hover { transform: translateY(-2px); }
.nav--frosted {
  background: rgba(248,249,251,0.94); backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(29,34,48,0.4);
}
.nav__toggle { display: none; }

/* =====================  HERO — full-bleed media  ===================== */
.hero--fullbleed {
  position: relative; isolation: isolate;
  display: flex; align-items: center;
  min-height: min(92vh, 860px);
  padding-top: 150px; padding-bottom: var(--sec-y);
  overflow: hidden;
  background: var(--c-bg-dark);
}
/* the photo spans edge-to-edge behind everything */
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%;
  transform: scale(1.03);
}
/* dark gradient scrim — darkest toward the text side for WCAG-AA contrast */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,18,28,0.92) 0%, rgba(17,20,32,0.78) 42%, rgba(17,20,32,0.32) 100%),
    linear-gradient(0deg, rgba(15,18,28,0.75) 0%, rgba(15,18,28,0) 55%);
}
.hero__inner { position: relative; width: 100%; }
.hero__text { max-width: 640px; color: var(--c-ink-inv); }
.hero--fullbleed h1 { font-size: clamp(30px, 4.4vw, 58px); letter-spacing: 0.3px; color: var(--c-ink-inv); text-shadow: 0 2px 24px rgba(10,12,20,0.55); }
.hero__eyebrow { font-size: 1.05rem; margin-bottom: var(--s-3); color: var(--c-a2); }
.hero__lede { font-size: 1.14rem; color: rgba(248,249,251,0.92); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-block: var(--s-5) var(--s-5); }
.hero--fullbleed .btn--ghost-invert {
  background: rgba(248,249,251,0.06); color: var(--c-ink-inv);
  border-color: rgba(248,249,251,0.45);
}
.hero--fullbleed .btn--ghost-invert:hover { background: rgba(248,249,251,0.14); box-shadow: var(--sh-2); }
.hero__stats { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-5); padding: 0; margin: 0; font-size: 0.92rem; color: rgba(248,249,251,0.82); }
.hero__stats li { max-width: 9em; }
.hero__tag, .band__tag, .card__count {
  font-family: var(--f-body); font-size: 0.82rem; color: var(--c-a1); letter-spacing: 0.4px;
}
.hero--fullbleed .hero__tag {
  display: inline-block; margin: var(--s-5) 0 0;
  color: var(--c-ink-inv); letter-spacing: 0.4px;
  background: rgba(17,20,32,0.55); border: 1px solid rgba(248,249,251,0.18);
  padding: 6px 14px; border-radius: var(--r-pill); backdrop-filter: blur(6px);
}

/* =====================  STATIONS / CARDS  ===================== */
.cards { display: grid; gap: var(--s-5); }
/* roomy 2-up layout with a gentle staggered/offset feel */
.cards--3 { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); align-items: start; }
/* nudge the second column down so it doesn't read like a plain table */
.cards--3 > :nth-child(2n) { margin-top: var(--s-6); }
/* the lone third card centres itself in the row below */
.cards--3 > :nth-child(3) { grid-column: 1 / -1; justify-self: center; max-width: 520px; width: 100%; margin-top: 0; }
.card {
  background: var(--c-bg); border: 1px solid var(--c-hair); border-radius: var(--r-card);
  padding: var(--s-4); box-shadow: var(--sh-1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card--tilt-a { transform: rotate(-1deg); }
.card--tilt-b { transform: rotate(1deg); }
.card:hover { transform: translateY(-5px) rotate(0deg); box-shadow: var(--sh-2); }
.card--feature { background: linear-gradient(160deg, #fff, var(--c-tint)); }
.card__media { border-radius: 18px; overflow: hidden; margin-bottom: var(--s-3); box-shadow: var(--sh-1); }
.card__media img { width: 100%; height: auto; }
.card__media--tint img { filter: saturate(0.9) brightness(1.02); }
.card__media--draw { display: grid; place-items: center; background: #fff; aspect-ratio: 3/2; }
.card__count { margin: 0 0 var(--s-2); font-size: 0.95rem; }

/* pod svg */
.pod-svg { width: 90%; }
.pod-svg__shadow { fill: rgba(99,102,241,0.14); }
.pod-draw { stroke: var(--c-a1); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.pod-label { fill: var(--c-ink-soft); font-family: var(--f-body); font-size: 11px; }
.pod-arc { stroke: var(--c-a2); stroke-width: 3; }
.pod-num { fill: var(--c-a1); font-family: var(--f-display); font-size: 22px; }

/* =====================  GAMES LIBRARY  ===================== */
.games { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); align-items: start; }
.games .card__count { margin-bottom: var(--s-1); }
.games__foot { max-width: 62ch; margin: var(--s-6) 0 0; color: var(--c-ink-soft); }

/* =====================  HARDWARE  ===================== */
.specs { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); max-width: 900px; }
.specs li {
  display: grid; grid-template-columns: 180px 1fr; gap: var(--s-4);
  background: var(--c-bg); border: 1px solid var(--c-hair); border-radius: var(--r-card);
  padding: var(--s-3) var(--s-4); box-shadow: var(--sh-1);
}
.specs__k { font-family: var(--f-display); font-size: 1.25rem; color: var(--c-a1); }
.specs__v { color: var(--c-ink-soft); }

/* =====================  RATES  ===================== */
.rates { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.rate {
  background: var(--c-bg); border: 1px solid var(--c-hair); border-radius: var(--r-card);
  padding: var(--s-4); box-shadow: var(--sh-1); transition: transform .3s ease, box-shadow .3s ease;
}
.rate:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.rate--pick { background: var(--c-bg-dark); color: var(--c-ink-inv); border-color: transparent; box-shadow: var(--sh-2); }
.rate--pick h3, .rate--pick .rate__price { color: var(--c-a2); }
.rate__price { font-family: var(--f-display); font-size: 2.4rem; color: var(--c-a1); margin: 0 0 var(--s-2); }
.rate__note { font-size: 0.82rem; color: var(--c-a1); margin: var(--s-2) 0 0; }
.rate--pick .rate__note { color: var(--c-a2); }
.rates__foot { max-width: 60ch; margin-top: var(--s-6); color: var(--c-ink-soft); }

/* =====================  DARK — THE RECLINE  ===================== */
.section--dark { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.section--dark h2 { color: #fff; }
.section--dark .section__eyebrow { color: var(--c-a2); }
.recline__grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: var(--s-6); align-items: center; }
.recline__copy p { color: rgba(248,249,251,0.82); }
.recline__points { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: grid; gap: var(--s-2); }
.recline__points li { padding-left: 26px; position: relative; color: rgba(248,249,251,0.9); }
.recline__points li::before {
  content: ""; position: absolute; left: 0; top: 0.6em; width: 10px; height: 10px;
  border-radius: 50%; background: var(--c-a2); box-shadow: 0 5px 8px -2px rgba(240,171,252,0.6);
}
.recline__diagram { margin: 0; display: grid; place-items: center; }
.pod-svg--big { width: 100%; max-width: 380px; }
.section--dark .pod-draw { stroke: var(--c-a2); }
.section--dark .pod-label { fill: rgba(248,249,251,0.7); }
.section--dark .pod-svg__shadow { fill: rgba(240,171,252,0.14); }

/* =====================  CLUB LOG  ===================== */
.log { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-5); max-width: 760px; }
.log__item { position: relative; padding-left: var(--s-6); }
.log__item::before {
  content: ""; position: absolute; left: 8px; top: 10px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--c-a1); box-shadow: 0 6px 10px -3px rgba(99,102,241,0.5);
}
.log__item::after { content: ""; position: absolute; left: 13px; top: 26px; bottom: -40px; width: 1px; background: var(--c-hair); }
.log__item:last-child::after { display: none; }
.log__body {
  background: var(--c-bg); border: 1px solid var(--c-hair); border-radius: var(--r-card);
  padding: var(--s-4); box-shadow: var(--sh-1);
}
.log__body p { margin: 0; color: var(--c-ink-soft); }

/* =====================  GALLERY  ===================== */
/* uniform tiles: every photo shares one square ratio so mixed orientations line up */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.gallery__item { margin: 0; display: flex; flex-direction: column; }
.gallery__item img {
  width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--r-card); box-shadow: var(--sh-1); flex: 1 1 auto; min-height: 0;
}
.gallery__item--tall { grid-row: auto; }
.gallery__item--wide img { transform: rotate(1deg); }
.gallery__item--wide:last-child img { transform: rotate(-1deg); }
.gallery__item figcaption { margin-top: var(--s-2); font-size: 0.82rem; color: var(--c-a1); flex: 0 0 auto; }
.band { margin: var(--blk-y) 0 0; position: relative; }
.band img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-card); box-shadow: var(--sh-2); }
.band__tag { position: absolute; bottom: -14px; left: 20px; background: var(--c-bg); padding: 6px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-1); }

/* =====================  FAQ  ===================== */
.faq__wrap { max-width: 820px; }
.faq { display: grid; gap: var(--s-3); }
.faq__item {
  background: var(--c-bg); border: 1px solid var(--c-hair); border-radius: var(--r-card);
  padding: var(--s-3) var(--s-4); box-shadow: var(--sh-1);
}
.faq__item summary {
  cursor: pointer; font-family: var(--f-display); font-size: 1.2rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-2);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--c-a1); font-size: 1.5rem; transition: transform .3s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: var(--s-3) 0 0; color: var(--c-ink-soft); }

/* =====================  BOOK FORM  ===================== */
.book__card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s-6);
  background: linear-gradient(160deg, #fff, var(--c-tint));
  border: 1px solid var(--c-hair); border-radius: 34px; padding: var(--s-6);
  box-shadow: var(--sh-2);
}
.book__intro h2 { margin-bottom: var(--s-3); }
.book__intro p { color: var(--c-ink-soft); }
.book__note { font-size: 1.05rem; }
.book__form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.4px; color: var(--c-ink-soft); }
.field input, .field select {
  font-family: var(--f-body); font-size: 1rem; color: var(--c-ink);
  background: var(--c-bg); border: 1px solid transparent; border-radius: var(--r-pill);
  padding: 13px 18px; box-shadow: var(--sh-1); transition: transform .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus {
  outline: none; transform: translateY(-2px);
  box-shadow: 0 18px 30px -14px rgba(99,102,241,0.4); border-color: var(--c-hair);
}
.book__submit { grid-column: 1 / -1; justify-self: start; margin-top: var(--s-2); }
.book__status { grid-column: 1 / -1; margin: 0; font-size: 0.95rem; }
.book__status.success { color: #157a52; }
.book__status.error { color: #c0392b; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =====================  FOOTER  ===================== */
.footer { background: var(--c-bg-dark); color: var(--c-ink-inv); padding-top: var(--blk-y); }
.footer__grid { display: grid; grid-template-columns: 1.3fr repeat(4, 0.85fr) 1.35fr; gap: var(--s-5); padding-bottom: var(--s-6); }
.footer__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 1.4rem; text-decoration: none; color: #fff; margin-bottom: var(--s-2); }
.footer__slogan { color: rgba(248,249,251,0.7); font-family: var(--f-display); }
.footer__col h4 { color: var(--c-a2); margin-bottom: var(--s-3); }
.footer__col a, .footer__col p { display: block; text-decoration: none; color: rgba(248,249,251,0.82); margin-bottom: var(--s-1); font-size: 0.95rem; }
.footer__col a:hover { color: #fff; }
.footer__contact { margin-bottom: var(--s-2); line-height: 1.55; }
.footer__contact a { display: inline; margin: 0; }
.footer__label {
  display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--c-a2); opacity: 0.85; margin-bottom: 2px;
}
.footer__bottom {
  border-top: 1px solid rgba(248,249,251,0.14); padding-block: var(--s-4); margin-top: 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-2);
}
.footer__disclaimer { margin: 0; font-family: var(--f-display); font-size: 1.15rem; color: var(--c-a2); letter-spacing: 0.4px; }
.footer__copy { margin: 0; color: rgba(248,249,251,0.6); font-size: 0.86rem; }

/* =====================  COOKIE BANNER  ===================== */
.cookie {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(30px);
  width: min(940px, calc(100% - 32px)); z-index: 150; opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
}
.cookie.is-shown { opacity: 1; transform: translateX(-50%) translateY(0); }
.cookie__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  flex-wrap: wrap;
  background: rgba(248,249,251,0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--c-hair); border-radius: 26px;
  padding: var(--s-3) var(--s-4);
  box-shadow: 0 22px 50px -16px rgba(29,34,48,0.35);
}
.cookie__text { margin: 0; font-size: 0.92rem; color: var(--c-ink); flex: 1 1 320px; }
.cookie__text a { color: var(--c-a1); text-decoration: underline; }
.cookie__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.cookie__btn { padding: 11px 22px; }

/* =====================  REVEAL  ===================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .rates { grid-template-columns: repeat(2, 1fr); }
  .games { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__toggle {
    display: grid; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav__toggle span:not(.u-visually-hidden) { display: block; width: 24px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
  .nav__links {
    position: absolute; inset: 100% 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: var(--s-3); padding: var(--s-4) var(--pad-x); background: rgba(248,249,251,0.97);
    backdrop-filter: blur(12px); box-shadow: var(--sh-2); border-top: 1px solid var(--c-hair);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform .3s ease, opacity .3s ease;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__cta { align-self: stretch; text-align: center; }
  .nav__badge { display: none; }

  .hero--fullbleed { min-height: auto; padding-top: 128px; padding-bottom: var(--sec-y); }
  .hero__bg img { object-position: 60% 50%; }
  .hero__text { max-width: none; }
  .cards--3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery__item--tall { grid-row: auto; }
  .gallery__item img { aspect-ratio: 1 / 1; }
  .cards--3 { gap: var(--s-5); }
  .cards--3 > :nth-child(2n),
  .cards--3 > :nth-child(3) { margin-top: 0; max-width: none; justify-self: stretch; }
  .specs li { grid-template-columns: 1fr; gap: var(--s-1); }
  .recline__grid { grid-template-columns: 1fr; }
  .book__card { grid-template-columns: 1fr; padding: var(--s-4); }
  .book__form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .games { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .rates { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cookie__inner { flex-direction: column; align-items: stretch; }
  .cookie__actions .btn { flex: 1; text-align: center; }
}

/* =====================  LEGAL PAGES  ===================== */
.legal { padding-top: 130px; }
.legal__nav { position: static; padding-block: var(--s-3); border-bottom: 1px solid var(--c-hair); background: rgba(248,249,251,0.9); backdrop-filter: blur(8px); }
.legal__wrap { max-width: 720px; margin-inline: auto; padding-inline: var(--pad-x); }
.legal__head { margin-bottom: var(--blk-y); }
.legal__eyebrow { font-family: var(--f-display); letter-spacing: 1px; color: var(--c-a1); margin-bottom: var(--s-2); }
.legal h1 {
  font-size: clamp(34px, 5vw, 60px); position: relative; top: -4px;
  filter: drop-shadow(0 14px 20px rgba(29,34,48,0.12));
}
.legal h2 { font-size: clamp(24px, 3vw, 34px); margin-top: var(--blk-y); margin-bottom: var(--s-3); }
.legal p, .legal li { color: var(--c-ink-soft); }
.legal ul { padding-left: 20px; display: grid; gap: var(--s-1); margin-bottom: var(--s-3); }
.legal__block {
  background: var(--c-bg); border: 1px solid var(--c-hair); border-radius: var(--r-card);
  padding: var(--s-4); box-shadow: var(--sh-1); margin-bottom: var(--s-4);
}
.legal__block h2 { margin-top: 0; }
.legal .float-word { color: var(--c-a1); }
.legal__updated { font-size: 0.85rem; color: var(--c-a1); }

/* =====================  REDUCED MOTION  ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  [data-float] { transform: none !important; }
  .cookie { opacity: 1; transform: translateX(-50%); }
}

/* cookie dismissal fix: make the [hidden] attribute authoritative over the banner display */
.cookie[hidden] { display: none !important; }
