/* ==========================================================================
   Buenaventuras — shared design system
   Extracted from the original landing page and extended for the multi-page
   site. Brand: deep navy night sky, sunrise gold/orange, sea blues, cream.
   ========================================================================== */

/* Self-hosted variable fonts (latin subset, from Google Fonts) */

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/cinzel-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/montserrat-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Metric-matched local fallbacks: sized so text occupies ~the same space
   before the webfonts arrive, eliminating font-swap layout shift. */

@font-face {
  font-family: 'Cinzel Fallback';
  src: local('Georgia');
  size-adjust: 102.9%;
}

@font-face {
  font-family: 'Montserrat Fallback';
  src: local('Arial');
  size-adjust: 111.6%;
}

:root {
  --navy: #0D1B2A;
  --deep-navy: #06101A;
  --blue: #0077C8;
  --cyan: #00B4DB;
  --green: #2E7D32;
  --sand: #E2C49A;
  --gold: #FFB300;
  --orange: #F97316;
  --red: #E63946;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, .74);
  --line: rgba(255, 255, 255, .16);
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --serif: "Cinzel", "Cinzel Fallback", Georgia, serif;
  --sans: "Montserrat", "Montserrat Fallback", Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 92px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--deep-navy);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: #111;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.page {
  overflow-x: clip;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 119, 200, .22), transparent 34rem),
    radial-gradient(circle at 80% 18%, rgba(249, 115, 22, .14), transparent 32rem),
    var(--deep-navy);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0;
  background: rgba(6, 16, 26, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .42));
}

.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: .12em;
  color: #fff;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
}

.nav-links a { padding: 6px 2px; white-space: nowrap; }

.nav-links a:hover { color: var(--gold); }

.nav-links a[aria-current="page"] {
  color: var(--gold);
  border-bottom: 2px solid var(--orange);
}

.nav-cta {
  padding: 11px 20px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 179, 0, .08);
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(249, 115, 22, .14);
}

.nav-links a.nav-cta[aria-current="page"] { border-bottom: 1px solid var(--orange); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--cream);
  width: 46px;
  height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 24px; height: 24px; }

.nav-toggle .icon-close { display: none; }

.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }

  /* The nav wrapper's drawer is hidden or position:fixed here, but the
     wrapper itself still occupied a flex gap slot, pushing the toggle
     away from the right edge. Remove it from the flex row. */
  .nav-inner > nav { display: contents; }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 16, 26, .98);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 26px;
    display: none;
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 16px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 14px;
  }

  .nav-links a[aria-current="page"] { border-bottom-color: var(--orange); }

  .nav-links .nav-cta {
    margin-top: 18px;
    text-align: center;
    border-radius: 999px;
    border-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   Typography and shared elements
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  color: var(--white);
}

h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 10px 32px rgba(0, 0, 0, .55);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .34em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.rule {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 28px 0 20px;
  color: var(--gold);
}

.rule::before,
.rule::after {
  content: "";
  display: block;
  width: 180px;
  max-width: 28vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.rule--left { justify-content: flex-start; }
.rule--left::before { display: none; }

.spark {
  width: 16px;
  height: 16px;
  background: var(--orange);
  transform: rotate(45deg);
  position: relative;
  flex: 0 0 auto;
}

.spark::before,
.spark::after {
  content: "";
  position: absolute;
  inset: 5px -7px;
  background: var(--orange);
  transform: rotate(45deg);
  opacity: .88;
  border-radius: 999px;
}

.spark::after { inset: -7px 5px; }

section { padding: 84px 0; }

.section-kicker {
  text-align: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 640px;
  margin: 18px auto 42px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

.align-left .section-kicker,
.align-left .section-title,
.align-left .section-intro {
  text-align: left;
  margin-left: 0;
}

.prose {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.prose h2, .prose h3 { margin: 40px 0 14px; }

.prose h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.prose h3 {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.prose p { margin: 0 0 18px; }

.prose ul { padding-left: 22px; margin: 0 0 18px; }

.prose li { margin: 6px 0; }

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: .22s ease;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #111;
  box-shadow: 0 16px 40px rgba(249, 115, 22, .28);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, .42);
}

.button-secondary {
  border: 1px solid rgba(255, 179, 0, .62);
  color: #fff;
  background: rgba(6, 16, 26, .32);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.text-link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.text-link:hover { color: var(--orange); }

/* --------------------------------------------------------------------------
   Heroes
   -------------------------------------------------------------------------- */

.hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 110px 0;
  background-color: var(--deep-navy);
  background-size: cover;
  background-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 26, .9) 0%, rgba(6, 16, 26, .67) 42%, rgba(6, 16, 26, .28) 100%),
    linear-gradient(0deg, rgba(6, 16, 26, .74), rgba(6, 16, 26, .18) 50%, rgba(6, 16, 26, .45));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, var(--deep-navy), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-copy {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 560px;
  margin: 0 0 34px;
}

/* Interior page hero — shorter */

.page-hero {
  min-height: 420px;
  padding: 80px 0 90px;
}

.page-hero h1 { font-size: clamp(34px, 4.6vw, 60px); }

.page-hero .hero-copy { font-size: clamp(16px, 1.8vw, 19px); }

.breadcrumbs {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
  margin-bottom: 26px;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "→";
  margin-right: 8px;
  color: var(--orange);
}

.breadcrumbs a:hover { color: var(--gold); }

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

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

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

.card {
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0A1724;
  display: flex;
  align-items: flex-end;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 16, 26, .95) 0%, rgba(6, 16, 26, .42) 56%, rgba(6, 16, 26, .05) 100%);
  z-index: 1;
}

.card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .45s ease;
}

.card:hover > img { transform: scale(1.05); }

.card-content {
  position: relative;
  z-index: 2;
  padding: 26px;
  width: 100%;
}

.card h3 {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

/* Whole-card link: stretch the primary link over the card */

.card .card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Placeholder art for cards without verified photography yet */

.card--placeholder-sea { background: linear-gradient(160deg, #0A2438 0%, #0E3A56 45%, #0B5E86 100%); }
.card--placeholder-sun { background: linear-gradient(160deg, #172231 0%, #3A2A18 55%, #7A4A12 100%); }
.card--placeholder-green { background: linear-gradient(160deg, #0D2318 0%, #14381F 55%, #1F5A2E 100%); }
.card--placeholder-sand { background: linear-gradient(160deg, #23201A 0%, #4A3C27 60%, #866A44 100%); }

.card-motif {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  opacity: .5;
  z-index: 2;
  color: var(--gold);
}

/* Panel cards (solid, text-forward) */

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

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

.panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 30px 28px;
}

.panel h3 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  font-weight: 700;
}

.panel p, .panel li {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 8px;
}

.panel ul { margin: 0; padding-left: 18px; }

.panel svg.panel-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: 16px;
}

/* Steps (How it works) */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 30px 26px 26px;
}

.step-number {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* --------------------------------------------------------------------------
   Light (cream) sections
   -------------------------------------------------------------------------- */

.light {
  background: var(--cream);
  color: var(--navy);
}

.light h1, .light h2, .light h3 { color: var(--navy); }

.light .eyebrow, .light .section-kicker { color: #9A4A00; }

.light .section-intro, .light .prose, .light p { color: rgba(13, 27, 42, .76); }

.light .panel {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, .1);
  box-shadow: 0 14px 40px rgba(13, 27, 42, .08);
}

.light .panel h3 { color: #9A4A00; }

.light .panel p, .light .panel li { color: rgba(13, 27, 42, .76); }

.light .step {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, .1);
  box-shadow: 0 14px 40px rgba(13, 27, 42, .08);
}

.light .step p { color: rgba(13, 27, 42, .74); }

.light .button-primary { color: #111; }

.light .button-dark {
  background: var(--navy);
  color: var(--cream);
}

.light .button-dark:hover { transform: translateY(-2px); }

.light .prose a { color: #9A4A00; }

.light .text-link { color: #9A4A00; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.feature-image {
  min-height: 360px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(13, 27, 42, .22);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* Pillars strip */

.pillars {
  background: var(--cream);
  color: var(--navy);
  padding: 34px 0;
  position: relative;
  z-index: 2;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  text-align: center;
  padding: 12px 32px;
  border-right: 1px solid rgba(13, 27, 42, .12);
}

.pillar:last-child { border-right: 0; }

.pillar svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  color: var(--orange);
}

.pillar h3 {
  font-family: var(--sans);
  color: var(--navy);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.pillar p {
  margin: 0 auto;
  max-width: 230px;
  color: rgba(13, 27, 42, .74);
  font-size: 14px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Journey (sample itinerary) cards
   -------------------------------------------------------------------------- */

.journey {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}

.journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.journey-meta li {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 179, 0, .4);
  border-radius: 999px;
  padding: 5px 12px;
}

.journey h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.journey p { color: var(--muted); font-size: 15px; margin: 0 0 14px; }

.journey ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14.5px;
}

.journey li { margin: 6px 0; }

.journey .text-link { margin-top: auto; }

.journey-note {
  text-align: center;
  color: rgba(255, 255, 255, .6);
  font-size: 13.5px;
  max-width: 640px;
  margin: 34px auto 0;
}

/* Journey cards on light (cream) sections */

.light .journey {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, .1);
  box-shadow: 0 14px 40px rgba(13, 27, 42, .08);
}

.light .journey h3 { color: var(--navy); }

.light .journey p,
.light .journey ul { color: rgba(13, 27, 42, .76); }

.light .journey-meta li {
  color: #9A4A00;
  border-color: rgba(154, 74, 0, .45);
}

.light .journey-note { color: rgba(13, 27, 42, .62); }

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

.field { display: flex; flex-direction: column; }

.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.field .hint {
  font-size: 13px;
  color: rgba(13, 27, 42, .7);
  margin: -4px 0 8px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(13, 27, 42, .24);
  border-radius: 4px;
  padding: 14px 16px;
  min-height: 52px;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--blue);
  outline-offset: 1px;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red);
  border-width: 2px;
}

.field .error {
  display: none;
  color: #B3222E;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 6px;
}

.field .error.is-visible { display: block; }

fieldset.field {
  border: 1px solid rgba(13, 27, 42, .18);
  border-radius: 6px;
  padding: 18px;
  margin: 0;
}

fieldset.field legend {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  padding: 0 8px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px 18px;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(13, 27, 42, .82);
  padding: 6px 2px;
}

.choice input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: var(--orange);
  flex: 0 0 auto;
}

.form-status {
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 26px;
  display: none;
}

.form-status.is-error {
  display: block;
  background: #FBEAEB;
  border: 1px solid var(--red);
  color: #8E1B24;
}

.form-status.is-success {
  display: block;
  background: #EAF4EB;
  border: 1px solid var(--green);
  color: #1D4F21;
}

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

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

.faq-item {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
  margin-bottom: 14px;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 26px;
  color: var(--orange);
  flex: 0 0 auto;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
}

.faq-item .faq-body p { margin: 0 0 12px; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  text-align: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at 50% 120%, rgba(249, 115, 22, .22), transparent 40rem),
    var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.cta-band h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: .12em;
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto 18px;
}

.cta-band p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 16px;
}

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

.site-footer {
  padding: 56px 0 40px;
  background: var(--deep-navy);
  color: rgba(255, 255, 255, .78);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand .brand { margin-bottom: 22px; }

.footer-brand p {
  max-width: 330px;
  font-size: 14px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .64);
}

.site-footer h2 {
  color: #fff;
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
}

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

.site-footer li { margin: 9px 0; font-size: 14.5px; }

.site-footer a:hover { color: var(--gold); }

.copyright {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .52);
  text-align: center;
}

.copyright a { text-decoration: underline; text-underline-offset: 2px; }

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

.center { text-align: center; }

.mt-0 { margin-top: 0; }

.stack > * + * { margin-top: 24px; }

.figure-credit {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
  margin-top: 8px;
}

.light .figure-credit { color: rgba(13, 27, 42, .5); }

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

@media (max-width: 980px) {
  :root { --header-h: 80px; }

  .hero { min-height: 620px; }

  .pillar-grid, .cards, .steps, .panels { grid-template-columns: repeat(2, 1fr); }

  .pillar:nth-child(2) { border-right: 0; }

  .pillar:nth-child(1),
  .pillar:nth-child(2) { border-bottom: 1px solid rgba(13, 27, 42, .12); }

  .split, .footer-grid, .form-grid { grid-template-columns: 1fr; }

  .field--full { grid-column: auto; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }

  :root { --header-h: 72px; }

  .site-header { padding: 10px 0; }

  .logo { width: 46px; height: 46px; }

  .brand-text span { display: none; }

  .hero { padding: 90px 0; min-height: 560px; }

  h1 { letter-spacing: .06em; }

  .actions .button { width: 100%; }

  section { padding: 64px 0; }

  .pillar-grid, .cards, .steps, .panels { grid-template-columns: 1fr; }

  .pillar { border-right: 0; border-bottom: 1px solid rgba(13, 27, 42, .12); }

  .pillar:last-child { border-bottom: 0; }
}
