/* ============================================================
   SNUGG — Couch Console Lounge
   Cozy, homely console gaming lounge. Motif: "stitch" — dashed
   plaid-like seams around cards and under headings. Rounded, warm.
   ============================================================ */

:root {
  /* Palette */
  --bg-light: #f6efe3;
  --bg-dark: #2a211c;
  --text-on-light: #2a211c;
  --text-on-dark: #f6efe3;
  --accent-1: #e07a3f; /* warm terracotta */
  --accent-2: #3f7d6d; /* soft teal */
  --cream: #fffbef;

  /* Warm plate tints (mixes on low opacity, no borders) */
  --plate-1: rgba(224, 122, 63, 0.10);
  --plate-2: rgba(63, 125, 109, 0.10);
  --plate-3: rgba(42, 33, 28, 0.06);
  --plate-dark-1: rgba(224, 122, 63, 0.16);
  --plate-dark-2: rgba(63, 125, 109, 0.16);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape */
  --radius: 16px;
  --radius-pill: 999px;

  /* Rhythm */
  --section-pad: 74px;
  --wrap: 1260px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-on-light);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.4vw, 25px); }

p { margin: 0; }

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

em {
  font-style: italic;
  color: var(--accent-1);
}

.section--dark em { color: #f0a877; }

ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-1);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius);
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Tags / fabric labels ---------- */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--plate-2);
  padding: 6px 14px 5px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section--dark .tag { color: #7ec3b1; background: var(--plate-dark-2); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
  background: var(--accent-1);
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
  will-change: transform;
}
.btn-primary:hover { transform: scale(0.98); background: #d16d33; }
.btn-primary:active { transform: scale(0.96); }
.btn-primary.is-pressed { animation: cushion 0.4s var(--ease); }

@keyframes cushion {
  0% { transform: scale(0.96); }
  60% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.btn-ghost {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-2);
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  background: transparent;
  transition: background-color 0.25s var(--ease);
}
.btn-ghost:hover { background: var(--plate-2); }

:focus-visible {
  outline: 3px dashed var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Navigation (nav-pill) ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 22px;
  width: calc(100% - 32px);
  max-width: 1040px;
  padding: 10px 12px 10px 22px;
  background: rgba(246, 239, 227, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  transition: padding 0.3s var(--ease), background-color 0.3s var(--ease);
}
.nav.is-scrolled {
  padding-top: 7px;
  padding-bottom: 7px;
  background: rgba(246, 239, 227, 0.92);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.01em;
  margin-right: auto;
}
.nav__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-1);
  background: var(--bg-dark);
  border-radius: 9px;
}

/* Cushion emblem lockup (nav + footer) */
.logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}

.nav__links {
  display: flex;
  gap: 6px;
}
.nav__links a {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__links a:hover { background: var(--plate-1); }
.nav__links a.is-active { color: var(--accent-1); background: var(--plate-1); }

.nav__cta {
  padding: 11px 22px;
  font-size: 15px;
}

/* ---------- Stitch motif ---------- */
/* Dashed centered seam between sections */
.stitch-rule {
  width: 120px;
  height: 0;
  margin: 0 auto;
  border-top: 2px dashed rgba(42, 33, 28, 0.35);
}

/* Reusable stitch border for cards (drawn 4px inset) */
.stitch {
  position: relative;
}
.stitch::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px dashed rgba(42, 33, 28, 0.22);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

/* ---------- Sections ---------- */
.section {
  padding-block: var(--section-pad);
}
.section--light {
  background: var(--bg-light);
  color: var(--text-on-light);
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section__head {
  max-width: 680px;
  margin-bottom: 40px;
}
.section__head h2 { margin-bottom: 16px; }
.section__intro {
  font-size: 18px;
  opacity: 0.86;
}
.section--dark .section__intro { opacity: 0.82; }

/* ---------- Photo treatment ---------- */
.photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.12) brightness(1.03);
}
/* One taped-in, slightly rotated photo like an album snapshot */
.photo--taped {
  position: relative;
  transform: rotate(1.5deg);
  padding: 10px;
  background: var(--cream);
  border-radius: var(--radius);
}
.photo--taped::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(224, 122, 63, 0.5);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.photo--taped img { border-radius: calc(var(--radius) - 6px); }

/* ============================================================
   HERO (hero-split-media) + Lamp Halo Breathing background
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 132px 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__halo {
  position: absolute;
  top: 8%;
  left: 18%;
  width: 620px;
  height: 620px;
  max-width: 90%;
  background: radial-gradient(circle at center,
      rgba(224, 122, 63, 0.34) 0%,
      rgba(224, 122, 63, 0.14) 38%,
      rgba(224, 122, 63, 0) 70%);
  transform: translate(-10%, -10%);
  animation: haloBreathe 12s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes haloBreathe {
  0%, 100% { transform: translate(-10%, -10%) scale(1); opacity: 0.85; }
  50% { transform: translate(-10%, -10%) scale(1.14); opacity: 1; }
}

.hero__dust { position: absolute; inset: 0; }
.dust {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(224, 122, 63, 0.5);
  opacity: 0;
  will-change: transform, opacity;
}

.hero__text, .hero__media { position: relative; z-index: 1; }

.hero__text h1 { margin-bottom: 22px; }
.hero__lead {
  font-size: 19px;
  max-width: 30em;
  margin-bottom: 30px;
  opacity: 0.9;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 14px;
  font-weight: 600;
}
.hero__facts li {
  position: relative;
  padding-left: 20px;
  color: var(--accent-2);
}
.hero__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid var(--accent-1);
}

.hero__media { justify-self: end; max-width: 460px; }

/* ============================================================
   ZONES (grid-3up-icon-cards)
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid--3up { grid-template-columns: repeat(3, 1fr); }
.grid--4up { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  border-radius: var(--radius);
  padding: 30px 26px;
}

.zone {
  background: var(--plate-1);
}
.zone:nth-child(2) { background: var(--plate-2); }
.zone:nth-child(3) { background: var(--plate-3); }
.zone .stitch::before,
.zone::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px dashed rgba(42, 33, 28, 0.20);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.zone__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light);
  background: var(--cream);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  position: relative;
}
.zone__label::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px dashed rgba(42, 33, 28, 0.28);
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.zone__glyph {
  width: 40px;
  height: 40px;
  color: var(--accent-1);
  margin-bottom: 12px;
}
.zone__photo {
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
}
.zone h3 { margin-bottom: 10px; }
.zone p { opacity: 0.85; margin-bottom: 16px; }

.zone__price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--accent-1);
  opacity: 1;
  margin-bottom: 16px;
}
.zone__price span { font-size: 27px; letter-spacing: -0.01em; }

.zone__note {
  margin-top: 30px;
  max-width: 640px;
  font-size: 16px;
  opacity: 0.9;
}
.zone__note strong { color: var(--accent-1); font-weight: 700; }

/* Gamepad-button list markers (SVG-less, CSS shapes, alternating) */
.gp-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 600;
}
.gp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  transition: transform 0.25s var(--ease);
}
/* cross (×) */
.gp-list li:nth-child(4n+1)::before {
  border-radius: 50%;
  border: 2px solid var(--accent-1);
}
/* circle */
.gp-list li:nth-child(4n+2)::before {
  border-radius: 50%;
  background: var(--accent-2);
}
/* square */
.gp-list li:nth-child(4n+3)::before {
  border-radius: 3px;
  background: var(--accent-1);
}
/* triangle */
.gp-list li:nth-child(4n)::before {
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--accent-2);
}
.gp-list li:hover::before { transform: translateY(-50%) translateY(-3px); }

/* ============================================================
   GAME LIBRARY (grid-4up-compact) — dark
   ============================================================ */
.genre {
  background: var(--plate-dark-1);
  padding: 26px 24px;
}
.genre:nth-child(2n) { background: var(--plate-dark-2); }
.genre::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px dashed rgba(246, 239, 227, 0.20);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.genre h3 { margin-bottom: 10px; }
.genre p { opacity: 0.82; font-size: 15px; }

/* ============================================================
   GALLERY (gallery-snapshots)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.gallery__item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}
.gallery__item img {
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px dashed rgba(255, 251, 239, 0.5);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 18px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  background: linear-gradient(to top, rgba(42, 33, 28, 0.78), rgba(42, 33, 28, 0));
}

/* ============================================================
   COZY EVENINGS
   ============================================================ */
.evenings {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.evenings__media .photo { aspect-ratio: 4 / 3; }

.feature-list {
  margin-top: 26px;
  display: grid;
  gap: 20px;
}
.feature-list li {
  position: relative;
  padding: 20px 22px 20px 24px;
  background: var(--plate-3);
  border-radius: var(--radius);
}
.feature-list li::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px dashed rgba(42, 33, 28, 0.18);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.feature-list li:nth-child(1) { background: var(--plate-1); }
.feature-list li:nth-child(2) { background: var(--plate-2); }
.feature-list h3 { margin-bottom: 6px; }
.feature-list p { opacity: 0.85; font-size: 15.5px; }

/* ============================================================
   HOW IT WORKS (timeline-horizontal-numbered) — dark
   ============================================================ */
.timeline--horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.timeline__step {
  position: relative;
  padding-top: 8px;
}
.timeline__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--bg-dark);
  background: var(--accent-1);
  border-radius: 50%;
  margin-bottom: 18px;
}
.timeline__step:nth-child(2) .timeline__num { background: var(--accent-2); color: var(--cream); }
/* connector stitch line between steps */
.timeline__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 66px;
  right: -30px;
  border-top: 2px dashed rgba(246, 239, 227, 0.30);
}
.timeline__step h3 { margin-bottom: 10px; }
.timeline__step p { opacity: 0.82; }

/* ============================================================
   BOOKING FORM (cta-form-split-image)
   ============================================================ */
.book {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.book__intro { position: sticky; top: 110px; }
.book__intro h2 { margin: 6px 0 18px; }
.book__intro p { opacity: 0.88; margin-bottom: 14px; }
.book__note { font-size: 15px; color: var(--accent-2); font-weight: 600; }

.book__form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
  padding: 34px 32px 36px;
  background: var(--cream);
  border-radius: var(--radius);
}
.book__form::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px dashed rgba(224, 122, 63, 0.30);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.field input,
.field select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-on-light);
  background: transparent;
  border: none;
  border-bottom: 2px dashed rgba(42, 33, 28, 0.35);
  padding: 9px 4px;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}
.field input::placeholder { color: rgba(42, 33, 28, 0.45); }
.field input:focus,
.field select:focus {
  outline: none;
  border-bottom: 2px solid var(--accent-2);
}
.field select { cursor: pointer; }

.book__submit { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }

.form-status { grid-column: 1 / -1; font-weight: 700; margin: 0; }
.form-status.success { color: var(--accent-2); }
.form-status.error { color: #c0492b; }

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

/* ============================================================
   FOOTER (footer-cta-repeat)
   ============================================================ */
.footer { background: var(--bg-dark); color: var(--text-on-dark); }
.footer__cta-band {
  text-align: center;
  padding: 64px 24px;
  background: var(--plate-dark-1);
  position: relative;
}
.footer__cta-band::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 2px dashed rgba(246, 239, 227, 0.22);
  border-radius: var(--radius);
  pointer-events: none;
}
.footer__cta-band h2 { margin: 4px 0 26px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  padding-block: 40px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
}
.footer__logo .nav__mark { background: var(--accent-1); color: var(--bg-dark); }
.footer__slogan { font-style: italic; font-family: var(--font-display); opacity: 0.75; }
.footer__links { display: flex; gap: 18px; margin-left: auto; }
.footer__links a { font-weight: 600; font-size: 15px; opacity: 0.85; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--accent-1); opacity: 1; }
.footer__disclaimer {
  flex-basis: 100%;
  font-weight: 700;
  color: #f0a877;
  padding-top: 18px;
  border-top: 2px dashed rgba(246, 239, 227, 0.18);
}
.footer__copy { flex-basis: 100%; font-size: 14px; opacity: 0.6; }

.footer__legal {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 18px;
  border-top: 2px dashed rgba(246, 239, 227, 0.18);
}
.footer__legal a {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.8;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.footer__legal a:hover { color: var(--accent-1); opacity: 1; }
.footer__legal + .footer__disclaimer { border-top: none; padding-top: 6px; }

/* ============================================================
   LEGAL PAGES (.legal)
   ============================================================ */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 150px 24px 80px;
}
.legal__head { margin-bottom: 40px; }
.legal__head h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 16px; }
.legal__updated { font-size: 15px; color: var(--accent-2); font-weight: 600; }
.legal__back { display: inline-block; margin-bottom: 26px; font-weight: 700; color: var(--accent-2); }
.legal__back:hover { color: var(--accent-1); }
.legal h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 42px 0 14px;
  padding-top: 20px;
  border-top: 2px dashed rgba(42, 33, 28, 0.22);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal h3 { font-size: 19px; margin: 24px 0 8px; }
.legal p { margin-bottom: 14px; opacity: 0.9; }
.legal ul { margin: 0 0 16px; padding-left: 4px; }
.legal ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  opacity: 0.9;
}
.legal ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid var(--accent-1);
}
.legal a:not(.legal__back) { color: var(--accent-2); font-weight: 600; text-decoration: underline; }

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

/* ============================================================
   RESPONSIVE — mobile-first breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .hero { gap: 40px; }
  .grid--4up { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 56px; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 128px;
  }
  .hero__media { justify-self: center; order: -1; max-width: 360px; }
  .grid--3up { grid-template-columns: 1fr; }
  .evenings,
  .book { grid-template-columns: 1fr; gap: 36px; }
  .evenings__media { max-width: 520px; }
  .book__intro { position: static; }
  .timeline--horizontal { grid-template-columns: 1fr; gap: 26px; }
  .timeline__step:not(:last-child)::after { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide { aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav { justify-content: space-between; gap: 12px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .hero { padding-inline: 18px; }
  .grid--4up { grid-template-columns: 1fr; }
  .book__form { grid-template-columns: 1fr; padding: 26px 22px 28px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn-primary,
  .hero__actions .btn-ghost { text-align: center; }
  .footer__links { margin-left: 0; flex-basis: 100%; }
}

/* ============================================================
   REDUCED MOTION — kill all motion, content stays visible
   ============================================================ */
@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;
  }
  .hero__halo { animation: none; opacity: 1; }
  .dust { display: none; }
  .reveal { opacity: 1; transform: none; }
  .btn-primary.is-pressed { animation: none; }
}
