/* ============================================================================
   Pristine Jet Charter — saudi-europe  ·  FOUNDATION stylesheet (hand-written)
   Section component CSS is concatenated AFTER this block by build.mjs
   (src/styles/sections/*.css). Foundation = @font-face + :root tokens + reset +
   shared atoms (.container / .eyebrow / .btn-whatsapp). Mobile-first (CLAUDE.md §6).
   ========================================================================== */

/* --- self-hosted fonts (no Google <link>) ------------------------------------
   Geist (body / LCP) uses display:optional + a size-adjusted fallback so the
   late web-font swap that repainted the hero is skipped (BUILD-LOG 2026-06-16). */
@font-face{font-family:'Geist';font-style:normal;font-weight:400;font-display:optional;src:url(/fonts/geist-400.woff2) format('woff2');}
@font-face{font-family:'Geist';font-style:normal;font-weight:500;font-display:optional;src:url(/fonts/geist-500.woff2) format('woff2');}
@font-face{font-family:'Geist';font-style:normal;font-weight:600;font-display:optional;src:url(/fonts/geist-600.woff2) format('woff2');}
@font-face{font-family:'Geist Mono';font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/geist-mono-400.woff2) format('woff2');}
@font-face{font-family:'Instrument Serif';font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/instrument-serif-400.woff2) format('woff2');}
@font-face{font-family:'Instrument Serif';font-style:italic;font-weight:400;font-display:swap;src:url(/fonts/instrument-serif-400-italic.woff2) format('woff2');}
/* Size-adjusted fallback for Geist → minimise CLS while display:optional holds
   the first paint (metrics approximate next/font's generated fallback). */
@font-face{font-family:'Geist Fallback';src:local('Arial');ascent-override:90%;descent-override:22.5%;line-gap-override:0%;size-adjust:104%;}

:root {
  color-scheme: light;
  /* colour */
  --color-ink: #0a0a0a;
  --color-bg: #fafaf9;
  --color-surface: #fafaf9;
  --color-white: #ffffff;
  --color-accent: #2c5bff;
  --color-accent-50: #eef2ff;
  --color-accent-300: #8aa1ff; /* accent TEXT on dark surfaces — meets AA */
  --color-accent-600: #1f47e0;
  --color-muted: #6b6b6b;
  --color-rule: #e8e6e2;
  --color-whatsapp: #25d366;
  --color-online: #00d67e;
  --color-maroon: #7a3b3b;
  --color-coral: #e0857a;
  /* type */
  --font-serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-sans: "Geist", "Geist Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  /* layout */
  --max-content: 1240px;
  --radius-pill: 999px;
  --shadow-panel: 0 24px 60px rgba(0, 0, 0, 0.1);
  --shadow-float: 0 12px 40px rgba(0, 0, 0, 0.16);
}

/* --- reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; }
body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--color-ink); outline-offset: 2px; }

/* --- shared atoms (used by every section — do not duplicate) ------------- */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 640px) { .container { padding-inline: 40px; } }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.625;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}
@media (min-width: 640px) { .eyebrow { font-size: 11px; } }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-pill);
  background: var(--color-whatsapp);
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-ink);
  transition: transform 0.2s ease;
}
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-whatsapp__glyph { width: 20px; height: 20px; flex-shrink: 0; }


/* === header === */
/* ===== Header / Nav — sticky conversion bar ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-rule);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* nav uses .container for max-width + inline padding; override padding-inline
   to match the component (px-5 mobile / lg:px-10) and supply the flex layout. */
.header__nav {
  display: flex;
  height: 4rem; /* h-16 */
  align-items: center;
  justify-content: space-between;
  gap: 1rem; /* gap-4 */
  padding-inline: 20px; /* px-5 */
}

.header__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  color: var(--color-ink);
}

.header__logo-img {
  height: 1.75rem; /* h-7 */
  width: auto;
}

.header__cta-wrap {
  display: flex;
  align-items: center;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-ink);
  background: var(--color-whatsapp);
  padding: 0.625rem 1rem; /* py-2.5 px-4 */
  font-family: var(--font-sans);
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  font-weight: 500; /* font-medium */
  color: var(--color-ink);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.header__cta:hover {
  opacity: 0.9;
}

.header__cta-glyph {
  height: 18px;
  width: 18px;
}

/* sm: ≥640px — taller bar, looser spacing */
@media (min-width: 640px) {
  .header__nav {
    height: 81px; /* sm:h-[81px] */
    padding-inline: 24px; /* sm:px-6 */
  }
  .header__logo-img {
    height: 2rem; /* sm:h-8 */
  }
  .header__cta {
    padding-inline: 1.25rem; /* sm:px-5 */
  }
}

/* lg: ≥1024px — widest inline padding */
@media (min-width: 1024px) {
  .header__nav {
    padding-inline: 40px; /* lg:px-10 */
  }
}


/* === hero === */
.hero {
  background: var(--color-surface);
}

/* py-14 (3.5rem) base; .container handles px */
.hero__inner {
  padding-block: 3.5rem;
}

/* grid-cols-1, gap-12 (3rem), items-center */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}

/* ── Copy column ── flex-col */
.hero__copy {
  display: flex;
  flex-direction: column;
}

/* .eyebrow atom carries mono/uppercase/track; transcribe size/leading/colour overrides
   text-[10px] leading-relaxed tracking-[0.18em] text-muted */
.hero__eyebrow {
  font-size: 10px;
  line-height: 1.625;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

/* mt-4 (1rem), font-serif, text-[2.5rem], leading-[1.05], tracking-[-0.02em], text-ink */
.hero__title {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

/* italic text-accent — accent on light surface, AA-safe with --color-accent */
.hero__title-accent {
  font-style: italic;
  color: var(--color-accent);
}

/* mt-5 (1.25rem), text-lg (1.125/1.75... leading-snug=1.375), text-accent */
.hero__lede {
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.375;
  color: var(--color-accent);
}

/* mt-4 (1rem), max-w-xl (36rem), text-base, leading-relaxed (1.625), text-muted */
.hero__body {
  margin-top: 1rem;
  max-width: 36rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-muted);
}

/* mt-8 (2rem) */
.hero__cta {
  margin-top: 2rem;
}

/* ── Chat panel column ── w-full */
.hero__panel-col {
  width: 100%;
}

/* figure: overflow-hidden rounded border bg-white shadow-panel */
.hero__panel {
  margin: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  border: 1px solid var(--color-rule);
  background: var(--color-white);
  box-shadow: var(--shadow-panel);
}

/* header: flex items-center gap-3 border-b px-5 py-4 */
.hero__panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--color-rule);
  padding: 1rem 1.25rem;
}

/* avatar: h-10 w-10 shrink-0 rounded-full bg-ink, centred */
.hero__panel-avatar {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-ink);
}

/* h-4 w-4 fill-white */
.hero__panel-avatar-glyph {
  height: 1rem;
  width: 1rem;
  fill: var(--color-white);
}

/* min-w-0 flex-col */
.hero__panel-id {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

/* text-sm font-semibold text-ink */
.hero__panel-name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--color-ink);
}

/* flex items-center gap-1.5 mono text-[10px] tracking-[0.12em] text-muted */
.hero__panel-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

/* h-2 w-2 rounded-full bg-online animate-pulse */
.hero__panel-dot {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: var(--radius-pill);
  background: var(--color-online);
  animation: hero-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ml-auto h-5 w-5 text-whatsapp */
.hero__panel-wa {
  margin-left: auto;
  height: 1.25rem;
  width: 1.25rem;
  color: var(--color-whatsapp);
}

/* thread: flex-col gap-3 bg-surface px-5 py-5 */
.hero__thread {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--color-surface);
  padding: 1.25rem;
}

/* bubble: max-w-[82%] px-4 py-2.5 */
.hero__bubble {
  max-width: 82%;
  padding: 0.625rem 1rem;
}

/* incoming: self-start rounded-[14px_14px_14px_4px] border bg-white */
.hero__bubble--in {
  align-self: flex-start;
  border-radius: 14px 14px 14px 4px;
  border: 1px solid var(--color-rule);
  background: var(--color-white);
}

/* outgoing: self-end rounded-[14px_14px_4px_14px] bg-accent */
.hero__bubble--out {
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
  background: var(--color-accent);
}

/* text-sm leading-[1.45] text-ink */
.hero__bubble-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-ink);
}

/* outgoing bubble text-white */
.hero__bubble--out .hero__bubble-text {
  color: var(--color-white);
}

/* typing bubble: flex items-center gap-1 py-3 (overrides py-2.5) */
.hero__typing {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* dots: h-1.5 w-1.5 rounded-full bg-ink/30 animate-bounce, staggered delays */
.hero__typing-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 10, 10, 0.3);
  animation: hero-bounce 1s infinite;
}
.hero__typing-dot--1 {
  animation-delay: -0.3s;
}
.hero__typing-dot--2 {
  animation-delay: -0.15s;
}

/* composer: flex items-center gap-3 border-t bg-white px-5 py-3.5 */
.hero__composer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--color-rule);
  background: var(--color-white);
  padding: 0.875rem 1.25rem;
}

/* flex-1 truncate text-sm text-muted */
.hero__composer-input {
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-muted);
}

/* send: h-9 w-9 shrink-0 rounded-full bg-accent text-white, centred */
.hero__composer-send {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: var(--color-white);
}

/* h-4 w-4 fill-current */
.hero__composer-send-glyph {
  height: 1rem;
  width: 1rem;
}

/* figcaption: border-t bg-white px-5 py-2.5 mono text-[9px] tracking-[0.12em] text-muted */
.hero__caption {
  border-top: 1px solid var(--color-rule);
  background: var(--color-white);
  padding: 0.625rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

/* stats: mt-12 (3rem) grid-cols-2 gap-px overflow-hidden rounded border bg-rule */
.hero__stats {
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 0.25rem;
  border: 1px solid var(--color-rule);
  background: var(--color-rule);
}

/* stat cell: flex-col gap-1.5 bg-surface px-4 py-5 */
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: var(--color-surface);
  padding: 1.25rem 1rem;
}

/* dt: font-serif text-[1.75rem] leading-none tracking-[-0.02em] text-ink */
.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

/* dd: mono text-[10px] tracking-[0.14em] text-muted */
.hero__stat-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__panel-dot,
  .hero__typing-dot {
    animation: none;
  }
}

/* ── sm: ≥640px ── px handled by .container; py-20 (5rem); eyebrow text-[11px];
   title text-5xl (3rem/1); lede text-xl (1.25/1.75rem); stats mt-16 (4rem);
   stat px-6 py-6; stat-value text-[2rem] ── */
@media (min-width: 640px) {
  .hero__inner {
    padding-block: 5rem;
  }
  .hero__eyebrow {
    font-size: 11px;
  }
  .hero__title {
    font-size: 3rem;
    line-height: 1;
  }
  .hero__lede {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .hero__stats {
    margin-top: 4rem;
  }
  .hero__stat {
    padding: 1.5rem;
  }
  .hero__stat-value {
    font-size: 2rem;
  }
}

/* ── md: ≥768px ── stats grid-cols-4 ── */
@media (min-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── lg: ≥1024px ── py-24 (6rem); layout grid-cols-2 gap-[72px];
   title text-[3.25rem] ── */
@media (min-width: 1024px) {
  .hero__inner {
    padding-block: 6rem;
  }
  .hero__layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 72px;
  }
  .hero__title {
    font-size: 3.25rem;
  }
}


/* === route-hero === */
/* Route-lander message-match hero (replaces the campaign chat hero). */
.route-hero {
  background: var(--color-surface);
}
.route-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .route-hero__inner { padding-block: 6rem; }
}
.route-hero__eyebrow {
  letter-spacing: 0.15em; /* route eyebrow is slightly tighter than the .eyebrow atom */
}
.route-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.25rem; /* text-4xl */
  line-height: 1.25; /* leading-tight */
  letter-spacing: -0.025em; /* tracking-tight */
  color: var(--color-ink);
}
@media (min-width: 640px) {
  .route-hero__title { font-size: 3rem; } /* sm:text-5xl */
}
.route-hero__copy {
  max-width: 36rem; /* max-w-xl */
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-muted);
}
.route-hero__actions {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .route-hero__actions { flex-direction: row; align-items: center; }
}
.route-hero__all-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-accent-600);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.route-hero__disclaimer {
  letter-spacing: 0.15em;
}


/* === trending === */
.trending {
  scroll-margin-top: 5rem;
  background: var(--color-white);
  padding-block: 5rem;
}
@media (min-width: 1024px) {
  .trending { padding-block: 7rem; }
}

.trending__header {
  max-width: 42rem;
}

.trending__eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
}
@media (min-width: 640px) {
  .trending__eyebrow { font-size: 11px; }
}

.trending__title {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
@media (min-width: 640px) {
  .trending__title { font-size: 3rem; }
}

.trending__title-accent {
  font-style: italic;
  color: var(--color-accent-600);
}

.trending__lede {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-muted);
}

.trending__lede-lead {
  font-weight: 500;
  color: var(--color-ink);
}

/* Route grid — 1px gap over a rule-coloured background recreates the shared
   hairline-table look. Cards are white; gaps show through as 1px rules. */
.trending__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--color-rule);
  background: var(--color-rule);
  list-style: none;
  padding: 0;
  margin-inline: 0;
}
@media (min-width: 640px) {
  .trending__grid { grid-template-columns: 1fr 1fr; }
}

.trending__card-item {
  display: flex;
}

.trending__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  padding: 1.75rem;
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: background-color 0.15s ease;
}
@media (min-width: 640px) {
  .trending__card { padding: 2rem; }
}

.trending__card:hover,
.trending__card:focus-within {
  background: var(--color-accent-50);
}

.trending__card:focus-visible {
  box-shadow: inset 0 0 0 2px var(--color-accent);
}

.trending__card-image {
  position: relative;
  margin-bottom: 1.5rem;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: var(--color-ink);
}

.trending__card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trending__card:hover .trending__card-image img {
  transform: scale(1.03);
}

.trending__card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  margin: 0;
}

.trending__card-name {
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
@media (min-width: 640px) {
  .trending__card-name { font-size: 2.25rem; }
}

.trending__card-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.75rem;
  row-gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.trending__card-meta-item {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}

.trending__card-meta dt {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.trending__card-meta dd {
  margin: 0;
}

.trending__card-meta dd.trending__card-meta-strong {
  color: var(--color-ink);
}

.trending__card-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--color-accent-600);
}

.trending__card-cta-arrow {
  transition: transform 0.15s ease;
}

.trending__card:hover .trending__card-cta-arrow {
  transform: translateX(0.125rem);
}

.trending__disclaimer {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}

/* Active card (route lander) — non-link panel with an inset accent ring; the
   matching card de-emphasises itself ("you're already on this route"). */
.trending__card--active {
  box-shadow: inset 0 0 0 1px rgba(44, 91, 255, 0.4); /* ring-accent/40 */
}
.trending__card--active:hover { background: var(--color-white); }
.trending__card--active:hover .trending__card-image img { transform: none; }


/* === how-it-works === */
/* ── how-it-works ─────────────────────────────────────────────────────── */
.how {
  background: var(--color-surface);
  padding-block: 80px;
}
@media (min-width: 640px) { .how { padding-block: 96px; } }
@media (min-width: 768px) { .how { padding-block: 112px; } }
@media (min-width: 1024px) { .how { padding-block: 128px; } }

/* Header */
.how__header { max-width: 48rem; }
.how__eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}
@media (min-width: 640px) { .how__eyebrow { font-size: 11px; } }

.how__title {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
@media (min-width: 640px) { .how__title { font-size: 42px; } }
@media (min-width: 768px) { .how__title { font-size: 48px; } }

.how__title-em {
  font-style: italic;
  color: var(--color-accent);
}

.how__lead {
  margin-top: 20px;
  max-width: 42rem;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.625;
  color: var(--color-muted);
}
@media (min-width: 640px) { .how__lead { font-size: 16px; } }

/* Process (dark strip) */
.how__process {
  margin-top: 40px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-ink);
}
@media (min-width: 640px) { .how__process { margin-top: 48px; } }

.how__process-head {
  padding: 40px 24px 0;
}
@media (min-width: 640px) { .how__process-head { padding: 48px 40px 0; } }

.how__process-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 640px) { .how__process-eyebrow { font-size: 11px; } }

.how__process-title {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-white);
}
@media (min-width: 640px) { .how__process-title { font-size: 36px; } }
@media (min-width: 768px) { .how__process-title { font-size: 40px; } }

.how__process-lead {
  margin-top: 16px;
  max-width: 36rem;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 640px) { .how__process-lead { font-size: 16px; } }

/* Steps */
.how__steps {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) { .how__steps { margin-top: 40px; } }
@media (min-width: 768px) { .how__steps { grid-template-columns: repeat(3, 1fr); } }

.how__step {
  background: var(--color-ink);
  padding: 32px 24px;
}
@media (min-width: 640px) { .how__step { padding: 40px; } }

.how__step-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.how__step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-300);
}
.how__step-time {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.how__step-title {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-white);
}
@media (min-width: 640px) { .how__step-title { font-size: 24px; } }

.how__step-body {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.65);
}
@media (min-width: 640px) { .how__step-body { font-size: 15px; } }

/* Scenarios */
.how__scenarios {
  margin-top: 64px;
}
@media (min-width: 640px) { .how__scenarios { margin-top: 80px; } }

.how__scenarios-title {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
@media (min-width: 640px) { .how__scenarios-title { font-size: 28px; } }
@media (min-width: 768px) { .how__scenarios-title { font-size: 32px; } }

.how__scenarios-lead {
  margin-top: 12px;
  max-width: 42rem;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.625;
  color: var(--color-muted);
}
@media (min-width: 640px) { .how__scenarios-lead { font-size: 15px; } }

.how__cards {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .how__cards { margin-top: 40px; } }
@media (min-width: 1024px) {
  .how__cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.how__card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  border: 1px solid var(--color-rule);
  background: var(--color-white);
}

.how__card-eyebrow {
  border-bottom: 1px solid var(--color-rule);
  padding: 16px 20px;
}
.how__card-scenario {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}
@media (min-width: 640px) { .how__card-scenario { font-size: 11px; } }

.how__chat {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  background: var(--color-surface);
  padding: 24px 20px;
}

.how__bubble-row { display: flex; }
.how__bubble-row--out { justify-content: flex-end; }
.how__bubble-row--in { justify-content: flex-start; }

.how__bubble {
  max-width: 85%;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.375;
}
.how__bubble--client {
  border-radius: 14px 14px 4px 14px;
  background: var(--color-accent);
  color: var(--color-white);
}
.how__bubble--desk {
  border-radius: 14px 14px 14px 4px;
  border: 1px solid var(--color-rule);
  background: var(--color-white);
  color: var(--color-ink);
}

.how__card-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--color-rule);
  padding: 16px 20px;
}
.how__outcome {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--color-ink);
}
@media (min-width: 640px) { .how__outcome { font-size: 11px; } }

/* CTA — the original was a smaller, ink-bordered WhatsApp pill; pin sizing
   to self so it doesn't stretch full-width. */
.how__cta {
  align-self: flex-start;
  font-size: 13px;
}

.how__disclaimer {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}


/* === fleet === */
/* ===== Fleet section ===== */
.fleet {
  scroll-margin-top: 5rem; /* scroll-mt-20 */
  background: var(--color-white);
  padding-block: 80px; /* py-20 */
  /* horizontal padding handled by .container; section keeps its own px to match px-6 */
  padding-inline: 24px; /* px-6 */
}
@media (min-width: 640px) {
  .fleet {
    padding-block: 96px; /* sm:py-24 */
    padding-inline: 32px; /* sm:px-8 */
  }
}
@media (min-width: 1024px) {
  .fleet {
    padding-block: 120px; /* lg:py-[120px] */
    padding-inline: 40px; /* lg:px-10 */
  }
}

/* Header */
.fleet__header {
  max-width: 42rem; /* max-w-2xl */
}
.fleet__eyebrow {
  /* .eyebrow atom supplies mono/uppercase/tracking; pin the design-spec values */
  font-size: 10px; /* text-[10px] */
  letter-spacing: 0.18em; /* tracking-[0.18em] */
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .fleet__eyebrow { font-size: 11px; } /* sm:text-[11px] */
}
.fleet__title {
  margin-top: 1rem; /* mt-4 */
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px; /* text-[32px] */
  line-height: 1.02; /* leading-[1.02] */
  letter-spacing: -0.8px; /* tracking-[-0.8px] */
  color: var(--color-ink);
}
@media (min-width: 640px) {
  .fleet__title { font-size: 40px; } /* sm:text-[40px] */
}
@media (min-width: 1024px) {
  .fleet__title { font-size: 48px; } /* lg:text-[48px] */
}
.fleet__lede {
  margin-top: 1rem; /* mt-4 */
  max-width: 65ch; /* max-w-prose */
  font-family: var(--font-sans);
  font-size: 1rem; /* text-base */
  line-height: 1.625; /* leading-relaxed */
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .fleet__lede {
    margin-top: 1.25rem; /* sm:mt-5 */
    font-size: 17px; /* sm:text-[17px] */
  }
}

/* Grid — 1px hairline rules via gap-px on a rule-colour bg */
.fleet__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 2.5rem; /* mt-10 */
  display: grid;
  grid-template-columns: 1fr; /* grid-cols-1 */
  gap: 1px; /* gap-px */
  overflow: hidden;
  border: 1px solid var(--color-rule);
  background: var(--color-rule);
}
@media (min-width: 640px) {
  .fleet__grid { margin-top: 3rem; } /* sm:mt-12 */
}
@media (min-width: 1024px) {
  .fleet__grid { grid-template-columns: repeat(3, 1fr); } /* lg:grid-cols-3 */
}

.fleet__card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

/* Two example images side by side */
.fleet__examples {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
  gap: 1px; /* gap-px */
  background: var(--color-rule);
}
.fleet__example {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 3; /* aspect-[4/3] */
  align-items: flex-end; /* items-end */
  justify-content: flex-start; /* justify-start */
  overflow: hidden;
  background: var(--color-ink);
}
.fleet__img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* object-cover */
}
.fleet__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0.75rem; /* m-3 */
  display: inline-block;
  border-radius: var(--radius-pill); /* rounded-pill */
  background: rgba(255, 255, 255, 0.85); /* bg-white/85 */
  padding: 0.25rem 0.625rem; /* py-1 px-2.5 */
  font-family: var(--font-mono);
  font-size: 9px; /* text-[9px] */
  text-transform: uppercase;
  letter-spacing: 0.15em; /* tracking-[0.15em] */
  color: var(--color-ink);
}

/* Card body */
.fleet__body {
  display: flex;
  flex: 1 1 0%; /* flex-1 */
  flex-direction: column;
  padding: 1.5rem; /* p-6 */
}
@media (min-width: 640px) {
  .fleet__body { padding: 1.75rem; } /* sm:p-7 */
}
.fleet__cat-label {
  font-family: var(--font-mono);
  font-size: 10px; /* text-[10px] */
  text-transform: uppercase;
  letter-spacing: 0.15em; /* tracking-[0.15em] */
  color: var(--color-muted);
}
.fleet__cat-name {
  margin-top: 0.5rem; /* mt-2 */
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem; /* text-2xl */
  line-height: 1.25; /* leading-tight */
  letter-spacing: -0.5px; /* tracking-[-0.5px] */
  color: var(--color-ink);
}
@media (min-width: 640px) {
  .fleet__cat-name { font-size: 26px; } /* sm:text-[26px] */
}

/* Spec list */
.fleet__specs {
  margin: 1.25rem 0 0; /* mt-5 */
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* gap-3 */
  border-top: 1px solid var(--color-rule);
  padding-top: 1.25rem; /* pt-5 */
}
.fleet__spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem; /* gap-3 */
}
.fleet__spec-stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem; /* gap-1 */
}
.fleet__spec-label {
  font-family: var(--font-mono);
  font-size: 10px; /* text-[10px] */
  text-transform: uppercase;
  letter-spacing: 0.15em; /* tracking-[0.15em] */
  color: var(--color-muted);
}
.fleet__spec-value {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  color: var(--color-ink);
}
.fleet__spec-examples {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem; /* text-sm */
  line-height: 1.375; /* leading-snug */
  color: var(--color-ink);
}

/* Category CTA — accent text link (white surface → accent is AA-safe) */
.fleet__cta {
  margin-top: 1.5rem; /* mt-6 */
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-1.5 */
  align-self: flex-start; /* self-start */
  font-family: var(--font-sans);
  font-size: 0.875rem; /* text-sm */
  font-weight: 600; /* font-semibold */
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
.fleet__cta:hover {
  color: var(--color-accent-600);
}


/* === safety === */
/* ── Safety ─────────────────────────────────────────── */
.safety {
  scroll-margin-top: 5rem; /* scroll-mt-20 */
  background: var(--color-white);
  padding-block: 5rem; /* py-20 */
  font-family: var(--font-sans);
}
@media (min-width: 768px) {
  .safety { padding-block: 7rem; } /* md:py-28 */
}

/* Header */
.safety__header { max-width: 48rem; } /* max-w-3xl */
.safety__eyebrow {
  font-size: 10px;
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .safety__eyebrow { font-size: 11px; }
}
.safety__title {
  margin-top: 1rem; /* mt-4 */
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
@media (min-width: 640px) {
  .safety__title { font-size: 2.5rem; }
}
@media (min-width: 768px) {
  .safety__title { font-size: 3rem; }
}
.safety__title-em {
  font-style: italic;
  color: var(--color-accent);
}
.safety__lede {
  margin-top: 1.25rem; /* mt-5 */
  max-width: 42rem; /* max-w-2xl */
  font-family: var(--font-sans);
  font-size: 1rem; /* text-base */
  line-height: 1.625; /* leading-relaxed */
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .safety__lede { font-size: 17px; }
}

/* Buckets */
.safety__bucket--memberships {
  margin-top: 3.5rem; /* mt-14 */
}
@media (min-width: 768px) {
  .safety__bucket--memberships { margin-top: 4rem; } /* md:mt-16 */
}
.safety__bucket--operators {
  margin-top: 3rem; /* mt-12 */
}
@media (min-width: 768px) {
  .safety__bucket--operators { margin-top: 3.5rem; } /* md:mt-14 */
}

.safety__bucket-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-ink);
  font-weight: 400;
}
.safety__bucket-intro {
  margin-top: 0.5rem; /* mt-2 */
  max-width: 42rem; /* max-w-2xl */
  font-family: var(--font-sans);
  font-size: 0.875rem; /* text-sm */
  line-height: 1.625;
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .safety__bucket-intro { font-size: 15px; }
}
.safety__strong {
  font-weight: 600;
  color: var(--color-ink);
}

/* Card grid — 1px rule gutters on a rule-coloured bg */
.safety__grid {
  margin-top: 1.5rem; /* mt-6 */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--color-rule);
  background: var(--color-rule);
  list-style: none;
  padding: 0;
}
@media (min-width: 640px) {
  .safety__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .safety__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Membership card */
.safety__card--membership {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
  background: var(--color-white);
  padding: 1.75rem; /* p-7 */
}
@media (min-width: 640px) {
  .safety__card--membership { padding: 2rem; } /* sm:p-8 */
}
.safety__badge {
  height: 8rem; /* h-32 */
  width: 8rem;
  object-fit: contain;
}
@media (min-width: 640px) {
  .safety__badge { height: 9rem; width: 9rem; } /* sm:h-36 w-36 */
}
.safety__card-name {
  font-family: var(--font-serif);
  font-size: 1.5rem; /* text-2xl */
  line-height: 1.25; /* leading-tight */
  color: var(--color-ink);
}
.safety__card-blurb {
  margin-top: 0.75rem; /* mt-3 */
  font-family: var(--font-sans);
  font-size: 0.875rem; /* text-sm */
  line-height: 1.625;
  color: var(--color-muted);
}

/* Operator standard card */
.safety__card--standard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* gap-3 */
  background: var(--color-white);
  padding: 1.75rem; /* p-7 */
  padding-top: 2.25rem; /* pt-9 */
}
@media (min-width: 640px) {
  .safety__card--standard {
    padding: 2rem; /* sm:p-8 */
    padding-top: 2.5rem; /* sm:pt-10 */
  }
}
.safety__topbar {
  position: absolute;
  left: 0;
  top: 0;
  height: 0.25rem; /* h-1 */
  width: 2rem; /* w-8 */
  background: var(--color-accent);
}
.safety__code {
  font-family: var(--font-serif);
  font-size: 1.875rem; /* text-3xl */
  font-style: italic;
  line-height: 1; /* leading-none */
  color: var(--color-ink);
}
.safety__code-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent-600);
}
.safety__card--standard .safety__card-blurb {
  margin-top: 0.25rem; /* mt-1 */
}

.safety__note {
  margin-top: 1.5rem; /* mt-6 */
  font-family: var(--font-sans);
  font-size: 0.75rem; /* text-xs */
  line-height: 1.625;
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .safety__note { font-size: 13px; }
}

/* CTA row */
.safety__cta {
  margin-top: 3rem; /* mt-12 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem; /* gap-4 */
}
@media (min-width: 640px) {
  .safety__cta { flex-direction: row; align-items: center; }
}
@media (min-width: 768px) {
  .safety__cta { margin-top: 3.5rem; } /* md:mt-14 */
}
.safety__cta-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}


/* === testimonials === */
/* Testimonials — "In their own words". Mobile-first. */
.testimonials {
  scroll-margin-top: 5rem; /* scroll-mt-20 */
  background: var(--color-surface);
  padding-top: 5rem;    /* py-20 */
  padding-bottom: 5rem;
}

/* px handled by .container; section adds nothing extra horizontally */

.testimonials__header {
  max-width: 42rem; /* max-w-2xl */
}

.testimonials__eyebrow {
  /* .eyebrow atom supplies mono/uppercase/tracking; override scale to match design */
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.18em;
}

.testimonials__title {
  margin-top: 1rem; /* mt-4 */
  font-family: var(--font-serif);
  font-size: 34px;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.testimonials__grid {
  list-style: none;
  margin: 3rem 0 0; /* mt-12 */
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* gap-8 */
}

.testimonials__figure {
  display: flex;
  height: 100%;
  flex-direction: column;
  margin: 0;
}

.testimonials__bar {
  display: block;
  height: 0.25rem; /* h-1 */
  width: 2rem;     /* w-8 */
  background: var(--color-accent);
}

.testimonials__quote {
  margin: 1.5rem 0 0; /* mt-6 */
  flex: 1 1 0%;
}

.testimonials__quote-text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.testimonials__caption {
  margin-top: 1.5rem; /* mt-6 */
  border-top: 1px solid var(--color-rule);
  padding-top: 1.25rem; /* pt-5 */
}

.testimonials__role {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
}

.testimonials__location {
  display: block;
  margin-top: 0.25rem; /* mt-1 */
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}

.testimonials__footer {
  margin-top: 3rem; /* mt-12 */
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* gap-6 */
  border-top: 1px solid var(--color-rule);
  padding-top: 2rem; /* pt-8 */
}

.testimonials__note {
  max-width: 28rem; /* max-w-md */
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1.625; /* leading-relaxed */
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

/* btn-whatsapp atom keeps its own styling; only positioning override */
.testimonials__footer .btn-whatsapp {
  flex-shrink: 0;
  align-self: flex-start;
}

/* sm: ≥640px */
@media (min-width: 640px) {
  .testimonials__eyebrow { font-size: 11px; }
  .testimonials__title { font-size: 40px; }
  .testimonials__quote-text { font-size: 1.5rem; } /* sm:text-2xl */
  .testimonials__location { font-size: 11px; }

  .testimonials__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .testimonials__footer .btn-whatsapp {
    align-self: auto;
  }
}

/* md: ≥768px */
@media (min-width: 768px) {
  .testimonials {
    padding-top: 7rem;    /* py-28 */
    padding-bottom: 7rem;
  }
  .testimonials__title { font-size: 3rem; } /* md:text-5xl */
  .testimonials__grid {
    margin-top: 4rem; /* md:mt-16 */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .testimonials__quote-text {
    font-size: 26px;
    line-height: 1.32;
  }
  .testimonials__footer { margin-top: 4rem; } /* md:mt-16 */
}

/* lg: ≥1024px */
@media (min-width: 1024px) {
  .testimonials {
    padding-top: 8rem;    /* py-32 */
    padding-bottom: 8rem;
  }
}


/* === concierge === */
/* ── Concierge ─────────────────────────────────────────────── */
.concierge {
  scroll-margin-top: 5rem; /* scroll-mt-20 */
  background: var(--color-white);
  padding-block: 5rem; /* py-20 */
  /* px handled by .container */
}

@media (min-width: 640px) {
  .concierge { padding-block: 6rem; } /* sm:py-24 */
}
@media (min-width: 1024px) {
  .concierge { padding-block: 120px; } /* lg:py-[120px] */
}

/* Header */
.concierge__header { max-width: 42rem; } /* max-w-2xl */

.concierge__title {
  margin-top: 1rem; /* mt-4 */
  font-family: var(--font-serif);
  font-size: 2.25rem; /* text-4xl */
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

@media (min-width: 640px) {
  .concierge__title { font-size: 3rem; } /* sm:text-5xl */
}

.concierge__lede {
  margin-top: 1.25rem; /* mt-5 */
  max-width: 36rem; /* max-w-xl */
  font-family: var(--font-sans);
  font-size: 1rem; /* text-base */
  line-height: 1.625; /* leading-relaxed */
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .concierge__lede { font-size: 17px; } /* sm:text-[17px] */
}

/* Service cards — hairline-ruled grid (1px gap over rule-coloured bg) */
.concierge__grid {
  list-style: none;
  margin: 3rem 0 0; /* mt-12 */
  padding: 0;
  display: grid;
  grid-template-columns: 1fr; /* grid-cols-1 */
  gap: 1px; /* gap-px */
  overflow: hidden;
  border: 1px solid var(--color-rule);
  background: var(--color-rule);
}

@media (min-width: 640px) {
  .concierge__grid {
    margin-top: 3.5rem; /* sm:mt-14 */
    grid-template-columns: repeat(2, 1fr); /* sm:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .concierge__grid {
    grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
  }
}

.concierge__card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  padding: 1.75rem; /* p-7 */
}

@media (min-width: 640px) {
  .concierge__card { padding: 2rem; } /* sm:p-8 */
}

.concierge__icon {
  margin-bottom: 1.5rem; /* mb-6 */
  display: inline-flex;
  height: 2.5rem; /* h-10 */
  width: 2.5rem; /* w-10 */
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.concierge__icon > svg {
  height: 100%;
  width: 100%;
}

.concierge__kicker {
  font-family: var(--font-mono);
  font-size: 10px; /* text-[10px] */
  text-transform: uppercase;
  letter-spacing: 0.15em; /* tracking-[0.15em] */
  color: var(--color-muted);
}

.concierge__card-title {
  margin-top: 0.5rem; /* mt-2 */
  font-family: var(--font-serif);
  font-size: 1.5rem; /* text-2xl */
  line-height: 1.25; /* leading-tight */
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.concierge__copy {
  margin-top: 0.75rem; /* mt-3 */
  font-family: var(--font-sans);
  font-size: 15px; /* text-[15px] */
  line-height: 1.625; /* leading-relaxed */
  color: var(--color-muted);
}

/* Section CTA row */
.concierge__cta-row {
  margin-top: 3rem; /* mt-12 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem; /* gap-4 */
}

@media (min-width: 640px) {
  .concierge__cta-row {
    margin-top: 3.5rem; /* sm:mt-14 */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.concierge__cta-copy {
  max-width: 28rem; /* max-w-md */
  font-family: var(--font-sans);
  font-size: 15px; /* text-[15px] */
  line-height: 1.625; /* leading-relaxed */
  color: var(--color-muted);
}

/* keep the CTA from shrinking on the row layout */
.concierge__cta-row .btn-whatsapp {
  flex-shrink: 0;
}


/* === faq === */
/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq {
  scroll-margin-top: 5rem; /* scroll-mt-20 */
  background: var(--color-surface);
  padding: 80px 24px; /* px-6 py-20 */
}
@media (min-width: 640px) {
  .faq {
    padding: 96px 32px; /* sm:px-8 sm:py-24 */
  }
}
@media (min-width: 1024px) {
  .faq {
    padding: 120px 40px; /* lg:px-10 lg:py-[120px] */
  }
}

/* container atom already handles max-width/centering/inline-padding; we add
   the section's own inline padding above on .faq, so neutralise container's
   inline padding here to avoid double-padding. */
.faq .container {
  padding-inline: 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px; /* gap-12 */
}
@media (min-width: 1024px) {
  .faq__grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 80px; /* lg:gap-20 */
  }
}

/* ── Header column ──────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .faq__header {
    padding-right: 1rem; /* lg:pr-4 */
  }
}

.faq__eyebrow {
  color: var(--color-muted);
  font-size: 10px;
  letter-spacing: 0.18em;
}
@media (min-width: 640px) {
  .faq__eyebrow {
    font-size: 11px;
  }
}

.faq__title {
  margin-top: 16px; /* mt-4 */
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
@media (min-width: 640px) {
  .faq__title {
    font-size: 42px;
  }
}
@media (min-width: 768px) {
  .faq__title {
    font-size: 48px; /* md:text-5xl */
  }
}

.faq__title-accent {
  font-style: italic;
  color: var(--color-accent);
}

.faq__lead {
  margin-top: 24px; /* mt-6 */
  max-width: 24rem; /* max-w-sm */
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.625; /* leading-relaxed */
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .faq__lead {
    font-size: 16px; /* sm:text-base */
  }
}

.faq__link {
  margin-top: 16px; /* mt-4 */
  display: inline-flex;
  align-items: center;
  gap: 6px; /* gap-1.5 */
  border-radius: 2px; /* rounded-sm */
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  text-underline-offset: 4px;
}
.faq__link:hover {
  text-decoration: underline;
}
.faq__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ── Accordion column ───────────────────────────────────────────────── */
.faq__list {
  border-top: 1px solid var(--color-rule);
}

.faq__item {
  border-bottom: 1px solid var(--color-rule);
}

.faq__summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px; /* gap-4 */
  padding-top: 24px; /* py-6 */
  padding-bottom: 24px;
}
.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__question {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375; /* leading-snug */
  color: var(--color-ink);
}
@media (min-width: 640px) {
  .faq__question {
    font-size: 17px;
  }
}

/* +/− indicator — decorative, driven by the open state */
.faq__indicator {
  position: relative;
  margin-top: 2px; /* mt-0.5 */
  display: flex;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: color 0.2s;
}
.faq__item[open] .faq__indicator {
  color: var(--color-accent);
}

.faq__bar {
  position: absolute;
  background: currentColor;
}
.faq__bar--h {
  height: 1px;
  width: 14px; /* w-3.5 */
}
.faq__bar--v {
  height: 14px; /* h-3.5 */
  width: 1px;
  transition: transform 0.2s;
}
.faq__item[open] .faq__bar--v {
  transform: scaleY(0); /* + → − */
}

.faq__answer {
  margin-top: -4px; /* -mt-1 */
  padding-bottom: 24px; /* pb-6 */
  padding-right: 32px; /* pr-8 */
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.625;
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .faq__answer {
    font-size: 16px; /* sm:text-base */
  }
}


/* === final-cta === */
/* ===== final-cta ===== */
.final-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-ink);
  color: var(--color-white);
  padding-block: 80px; /* py-20 */
}
@media (min-width: 640px) {
  .final-cta {
    padding-block: 96px; /* sm:py-24 */
  }
}
@media (min-width: 1024px) {
  .final-cta {
    padding-block: 112px; /* lg:py-28 */
  }
}

.final-cta__grid {
  display: grid;
  gap: 56px; /* gap-14 */
}
@media (min-width: 1024px) {
  .final-cta__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
    gap: 80px; /* lg:gap-20 */
  }
}

.final-cta__rail {
  display: flex;
  flex-direction: column;
}

/* eyebrow override — white/55 on dark */
.final-cta__eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.final-cta__title {
  margin-top: 20px; /* mt-5 */
  font-family: var(--font-serif);
  font-size: 3rem; /* text-5xl */
  line-height: 0.95;
  letter-spacing: -0.025em; /* tracking-tight */
  color: var(--color-white);
}
@media (min-width: 640px) {
  .final-cta__title {
    font-size: 3.75rem; /* sm:text-6xl */
  }
}
@media (min-width: 1024px) {
  .final-cta__title {
    font-size: 4.5rem; /* lg:text-7xl */
  }
}

.final-cta__title-accent {
  font-style: italic;
  color: var(--color-accent-300); /* AA accent text on dark */
}

.final-cta__lead {
  margin-top: 24px; /* mt-6 */
  max-width: 28rem; /* max-w-md */
  font-family: var(--font-sans);
  font-size: 1rem; /* text-base */
  line-height: 1.625; /* leading-relaxed */
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 640px) {
  .final-cta__lead {
    font-size: 1.125rem; /* sm:text-lg */
  }
}

.final-cta__cta {
  margin-top: 36px; /* mt-9 */
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .final-cta__cta {
    flex-direction: row;
    align-items: center;
  }
}

.final-cta__form-anchor {
  margin-top: 20px; /* mt-5 */
  display: inline-flex;
  width: fit-content;
  font-family: var(--font-sans);
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s;
}
.final-cta__form-anchor:hover {
  color: var(--color-white);
}
@media (min-width: 1024px) {
  .final-cta__form-anchor {
    display: none; /* lg:hidden */
  }
}

.final-cta__stats {
  margin-top: 48px; /* mt-12 */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px; /* gap-4 */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px; /* pt-8 */
}

.final-cta__stat {
  display: flex;
  flex-direction: column;
  gap: 6px; /* gap-1.5 */
}

.final-cta__stat-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.final-cta__stat-value {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.875rem; /* text-3xl */
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-white);
}
@media (min-width: 640px) {
  .final-cta__stat-value {
    font-size: 2.25rem; /* sm:text-4xl */
  }
}

.final-cta__stat-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
}

/* Right card */
.final-cta__card {
  scroll-margin-top: 96px; /* scroll-mt-24 */
  border-radius: 2px; /* rounded-sm */
  background: var(--color-white);
  color: var(--color-ink);
  padding: 28px; /* p-7 */
  box-shadow: var(--shadow-panel);
}
@media (min-width: 640px) {
  .final-cta__card {
    padding: 36px; /* sm:p-9 */
  }
}

.final-cta__card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}

.final-cta__card-title {
  margin-top: 12px; /* mt-3 */
  font-family: var(--font-serif);
  font-size: 1.875rem; /* text-3xl */
  line-height: 1.25; /* leading-tight */
  letter-spacing: -0.025em;
  color: var(--color-ink);
}

.final-cta__card-form {
  margin-top: 28px; /* mt-7 */
}

/* ===== quote-form ===== */
.quote-form {
  font-family: var(--font-sans);
}

.quote-form__honeypot {
  display: none;
}

.quote-form__fieldset {
  display: flex;
  flex-direction: column;
  gap: 20px; /* gap-5 */
  border: 0;
  padding: 0;
}

.quote-form__legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px; /* gap-1.5 */
}

.quote-form__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}

.quote-form__input {
  border: 0;
  border-bottom: 1px solid var(--color-rule);
  background: transparent;
  padding-block: 12px; /* py-3 */
  font-size: 1rem; /* text-base */
  color: var(--color-ink);
  outline: none;
}
.quote-form__input:focus {
  border-bottom-color: var(--color-accent);
}

.quote-form__submit {
  margin-top: 8px; /* mt-2 */
  width: 100%;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  padding: 16px 24px; /* py-4 px-6 */
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.15s;
}
.quote-form__submit:hover {
  background: var(--color-accent-600);
}

.quote-form__note {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}


/* === footer === */
/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--color-ink);
  color: var(--color-white);
  font-family: var(--font-sans);
}

.footer__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* override .container padding to match px-6 / sm:px-8 / lg:px-10 + vertical */
.footer__inner {
  padding-top: 64px;     /* pt-16 */
  padding-bottom: 32px;  /* pb-8 */
}

/* ── Top grid ── */
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px; /* gap-12 */
}

/* ── Brand block ── */
.footer__logo {
  height: 36px; /* h-9 */
  width: auto;
}

.footer__tagline {
  margin-top: 24px;
  max-width: 28rem; /* max-w-md */
  font-size: 15px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
}

.footer__memberships {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 8px;
  list-style: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.footer__membership {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__membership-sep {
  color: rgba(255, 255, 255, 0.25);
}

.footer__cta {
  margin-top: 32px;
}

/* ── Nav columns ── */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: inherit;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__icon {
  height: 16px;
  width: 16px;
  flex-shrink: 0;
}

.footer__hours {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col--contact {
  grid-column: span 2;
}

/* ── Offices / legal identifiers ── */
.footer__offices {
  margin-top: 56px; /* mt-14 */
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px; /* pt-10 */
}

.footer__office {
  font-style: normal; /* not-italic on <address> */
}

.footer__office-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: inherit;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__office-address {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Operated-by ownership signal ── */
.footer__operated {
  margin-top: 48px; /* mt-12 */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px; /* pt-8 */
  font-size: 13px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
}

.footer__operated-link {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.15s ease;
}

.footer__operated-link:hover {
  text-decoration-color: var(--color-white);
}

.footer__operated-link--name {
  font-weight: 500;
}

/* ── Bottom bar ── */
.footer__bottom {
  margin-top: 40px; /* mt-10 */
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__copyright {
  margin: 0;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  row-gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── sm: ≥640px ── */
@media (min-width: 640px) {
  .footer__inner {
    padding-bottom: 40px; /* sm:pb-10 */
    padding-top: 80px;    /* sm:pt-20 */
  }
  .footer__offices {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── md: ≥768px ── */
@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: repeat(12, 1fr);
    gap: 40px; /* md:gap-10 */
  }
  .footer__brand {
    grid-column: span 5;
  }
  .footer__nav {
    grid-column: span 7;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__col--contact {
    grid-column: span 1;
  }
}

/* ── lg: ≥1024px ── */
@media (min-width: 1024px) {
  .footer__inner {
    padding-top: 96px; /* lg:pt-24 */
  }
  .footer__brand {
    grid-column: span 6;
  }
  .footer__nav {
    grid-column: span 6;
  }
  .footer__offices {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* === legal === */
/* ===== Legal pages (privacy / terms / cookies) — self-contained reading page ===== */
.legal {
  background: var(--color-bg);
  font-family: var(--font-sans);
  color: var(--color-ink);
}
.legal__column {
  width: 100%;
  max-width: 68ch;
  margin-inline: auto;
  padding: 48px 24px;
}
@media (min-width: 640px) { .legal__column { padding: 64px 32px; } }
@media (min-width: 1024px) { .legal__column { padding-block: 80px; } }

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  transition: color 0.15s ease;
}
.legal__back:hover { color: var(--color-ink); }

.legal__header {
  margin-top: 32px;
  border-bottom: 1px solid var(--color-rule);
  padding-bottom: 32px;
}
.legal__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-ink);
}
@media (min-width: 640px) { .legal__title { font-size: 42px; } }
.legal__effective {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

/* Policy body typography (semantic tags styled by descendant selectors). */
.legal-body {
  margin-top: 40px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.85);
}
@media (min-width: 640px) { .legal-body { font-size: 16px; } }
.legal-body h2 {
  margin-top: 48px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--color-ink);
}
@media (min-width: 640px) { .legal-body h2 { font-size: 26px; } }
.legal-body > h2:first-child { margin-top: 0; }
.legal-body h3 {
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
  color: var(--color-ink);
}
@media (min-width: 640px) { .legal-body h3 { font-size: 17px; } }
.legal-body p { margin-top: 16px; }
.legal-body ul,
.legal-body ol {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
}
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li::marker { color: var(--color-muted); }
.legal-body a {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* "About this site" editorial note (tinted panel). */
.legal-about {
  margin-top: 48px;
  border-radius: 12px;
  border: 1px solid var(--color-accent-50);
  background: rgba(238, 242, 255, 0.6);
  padding: 24px;
}
@media (min-width: 640px) { .legal-about { padding: 28px; } }
.legal-about h2 {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-600);
}
.legal-about p {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.625;
  color: rgba(10, 10, 10, 0.8);
}

/* Brand imprint (§10). */
.legal__imprint {
  margin-top: 64px;
  border-top: 1px solid var(--color-rule);
  padding-top: 32px;
  font-size: 13px;
  line-height: 1.625;
  color: var(--color-muted);
}
.legal__imprint p + p { margin-top: 16px; }
.legal__imprint-link {
  color: var(--color-ink);
  text-decoration: underline;
  text-decoration-color: var(--color-rule);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.15s ease;
}
.legal__imprint-link:hover { text-decoration-color: var(--color-ink); }
.legal__imprint-link--name { font-weight: 500; }


/* === thanks === */
/* ===== Thanks / 404 — centred standalone page ===== */
.thanks {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  padding: 80px 24px;
  text-align: center;
}
.thanks__logo { height: 32px; width: auto; }
.thanks__eyebrow { margin-top: 56px; }
.thanks__title {
  margin-top: 16px;
  max-width: 42rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
@media (min-width: 640px) { .thanks__title { font-size: 3rem; } }
.thanks__copy {
  margin-top: 20px;
  max-width: 28rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-muted);
}
@media (min-width: 640px) { .thanks__copy { font-size: 1.125rem; } }
.thanks__actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.thanks__back {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s ease;
}
.thanks__back:hover { color: var(--color-ink); }


/* === rtl === */
/* ============================================================================
   RTL + Arabic locale  ·  /ar/   (pilot: home + riyadh-to-london)
   Concatenated LAST by build.mjs so [lang="ar"] / [dir="rtl"] rules win the
   cascade. Layout mirroring is mostly automatic — the foundation already uses
   logical properties (margin-inline / padding-inline / text-align:start). This
   file adds the Arabic webfont + the handful of RTL-specific corrections.
   ========================================================================== */

/* Self-hosted Arabic webfont — Tajawal (SIL OFL), arabic subset only. The
   unicode-range keeps Tajawal to Arabic codepoints, so Latin glyphs (the brand
   mark, Western numerals) fall through to Geist per-glyph. Mirrors the Geist
   self-host pattern in styles.css. */
@font-face {
  font-family: "Tajawal";
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url(/fonts/tajawal-400.woff2) format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
  font-family: "Tajawal";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url(/fonts/tajawal-700.woff2) format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

/* Arabic typography via the design tokens: slot Tajawal into each font stack on the
   /ar/ root. Tajawal's @font-face has an Arabic-only unicode-range, so it ONLY affects
   Arabic codepoints — Latin keeps its intended font (Geist / Geist Mono / Instrument
   Serif). Every section uses these vars, so this fixes ALL text at once — including
   mono/serif labels (e.g. .fleet__spec-label) whose Arabic otherwise fell back to a
   broken, non-joining system font. */
[lang="ar"] {
  --font-sans: "Tajawal", "Geist", "Geist Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Tajawal", "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-mono: "Geist Mono", "Tajawal", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* Connected script — letter-spacing shatters Arabic (positive tracking separates the
   joined letters; even negative tracking harms it). The brand wordmark is an <img>, so
   NO Latin TEXT on the /ar/ page needs tracking → reset it universally. !important beats
   the ~60 per-section tracked-label selectors (.eyebrow, kickers, spec labels, etc.). */
[lang="ar"] * { letter-spacing: normal !important; }
/* Arabic has no letter case — drop the uppercase transform on tracked labels so any
   inline Latin in them isn't shouted either. */
[lang="ar"] .eyebrow { text-transform: none; }

/* LTR islands inside RTL text — prices (AED/£), phone, the Latin brand name —
   keep their own direction so digits + symbols don't visually reorder. Mark with
   class="ltr" or [data-ltr] in the partials. */
[dir="rtl"] .ltr,
[dir="rtl"] [data-ltr] {
  unicode-bidi: isolate;
  direction: ltr;
}

/* No italics in Arabic (client direction, 2026-07-24) — Tajawal has no true italic,
   so the faux-oblique renders badly. The accent COLOUR carries the emphasis alone;
   every heading-accent class keeps its colour from the per-section rules. */
[lang="ar"] .hero__title-accent,
[lang="ar"] .trending__title-accent,
[lang="ar"] .faq__title-accent,
[lang="ar"] .final-cta__title-accent,
[lang="ar"] .how__title-em,
[lang="ar"] .safety__title-em,
[lang="ar"] .testimonials__title {
  font-style: normal;
}
