/* FarOut Detailz - site stylesheet
   Locked brand: Purple #5B2D8E / Black #0A0A0A / White #FFFFFF
   Type: Bebas Neue (display) / Orbitron (labels) / Rajdhani (body)

   Contrast note: #5B2D8E on #0A0A0A measures 2.09:1, which fails WCAG for text.
   Purple is therefore used as a FILL behind white text (9.49:1) and as rules/
   borders only. Never as small text on the dark ground. */

:root {
  --purple: #5B2D8E;
  --purple-hover: #6D38A8;
  --black: #0A0A0A;
  --white: #FFFFFF;

  /* neutrals derived from the locked black, not new accent colours */
  --surface-1: #101012;
  --surface-2: #17171A;
  --surface-3: #1F1F24;
  --line: #2A2A30;
  --line-strong: #3A3A42;
  --text: #E8E8EC;
  --text-muted: #B4B4BE;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-label: 'Orbitron', 'Segoe UI', sans-serif;
  --font-body: 'Rajdhani', 'Segoe UI', sans-serif;

  --wrap: 1140px;
  --radius: 2px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  background: var(--black);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* width/height attributes are set on images so the browser can reserve space and
   avoid layout shift; height:auto keeps them scaling proportionally. */
img, video { max-width: 100%; height: auto; display: block; }

/* ---------- Focus + motion ---------- */

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 2000;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-label);
  font-size: .72rem;
  letter-spacing: 3px;
  padding: 12px 20px;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 { color: var(--white); font-weight: 400; line-height: 1.05; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.3;
}

p + p { margin-top: 1rem; }
strong { color: var(--white); font-weight: 600; }

a { color: var(--white); text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--white); }

.eyebrow {
  font-family: var(--font-label);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.lead { font-size: 1.15rem; color: var(--text); max-width: 62ch; }

/* ---------- Layout ---------- */

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

.section { padding-block: clamp(56px, 9vw, 104px); }
.section--alt { background: var(--surface-1); }
.section--line { border-top: 1px solid var(--line); }

.section-head { max-width: 72ch; margin-bottom: 44px; }
.section-head p { margin-top: 14px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 10, 10, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo { display: inline-flex; align-items: center; text-decoration: none; }
.header__logo img { height: 34px; width: auto; }

.nav { display: none; }

@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 28px; }
}

.nav a {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: var(--white); }
.nav a[aria-current="page"] { color: var(--white); border-bottom-color: var(--purple); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 20px; height: 20px; }

/* ---------- Mobile drawer ---------- */

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 86vw);
  background: var(--surface-1);
  border-left: 1px solid var(--line);
  z-index: 1000;
  padding: 24px 24px 40px;
  transform: translateX(100%);
  /* visibility:hidden keeps the closed drawer out of the keyboard tab order.
     Without it, its links stay focusable while parked off-screen.
     Closing delays the flip to hidden until the slide finishes; opening flips
     to visible immediately, so the panel is focusable on the very next frame. */
  visibility: hidden;
  transition: transform .25s ease, visibility 0s linear .25s;
  overflow-y: auto;
}
.drawer[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
  transition: transform .25s ease, visibility 0s linear 0s;
}

.drawer__head { display: flex; justify-content: flex-end; margin-bottom: 20px; }

.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: var(--font-label);
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer nav a[aria-current="page"] { color: var(--white); }

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.scrim[data-open="true"] { opacity: 1; visibility: visible; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 28px;
  font-family: var(--font-label);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.btn--primary { background: var(--purple); color: var(--white); }
.btn--primary:hover { background: var(--purple-hover); }

.btn--outline { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--white); }

.btn--full { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- Hero ---------- */

/* The hero is sized from the viewport so the 16:9 background video always has a
   sensible box to cover, on both desktop and phones. svh is the small-viewport
   height, which excludes mobile browser chrome and stops the hero jumping as
   the address bar hides; the vh line above it is the fallback. */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  min-height: 86vh;
  min-height: 86svh;
}

/* Sits over solid brand black at reduced opacity, so white hero text keeps a
   large contrast margin no matter which frame is showing. */
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--black); }
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .38;
}
/* When the video is swapped in, it replaces the still rather than stacking. */
.hero__media[data-video-active="true"] img { display: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(48px, 8vw, 88px);
}

/* Short landscape screens, e.g. a laptop at 1366x768 or a phone on its side. */
@media (max-height: 640px) {
  .hero { min-height: 520px; }
}

.hero__logo { width: clamp(180px, 34vw, 260px); margin-bottom: 30px; }
.hero h1 { max-width: 16ch; }
.hero h1 .accent { display: inline-block; background: var(--purple); color: var(--white); padding: 0 12px 4px; }
.hero__sub { margin-top: 22px; max-width: 54ch; font-size: 1.15rem; color: var(--text); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--font-label);
  font-size: .64rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Page banner (interior pages) ---------- */

.page-head { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-head__media { position: absolute; inset: 0; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; }
.page-head__media::after { content: ''; position: absolute; inset: 0; background: rgba(10, 10, 10, .78); }
.page-head__inner { position: relative; padding-block: clamp(48px, 8vw, 84px); }

/* ---------- Cards / grids ---------- */

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--auto { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--auto { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--auto { grid-template-columns: repeat(3, 1fr); }
}

/* Service and package cards carry a slight purple edge glow. Kept low-alpha and
   tight-radius so it reads as a lit edge rather than a neon halo. */
.card {
  background: var(--surface-1);
  border: 1px solid rgba(91, 45, 142, .55);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 16px -6px rgba(91, 45, 142, .55);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 1rem; }
.card__foot { margin-top: auto; padding-top: 22px; }

a.card, .card--link { text-decoration: none; }
.card { transition: border-color .15s ease, box-shadow .15s ease; }
a.card:hover, .card--link:hover {
  border-color: rgba(91, 45, 142, .95);
  box-shadow: 0 0 22px -4px rgba(91, 45, 142, .8);
}

/* value props: deliberately not a 3-across card row */
.props { display: grid; gap: 0; border-top: 1px solid var(--line); }
.props > div {
  display: grid;
  gap: 8px 28px;
  grid-template-columns: 1fr;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .props > div { grid-template-columns: 40px 260px 1fr; align-items: start; }
}
.props svg { width: 26px; height: 26px; color: var(--white); }
.props p { font-size: 1rem; }

/* ---------- Price display ---------- */

.price-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.price-table caption {
  text-align: left;
  font-family: var(--font-label);
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 14px;
}
.price-table th, .price-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table thead th {
  font-family: var(--font-label);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom-color: var(--line-strong);
}
.price-table tbody th { color: var(--white); font-weight: 600; font-size: 1.05rem; }
.price-table td { font-variant-numeric: tabular-nums; white-space: nowrap; }
.table-scroll { overflow-x: auto; }

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}
.price-line .name { color: var(--text); }
.price-line .amount { color: var(--white); font-weight: 600; font-variant-numeric: tabular-nums; }

.price-block { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-strong); }
.price-block .from {
  font-family: var(--font-label);
  font-size: .58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-block .figures { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.price-block .figures span {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid var(--line-strong);
  padding: 5px 12px;
  font-variant-numeric: tabular-nums;
}

/* Replaces the old "from $X" block now that everything is quoted individually. */
.quote-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.quote-cta::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
}

.rating-summary {
  display: grid;
  gap: 20px;
  align-items: center;
  background: var(--surface-1);
  border: 1px solid rgba(91, 45, 142, .55);
  box-shadow: 0 0 16px -6px rgba(91, 45, 142, .55);
  border-radius: var(--radius);
  padding: 26px 28px;
}
@media (min-width: 860px) {
  .rating-summary { grid-template-columns: auto 1fr auto; gap: 34px; }
}
.rating-summary__score { display: flex; flex-direction: column; gap: 4px; }
.rating-summary__score .num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .9;
  color: var(--white);
}
.rating-summary__score .stars { color: var(--white); letter-spacing: 3px; font-size: 1rem; }
.rating-summary__score .eyebrow { margin: 0; }
.rating-summary p { font-size: 1rem; margin: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.tag {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-label);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.includes { list-style: none; margin-top: 18px; }
.includes li { padding-block: 9px; border-bottom: 1px solid var(--line); color: var(--text); font-size: .98rem; }
.includes li:first-child { border-top: 1px solid var(--line); }

/* ---------- Gallery ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  font-family: var(--font-label);
  font-size: .64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  min-height: 44px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: border-color .15s ease, color .15s ease;
}
.filter:hover { color: var(--white); }
.filter[aria-pressed="true"] { background: var(--purple); border-color: var(--purple); color: var(--white); }

.gallery { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.shot {
  position: relative;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface-1);
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius);
}
.shot img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .3s ease; }
.shot:hover img { transform: scale(1.03); }
.shot figcaption {
  font-family: var(--font-label);
  font-size: .58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

dialog.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 96vw;
  max-height: 96vh;
}
dialog.lightbox::backdrop { background: rgba(0, 0, 0, .93); }
dialog.lightbox img { max-width: 92vw; max-height: 84vh; object-fit: contain; }
dialog.lightbox .lightbox__bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 14px; }
dialog.lightbox p { font-family: var(--font-label); font-size: .64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

/* ---------- Testimonials ---------- */

.quote {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius);
  padding: 26px;
}
.quote blockquote { color: var(--text); font-size: 1rem; }
.quote figcaption { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.quote .who { display: block; color: var(--white); font-weight: 600; }
.quote .what { display: block; font-family: var(--font-label); font-size: .58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.stars { color: var(--white); letter-spacing: 3px; font-size: .9rem; margin-bottom: 12px; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  position: relative;
  color: var(--white);
  font-family: var(--font-label);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details > div { padding-bottom: 24px; max-width: 74ch; }

/* ---------- Forms ---------- */

.form { max-width: 640px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-label);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field .req { color: var(--white); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  padding: 12px 14px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7A7A85; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--white); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #FF8A8A; }

.field-error { display: block; margin-top: 7px; color: #FF8A8A; font-size: .92rem; min-height: 0; }

.hint { font-size: .92rem; color: var(--text-muted); margin-top: 7px; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.consent input[type="checkbox"] { width: 22px; height: 22px; min-height: 0; flex: none; margin-top: 3px; accent-color: var(--purple); }
.consent label { font-family: var(--font-body); font-size: .96rem; letter-spacing: 0; text-transform: none; color: var(--text-muted); margin: 0; }

.form-status { margin-top: 18px; padding: 16px 18px; border: 1px solid var(--line-strong); border-radius: var(--radius); }
.form-status[data-state="success"] { border-color: var(--purple); border-left-width: 3px; }
.form-status[data-state="error"] { border-color: #FF8A8A; border-left-width: 3px; }
.form-status h3 { margin-bottom: 6px; }

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

.spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Booking wizard ---------- */

.wizard { max-width: 780px; }
.wizard__bar { height: 3px; background: var(--surface-3); margin-bottom: 10px; }
.wizard__bar span { display: block; height: 100%; background: var(--purple); width: 0; transition: width .3s ease; }
.wizard__count { font-family: var(--font-label); font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 26px; }

.step { display: none; }
.step[data-active="true"] { display: block; }
.step > h2 { margin-bottom: 8px; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.step > p.hint { margin-bottom: 24px; }

.choices { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); margin-bottom: 26px; }
@media (min-width: 720px) { .choices { grid-template-columns: repeat(3, 1fr); } }
.choices--2 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .choices--2 { grid-template-columns: repeat(2, 1fr); } }

.choice {
  text-align: left;
  background: var(--surface-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  padding: 18px;
  min-height: 72px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .15s ease, background-color .15s ease;
}
.choice:hover { border-color: var(--white); }
.choice[aria-pressed="true"] { background: var(--purple); border-color: var(--purple); color: var(--white); }
.choice .t { font-family: var(--font-label); font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); }
.choice .s { font-size: .94rem; }
.choice .n { font-size: .84rem; color: var(--text-muted); }
.choice[aria-pressed="true"] .s, .choice[aria-pressed="true"] .n { color: rgba(255, 255, 255, .88); }

.wizard__nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.summary-list { border-top: 1px solid var(--line); margin-bottom: 26px; }
.summary-list div { display: flex; justify-content: space-between; gap: 20px; padding-block: 13px; border-bottom: 1px solid var(--line); }
.summary-list dt { font-family: var(--font-label); font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.summary-list dd { color: var(--white); text-align: right; }

/* ---------- Callout / CTA ---------- */

.callout {
  background: var(--purple);
  color: var(--white);
  padding: clamp(36px, 6vw, 60px);
  border-radius: var(--radius);
}
.callout h2 { color: var(--white); }
.callout p { color: rgba(255, 255, 255, .92); margin-top: 12px; max-width: 56ch; }
.callout .btn--primary { background: var(--white); color: var(--purple); }
.callout .btn--primary:hover { background: rgba(255, 255, 255, .88); }
.callout .btn--outline { border-color: rgba(255, 255, 255, .55); color: var(--white); }
.callout .btn--outline:hover { border-color: var(--white); }

.note {
  border-left: 3px solid var(--line-strong);
  padding: 14px 0 14px 18px;
  font-size: .98rem;
  color: var(--text-muted);
}

/* ---------- Legal pages ---------- */

.legal { max-width: 76ch; }
.legal h2 { font-family: var(--font-label); font-size: 1rem; font-weight: 700; letter-spacing: 2px; margin-top: 40px; margin-bottom: 12px; }
.legal h3 { font-size: .86rem; margin-top: 26px; margin-bottom: 10px; }
.legal ul, .legal ol { margin: 12px 0 12px 22px; }
.legal li { margin-bottom: 7px; }
.legal .updated { font-family: var(--font-label); font-size: .64rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }
.legal table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: .96rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: 11px 13px; text-align: left; vertical-align: top; }
.legal thead th { background: var(--surface-1); color: var(--white); font-family: var(--font-label); font-size: .6rem; letter-spacing: 1.5px; text-transform: uppercase; }

.toc { background: var(--surface-1); border: 1px solid var(--line); padding: 22px 26px; margin-bottom: 32px; }
.toc h2 { margin-top: 0; font-size: .74rem; }
.toc ol { margin-left: 18px; }
.toc a { color: var(--text); }

/* ---------- Footer ---------- */

.footer { background: var(--surface-1); border-top: 1px solid var(--line); padding-block: 56px 28px; }
.footer__grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer__logo { width: 150px; margin-bottom: 16px; }
.footer h2 {
  font-family: var(--font-label);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  color: var(--white);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--text-muted); text-decoration: none; font-size: .98rem; }
.footer a:hover { color: var(--white); text-decoration: underline; }

.footer__legal {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  font-size: .9rem;
}
.footer__legal nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }

.social { display: flex; gap: 14px; margin-top: 16px; }
.social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: var(--radius); }
.social svg { width: 17px; height: 17px; }

/* ---------- Utility widgets ---------- */

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 800;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.to-top[data-show="true"] { opacity: 1; visibility: visible; }
.to-top svg { width: 17px; height: 17px; }

.call-fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-label);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 18px;
  min-height: 48px;
  border-radius: var(--radius);
}
.call-fab:hover { background: var(--purple-hover); }
.call-fab svg { width: 16px; height: 16px; }
@media (min-width: 900px) { .call-fab { display: none; } }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--purple);
  width: 0;
  z-index: 950;
}

/* ---------- Cookie banner ---------- */

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: var(--surface-2);
  border-top: 1px solid var(--line-strong);
  padding: 20px;
  display: none;
}
.cookie[data-open="true"] { display: block; }
.cookie__inner { display: grid; gap: 16px; align-items: center; }
@media (min-width: 880px) { .cookie__inner { grid-template-columns: 1fr auto; } }
.cookie p { font-size: .96rem; max-width: 76ch; }
.cookie .actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie .btn { min-height: 44px; padding: 11px 20px; font-size: .64rem; }

/* ---------- Reveal ---------- */

/* Scoped to .js so content stays visible if JavaScript fails or is disabled.
   assets/js/head.js adds that class before paint. */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal[data-visible="true"] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Print ---------- */

@media print {
  .header, .drawer, .scrim, .to-top, .call-fab, .cookie, .progress, .hero__media, .page-head__media, .filters, .btn, .callout { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  h1, h2, h3, h4, strong, .price-table tbody th { color: #000; }
  .section { padding-block: 12pt; }
  .card, .quote, .toc { border: 1px solid #999; background: none; }
  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
  .reveal { opacity: 1; transform: none; }
}
