/* =========================================================
   SI Travels — styles.css
   Calm, premium, mobile-first
   ========================================================= */

:root {
  /* --- Palette ---------------------------------------------------------- */
  /* Deep logo navy — reserved for footer, deepest hero layer, form CTA */
  --navy-900: #0B2545;
  --navy-800: #12315b;
  --navy-700: #17406e;

  /* Heritage medium blue — secondary sections, icon backgrounds, accents */
  --blue-600: #1D5FA7;
  --blue-500: #2B6FB6;
  --blue-400: #4a89cc;

  /* Soft powder blue — light card + section backgrounds */
  --powder: #EAF2FA;
  --powder-2: #dfebf7;

  /* Warm neutrals */
  --paper: #FBF8F2;   /* primary page background (warm ivory) */
  --cream: #F2ECE3;   /* alternating soft beige */
  --cream-2: #ece5d6; /* deeper beige if needed */

  /* Red accent — sparingly for CTAs and route-line */
  --red-500: #E84C3D;
  --red-600: #c93b2f;

  /* Text */
  --charcoal: #142536;
  --slate: #52606D;
  --slate-light: #7f8892;

  /* Lines, gold accent, white */
  --line: #e6dfd0;
  --line-strong: #d4cbb6;
  --line-blue: #cfdcea;
  --sand: #d9c79a;
  --gold: #b08a3c;
  --white: #ffffff;

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;

  /* Sizing */
  --container: 1200px;
  --container-narrow: 820px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.05), 0 2px 8px rgba(11, 37, 69, 0.04);
  --shadow-md: 0 4px 14px rgba(11, 37, 69, 0.08), 0 20px 40px rgba(11, 37, 69, 0.06);
  --shadow-lg: 0 12px 40px rgba(11, 37, 69, 0.14);

  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-500); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--navy-900); color: #fff; padding: 10px 14px; border-radius: 6px;
  z-index: 200;
}
.skip-link:focus { left: 12px; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: var(--container-narrow); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-blue);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  /* Ensure flex children can shrink without overflowing */
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--navy-900);
  flex-shrink: 0;
  min-width: 0;
  max-width: 220px;
}
.brand:hover { text-decoration: none; }
.brand-logo { height: 40px; width: auto; max-width: 180px; display: block; }
.brand-text {
  display: none; /* redundant with logo wordmark; kept for a11y only */
}
.brand-name {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.brand-tag {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.primary-nav {
  margin-left: auto;
  min-width: 0;
}
.primary-nav ul {
  display: flex; gap: 26px; margin: 0; padding: 0; list-style: none;
  flex-wrap: nowrap;
}
.primary-nav li { flex-shrink: 0; }
.primary-nav a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
  white-space: nowrap;
  display: inline-block;
}
.primary-nav a:hover { color: var(--navy-900); border-bottom-color: var(--red-500); text-decoration: none; }

.header-ctas {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-blue);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column; justify-content: space-between;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block; height: 2px; background: var(--navy-900); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 8px 20px 16px;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  color: var(--navy-900);
  font-weight: 500;
}
.mobile-nav .mobile-cta {
  margin-top: 12px;
  background: var(--red-500);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 14px 16px;
  font-weight: 600;
}
.mobile-nav .mobile-cta:hover { text-decoration: none; background: var(--red-600); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 14px; font-size: 13.5px; border-radius: 8px; }
.btn-lg { padding: 15px 24px; font-size: 16px; border-radius: 12px; }
.btn .ico { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--red-500);
  color: #fff;
  border-color: var(--red-500);
  box-shadow: 0 6px 16px rgba(232, 76, 61, 0.28);
}
.btn-primary:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  box-shadow: 0 8px 22px rgba(232, 76, 61, 0.36);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--navy-900);
  border-color: var(--line-blue);
}
.btn-ghost:hover {
  background: var(--powder);
  border-color: var(--blue-500);
  color: var(--navy-900);
}

.btn-on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}
.btn-on-dark:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-1px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 80% at 82% 45%, rgba(29, 95, 167, 0.30) 0%, rgba(11, 37, 69, 0) 65%),
    linear-gradient(155deg, #0B2545 0%, #14335f 60%, #0B2545 100%);
}
.hero-route {
  position: absolute;
  top: 0; left: -5%;
  width: 60%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 84px 20px 84px;
  min-height: 620px;
}
.hero-copy { max-width: 620px; min-width: 0; }

/* Bashir portrait — proper <img>, no transform, natural crop */
.hero-portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  min-width: 0;
}
.hero-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -24px -18px -18px -24px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 35% 30%, rgba(74, 137, 204, 0.30) 0%, rgba(11, 37, 69, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-portrait-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: #12315b;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 32%;
  display: block;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--sand);
  margin: 0 0 18px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.hero-sub {
  font-size: clamp(15.5px, 1.4vw, 18px);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 0 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-trust {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 22px;
  max-width: 560px;
}
.hero-trust li {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.4;
}
.hero-trust span {
  display: block;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.eyebrow { color: #EAF2FA; }

/* =========================================================
   PROOF STRIP
   ========================================================= */
.proof {
  background: var(--cream);
  border-top: 3px solid var(--red-500);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.proof-list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.proof-list li {
  display: flex; flex-direction: column; gap: 10px;
  padding-right: 24px;
  border-right: 1px solid var(--line-strong);
}
.proof-list li:last-child { border-right: none; }
.proof-mark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.proof-list p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-powder { background: var(--powder); border-top: 1px solid var(--line-blue); border-bottom: 1px solid var(--line-blue); }

.section-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.section-head.light { color: #fff; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--red-500);
  font-weight: 700;
  margin: 0 0 14px;
}
.section-head.light .kicker { color: var(--sand); }
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  color: var(--navy-900);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.section-head.light .section-title { color: #fff; }
.section-lede {
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  color: var(--slate);
  margin: 0;
}
.section-head.light .section-lede { color: rgba(255,255,255,0.85); }

.center { text-align: center; margin-top: 40px; }

/* =========================================================
   CARD GRID
   ========================================================= */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-600);
  color: #fff;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--navy-900);
}
.card p { color: var(--slate); margin: 0; font-size: 15px; }

/* =========================================================
   SPLIT LAYOUT
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-copy .section-title { font-size: clamp(26px, 3vw, 38px); }
.split-copy .kicker { margin-bottom: 12px; }

/* Feature list */
.feature-list { display: grid; gap: 18px; margin: 28px 0 22px; }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--cream-2);
  color: var(--navy-900);
  border: 1px solid var(--line);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-900);
  margin: 2px 0 6px;
}
.feature p { margin: 0; color: var(--slate); font-size: 14.5px; }

.disclaimer {
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(11,31,58,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.55;
}

/* =========================================================
   WHY (help_desk) — crop tight on the human interaction so
   the generated wall signage and fake screen recede.
   ========================================================= */
#why .split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
#why .split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 8% 65%;
  transform: scale(1.55);
  transform-origin: 15% 65%;
  filter: saturate(0.9) contrast(0.98);
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
}
#why .split-media::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    /* Heavy fade on the right so wall signage and nameplate recede */
    linear-gradient(90deg, rgba(11,31,58,0) 0%, rgba(11,31,58,0) 40%, rgba(11,31,58,0.55) 72%, rgba(11,31,58,0.90) 100%),
    /* Soften the fake booking screen area */
    radial-gradient(ellipse 30% 30% at 55% 45%, rgba(11,31,58,0.35) 0%, rgba(11,31,58,0) 70%),
    /* Subtle bottom fade */
    linear-gradient(180deg, rgba(11,31,58,0) 70%, rgba(11,31,58,0.35) 100%);
}

/* =========================================================
   REASONS (Why people call Bashir)
   ========================================================= */
.reasons {
  list-style: none; padding: 0; margin: 28px 0 0;
  counter-reset: reason;
  display: grid; gap: 22px;
}
.reasons li {
  position: relative;
  padding-left: 44px;
  counter-increment: reason;
}
.reasons li::before {
  content: counter(reason);
  position: absolute; left: 0; top: 2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  display: grid; place-items: center;
  line-height: 1;
}
.reasons h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.reasons p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   REGIONS BAND
   ========================================================= */
.regions-band {
  margin-top: 72px;
  background: var(--powder);
  color: var(--navy-900);
  padding: 48px 0;
  border-top: 1px solid var(--line-blue);
  border-bottom: 1px solid var(--line-blue);
}
.regions-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
.regions-map {
  width: 100%;
  border-radius: 14px;
  filter: saturate(0.95);
  box-shadow: 0 8px 30px rgba(11, 37, 69, 0.10);
}
.regions-copy .regions-lead {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--navy-900);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.regions-band .chip-list li {
  background: #fff;
  border-color: var(--line-blue);
  color: var(--navy-900);
}

.seasonal {
  padding: 14px 16px;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  color: var(--charcoal);
  font-size: 14px;
  margin: 20px 0 0;
  line-height: 1.55;
}

/* =========================================================
   STORY
   ========================================================= */
.story-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 42px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.story-figure { margin: 0; }
.story-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.story-figure figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--slate-light);
  font-style: italic;
  text-align: center;
}
/* Now: portrait crop on Bashir's face — hide wall poster + fake screen */
.story-figure.now { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.story-figure.now img {
  border-radius: 0;
  box-shadow: none;
  object-position: 34% 30%;
  transform: scale(1.9);
  transform-origin: 38% 30%;
  filter: saturate(0.9) contrast(0.95);
}
.story-figure.now::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 50% 45%, transparent 40%, rgba(11,31,58,0.15) 70%, rgba(11,31,58,0.35) 100%);
}
.story-figure.old { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.story-figure.old img {
  border-radius: 0;
  box-shadow: none;
  object-position: 50% 25%;
  transform: scale(1.05);
}
.story-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--charcoal);
  text-align: center;
}
.story-copy p { margin: 0 0 18px; }
.story-lede {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.4;
  color: var(--navy-900);
  letter-spacing: -0.005em;
}
.story-note {
  display: inline-block;
  border-left: 3px solid var(--red-500);
  padding: 10px 18px;
  background: rgba(184,52,42,0.06);
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy-800);
  font-style: italic;
  text-align: left;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 42px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.timeline li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 8px;
  border-left: 2px solid var(--red-500);
  padding-left: 18px;
}
.tl-year {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy-900);
  font-weight: 600;
}
.tl-body { font-size: 14.5px; color: var(--slate); }

/* Check list */
.check-list { list-style: none; padding: 0; margin: 24px 0 24px; display: grid; gap: 10px; }
.check-list li {
  position: relative; padding-left: 30px; color: var(--charcoal); font-size: 15px;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-600);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='m5 12 4 4 10-10' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.callout {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream-2);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  margin-bottom: 28px;
}
.callout-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--sand);
  display: grid; place-items: center;
}
.callout-icon svg { width: 22px; height: 22px; }
.callout p { margin: 6px 0 0; font-size: 14.5px; color: var(--charcoal); }

/* Chip list */
.chip-list {
  list-style: none; padding: 0; margin: 24px 0 20px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chip-list li {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-900);
  font-size: 13.5px;
  font-weight: 500;
}

.from-cities {
  color: var(--slate);
  font-size: 14.5px;
  margin: 12px 0 0;
  font-style: italic;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  background: var(--blue-600);
  color: #fff;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.25;
}
.step p { color: var(--slate); margin: 0; font-size: 14.5px; }

/* Minimal variant used in "Three steps" — no card, just the number and heading */
.steps.minimal { gap: 40px; }
.steps.minimal .step {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
}
.steps.minimal .step-num {
  margin: 0 auto 18px;
  width: 54px; height: 54px;
  font-size: 24px;
}
.steps.minimal h3 { font-size: 22px; }

/* =========================================================
   REQUEST FORM
   ========================================================= */
.request {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 96px 0;
  color: #fff;
  position: relative;
  border-top: 3px solid var(--red-500);
}
.form-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trip-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}
.trip-form legend {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 18px;
  width: 100%;
}
.legend-inline {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 6px; }
.field label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(234, 242, 250, 0.28);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  min-height: 46px;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #EAF2FA;
  background: rgba(255,255,255,0.16);
  box-shadow: 0 0 0 3px rgba(234, 242, 250, 0.25);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(234, 242, 250, 0.55); }

.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.field select option { color: var(--charcoal); background: #fff; }
.field input[type="date"] { color-scheme: dark; }

.checkgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 4px;
}
.check {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.4;
  transition: background .15s ease, border-color .15s ease;
}
.check:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.28); }
.check input {
  margin: 3px 0 0 0;
  accent-color: var(--red-500);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.check.consent {
  margin-top: 22px;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.form-actions { margin-top: 20px; text-align: center; }
.form-actions .fine {
  margin-top: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

#submitBtn { min-width: 280px; position: relative; }
#submitBtn[disabled] { opacity: 0.7; cursor: not-allowed; }
.btn-loading {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
#submitBtn.loading .btn-label { display: none; }
#submitBtn.loading .btn-loading { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(184,52,42,0.15);
  border: 1px solid rgba(184,52,42,0.5);
  color: #ffd7d2;
  border-radius: 10px;
  font-size: 14px;
}

.form-success {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(217,199,154,0.15);
  border: 1px solid rgba(217,199,154,0.4);
  display: grid; place-items: center;
  color: var(--sand);
}
.success-icon svg { width: 34px; height: 34px; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 14px;
}
.form-success p { color: rgba(255,255,255,0.85); font-size: 16px; margin: 0 auto 24px; max-width: 520px; }
.success-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Honeypot */
.hp {
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px 18px 20px;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 16px;
  position: relative;
  display: flex; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  margin-left: auto;
  width: 14px; height: 14px;
  border-right: 2px solid var(--slate);
  border-bottom: 2px solid var(--slate);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq-body {
  padding: 0 20px 20px;
  color: var(--slate);
  font-size: 15px;
}
.faq-body p { margin: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 18px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.contact-card h3:first-child { margin-top: 0; }
.contact-card p { margin: 0; color: var(--charcoal); font-size: 15.5px; }
.contact-card a { color: var(--navy-900); font-weight: 600; }
.contact-card.actions {
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}
.contact-card.actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.contact-card.actions .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 40px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-tag { font-family: var(--font-serif); font-size: 18px; color: #fff; margin: 0 0 12px; }
.footer-note { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; max-width: 460px; }

.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  font-weight: 600;
}
.foot-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.foot-list a { color: rgba(255,255,255,0.85); }
.foot-list a:hover { color: #fff; }

.opc-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 14px;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}
.opc-mark {
  align-self: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  padding: 8px 10px;
  color: var(--navy-900);
  background: var(--sand);
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.opc-body strong { color: #fff; }

.footer-bottom {
  padding-top: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom p { margin: 0; }

/* =========================================================
   MOBILE STICKY ACTIONS
   ========================================================= */
.mobile-actions {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
  box-shadow: 0 -6px 22px rgba(11,31,58,0.08);
}
.ma-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  background: var(--cream-2);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line-strong);
}
.ma-btn:hover { text-decoration: none; }
.ma-btn svg { width: 18px; height: 18px; }
.ma-btn.primary { background: var(--red-500); color: #fff; border-color: var(--red-500); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* Sections should clear the sticky header when anchor-scrolled */
main > section,
section[id] {
  scroll-margin-top: calc(var(--header-h) + 8px);
}

@media (max-width: 1180px) {
  .primary-nav ul { gap: 18px; }
  .primary-nav a { font-size: 14px; }
}

@media (max-width: 1080px) {
  /* Collapse desktop navigation into hamburger for tablet widths */
  .primary-nav { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .header-ctas { gap: 6px; }
  .header-ctas .btn { padding: 8px 12px; font-size: 13px; }

  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { gap: 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero-portrait-wrap { max-width: 400px; margin: 0 auto; order: 2; }
  .hero-copy { order: 1; max-width: none; }
  .hero-route { width: 100%; opacity: 0.6; }
}

@media (max-width: 820px) {
  .header-ctas { display: none; }
  .brand-tag { display: none; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .split-media img { aspect-ratio: 5 / 4; }

  .proof { padding: 32px 0; }
  .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }
  .proof-list li {
    padding-right: 0;
    padding-bottom: 16px;
    border-right: none;
    border-bottom: 1px solid var(--line-strong);
  }
  .proof-list li:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }

  .regions-inner { grid-template-columns: 1fr; gap: 24px; }
  .regions-band { margin-top: 48px; }

  .story-media { grid-template-columns: 1fr; gap: 20px; }

  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }

  .hero { min-height: 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 20px 56px;
    min-height: 0;
  }
  .hero-title { font-size: clamp(30px, 7.6vw, 42px); }
  .hero-copy { max-width: none; order: 1; }
  .hero-portrait-wrap { order: 2; max-width: 360px; margin: 0 auto; }
  .hero-portrait-frame { aspect-ratio: 4 / 5; }
  .hero-route { width: 100%; opacity: 0.5; }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .form-wrap { padding: 24px 20px; }
  .grid { grid-template-columns: 1fr; }
  .checkgrid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }

  .mobile-actions { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 480px) {
  .card-grid.four { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
  .hero-ctas .btn { flex: 1; }
  .btn { padding: 12px 16px; }
  .btn-lg { padding: 14px 20px; font-size: 15px; }
  #submitBtn { min-width: 0; width: 100%; }
  .form-wrap { padding: 22px 16px; }
  .brand-name { font-size: 18px; }
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }

/* Print */
@media print {
  .site-header, .mobile-actions, .request, .hero-media { display: none !important; }
  body { color: #000; background: #fff; }
}
