/* ============================================================
   CHERRY FINDERS — shared design system
   "Editorial Mono" — black & white, luxury real-estate
   Inspired by high-end marketplace aesthetics.
   One stylesheet for every page.
   ============================================================ */

/* Fonts per-page: Cormorant Garamond (display) · Inter (UI/body) */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --paper:   #FFFFFF;
  --paper-2: #F5F4F2;   /* subtle off-white for alt sections */
  --ink:     #0E0E0E;   /* near-black */
  --ink-2:   #6A6A6A;   /* gray */
  --ink-3:   #9C9C9C;   /* light gray */
  --black:   #0E0E0E;
  --white:   #FFFFFF;

  --line:   rgba(14,14,14,0.12);
  --line-2: rgba(14,14,14,0.24);
  --line-w: rgba(255,255,255,0.18);   /* on dark */

  /* accent removed — pure black & white */
  --cherry:   #0E0E0E;
  --cherry-2: #0E0E0E;

  --radius:    4px;
  --radius-lg: 6px;
  --radius-pill: 100px;

  --wrap: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  color-scheme: light;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ── TYPO PRIMITIVES ───────────────────────────────────────── */
.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 26px; height: 1px;
  background: var(--ink-2);
  display: inline-block;
}
.h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  letter-spacing: -0.005em;
  line-height: 1.08;
  margin: 18px 0 0;
  text-wrap: balance;
  color: var(--ink);
}
.h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.grad { font-style: italic; color: var(--ink); }   /* emphasis = italic serif, no color */
.lead {
  font-size: 1.08rem;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 56ch;
  font-weight: 400;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 32px; }
.section { padding-block: clamp(74px, 11vw, 140px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 104px); }
.section--cream { background: var(--paper-2); }
.divider { height: 1px; border: 0; margin: 0; background: var(--line); }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: calc(env(safe-area-inset-top, 0px) + 20px) 32px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
  padding-top: calc(env(safe-area-inset-top, 0px) + 13px);
  padding-bottom: 13px;
}
.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cherry);
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 1px; background: var(--ink);
}
.nav-right { display: flex; align-items: center; gap: 18px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  background: transparent;
  border-radius: 2px;
  cursor: pointer; padding: 0; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 18px; height: 1.5px; background: var(--ink);
  transform: translate(-50%,-50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%,-6px); }
.nav-toggle span::after  { transform: translate(-50%,5px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%,-50%) rotate(45deg); }
body.menu-open .nav-toggle span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 36px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: 9px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--cherry); padding-left: 8px; }
.mobile-menu .btn { margin-top: 26px; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .18s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 15px; height: 15px; }
.btn-cherry { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-cherry:hover { background: #fff; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-lg { padding: 18px 34px; font-size: 0.76rem; }
.btn-block { width: 100%; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(168px, 24vh, 244px);
  padding-bottom: clamp(72px, 11vw, 128px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid, .hero-blob { display: none; }   /* no decorative color in mono theme */
.hero-inner { max-width: 900px; }
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.2rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 26px 0 0;
  text-wrap: balance;
}
.hero p.lead { margin-top: 28px; font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px;
  margin-top: 52px; padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink-2);
}
.trust-row b { color: var(--ink); font-weight: 600; }
.trust-row .star { color: var(--cherry); }
.trust-sep { width: 1px; height: 13px; background: var(--line-2); }

/* ── PANEL / CARDS ─────────────────────────────────────────── */
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.sec-head { max-width: 660px; }
.sec-head .lead { margin-top: 18px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .lead { margin-inline: auto; }

/* ── FEATURE GRID ──────────────────────────────────────────── */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature {
  position: relative;
  padding: 40px 34px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .3s, background .3s, transform .25s var(--ease);
}
.feature:hover { border-color: var(--line-2); transform: translateY(-3px); }
.feat-icon {
  width: 34px; height: 34px;
  display: grid; place-items: start;
  margin-bottom: 24px;
}
.feat-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.feature h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.6rem; font-weight: 500; margin: 0 0 10px; letter-spacing: -0.005em; }
.feature p { margin: 0; font-size: 0.96rem; color: var(--ink-2); line-height: 1.65; }

/* ── STEPS ─────────────────────────────────────────────────── */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative;
  padding: 36px 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: border-color .3s, transform .25s var(--ease);
}
.step:hover { border-color: var(--line-2); transform: translateY(-3px); }
.step-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem; font-weight: 500; color: var(--ink);
  margin-bottom: 16px; line-height: 1;
}
.step h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.35rem; font-weight: 500; margin: 0 0 9px; }
.step p { margin: 0; font-size: 0.93rem; color: var(--ink-2); line-height: 1.6; }

/* ── STATS ─────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.stat { padding: 46px 28px; border-right: 1px solid var(--line); text-align: center; }
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: -0.01em; line-height: 1; color: var(--ink);
}
.stat-num .grad { color: var(--ink); font-style: normal; }
.stat-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 14px;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote {
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  position: relative;
}
.quote .stars { color: var(--cherry); letter-spacing: 3px; font-size: 0.82rem; margin-bottom: 18px; }
.quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 400; line-height: 1.35;
  color: var(--ink); margin: 0 0 22px; letter-spacing: -0.005em;
}
.quote .who { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.quote .where { font-size: 0.74rem; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.06em; }

/* ── CITIES / PILLS ────────────────────────────────────────── */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: transparent; color: var(--ink-2);
  transition: border-color .25s, color .25s, background .25s;
}
.pill:hover { border-color: var(--ink); color: #fff; background: var(--ink); }

/* ── CTA BAND (full black) ─────────────────────────────────── */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 100px) clamp(32px,6vw,72px);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  text-align: center;
}
.cta-band h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: clamp(2.2rem,4.6vw,3.6rem); letter-spacing: -0.005em; margin: 0; color: #fff; text-wrap: balance; }
.cta-band p { color: rgba(255,255,255,0.72); margin: 18px auto 0; max-width: 48ch; }
.cta-band .btn { margin-top: 34px; }
.cta-band .btn-cherry { background: #fff; color: var(--ink); border-color: #fff; }
.cta-band .btn-cherry:hover { background: transparent; color: #fff; border-color: #fff; }

/* ── FORMS ─────────────────────────────────────────────────── */
.form-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: start; }
.form-aside .lead { margin-top: 18px; }
.form-checklist { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.form-checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-2); }
.form-checklist svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--ink); fill: none; stroke-width: 1.6; margin-top: 2px; }

.form-card { padding: clamp(30px, 4vw, 46px); }
.form-card h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-size: 1.9rem; margin: 0 0 6px; letter-spacing: -0.005em; }
.form-card .form-note { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 28px; }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field > label, .field-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

input, select, textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem; color: var(--ink);
  background: var(--paper);
  border: 0;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  padding: 12px 2px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }
input:focus, select:focus, textarea:focus { border-bottom-color: var(--ink); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236A6A6A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; padding-right: 30px; cursor: pointer;
}
select option { background: var(--paper); color: var(--ink); }
textarea { resize: vertical; min-height: 84px; line-height: 1.55; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 12px 14px; }
textarea:focus { border-color: var(--ink); }
input.invalid, select.invalid, textarea.invalid { border-color: var(--cherry); border-bottom-color: var(--cherry); }

.form-fine { font-size: 0.76rem; color: var(--ink-3); line-height: 1.55; margin: 16px 0 0; }
.form-error { color: var(--cherry); font-size: 0.84rem; font-weight: 600; margin: 16px 0 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-success { display: none; text-align: center; padding: 34px 10px; }
.form-success.show { display: block; }
form.sent { display: none; }
.success-badge {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 22px;
  background: var(--ink);
}
.success-badge svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 2.4; }
.form-success h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-size: 1.9rem; margin: 0 0 10px; }
.form-success p { color: var(--ink-2); margin: 0; font-size: 0.96rem; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 30px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 500; color: var(--ink);
  letter-spacing: -0.005em; transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--ink-2); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--ink); transition: transform .3s var(--ease); }
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 1.5px; }
.faq-icon::after  { left: 8px; top: 0; width: 1.5px; height: 18px; }
.faq details[open] .faq-icon::after { transform: scaleY(0); }
.faq-answer { padding: 0 4px 30px; color: var(--ink-2); font-size: 1rem; line-height: 1.75; max-width: 72ch; }
.faq-answer a { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line-2); }

/* ── PAGE HEADER ───────────────────────────────────────────── */
.page-head {
  position: relative;
  padding-top: clamp(160px, 22vh, 210px);
  padding-bottom: clamp(44px, 6vw, 68px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6.4vw, 4.8rem);
  letter-spacing: -0.01em; line-height: 1.04; margin: 22px 0 0; text-wrap: balance;
}
.page-head .lead { margin-top: 20px; }
.page-head .lead a { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line-2); }

/* prose (about) */
.prose { max-width: 68ch; }
.prose p { color: var(--ink-2); margin: 0 0 22px; font-size: 1.08rem; line-height: 1.8; }
.prose h2 { font-family:'Cormorant Garamond',Georgia,serif; font-weight:500; font-size: 2rem; margin: 50px 0 16px; color: var(--ink); letter-spacing: -0.005em; }
.prose strong { color: var(--ink); font-weight: 600; }

/* info cards (contact) */
.info-card { padding: 36px 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.info-card .feat-icon { margin-bottom: 20px; }
.info-card h3 { font-family:'Cormorant Garamond',Georgia,serif; font-weight:500; font-size:1.4rem; margin:0 0 8px; }
.info-card p { color: var(--ink-2); font-size: 0.96rem; margin: 0 0 16px; }
.info-card a.link {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: opacity .2s; word-break: break-word;
}
.info-card a.link:hover { opacity: 0.6; }

/* ── FOOTER (black) ────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-block: 72px 40px;
  margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 54px; }
.footer-brand { font-family:'Cormorant Garamond',Georgia,serif; font-weight:600; font-size:1.42rem; letter-spacing:0.01em; color:#fff; display:inline-flex; align-items:center; gap:9px; text-decoration:none; }
.footer-tag { color: rgba(255,255,255,0.5); font-size: 0.92rem; line-height: 1.7; margin: 18px 0 0; max-width: 36ch; }
.foot-label { font-size:0.68rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.foot-links { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.foot-links a { font-size:0.88rem; letter-spacing:0.02em; color:rgba(255,255,255,0.72); text-decoration:none; transition:color .2s; }
.foot-links a:hover { color: #fff; }
.footer-bottom { border-top:1px solid var(--line-w); padding-top:28px; display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.footer-bottom p { margin:0; font-size:0.78rem; letter-spacing:0.03em; color:rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.68); text-decoration:none; }

/* ── REVEAL ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .quotes { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .form-layout { grid-template-columns: 1fr !important; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 620px) {
  .wrap { padding-inline: 22px; }
  .nav { padding-inline: 22px; }
  .grid-3, .grid-2, .quotes, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trust-sep { display: none; }
}

/* ── MOTION SAFETY ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}

/* ── CENTERED LAYOUT (everything centered) ─────────────────── */
.wrap { text-align: center; }
.hero-inner { margin-inline: auto; }
.hero-actions { justify-content: center; }
.trust-row { justify-content: center; }
.sec-head { margin-inline: auto; }
.lead { margin-inline: auto; }
.feat-icon { place-items: center; margin-inline: auto; }
.pills { justify-content: center; }
.form-checklist { align-items: center; }
.form-checklist li { justify-content: center; }
.faq summary { justify-content: center; gap: 18px; }
.faq-answer { text-align: center; margin-inline: auto; }
.prose { margin-inline: auto; }
.form-layout { justify-items: center; }
.footer-grid { justify-items: center; }
.footer-tag { margin-inline: auto; }
.footer-bottom { justify-content: center; text-align: center; }
.mobile-menu { text-align: center; }
/* typing fields stay left-aligned for legibility while everything around them centers */
input, select, textarea { text-align: left; }
