/* =========================================================
   L’Echappée Française — luxury cycling retreat
   Art direction: forest green, basalt charcoal, parchment cream,
   restrained copper. Editorial serif + clean sans.
   ========================================================= */

:root {
  /* Palette */
  --ink: #15201a;
  --ink-2: #1f2a23;
  --forest: #1a2920;
  --forest-2: #243a2e;
  --basalt: #2b2a26;
  --parchment: #f4eee2;
  --parchment-2: #eae3d2;
  --cream: #faf6ec;
  --copper: #b27a3a;
  --copper-2: #8e5e29;
  --line: rgba(21, 32, 26, 0.14);
  --line-light: rgba(244, 238, 226, 0.18);
  --muted: #6c6b65;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;

  --fs-hero: clamp(2.6rem, 6vw, 5.25rem);
  --fs-display: clamp(2.1rem, 4.2vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 1.8vw, 1.55rem);
  --fs-lede: clamp(1.05rem, 1.4vw, 1.25rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius: 6px;
  --radius-lg: 14px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 0.75rem;
  z-index: 999;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ===================== Header ===================== */
:root { --header-h: 80px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.site-header.over-hero {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--cream);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  color: currentColor;
  flex: 0 0 auto;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  letter-spacing: 0.01em;
}
.brand-tag {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.over-hero .brand-tag {
  color: color-mix(in srgb, var(--cream) 75%, transparent);
}

.primary-nav {
  display: flex;
  gap: 0.72rem;
  margin-left: auto;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.primary-nav a {
  text-decoration: none;
  color: inherit;
  opacity: 0.82;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.primary-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lang-switcher {
  display: inline-flex;
  border: 1px solid currentColor;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
.lang-switcher button {
  padding: 0.35rem 0.55rem;
  color: inherit;
  border: 0;
  background: transparent;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.lang-switcher button[aria-current="true"] {
  background: var(--ink);
  color: var(--cream);
}
.over-hero .lang-switcher button[aria-current="true"] {
  background: var(--cream);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 28px;
  height: 22px;
  padding: 0;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  text-transform: none;
  white-space: nowrap;
}
.btn-lg {
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-2);
}
.over-hero .btn-primary {
  background: var(--copper);
  color: var(--ink);
}
.over-hero .btn-primary:hover {
  background: var(--cream);
}
.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-ghost:hover {
  background: currentColor;
  color: var(--ink);
}
.over-hero .btn-ghost:hover {
  color: var(--ink);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: min(94vh, 900px);
  margin-top: calc(-1 * var(--header-h, 80px));
  padding-top: var(--header-h, 80px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 22, 18, 0.55) 0%,
    rgba(15, 22, 18, 0.15) 35%,
    rgba(15, 22, 18, 0.65) 90%,
    rgba(15, 22, 18, 0.85) 100%
  );
}

.hero-content {
  padding-top: clamp(6rem, 16vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 1180px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 var(--space-6);
}

.display,
.h-display,
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.012em;
  line-height: 1.04;
  margin: 0;
}

.display {
  font-size: var(--fs-hero);
  max-width: 16ch;
  font-variation-settings: "opsz" 60;
}

.h-display {
  font-size: var(--fs-display);
  line-height: 1.08;
  max-width: 22ch;
  font-variation-settings: "opsz" 36;
}

.lede {
  margin-top: var(--space-6);
  font-size: var(--fs-lede);
  max-width: 56ch;
  line-height: 1.55;
  color: color-mix(in srgb, var(--cream) 92%, transparent);
}
.lede-sm {
  font-size: 1.05rem;
  max-width: 60ch;
  color: var(--muted);
  margin: var(--space-4) 0 0;
}

.hero-cta {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero-facts {
  list-style: none;
  margin: clamp(2.5rem, 6vw, 4rem) 0 0;
  padding: var(--space-6) 0 0;
  display: flex;
  gap: clamp(1.4rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  border-top: 1px solid var(--line-light);
}
.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact-n {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
}
.fact-l {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 78%, transparent);
}

/* ===================== Sections ===================== */
.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.section-narrow {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}
.section-dark {
  background: var(--forest);
  color: var(--cream);
}
.section-dark .eyebrow {
  color: var(--copper);
}
.section-dark .lede-sm {
  color: color-mix(in srgb, var(--cream) 75%, transparent);
}
.section-soft {
  background: var(--parchment);
}

.section-head {
  max-width: 64ch;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.two-col.reverse .col-figure {
  order: -1;
}

.col-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.col-figure figcaption {
  margin-top: var(--space-3);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: grid;
  gap: var(--space-3);
}
.checklist.two {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-6);
}
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--copper);
}

/* ===================== Routes ===================== */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.route-card {
  padding: var(--space-8) var(--space-6) var(--space-6);
  border-bottom: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  position: relative;
}
.route-card:nth-child(3n) {
  border-right: 0;
}
.route-n {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--copper);
  letter-spacing: 0.1em;
}
.route-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h3);
  margin: var(--space-3) 0 var(--space-3);
  line-height: 1.2;
}
.route-card p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--cream) 80%, transparent);
  margin: 0;
  line-height: 1.55;
}
.route-card em {
  font-style: italic;
  color: var(--copper);
}
.route-meta {
  margin-top: var(--space-4) !important;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 65%, transparent) !important;
}

/* ===================== Roadmap ===================== */
.map-panel {
  position: relative;
  padding: var(--space-8);
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.route-line {
  position: absolute;
  inset: var(--space-8) var(--space-8) auto;
  height: 2px;
  background: color-mix(in srgb, var(--copper) 55%, transparent);
}
.route-line span {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--copper) 16%, transparent);
}
.route-line span:nth-child(1) { left: 0; }
.route-line span:nth-child(2) { left: 20%; }
.route-line span:nth-child(3) { left: 40%; }
.route-line span:nth-child(4) { left: 60%; }
.route-line span:nth-child(5) { left: 80%; }
.route-line span:nth-child(6) { left: 100%; }
.roadmap-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-8);
}
.roadmap-card {
  min-height: 100%;
  padding: var(--space-6);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.roadmap-step {
  display: inline-flex;
  margin-bottom: var(--space-4);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-weight: 700;
}
.roadmap-card h3 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
}
.roadmap-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* ===================== Week ===================== */
.week-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.week-list li {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 100px 220px 1fr;
  gap: var(--space-6);
  align-items: baseline;
}
.week-list .day {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}
.week-list h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.2;
}
.week-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ===================== Team ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.team-card {
  padding: var(--space-6);
  background: var(--parchment);
  border-radius: var(--radius-lg);
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 var(--space-3);
}
.team-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ===================== Founders & Experiences ===================== */
.founder-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.founder-card,
.experience-card {
  padding: var(--space-8);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.founder-card h3,
.experience-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 var(--space-4);
}
.founder-card p,
.experience-card p {
  color: var(--ink-2);
  margin: 0;
}
.founder-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper) !important;
  margin-bottom: var(--space-3) !important;
}
.bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6) !important;
}
.bio-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}
.bio-links a:hover {
  border-color: var(--copper);
  color: var(--copper-2);
}

/* ===================== Pricing ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.price-card {
  padding: var(--space-8) var(--space-6);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.price-card.featured .price-tag,
.price-card.featured .price-sub {
  color: color-mix(in srgb, var(--cream) 70%, transparent);
}
.price-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 var(--space-3);
}
.price-card.featured .price-tag {
  color: var(--copper);
}
.price-val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.01em;
}
.price-sub {
  margin: var(--space-2) 0 var(--space-6);
  font-size: 0.85rem;
  color: var(--muted);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: grid;
  gap: var(--space-2);
  font-size: 0.95rem;
}
.price-card li {
  padding-left: 1.2rem;
  position: relative;
}
.price-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--copper);
}
.pricing-note {
  margin-top: var(--space-8);
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 70ch;
}

/* ===================== FAQ ===================== */
.faq-wrap {
  max-width: 820px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: var(--space-6) 0;
}
.faq-list details:last-of-type {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.3;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  color: var(--copper);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  max-width: 65ch;
}

/* ===================== Inquire form ===================== */
.inquire-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  background: rgba(244, 238, 226, 0.06);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
}
.inquire-form label {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 75%, transparent);
}
.inquire-form label.full {
  grid-column: 1 / -1;
}
.inquire-form input,
.inquire-form textarea {
  background: rgba(250, 246, 236, 0.05);
  border: 1px solid var(--line-light);
  color: var(--cream);
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
}
.inquire-form input:focus,
.inquire-form textarea:focus {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}
.inquire-form button[type="submit"] {
  margin-top: var(--space-4);
}
.form-success {
  grid-column: 1 / -1;
  color: var(--copper);
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: normal;
  text-transform: none;
}

.cta-meta {
  margin-top: var(--space-6);
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--cream) 78%, transparent);
}
.cta-meta a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
}

/* ===================== Footer ===================== */
.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--cream) 75%, transparent);
  padding: var(--space-12) 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-brand p {
  margin: 0;
  font-size: 0.85rem;
}
.footer-meta {
  margin: 0;
  max-width: 38ch;
}
.founder-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--copper-2);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.founder-link:hover {
  background: var(--copper);
  color: var(--ink);
}

/* ===================== Founder modal ===================== */
.founder-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 18, 0.78);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  overflow-y: auto;
}
.founder-modal[hidden] {
  display: none;
}
.founder-dialog {
  background: var(--cream);
  color: var(--ink);
  width: min(960px, 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.founder-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
  border: 1px solid var(--line);
}
.founder-close:hover {
  background: var(--parchment);
}
.fm-disclaimer {
  padding: var(--space-4) var(--space-6);
  background: var(--parchment);
  border-left: 3px solid var(--copper);
  border-radius: var(--radius);
  font-size: 0.93rem;
  margin: var(--space-6) 0 var(--space-8);
}
.founder-dialog h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin: var(--space-8) 0 var(--space-4);
}
.fm-list {
  margin: 0 0 var(--space-6);
  padding-left: 1.2rem;
  font-size: 0.95rem;
}
.fm-list li {
  margin-bottom: var(--space-2);
}
.fm-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-6);
  -webkit-overflow-scrolling: touch;
  position: relative;
  background:
    linear-gradient(to right, var(--parchment) 30%, rgba(250, 246, 236, 0)) left center / 24px 100% no-repeat,
    linear-gradient(to left, var(--parchment) 30%, rgba(250, 246, 236, 0)) right center / 24px 100% no-repeat,
    radial-gradient(farthest-side at 0 50%, rgba(26, 41, 32, 0.12), transparent) left center / 12px 100% no-repeat,
    radial-gradient(farthest-side at 100% 50%, rgba(26, 41, 32, 0.12), transparent) right center / 12px 100% no-repeat;
  background-attachment: local, local, scroll, scroll;
}
.fm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.fm-table th,
.fm-table td {
  padding: 0.55rem 0.7rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.fm-table th {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.fm-table td:nth-child(2),
.fm-table td:nth-child(3),
.fm-table td:nth-child(4),
.fm-table th:nth-child(2),
.fm-table th:nth-child(3),
.fm-table th:nth-child(4) {
  text-align: right;
}
.fm-table .total td {
  font-weight: 600;
  background: var(--parchment);
  border-bottom: 0;
}

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col.reverse .col-figure {
    order: 0;
  }
  .route-grid {
    grid-template-columns: 1fr 1fr;
  }
  .route-card:nth-child(3n) {
    border-right: 1px solid var(--line-light);
  }
  .route-card:nth-child(2n) {
    border-right: 0;
  }
  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .route-line {
    display: none;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .founder-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .week-list li {
    grid-template-columns: 90px 1fr;
  }
  .week-list h3 {
    grid-column: 2;
  }
  .week-list p {
    grid-column: 2;
  }
  .checklist.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    color: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: var(--space-4) clamp(1.25rem, 4vw, 2rem) var(--space-6);
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .primary-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .brand-tag {
    display: none;
  }
  .route-grid {
    grid-template-columns: 1fr;
  }
  .route-card,
  .route-card:nth-child(2n),
  .route-card:nth-child(3n) {
    border-right: 0;
  }
  .map-panel {
    padding: var(--space-4);
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .founder-card,
  .experience-card {
    padding: var(--space-6);
  }
  .inquire-form {
    grid-template-columns: 1fr;
    padding: var(--space-6);
  }
  .founder-dialog {
    padding: var(--space-6) var(--space-5);
  }
  .fm-table {
    font-size: 0.8rem;
  }
  .fm-table th,
  .fm-table td {
    padding: 0.5rem 0.55rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .week-list li {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .hero {
    min-height: 78vh;
  }
}

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