/* ==========================================================================
   Feel The Freedom — main stylesheet
   Design tokens follow the DZONE® Skydiving styleguide
   (Sora for headings, Inter for body, red/navy palette, fluid type scale).
   ========================================================================== */

/* ---------- Fonts (same variable fonts used on dzoneskydiving.com) ------- */
@font-face {
  font-family: "Inter";
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/inter-vf.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/sora-vf.woff2") format("woff2");
}

/* ---------- Tokens -------------------------------------------------------- */
:root {
  /* DZONE palette */
  --color-white: #ffffff;
  --color-neutral-100: #f8f8f8;
  --color-neutral-200: #f2f2f2;
  --color-neutral-300: #e5e5e5;
  --color-neutral-400: #bdbdbd;
  --color-neutral-500: #8a8a8a;
  --color-neutral-600: #5c5c5c;
  --color-neutral-700: #3a3a3a;
  --color-neutral-800: #1c1c1c;
  --color-red-100: #fdebec;
  --color-red-500: #e61f26;
  --color-red-600: #c71a20;
  --color-red-700: #a5151a;
  --color-navy-100: #e6e8ed;
  --color-navy-300: #9aa3b2;
  --color-navy-500: #111827;
  --color-navy-900: #0a1628;

  /* Roles */
  --ink: var(--color-navy-500);
  --ink-soft: var(--color-neutral-600);
  --paper: var(--color-white);
  --paper-warm: var(--color-neutral-100);
  --dark: var(--color-navy-900);
  --on-dark: var(--color-navy-100);
  --on-dark-muted: var(--color-navy-300);
  --accent: var(--color-red-700);
  --accent-bright: var(--color-red-500);
  --hairline: rgba(17, 24, 39, 0.12);
  --hairline-on-dark: rgba(230, 232, 237, 0.16);

  /* Type (DZONE fluid scale) */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", "Inter", -apple-system, Arial, sans-serif;
  --fs-body: clamp(1rem, 0.9rem + 0.35vw, 1.1875rem);
  --fs-body-sm: clamp(0.875rem, 0.8438rem + 0.1563vw, 1rem);
  --fs-h1: clamp(2.5rem, 1.6rem + 4.5vw, 5.25rem);
  --fs-h2: clamp(1.75rem, 1.4375rem + 1.5625vw, 3rem);
  --fs-h3: clamp(1.2rem, 1.05rem + 0.7vw, 1.75rem);
  --fs-caption: clamp(0.6875rem, 0.65rem + 0.2vw, 0.8125rem);
  --fs-quote: clamp(1.375rem, 1.05rem + 1.6vw, 2.375rem);

  /* Layout */
  --wide: 72rem;
  --prose: 46rem;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 4.25rem;
  --radius: 0.25rem;
  --transition: all 0.25s ease-in-out;
}

/* ---------- Base ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  overflow-wrap: break-word;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-bright);
}

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

::selection {
  background: var(--color-red-100);
  color: var(--color-red-700);
}

.wrap {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.prose {
  max-width: var(--prose);
}

.visually-hidden {
  position: absolute !important;
  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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Buttons (DZONE .c-button spec) -------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.8155rem + 0.2976vw, 1rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  padding: 0.9375rem 1.4375rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-red-700);
  color: var(--color-white);
  background-color: var(--color-red-700);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  color: var(--color-white);
  border-color: var(--color-red-600);
  background-color: var(--color-red-600);
}

.btn--light {
  border-color: var(--color-white);
  background-color: var(--color-white);
  color: var(--ink);
}

.btn--light:hover {
  border-color: var(--color-navy-100);
  background-color: var(--color-navy-100);
  color: var(--ink);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background-color: transparent;
  color: var(--color-white);
}

.btn--ghost:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.btn--sm {
  padding: 0.6875rem 0.9375rem;
}

/* ---------- Header -------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid {
  background-color: rgba(10, 22, 40, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-white);
  text-decoration: none;
}

.brand:hover {
  color: var(--color-white);
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
  align-items: center;
}

.site-nav__list a {
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.88;
}

.site-nav__list a:hover {
  opacity: 1;
  color: var(--color-white);
}

/* Below 576px the bar can't fit brand + CTA + hamburger; the menu panel
   carries the CTA instead. */
@media (max-width: 35.9375em) {
  .site-nav > .btn {
    display: none;
  }
}

/* Extra headroom for 320px-class screens */
@media (max-width: 22.4375em) {
  .brand__name {
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.625rem;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: calc(var(--header-h) + 1rem) var(--pad-x) 2rem;
  background: var(--dark);
  transform: translateY(-102%);
  visibility: hidden;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.menu-panel.is-open {
  transform: translateY(0);
  visibility: visible;
}

.menu-panel__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.menu-panel__list a {
  display: block;
  padding: 0.8rem 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-on-dark);
}

@media (min-width: 62em) {
  .site-nav__list {
    display: flex;
  }

  .nav-toggle,
  .menu-panel {
    display: none;
  }
}

/* ---------- Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: max(100svh, 42rem);
  padding-top: calc(var(--header-h) + 3rem);
  color: var(--color-white);
  background:
    radial-gradient(120% 55% at 50% 108%, rgba(240, 203, 143, 0.42) 0%, rgba(240, 203, 143, 0) 62%),
    linear-gradient(180deg, #060d1c 0%, var(--color-navy-900) 22%, var(--color-navy-500) 40%, #22355c 58%, #48618f 74%, #93a7c8 88%, #dfe4ec 100%);
  overflow: hidden;
}

.hero__sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(2.5rem, 6vh, 5rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1.5rem;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.hero__eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent-bright);
}

.hero__title {
  max-width: 11ch;
  margin: 0 0 1.5rem;
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.95);
}

.hero__lede {
  max-width: 34rem;
  margin: 0 0 2.25rem;
  font-size: clamp(1.0625rem, 0.95rem + 0.55vw, 1.3125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: clamp(2.5rem, 7vh, 5rem);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(10, 22, 40, 0.25);
  color: var(--color-navy-900);
}

.hero__stat {
  min-width: 0;
}

.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--fs-body-sm);
  color: rgba(10, 22, 40, 0.72);
}

@media (min-width: 48em) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Sections ------------------------------------------------------- */
.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.section--warm {
  background: var(--paper-warm);
}

.section--dark {
  background: var(--dark);
  color: var(--on-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1.125rem;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section--dark .eyebrow {
  color: var(--color-red-500);
}

.section__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  max-width: 24ch;
  text-wrap: balance;
}

.lede {
  font-size: clamp(1.0625rem, 0.95rem + 0.55vw, 1.3125rem);
  line-height: 1.65;
  color: var(--ink);
}

.section--dark .lede {
  color: var(--on-dark);
}

.muted {
  color: var(--ink-soft);
}

.section--dark .muted {
  color: var(--on-dark-muted);
}

/* ---------- Moments (What it feels like) ----------------------------------- */
.moments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: clamp(2.25rem, 5vw, 3.75rem);
}

.moment {
  position: relative;
  padding-top: 1.5rem;
  border-top: 2px solid var(--ink);
}

.moment__num {
  position: absolute;
  top: -0.7em;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 2rem + 3vw, 4.5rem);
  font-weight: 200;
  line-height: 1;
  color: var(--color-navy-300);
  background: inherit;
}

.moment h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.625rem;
}

.moment p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.moment p strong {
  color: var(--ink);
}

@media (min-width: 48em) {
  .moments {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* ---------- Quote band ------------------------------------------------------ */
.quoteband {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background:
    radial-gradient(90% 120% at 85% -20%, rgba(230, 31, 38, 0.14) 0%, rgba(230, 31, 38, 0) 55%),
    var(--dark);
  color: var(--color-white);
  overflow: hidden;
}

.quoteband blockquote {
  margin: 0;
  max-width: 52rem;
}

.quoteband blockquote p {
  font-family: var(--font-display);
  font-size: var(--fs-quote);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}

.quoteband cite {
  font-style: normal;
  font-size: var(--fs-body-sm);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.quoteband__mark {
  position: absolute;
  top: -0.05em;
  right: -0.02em;
  font-family: Georgia, serif;
  font-size: clamp(12rem, 28vw, 24rem);
  line-height: 1;
  color: rgba(230, 232, 237, 0.06);
  pointer-events: none;
  user-select: none;
}

/* ---------- Reasons (Why people skydive) ------------------------------------ */
.reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.25rem, 5vw, 3.75rem);
}

.reason {
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) * 2);
}

.reason__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.125rem;
  border-radius: 50%;
  background: var(--color-red-100);
  color: var(--accent);
}

.reason__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.reason h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.5rem;
}

.reason p {
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (min-width: 36em) {
  .reasons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 62em) {
  .reasons {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Steps (Fear section) -------------------------------------------- */
.steps {
  list-style: none;
  counter-reset: step;
  margin: clamp(2.25rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  max-width: 52rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 2rem 4.25rem;
}

.steps li::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--accent);
}

.steps li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2.2em;
  bottom: 0.6em;
  width: 1px;
  margin-left: 0.9em;
  background: var(--hairline);
}

.steps li:last-child {
  padding-bottom: 0;
}

.steps li:last-child::after {
  display: none;
}

.steps h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.5rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

.callout {
  max-width: 52rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--accent-bright);
  background: var(--color-red-100);
  border-radius: 0 calc(var(--radius) * 2) calc(var(--radius) * 2) 0;
}

.callout p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 600;
  color: var(--color-red-700);
}

/* ---------- Film ------------------------------------------------------------- */
.film {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.video-facade {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  background: var(--color-navy-500);
  box-shadow: 0 2rem 4rem rgba(6, 13, 28, 0.45);
  text-decoration: none;
}

.video-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.55) saturate(1.1);
  transform: scale(1.08);
}

.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.72) 100%);
}

.video-facade__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.625rem, 2.5vw, 1.25rem);
  padding: 1rem;
  text-align: center;
}

.video-facade__play {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(3.5rem, 12vw, 5.5rem);
  height: clamp(3.5rem, 12vw, 5.5rem);
  border-radius: 50%;
  background: var(--accent-bright);
  color: var(--color-white);
  transition: var(--transition);
}

.video-facade__play svg {
  width: 38%;
  height: 38%;
  margin-left: 6%;
}

.video-facade:hover .video-facade__play {
  transform: scale(1.07);
  background: var(--color-red-600);
}

.video-facade__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.85rem + 1vw, 1.75rem);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

/* On short facades (16:9 of a narrow screen) drop the meta line so the
   play button and title keep their size. */
@media (max-width: 35.9375em) {
  .video-facade__meta {
    display: none;
  }
}

.video-facade__meta {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.film__frame {
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  box-shadow: 0 2rem 4rem rgba(6, 13, 28, 0.45);
}

.film__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.film__caption {
  margin-top: 1.25rem;
  font-size: var(--fs-body-sm);
  color: var(--on-dark-muted);
}

/* ---------- Quotes grid -------------------------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.quotes figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0;
  padding: 1.875rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) * 2);
}

.quotes blockquote {
  margin: 0;
}

.quotes blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 0.95rem + 0.55vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.quotes blockquote p::before {
  content: "“";
  color: var(--accent-bright);
}

.quotes blockquote p::after {
  content: "”";
  color: var(--accent-bright);
}

.quotes figcaption {
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (min-width: 48em) {
  .quotes {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- CTA band ------------------------------------------------------------ */
.cta-band {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background:
    radial-gradient(110% 130% at 15% -30%, rgba(230, 31, 38, 0.2) 0%, rgba(230, 31, 38, 0) 55%),
    linear-gradient(180deg, var(--color-navy-500) 0%, var(--color-navy-900) 100%);
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-band .section__title {
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band__lede {
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  color: var(--on-dark);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  width: 100%;
}

.cta-band__actions .btn {
  white-space: normal;
  line-height: 1.35;
  max-width: 100%;
}

.cta-band__note {
  margin: 1.5rem 0 0;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* ---------- FAQ -------------------------------------------------------------------- */
.faq {
  max-width: 52rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.faq details {
  border-bottom: 1px solid var(--hairline);
}

.faq details:first-of-type {
  border-top: 1px solid var(--hairline);
}

.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.375rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 0.98rem + 0.4vw, 1.25rem);
  font-weight: 600;
  transition: var(--transition);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  color: var(--accent-bright);
}

.faq summary::after {
  content: "+";
  flex-shrink: 0;
  align-self: center;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-bright);
  transition: var(--transition);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 0 1.5rem;
  max-width: 44rem;
  color: var(--ink-soft);
}

.faq__answer p {
  margin-bottom: 0.75em;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

/* ---------- Footer ------------------------------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 2.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hairline-on-dark);
}

.site-footer__about .brand {
  margin-bottom: 1.25rem;
}

.site-footer__about p {
  max-width: 26rem;
  margin: 0;
  font-size: var(--fs-body-sm);
  color: var(--on-dark-muted);
}

.site-footer__title {
  margin: 0 0 1.125rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__list a {
  color: var(--on-dark-muted);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__list a:hover {
  color: var(--color-white);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
  font-size: var(--fs-caption);
  color: var(--on-dark-muted);
}

.site-footer__bottom p {
  margin: 0;
}

@media (min-width: 62em) {
  .site-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
  }
}

/* ---------- Reveal animation (added by JS only) ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Hero sky animation ------------------------------------------------------------ */
@keyframes drift {
  from {
    transform: translateX(-1.5%);
  }
  to {
    transform: translateX(1.5%);
  }
}

@keyframes bob {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-0.5rem);
  }
}

.hero__clouds--far {
  animation: drift 70s ease-in-out infinite alternate;
}

.hero__clouds--near {
  animation: drift 45s ease-in-out infinite alternate-reverse;
}

.hero__plane {
  animation: bob 7s ease-in-out infinite alternate;
}

/* The plane-and-jumpers vignette needs room; on small screens it collides
   with the hero copy, so it stays desktop-only. */
@media (max-width: 61.9375em) {
  .hero__plane {
    display: none;
  }
}

/* ---------- Reduced motion ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
