/* ============================================================
   FAST MOROCCO TOURS — Homepage (English), v2 design
   Standalone system, deliberately independent of theme.css so
   this page's visual language does not bleed into or collide
   with the rest of the site. Self-hosted fonts, no external
   requests.
   ============================================================ */

@font-face {
  font-family: 'Libre Caslon Display';
  src: url('/fonts/libre-caslon-display.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-variable.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:        #0F0D0B;
  --ink-soft:   #4A433C;
  --ink-faint:  #85796C;
  --paper:      #F7F3EB;
  --paper-dim:  #EEE6D6;
  --stone:      #DDD2BC;
  --rust:       #B5602E;
  --rust-deep:  #8A4620;
  --line:       rgba(15,13,11,.14);
  --line-on-dark: rgba(247,243,235,.22);

  --serif: 'Libre Caslon Display', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1320px;
  --gutter: clamp(22px, 6vw, 80px);

  --h1: clamp(2.5rem, 3rem + 3.2vw, 5.6rem);
  --h2: clamp(1.9rem, 1.5rem + 2.6vw, 3.4rem);
  --h3: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
  --body-lg: clamp(1.05rem, 1rem + .4vw, 1.3rem);
  --body: 1rem;
  --small: .82rem;
  --micro: .72rem;

  --dur: 260ms;
  --ease: cubic-bezier(.19,1,.22,1);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: var(--body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.06; margin: 0; text-wrap: balance; }
p { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- reveal-on-scroll ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: clamp(14px, 3vw, 30px) var(--gutter);
  padding-top: calc(clamp(14px, 3vw, 30px) + var(--safe-t));
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247,243,235,.92); backdrop-filter: blur(10px);
  padding-top: calc(14px + var(--safe-t)); padding-bottom: 14px;
  border-bottom-color: var(--line);
}
.nav-mark {
  font-family: var(--serif); font-size: clamp(1rem, 0.82rem + 1.4vw, 1.3rem); color: #fff;
  transition: color var(--dur) var(--ease); white-space: nowrap; flex-shrink: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; display: inline-block; line-height: 44px; min-height: 44px;
}
.nav.is-scrolled .nav-mark { color: var(--ink); }
.nav-mark em { font-style: italic; color: var(--rust); }
.nav-cta {
  font-family: var(--sans); font-size: var(--small); font-weight: 600; letter-spacing: .02em;
  color: #fff; border: 1px solid rgba(255,255,255,.55); padding: 11px 22px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap; flex-shrink: 0;
}
.nav.is-scrolled .nav-cta { color: var(--ink); border-color: var(--ink); }
.nav-cta:hover { background: var(--rust); border-color: var(--rust); color: #fff; }

.nav-actions { display: flex; align-items: center; gap: clamp(8px,1.6vw,16px); flex-shrink: 0; }
.locale-switch select {
  appearance: none; background: transparent; cursor: pointer; border-radius: 0;
  border: 1px solid rgba(255,255,255,.55); color: #fff;
  font-family: var(--sans); font-size: var(--micro); font-weight: 700; letter-spacing: .04em;
  padding: 9px 24px 9px 10px; min-height: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 6px center; background-size: 11px;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.locale-switch select option { color: #111; background: #fff; }
.nav.is-scrolled .locale-switch select {
  color: var(--ink); border-color: var(--line);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23211D1A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
@media (max-width: 560px) {
  .nav-mark { font-size: 0.92rem; }
  .nav-actions { gap: 6px; }
  .locale-switch select { padding: 6px 18px 6px 7px; font-size: 9px; min-height: 44px; background-size: 9px; background-position: right 5px center; }
  .nav-cta { padding: 8px 11px; font-size: 10.5px; min-height: 44px; display: inline-flex; align-items: center; }
}
@media (max-width: 340px) {
  .nav-mark { font-size: 0.8rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,8,6,.86) 0%, rgba(10,8,6,.28) 46%, rgba(10,8,6,.06) 70%);
}
.hero-body { position: relative; z-index: 1; width: 100%; padding: calc(76px + var(--safe-t)) var(--gutter) clamp(56px, 9vh, 110px); }
.hero-kicker {
  font-family: var(--sans); font-size: var(--micro); font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--stone); margin-bottom: clamp(14px, 2vh, 22px); display: block;
}
.hero h1 { font-size: var(--h1); max-width: 15ch; color: #fff; }
.hero h1 em { font-style: italic; color: var(--stone); }
.hero-lede { font-size: var(--body-lg); max-width: 42ch; color: rgba(255,255,255,.86); margin-top: clamp(16px,2.4vh,26px); font-weight: 400; }
.hero-actions { display: flex; align-items: center; gap: clamp(20px,3vw,36px); margin-top: clamp(28px,4vh,40px); flex-wrap: wrap; }

/* Small facts row under a hero (duration, start/end city, group type) */
.hero-facts {
  display: flex; flex-wrap: wrap; align-items: center; row-gap: 10px;
  margin-top: clamp(24px,3.4vh,34px); padding-top: clamp(18px,2.4vh,24px);
  border-top: 1px solid rgba(255,255,255,.22);
  font-family: var(--sans); font-size: var(--small); font-weight: 600; letter-spacing: .01em;
  color: rgba(255,255,255,.86); max-width: 64ch;
}
.hero-fact { position: relative; }
.hero-fact + .hero-fact { padding-left: clamp(20px,2.8vw,30px); }
.hero-fact + .hero-fact::before {
  content: ''; position: absolute; left: clamp(9px,1.4vw,14px); top: 50%; transform: translateY(-50%);
  width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.55);
}

/* Shorter hero for inner/index pages (not the homepage) */
.hero.compact { min-height: 62vh; }
.hero.compact .hero-body { padding-bottom: clamp(44px, 7vh, 84px); }
.hero.compact h1 { font-size: clamp(1.9rem, 1.9rem + 2.6vw, 4.2rem); }
@media (max-width: 480px) { .hero.compact { min-height: 74vh; } }
.crumbs { font-family: var(--sans); font-size: var(--micro); letter-spacing: .06em; color: rgba(255,255,255,.6); margin-bottom: clamp(14px,2vh,20px); display: flex; gap: 8px; align-items: center; }
.crumbs a { display: inline-block; padding: 11px 0; margin: -11px 0; color: rgba(255,255,255,.85); }
.crumbs a:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: var(--small); font-weight: 600; letter-spacing: .02em;
  padding: 16px 30px; min-height: 50px; border: 1px solid var(--ink); border-radius: 0;
  background: var(--ink); color: var(--paper); transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--rust); border-color: var(--rust); color: #fff; }
/* Default: dark ink, for the common case of a light/paper background. */
.btn-ghost-link {
  font-family: var(--sans); font-size: var(--small); font-weight: 600; letter-spacing: .02em;
  color: var(--ink); padding: 10px 0 13px; margin: -10px 0 -13px; border-bottom: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 8px; transition: border-color var(--dur) var(--ease), opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-ghost-link:hover { border-color: var(--rust); color: var(--rust); opacity: 1; }
.btn-ghost-link svg { width: 13px; height: 13px; transition: transform var(--dur) var(--ease); }
.btn-ghost-link:hover svg { transform: translateX(3px); }
/* Dark-hero contexts: force back to white/translucent. */
.hero .btn-ghost-link, .cta-final .btn-ghost-link {
  color: #fff; border-color: rgba(255,255,255,.55);
}
.hero .btn-ghost-link:hover, .cta-final .btn-ghost-link:hover { border-color: #fff; color: #fff; opacity: .82; }

.hero-scroll {
  position: absolute; right: var(--gutter); bottom: clamp(20px,4vh,34px); z-index: 1;
  writing-mode: vertical-rl; color: rgba(255,255,255,.65); font-size: var(--micro); letter-spacing: .16em;
  display: none; align-items: center; gap: 10px; text-transform: uppercase;
}
.hero-scroll::after { content: ''; width: 1px; height: 34px; background: rgba(255,255,255,.5); }
@media (min-width: 700px) { .hero-scroll { display: flex; } }

/* ---------- section shell ---------- */
.sec { padding: clamp(64px, 11vw, 150px) 0; }
.sec.dark { background: var(--ink); color: var(--paper); }
.sec.stone { background: var(--paper-dim); }
.eyebrow {
  font-family: var(--sans); font-size: var(--micro); font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rust); display: flex; align-items: center; gap: 12px; margin-bottom: clamp(16px,2.4vh,22px);
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--rust); }
.sec-head { max-width: 46ch; }
.sec-head h2 { font-size: var(--h2); }
.sec-head p { font-size: var(--body-lg); color: var(--ink-soft); margin-top: 16px; max-width: 44ch; }
.sec.dark .sec-head p { color: rgba(247,243,235,.72); }

/* ---------- journeys (asymmetric editorial layout) ---------- */
.journeys-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: clamp(40px,6vw,64px); flex-wrap: wrap; }
.journeys-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(14px, 2vw, 26px); }
.journey-col { display: flex; flex-direction: column; gap: clamp(14px, 2vw, 26px); }
.journey {
  position: relative; overflow: hidden; display: block; background: var(--stone);
}
.journey-tall { aspect-ratio: 4 / 5.3; }
.journey-wide { aspect-ratio: 4 / 2.5; }
.journey img { width: 100%; height: 100%; object-fit: cover; transition: transform 1400ms var(--ease); }
.journey:hover img { transform: scale(1.045); }
.journey::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,7,5,.72) 0%, rgba(9,7,5,0) 42%); }
.journey-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(18px,2.6vw,30px); color: #fff; }
.journey-cap .jc-num { font-family: var(--sans); font-size: var(--micro); letter-spacing: .12em; color: var(--stone); display: block; margin-bottom: 8px; }
.journey-cap h3 { font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem); color: #fff; }
.journey-cap .jc-meta { font-family: var(--sans); font-size: var(--small); color: rgba(255,255,255,.78); margin-top: 6px; }
@media (max-width: 860px) {
  .journeys-grid { grid-template-columns: 1fr; }
  .journey-tall { aspect-ratio: 4/3.4; }
}

/* ---------- tailor-made (split) ---------- */
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.split.rev { grid-template-columns: 1.08fr .92fr; }
.split.rev .split-media { order: 2; }
.split-media { aspect-ratio: 4/4.6; overflow: hidden; background: var(--stone); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h3 { font-size: var(--h3); }
.split-body p { font-size: var(--body-lg); color: var(--ink-soft); margin-top: 18px; max-width: 46ch; }
.split-body .btn-ghost-link { margin-top: clamp(22px,3vw,34px); }
.split-body .btn-ghost-link svg { color: var(--rust); }
@media (max-width: 860px) {
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
}

/* Numbered editorial row (used for the tours listing) */
.split-num {
  font-family: var(--serif); font-size: 1.05rem; color: var(--rust);
  display: block; margin-bottom: clamp(10px,1.6vh,16px);
}
.row-meta {
  font-family: var(--sans); font-size: var(--small); font-weight: 600; letter-spacing: .03em;
  color: var(--ink-faint); text-transform: uppercase; margin-top: 10px; display: block;
}
.tour-rows { display: flex; flex-direction: column; gap: clamp(56px, 9vw, 108px); }
.tour-rows + .tour-rows { margin-top: clamp(56px, 9vw, 108px); }

/* ---------- destination editorial strip ---------- */
.dest-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
.dest-panel { position: relative; aspect-ratio: 3/4.2; overflow: hidden; }
.dest-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1400ms var(--ease); filter: saturate(.94); }
.dest-panel:hover img { transform: scale(1.05); }
.dest-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,5,4,.68) 0%, rgba(6,5,4,0) 50%); }
.dest-label { position: absolute; left: clamp(16px,2vw,26px); bottom: clamp(16px,2vw,26px); z-index: 1; }
.dest-label .dl-eyebrow { font-family: var(--sans); font-size: var(--micro); letter-spacing: .14em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 6px; }
.dest-label h3 { font-size: clamp(1.15rem, 1rem + .8vw, 1.55rem); color: #fff; }
@media (max-width: 760px) { .dest-strip { grid-template-columns: 1fr; } .dest-panel { aspect-ratio: 4/3; } }

/* ---------- trust (numeral led, no icons) ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 40px); margin-top: clamp(40px,6vw,60px); }
.trust-item { padding-top: 22px; border-top: 1px solid var(--line); }
.trust-num { font-family: var(--serif); font-size: 1.05rem; color: var(--rust); display: block; margin-bottom: 14px; }
.trust-item h4 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.trust-item p, .trust-item span { font-size: var(--small); color: var(--ink-soft); line-height: 1.65; max-width: 34ch; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; gap: 24px; } }
.trust-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .trust-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid.cols-4 { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- final cta (bookend) ---------- */
.cta-final { position: relative; min-height: 72vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.cta-final .hero-media img { object-position: center 70%; }
.cta-final .hero-media::after { background: linear-gradient(180deg, rgba(9,7,5,.55) 0%, rgba(9,7,5,.72) 100%); }
.cta-final-body { position: relative; z-index: 1; padding: 0 var(--gutter); max-width: 780px; }
.cta-final .eyebrow { justify-content: center; color: var(--stone); }
.cta-final .eyebrow::before { background: var(--stone); }
.cta-final h2 { font-size: var(--h2); color: #fff; }
.cta-final p { font-size: var(--body-lg); color: rgba(255,255,255,.82); margin-top: 18px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-final .hero-actions { justify-content: center; margin-top: clamp(30px,4vh,42px); }

/* ---------- footer ---------- */
.pf-footer { background: var(--ink); color: rgba(247,243,235,.7); padding: clamp(46px,7vw,72px) 0 clamp(24px,4vw,34px); }
.pf-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; padding-bottom: clamp(30px,5vw,46px); border-bottom: 1px solid var(--line-on-dark); }
.pf-mark { font-family: var(--serif); font-size: 1.5rem; color: #fff; display: inline-flex; align-items: center; min-height: 44px; }
.pf-mark em { font-style: italic; color: var(--rust); }
.pf-links { display: flex; gap: clamp(20px,3vw,40px); flex-wrap: wrap; font-family: var(--sans); font-size: var(--small); }
.pf-links a { display: inline-block; padding: 12px 0; margin: -12px 0; color: rgba(247,243,235,.7); transition: color var(--dur) var(--ease); }
.pf-links a:hover { color: #fff; }
.pf-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-family: var(--sans); font-size: var(--micro); letter-spacing: .02em; color: rgba(247,243,235,.45); }

@media (max-width: 480px) {
  .hero h1 { max-width: 12ch; }
  .btn { padding: 15px 24px; }
}

/* ============================================================
   TOUR DETAIL PAGES (v2)
   ============================================================ */

/* route-highlight list */
.highlight-list { list-style: none; padding: 0; margin: clamp(24px,3vw,32px) 0 0; display: flex; flex-direction: column; gap: 14px; max-width: 62ch; }
.highlight-list li { padding-left: 24px; position: relative; font-size: var(--body-lg); color: var(--ink-soft); }
.highlight-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 10px; height: 1px; background: var(--rust); }

/* included / not included */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); margin-top: clamp(28px,4vw,40px); }
.check-list, .cross-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.check-list li, .cross-list li { padding-left: 26px; position: relative; font-size: var(--body); color: var(--ink-soft); line-height: 1.55; }
.check-list li::before { content: '+'; position: absolute; left: 0; top: -3px; color: var(--rust); font-family: var(--serif); font-size: 1.25rem; }
.cross-list li::before { content: '\2013'; position: absolute; left: 0; top: -1px; color: var(--ink-faint); font-family: var(--serif); font-size: 1.1rem; }
@media (max-width: 700px) { .check-grid { grid-template-columns: 1fr; gap: 28px; } }

/* transport / accommodation / meals / practical */
.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,50px) clamp(28px,4vw,56px); margin-top: clamp(28px,4vw,40px); }
.fact-grid h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.fact-grid p { font-size: var(--small); color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 700px) { .fact-grid { grid-template-columns: 1fr; gap: 28px; } }

/* FAQ accordion */
.faq-list { max-width: 68ch; margin-top: clamp(28px,4vw,40px); }
.faq-row { border-top: 1px solid var(--line); }
.faq-row:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 0; text-align: left; font-family: var(--sans); font-size: 1.02rem; font-weight: 600; color: var(--ink);
  min-height: 44px;
}
.faq-q svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--ink-faint); transition: transform var(--dur) var(--ease); }
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease); font-size: var(--body); color: var(--ink-soft); line-height: 1.7; }
.faq-a.is-open { max-height: 500px; padding-bottom: 22px; }

/* day-by-day itinerary (Sahara) */
.day-list { display: flex; flex-direction: column; gap: clamp(40px,6vw,64px); margin-top: clamp(32px,5vw,52px); }
.day-row { display: grid; grid-template-columns: 84px 1fr; gap: clamp(18px,3vw,32px); }
.day-num-badge { font-family: var(--serif); font-size: 2.1rem; color: var(--rust); line-height: 1; }
.day-row h3 { font-size: var(--h3); margin-bottom: 12px; }
.day-row p { font-size: var(--body-lg); color: var(--ink-soft); margin-bottom: 16px; max-width: 62ch; }
.day-row ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.day-row li { padding-left: 22px; position: relative; font-size: var(--small); color: var(--ink-soft); }
.day-row li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 1px; background: var(--rust); }
@media (max-width: 600px) {
  .day-row { grid-template-columns: 1fr; gap: 10px; }
  .day-num-badge { font-size: 1.5rem; }
}

/* ============================================================
   FORMS (Plan Your Trip, Contact)
   ============================================================ */
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: var(--small); font-weight: 600; letter-spacing: .02em;
  padding: 16px 30px; min-height: 50px; border: 1px solid var(--ink); border-radius: 0;
  background: transparent; color: var(--ink); transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.form-shell { max-width: 640px; margin: 0 auto; }
.step-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.step-dot { flex: 1; height: 2px; background: var(--line); }
.step-dot.is-active, .step-dot.is-done { background: var(--rust); }
.step-labels { display: flex; justify-content: space-between; font-family: var(--sans); font-size: var(--micro); letter-spacing: .05em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: clamp(32px,4.4vw,46px); }
.step-labels span.is-active { color: var(--rust); font-weight: 700; }
.step-heading { font-size: var(--h3); margin-bottom: clamp(26px,3.4vw,36px); }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: clamp(20px,2.6vw,26px); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.4vw,24px); }
.field label { font-family: var(--sans); font-size: var(--small); font-weight: 600; color: var(--ink); }
.field label .req { color: var(--rust); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: var(--body); color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 0; padding: 14px 16px; min-height: 50px; width: 100%;
  transition: border-color var(--dur) var(--ease);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23857a6c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 15px; padding-right: 40px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rust); }
.field-error { font-family: var(--sans); font-size: var(--micro); color: #a6362a; }
.field-note { font-family: var(--sans); font-size: var(--micro); color: var(--ink-faint); margin-top: -4px; }
.field.is-trap { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.option-card { border: 1px solid var(--line); padding: 16px 18px; cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.option-card:has(input:checked) { border-color: var(--rust); background: rgba(181,96,46,.06); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card span { font-family: var(--sans); font-size: var(--small); font-weight: 600; color: var(--ink); }
@media (max-width: 520px) { .option-grid { grid-template-columns: 1fr 1fr; } }

.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: clamp(30px,4vw,40px); gap: 16px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.success-mark {
  width: 60px; height: 60px; border-radius: 50%; background: var(--rust); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto clamp(20px,3vw,28px);
}
.success-mark svg { width: 26px; height: 26px; }

/* ============================================================
   SMALL SHARED PATTERNS (About, Contact, FAQ, Privacy)
   ============================================================ */

/* numbered process list (About "How It Works") */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px,4vw,40px); margin-top: clamp(32px,5vw,52px); }
.process-item { padding-top: 20px; border-top: 1px solid var(--line); }
.process-num { font-family: var(--serif); font-size: 1.7rem; color: var(--rust); display: block; margin-bottom: 12px; }
.process-item h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.process-item p { font-size: var(--small); color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Contact method rows */
.contact-methods { display: flex; flex-direction: column; margin-top: clamp(24px,3vw,32px); }
.contact-method { display: flex; align-items: baseline; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); flex-wrap: wrap; }
.contact-method:last-child { border-bottom: 1px solid var(--line); }
.contact-method-label { font-family: var(--sans); font-size: var(--micro); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); min-width: 120px; }
.contact-method-value { font-family: var(--sans); font-size: var(--body-lg); color: var(--ink); }
.contact-method-value a { display: inline-block; padding: 12px 0; margin: -12px 0; border-bottom: 1px solid var(--line); transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.contact-method-value a:hover { color: var(--rust); border-color: var(--rust); }

/* Legal / privacy body text */
.legal-body h2 { font-size: var(--h3); margin-top: clamp(40px,5vw,56px); margin-bottom: 16px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: var(--body); color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; max-width: 68ch; }
.legal-body ul { margin: 0 0 14px; padding-left: 22px; max-width: 68ch; }
.legal-body li { font-size: var(--body); color: var(--ink-soft); line-height: 1.7; margin-bottom: 6px; }
