/* Aurelis camper marketing site — shared styles */

:root {
  --bg: #F1EEE5;
  --ink: #26203E;
  --ink-soft: #4C4566;
  --ink-muted: #7B7492;
  --purple: #6D3BC7;
  --yellow: #F5C31C;
  --yellow-dark: #E3AF07;
  --yellow-soft: #F2C94C;
  --dark: #2B2144;
  --card: #FBFAF5;
  --line: rgba(38, 32, 62, 0.12);
  --line-soft: rgba(38, 32, 62, 0.1);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--purple);
}

::selection {
  background: var(--yellow);
  color: var(--dark);
}

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

.page {
  min-height: 100vh;
  background: var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 48px;
  background: rgba(241, 238, 229, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a.active {
  color: var(--purple);
}

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

.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  color: var(--dark);
}

.btn-primary.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--ink);
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ---- Shared blocks ---- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--purple);
  margin-bottom: 16px;
}

.image-frame {
  min-width: 0;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: rgba(38, 32, 62, 0.08);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.image-credit {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(38, 32, 62, 0.55);
  padding: 3px 8px;
  border-radius: 999px;
}

.image-credit:hover {
  color: #fff;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .brand {
  color: var(--ink);
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  color: var(--ink-muted);
}

.footer-nav a:hover {
  color: var(--purple);
}

/* ---- About page ---- */

.about-hero {
  padding: 96px 48px 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  max-width: 20ch;
  text-wrap: balance;
}

.about-story {
  padding: 0 48px 96px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.about-story .image-frame {
  min-height: 480px;
}

.about-story-text {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.about-story-text p {
  margin: 0 0 20px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.principles {
  background: var(--dark);
  color: var(--bg);
  margin: 0 16px;
  border-radius: 20px;
  padding: 96px 48px;
}

.principles-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.principles h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 56px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.principle {
  border-top: 1px solid rgba(241, 238, 229, 0.25);
  padding-top: 24px;
}

.principle-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--yellow-soft);
  margin-bottom: 14px;
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 12px;
}

.principle p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(241, 238, 229, 0.75);
  margin: 0;
}

.numbers {
  padding: 112px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.number-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 32px;
}

.number-value {
  font-family: var(--font-mono);
  font-size: 34px;
  margin-bottom: 8px;
  color: var(--purple);
}

.number-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.team {
  padding: 0 48px 112px;
  max-width: 1280px;
  margin: 0 auto;
}

.team h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  margin: 0 0 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-member {
  min-width: 0;
}

.team-member .image-frame {
  height: 360px;
  margin-bottom: 18px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.team-role {
  font-size: 14.5px;
  color: var(--ink-muted);
  margin-top: 4px;
}

.cta {
  text-align: center;
  padding: 24px 48px 120px;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  margin: 0 0 32px;
  text-wrap: balance;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */

@media (max-width: 960px) {
  .site-header {
    padding: 16px 24px;
    flex-wrap: wrap;
  }

  .site-nav {
    gap: 24px;
  }

  .about-hero {
    padding: 64px 24px 48px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px 64px;
  }

  .about-story .image-frame {
    min-height: 320px;
  }

  .principles {
    padding: 64px 24px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .numbers {
    padding: 64px 24px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team {
    padding: 0 24px 64px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 24px 24px 80px;
  }

  .cta h2 {
    font-size: 34px;
  }

  .site-footer {
    padding: 32px 24px;
  }
}

@media (max-width: 520px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Shared page blocks ---- */

.page-hero {
  padding: 96px 48px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.page-hero .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 24px 0 0;
}

.eyebrow-yellow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--yellow-soft);
  margin-bottom: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
}

.dark-panel {
  background: var(--dark);
  color: var(--bg);
  margin: 0 16px;
  border-radius: 20px;
  padding: 96px 48px;
}

.dark-panel .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.link-arrow {
  font-weight: 600;
  color: var(--purple);
  border-bottom: 2px solid var(--purple);
  padding-bottom: 2px;
}

.link-arrow-yellow {
  color: var(--yellow-soft);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow-soft);
  padding-bottom: 2px;
}

.link-arrow-yellow:hover {
  color: var(--bg);
}

.list-dash {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list-dash li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.list-dash li::before {
  content: "—";
  color: var(--purple);
}

/* ---- Home page ---- */

.home-hero {
  min-width: 0;
  position: relative;
  height: 82vh;
  min-height: 560px;
  margin: 16px 16px 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(38, 32, 62, 0.08);
}

.home-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.home-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 22, 16, 0.72) 0%, rgba(20, 22, 16, 0.15) 42%, transparent 65%);
  pointer-events: none;
}

.home-hero-copy {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 130px;
  max-width: 760px;
  pointer-events: none;
}

.home-hero-copy .eyebrow-yellow {
  margin-bottom: 16px;
}

.home-hero-copy h1 {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  color: var(--bg);
  margin: 0;
  text-wrap: balance;
}

.home-hero-specs {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 32px;
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(241, 238, 229, 0.3);
  padding-top: 20px;
  pointer-events: none;
}

.home-hero-specs .spec-value {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--bg);
}

.home-hero-specs .spec-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(241, 238, 229, 0.65);
  text-transform: uppercase;
  margin-top: 4px;
}

.home-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.home-story h2 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}

.home-story-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.home-story-text p {
  margin: 0 0 20px;
}

.features {
  padding: 0 16px 32px;
  display: grid;
  gap: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-media {
  min-width: 0;
  overflow: hidden;
  position: relative;
  min-height: 460px;
  border-radius: 19px;
  background: rgba(38, 32, 62, 0.08);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.feature-body {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.feature-body .eyebrow {
  font-size: 12px;
  margin-bottom: 14px;
}

.feature-body h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 16px;
  text-wrap: balance;
}

.feature-body > p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 46ch;
}

.feature-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.feature-stats .stat-value {
  font-family: var(--font-mono);
  font-size: 19px;
}

.feature-stats .stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 3px;
}

.trims {
  margin: 16px;
}

.trims-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.trims-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin: 0;
}

.trims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trim-card {
  display: block;
  background: rgba(241, 238, 229, 0.06);
  border: 1px solid rgba(241, 238, 229, 0.16);
  border-radius: 16px;
  padding: 36px;
  color: var(--bg);
}

.trim-card:hover {
  background: rgba(241, 238, 229, 0.12);
  color: var(--bg);
}

.trim-card .trim-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--yellow-soft);
}

.trim-card .trim-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  margin: 12px 0 6px;
}

.trim-card .trim-price {
  font-family: var(--font-mono);
  font-size: 17px;
  color: rgba(241, 238, 229, 0.8);
  margin-bottom: 18px;
}

.trim-card .trim-blurb {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(241, 238, 229, 0.72);
}

.gallery {
  padding: 16px;
  display: grid;
  gap: 16px;
}

.gallery-featured {
  grid-template-columns: 2fr 1fr 1fr;
}

.gallery-featured .image-frame {
  height: 380px;
  border-radius: 20px;
}

.gallery-equal {
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 16px;
}

.gallery-equal .image-frame {
  height: 340px;
  border-radius: 20px;
}

.home-cta {
  text-align: center;
  padding: 120px 48px 100px;
}

.home-cta h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 32px;
  text-wrap: balance;
}

/* ---- Camper page ---- */

.camper-profile {
  padding: 0 16px;
}

.camper-profile .image-frame {
  height: 520px;
  border-radius: 20px;
}

.zones {
  padding: 112px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.zones h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 12px;
}

.zones .zones-intro {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 56px;
  max-width: 60ch;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.zone-card .image-frame {
  height: 280px;
  border-radius: 0;
}

.zone-card .zone-body {
  padding: 32px;
}

.zone-card .zone-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.zone-card .zone-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--purple);
}

.zone-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.zone-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.deep-dive h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}

.deep-dive .deep-body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(241, 238, 229, 0.78);
  margin: 0 0 32px;
}

.deep-dive .eyebrow-yellow {
  font-size: 12px;
  margin-bottom: 14px;
}

.deep-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.deep-stats > div {
  border-top: 1px solid rgba(241, 238, 229, 0.2);
  padding-top: 14px;
}

.deep-stats .stat-value {
  font-family: var(--font-mono);
  font-size: 20px;
}

.deep-stats .stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241, 238, 229, 0.6);
  margin-top: 4px;
}

.deep-dive .image-frame {
  height: 520px;
}

.duo {
  padding: 112px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.duo-card .image-frame {
  height: 320px;
  border-radius: 0;
}

.duo-card .duo-body {
  padding: 36px;
}

.duo-card .eyebrow {
  font-size: 12px;
  margin-bottom: 12px;
}

.duo-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
}

.duo-card .duo-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.specs {
  padding: 0 48px 112px;
  max-width: 1280px;
  margin: 0 auto;
}

.specs h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 48px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.spec-group-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--purple);
  border-bottom: 1px solid rgba(38, 32, 62, 0.2);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(38, 32, 62, 0.08);
  font-size: 15px;
}

.spec-row .spec-key {
  color: var(--ink-soft);
}

.spec-row .spec-val {
  font-family: var(--font-mono);
  text-align: right;
}

.specs-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 32px;
}

.camper-cta {
  text-align: center;
  padding: 120px 48px 100px;
}

.camper-cta h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px;
  text-wrap: balance;
}

.camper-cta .cta-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

/* ---- Pricing page ---- */

.pricing-hero {
  text-align: center;
}

.pricing-hero h1 {
  max-width: 18ch;
  margin: 0 auto;
}

.pricing-hero .lede {
  font-size: 18px;
  max-width: 56ch;
  margin: 20px auto 0;
}

.price-grid {
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1360px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.price-card .price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.price-card .trim-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--purple);
}

.price-card .badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 999px;
}

.price-card h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 4px;
}

.price-card .tagline {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.price-card .price {
  font-family: var(--font-mono);
  font-size: 30px;
  margin-bottom: 26px;
}

.price-card .list-dash {
  margin-bottom: 32px;
  gap: 11px;
  flex: 1;
}

.price-card .btn-trim {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--bg);
  padding: 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

.price-card .btn-trim:hover {
  opacity: 0.85;
  color: var(--bg);
}

.price-card.dark {
  background: var(--dark);
  color: var(--bg);
}

.price-card.dark .trim-tag {
  color: var(--yellow-soft);
}

.price-card.dark .tagline,
.price-card.dark .list-dash li {
  color: rgba(241, 238, 229, 0.78);
}

.price-card.dark .list-dash li::before {
  color: var(--yellow-soft);
}

.price-card.dark .btn-trim {
  background: var(--yellow);
  color: var(--dark);
}

.price-card.dark .btn-trim:hover {
  color: var(--dark);
}

.compare {
  padding: 112px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.compare h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  margin: 0 0 40px;
}

.compare-scroll {
  overflow-x: auto;
}

.compare-table {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  font-size: 15px;
  min-width: 640px;
}

.compare-table .col-head {
  padding: 14px 0;
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
}

.compare-table .col-head.featured {
  color: var(--purple);
}

.compare-table .row-key {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
}

.compare-table .row-val {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
}

.compare-table .row-val.featured {
  background: rgba(109, 59, 199, 0.06);
}

.reserve {
  scroll-margin-top: 90px;
}

.reserve-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.reserve-grid h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 18px;
  text-wrap: balance;
}

.reserve-grid .reserve-body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(241, 238, 229, 0.78);
  margin: 0 0 28px;
}

.reserve-steps {
  display: grid;
  gap: 14px;
}

.reserve-steps .step {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.reserve-steps .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--yellow-soft);
}

.reserve-steps .step-text {
  font-size: 15.5px;
  color: rgba(241, 238, 229, 0.85);
}

.reserve-box {
  background: rgba(241, 238, 229, 0.06);
  border: 1px solid rgba(241, 238, 229, 0.16);
  border-radius: 16px;
  padding: 36px;
}

.reserve-box .eyebrow-yellow {
  font-size: 12px;
  margin-bottom: 20px;
}

.reserve-fields {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.reserve-fields input,
.reserve-fields select {
  background: rgba(241, 238, 229, 0.08);
  border: 1px solid rgba(241, 238, 229, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--bg);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
}

.reserve-fields input::placeholder {
  color: rgba(241, 238, 229, 0.5);
}

.reserve-fields select option {
  color: var(--ink);
  background: var(--bg);
}

.reserve-box .btn-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 15px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
}

.reserve-box .btn-submit:hover {
  background: var(--yellow-dark);
}

.reserve-box .fine-print {
  font-size: 12.5px;
  color: rgba(241, 238, 229, 0.55);
  margin-top: 14px;
  text-align: center;
}

.reserve-confirmation {
  text-align: center;
  padding: 24px 0;
}

.reserve-confirmation .confirm-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.reserve-confirmation .confirm-body {
  font-size: 15px;
  color: rgba(241, 238, 229, 0.75);
  line-height: 1.6;
}

.faq {
  padding: 112px 48px;
  max-width: 820px;
  margin: 0 auto;
}

.faq h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  margin: 0 0 40px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}

.faq summary {
  font-size: 17px;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq details p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 65ch;
}

/* ---- Responsive (new pages) ---- */

@media (max-width: 960px) {
  .page-hero {
    padding: 64px 24px 40px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .dark-panel {
    padding: 64px 24px;
  }

  .home-hero {
    min-height: 660px;
  }

  .home-hero-copy {
    left: 24px;
    right: 24px;
    bottom: 210px;
  }

  .home-hero-copy h1 {
    font-size: 34px;
  }

  .home-hero-specs {
    left: 24px;
    right: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .home-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 24px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }

  .feature-media {
    min-height: 300px;
  }

  .feature-body {
    padding: 32px 28px;
  }

  .trims-grid,
  .gallery-featured,
  .gallery-equal,
  .specs-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .zones-grid,
  .duo-grid,
  .deep-dive,
  .reserve-grid {
    grid-template-columns: 1fr;
  }

  .deep-dive,
  .reserve-grid {
    gap: 40px;
  }

  .deep-dive .image-frame,
  .camper-profile .image-frame {
    height: 340px;
  }

  .zones,
  .duo,
  .compare,
  .faq {
    padding-left: 24px;
    padding-right: 24px;
  }

  .zones,
  .duo {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .specs {
    padding: 0 24px 64px;
  }

  .home-cta,
  .camper-cta {
    padding: 64px 24px;
  }

  .home-cta h2 {
    font-size: 36px;
  }

  .camper-cta h2 {
    font-size: 34px;
  }
}
