/* ============================================
   JET RESERVE — Luxury Private Aviation
   Bright palette: ivory + cream + gold + navy
   ============================================ */

:root {
  /* Backgrounds */
  --ivory: #faf7f1;
  --cream: #f4efe4;
  --sand: #ebe4d3;
  --paper: #ffffff;

  /* Ink */
  --ink: #14213d;        /* deep navy */
  --ink-soft: #2a3556;
  --ink-muted: #5b6484;
  --muted: #8b8674;

  /* Accents */
  --gold: #c9a24b;
  --gold-bright: #d9b665;
  --gold-deep: #a17f30;
  --gold-tint: rgba(201, 162, 75, 0.14);

  /* Lines */
  --line: rgba(20, 33, 61, 0.12);
  --line-soft: rgba(20, 33, 61, 0.06);
  --line-gold: rgba(201, 162, 75, 0.35);

  --serif: "Cormorant Garamond", "Playfair Display", ui-serif, Georgia, serif;
  --sans: "Inter Tight", "Neue Haas Grotesk", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --pad-x: clamp(24px, 6vw, 120px);
  --section-y: clamp(80px, 10vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv01";
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ivory); }

/* ---------- Type utilities ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.on-dark { color: var(--gold-bright); }
.eyebrow.on-dark::before,
.eyebrow.on-dark.centered::after { background: var(--gold-bright); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7.6vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}
.h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h1 em { font-style: italic; color: var(--gold-deep); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.lede {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 58ch;
  font-weight: 300;
}

.small-caps {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}

/* Dark section overrides */
.dark-section { background: var(--ink); color: var(--ivory); }
.dark-section .display,
.dark-section .h1,
.dark-section .h2 { color: var(--ivory); }
.dark-section .display em,
.dark-section .h1 em { color: var(--gold-bright); }
.dark-section .lede { color: rgba(246,241,230,0.8); }
.dark-section .eyebrow { color: var(--gold-bright); }
.dark-section .eyebrow::before,
.dark-section .eyebrow.centered::after { background: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  background: transparent;
  color: var(--ink);
  position: relative;
}
.btn .arrow {
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.35s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 26px; }

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-ghost-light {
  border-color: rgba(246, 241, 230, 0.4);
  color: var(--ivory);
}
.btn-ghost-light:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-gold-outline {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 76px;
  width: auto;
  transition: height 0.35s cubic-bezier(0.2,0.7,0.2,1), filter 0.35s ease;
  /* Soft glow so the logo stays crisp on the bright hero sky */
  filter: drop-shadow(0 4px 30px rgba(255, 255, 255, 0.55)) drop-shadow(0 2px 12px rgba(20, 33, 61, 0.18));
}
.nav.scrolled .nav-logo img {
  height: 48px;
  filter: drop-shadow(0 2px 10px rgba(20, 33, 61, 0.12));
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Hero-overlay nav: keep dark text visible on bright sky */
.nav:not(.scrolled) .nav-links a {
  color: var(--ink);
  text-shadow: 0 1px 20px rgba(255, 255, 255, 0.7);
}

.nav-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-phone {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  width: 18px; height: 1px;
  background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad-x) clamp(60px, 8vw, 120px);
  isolation: isolate;
  background: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.3) 0%, rgba(250, 247, 241, 0.1) 40%, rgba(250, 247, 241, 0.5) 80%, rgba(250, 247, 241, 0.95) 100%);
}
.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-content .eyebrow { margin-bottom: 32px; }
.hero-content .display {
  margin-bottom: 32px;
  max-width: 14ch;
  text-shadow: 0 2px 40px rgba(255,255,255,0.4);
}
.hero-content .lede {
  margin-bottom: 48px;
  max-width: 46ch;
  color: var(--ink);
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta {
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.hero-meta-block {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  background: rgba(250, 247, 241, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 20px 12px 20px;
}
.hero-meta-block .k {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold-deep);
  line-height: 1;
  font-weight: 500;
}
.hero-meta-block .v {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 8px;
  font-weight: 500;
}

.hero-side {
  position: absolute;
  right: calc(var(--pad-x) - 4px);
  top: 22%;
  transform: rotate(90deg);
  transform-origin: right top;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}

/* Ticker */
.ticker {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
  overflow: hidden;
  padding: 22px 0;
}
.ticker-track {
  display: flex;
  gap: 80px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 80px;
}
.ticker-item::after {
  content: "✦";
  color: var(--gold);
  font-style: normal;
  font-size: 12px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section chrome ---------- */
section { position: relative; }
.section-pad { padding: var(--section-y) var(--pad-x); }
.container { max-width: 1400px; margin: 0 auto; width: 100%; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .h1 { max-width: 15ch; }
.section-head .lede { margin-top: 24px; }
.section-head-single {
  text-align: center;
  margin-bottom: 80px;
}
.section-head-single .eyebrow { margin-bottom: 24px; }
.section-head-single .h1 { max-width: 20ch; margin: 0 auto; }

/* ---------- Trust ---------- */
.trust {
  padding: 80px var(--pad-x);
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  align-items: start;
}
.trust-item {
  padding-left: 24px;
  border-left: 1px solid var(--line-gold);
}
.trust-item .k {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.trust-item .k sup {
  font-size: 0.5em;
  color: var(--gold-deep);
  font-weight: 300;
}
.trust-item .v {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 22ch;
}

/* ---------- Difference ---------- */
.difference { background: var(--ivory); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  padding: 56px 40px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(20, 33, 61, 0.15);
  border-color: var(--line-gold);
}
.diff-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.diff-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.diff-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 5px 10px;
  border: 1px solid var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
  background: var(--gold-tint);
}
.diff-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 32ch;
}

/* ---------- Product blocks (Jet Card / Dry Lease) ---------- */
.product { background: var(--cream); }
.product.paper { background: var(--paper); }
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 720px;
}
.product-image {
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-text {
  padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-text .eyebrow { margin-bottom: 24px; }
.product-text .h1 { margin-bottom: 24px; max-width: 12ch; }
.product-text .lede { margin-bottom: 40px; }

.product-list {
  list-style: none;
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
}
.product-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: baseline;
}
.product-list .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.product-list .val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
}
.product-list .val em {
  font-style: italic;
  color: var(--gold-deep);
}

.product-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product.reverse .product-inner { direction: rtl; }
.product.reverse .product-inner > * { direction: ltr; }

/* Pricing table */
.price-caption {
  margin-bottom: 12px;
  color: var(--gold-deep);
}
.price-table {
  border-top: 1px solid var(--line);
  margin: 0 0 40px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
  gap: 20px;
}
.price-row .cat {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.price-row .cat span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}
.price-row .rate {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.price-row .rate span {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  font-family: var(--sans);
  margin-left: 6px;
  text-transform: uppercase;
  font-weight: 400;
}

.callout {
  font-size: 14px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  background: var(--gold-tint);
  padding: 20px 20px 20px 22px;
}
.callout .key {
  color: var(--gold-deep);
  font-style: normal;
  letter-spacing: 0.14em;
  font-size: 11px;
  text-transform: uppercase;
  font-family: var(--sans);
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

/* ---------- Comparison ---------- */
.compare { background: var(--sand); }
.compare-wrap {
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.compare-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-header > div {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.compare-header > div:last-child { border-right: none; }
.compare-header .col-attr .small-caps { color: var(--gold-deep); }
.compare-header .col-prod {
  text-align: center;
}
.compare-header .col-prod .h2 { font-family: var(--serif); }
.compare-header .col-prod .small-caps { display: block; margin-bottom: 6px; color: var(--gold-deep); }
.compare-header .col-prod.featured {
  background: linear-gradient(180deg, rgba(201,162,75,0.10), transparent);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line-soft);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:nth-child(even) { background: rgba(20, 33, 61, 0.015); }
.compare-row > div {
  padding: 22px 24px;
  border-right: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.55;
}
.compare-row > div:last-child { border-right: none; }
.compare-row .attr {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.compare-row .val { color: var(--ink-soft); }
.compare-row .val strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 16px;
}

/* ---------- Evolution ---------- */
.evolve { background: var(--ivory); }
.stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.stages::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-tint), var(--gold), var(--gold), var(--gold-tint));
  z-index: 0;
}
.stage {
  position: relative;
  padding-top: 100px;
  z-index: 1;
}
.stage-dot {
  position: absolute;
  top: 30px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stage-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.stage-num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.stage-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.stage-body {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 24ch;
}

/* ---------- Safety ---------- */
.safety { background: var(--paper); }
.safety-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.safety-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.safety-image img { width: 100%; height: 100%; object-fit: cover; }
.safety-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.5);
  pointer-events: none;
}
.safety-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.safety-badge .k {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold-deep);
  line-height: 1;
  font-weight: 500;
}
.safety-badge .v {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.5;
}

.pillars {
  margin-top: 40px;
  list-style: none;
}
.pillar {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.pillar:last-child { border-bottom: none; }
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 18px;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 400;
}
.pillar-body {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Lead capture ---------- */
.lead {
  background: linear-gradient(180deg, var(--cream), var(--sand));
  position: relative;
  overflow: hidden;
}
.lead::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(201, 162, 75, 0.15), transparent 60%);
  pointer-events: none;
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
  position: relative;
}
.lead-copy .h1 { margin: 24px 0 32px; }
.lead-copy .lede { margin-bottom: 40px; }
.lead-contact {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
}
.contact-item .k {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.contact-item .v {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-deep);
  font-weight: 500;
}
.contact-item .v.small { font-size: 17px; color: var(--ink); }
.contact-item .v.small a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* Form */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 40px 80px -30px rgba(20, 33, 61, 0.18);
}
.form-card .form-title {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 400;
  color: var(--ink);
}
.form-card .form-sub {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 22px;
}
/* Section grouping inside the form */
.form-section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.form-section:first-child {
  padding-top: 0;
  border-top: none;
}
.form-section-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}
.form-section-head .n {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 15px;
}
.form-section-head .t {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.form-section-head .desc {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Segmented control (trip type radio pills) */
.pill-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 2px;
  background: var(--paper);
}
.pill-group input { display: none; }
.pill-group label {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 1px;
  user-select: none;
}
.pill-group label:hover {
  color: var(--ink);
}
.pill-group input:checked + label {
  background: var(--ink);
  color: var(--ivory);
}

/* Legs (dynamic list) */
.legs { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 20px; }
.leg {
  border: 1px solid var(--line);
  padding: 20px 20px 22px;
  background: rgba(250, 247, 241, 0.55);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
}
.leg-title {
  grid-column: 1 / -1;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.leg-remove {
  background: transparent;
  border: none;
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  cursor: pointer;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 500;
}
.leg-remove:hover { color: var(--gold-deep); }
.leg-add {
  grid-column: 1 / -1;
  background: transparent;
  border: 1px dashed var(--line-gold);
  padding: 14px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.leg-add:hover {
  background: var(--gold-tint);
  border-color: var(--gold);
}

/* Checkbox chips (special requests multi-select) */
.chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.chip input { display: none; }
.chip label {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--paper);
  user-select: none;
}
.chip label:hover {
  border-color: var(--gold);
  color: var(--ink);
}
.chip input:checked + label {
  background: var(--gold-tint);
  border-color: var(--gold);
  color: var(--gold-deep);
  font-weight: 600;
}

/* Mobile — collapse form to single column, sections stack */
@media (max-width: 640px) {
  .form-section { grid-template-columns: 1fr; }
  .leg { grid-template-columns: 1fr; }
  .form-section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .form-section-head .desc { margin-left: 0; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(20, 33, 61, 0.25);
  padding: 12px 0 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  outline: none;
  transition: border-color 0.3s;
}
.field textarea { resize: vertical; min-height: 90px; font-weight: 500; }
.field select { cursor: pointer; }
.field select option { background: var(--paper); color: var(--ink); font-weight: 500; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.55;
  font-weight: 400;
}
.form-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-note {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  max-width: 32ch;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success.on { display: block; }
.form-success .h2 { margin-bottom: 12px; color: var(--gold-deep); }
.form-success p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Closing CTA (still cinematic — one dark accent) ---------- */
.closing {
  padding: clamp(120px, 15vw, 200px) var(--pad-x);
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.closing-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.closing-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.closing-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,247,241,0.4), rgba(250,247,241,0.2) 40%, rgba(250,247,241,0.85));
  z-index: 1;
}
.closing-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.closing .display {
  margin: 40px 0 32px;
  text-shadow: 0 2px 40px rgba(255,255,255,0.5);
}
.closing .lede {
  margin: 0 auto 48px;
  color: var(--ink);
  font-weight: 400;
}
.closing-cta { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer (warm cream to close gently) ---------- */
.footer {
  background: var(--sand);
  color: var(--ink);
  padding: 80px var(--pad-x) 40px;
  border-top: 1px solid var(--line-gold);
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img {
  height: 92px;
  width: auto;
  margin-bottom: 24px;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 30ch;
  line-height: 1.5;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a {
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 0.3s;
}
.footer ul li a:hover { color: var(--gold-deep); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-muted);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a:hover { color: var(--gold-deep); }
.footer-disclaimer {
  max-width: 1400px;
  margin: 20px auto 0;
  font-size: 11px;
  color: var(--ink-muted);
  opacity: 0.75;
  line-height: 1.55;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Mobile menu drop-down (light + gold, matches site) ---------- */
.nav-links.mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0;
  padding: 12px 0;
  background: rgba(250, 247, 241, 0.98);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  box-shadow: 0 20px 40px -10px rgba(20, 33, 61, 0.15);
}
.nav-links.mobile-open li {
  border-bottom: 1px solid var(--line-soft);
}
.nav-links.mobile-open li:last-child {
  border-bottom: none;
}
.nav-links.mobile-open a {
  display: block;
  padding: 18px var(--pad-x);
  color: var(--ink) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-shadow: none !important;
}
.nav-links.mobile-open a:hover,
.nav-links.mobile-open a:active {
  color: var(--gold-deep) !important;
  background: var(--gold-tint);
}
.nav-links.mobile-open a::after { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: row; gap: 20px; flex-wrap: wrap; }
  .hero-side { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr; }
  .product-inner { grid-template-columns: 1fr; min-height: auto; }
  .product-image { aspect-ratio: 16/10; }
  .product.reverse .product-inner { direction: ltr; }
  .stages { grid-template-columns: 1fr 1fr; }
  .stages::before { display: none; }
  .safety-inner { grid-template-columns: 1fr; gap: 60px; }
  .safety-image { aspect-ratio: 16/10; }
  .lead-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .compare-header, .compare-row { grid-template-columns: 1fr; }
  .compare-header > div, .compare-row > div { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .compare-row .attr { background: var(--gold-tint); }
}

@media (max-width: 640px) {
  /* Push hero content below the enlarged fixed nav so title isn't covered */
  .hero {
    padding-top: 160px;
    align-items: flex-start;
    min-height: auto;
  }
  .hero-inner { gap: 40px; padding-bottom: 40px; }
  .hero-content .display { max-width: none; }
  /* Shrink logo a bit on tightest phones */
  .nav-logo img { height: 56px; }
  .nav.scrolled .nav-logo img { height: 42px; }

  .trust-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stages { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; }
  .nav-cta .btn { display: none; }
  .nav-cta .nav-phone { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .product-list li { grid-template-columns: 1fr; gap: 4px; }
}
