/* HomesLogix — warm, trustworthy, property-first */
:root {
  --bg: #fbf8f2;
  --bg-2: #f3ede1;
  --bg-3: #ece4d4;
  --dark: #0d2018;
  --dark-2: #102a1f;
  --dark-3: #143628;
  --ink: #0e1a14;
  --ink-dim: #4a5d54;
  --ink-muted: #7e8c84;
  --line: rgba(14, 26, 20, 0.10);
  --line-strong: rgba(14, 26, 20, 0.18);
  --line-dark: rgba(255, 255, 255, 0.10);
  --line-dark-strong: rgba(255, 255, 255, 0.18);
  --accent: #ea7a32;
  --accent-2: #d4631e;
  --accent-soft: rgba(234, 122, 50, 0.12);
  --gold: #d4a72c;
  --green: #2d6a4f;
  --green-2: #1f5036;
  --green-soft: rgba(45, 106, 79, 0.12);
  --card: #ffffff;
  --card-shadow: 0 1px 2px rgba(14, 26, 20, 0.04), 0 8px 28px rgba(14, 26, 20, 0.06);
  --card-shadow-hover: 0 2px 4px rgba(14, 26, 20, 0.05), 0 16px 40px rgba(14, 26, 20, 0.10);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --font-display: "Fraunces", "Charter", "Iowan Old Style", Georgia, serif;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section.dark {
  background: var(--dark);
  color: #e8efe9;
}
.section.dark .section-title { color: #fdfbf6; }
.section.dark .section-sub { color: #a8b9af; }
.section.cream { background: var(--bg-2); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.section.dark .eyebrow { color: var(--gold); }
.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-dim);
  margin: 0;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  position: relative;
  box-shadow: 0 6px 14px rgba(234, 122, 50, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark::after {
  content: "";
  width: 16px; height: 16px;
  background: var(--bg);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11l9-7 9 7'/><path d='M5 10v10h14V10'/><path d='M10 20v-6h4v6'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11l9-7 9 7'/><path d='M5 10v10h14V10'/><path d='M10 20v-6h4v6'/></svg>") center / contain no-repeat;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-dim);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(14, 26, 20, 0.04); }
.nav-links a.active { color: var(--ink); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 40px; height: 38px;
  align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; display: block;
  width: 16px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative;
}
.nav-toggle span::before { position: absolute; top: -5px; }
.nav-toggle span::after { position: absolute; top: 5px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .15s, background .2s, border-color .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 6px 16px rgba(14, 26, 20, 0.18);
}
.btn-primary:hover { background: #1a2d22; box-shadow: 0 10px 22px rgba(14, 26, 20, 0.24); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(234, 122, 50, 0.32);
}
.btn-accent:hover { background: var(--accent-2); box-shadow: 0 10px 24px rgba(234, 122, 50, 0.40); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: #fff; border-color: var(--ink); }
.btn-light {
  background: var(--bg);
  color: var(--ink);
}
.btn-light:hover { background: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fdfbf6;
  border-color: var(--line-dark-strong);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 90% 10%, rgba(234, 122, 50, 0.12), transparent 60%),
    radial-gradient(600px 380px at 8% 90%, rgba(45, 106, 79, 0.10), transparent 60%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(14, 26, 20, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(234, 122, 50, 0.18);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 600;
}
.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-dim);
  margin: 0 0 30px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  color: var(--ink-muted);
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--accent); }

/* Hero visual: stack of cards */
.hero-visual {
  position: relative;
  height: 460px;
}
.hero-card {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--line);
  padding: 18px;
  font-size: 14px;
}
.hero-card.c1 {
  left: 0; top: 30px;
  width: 70%;
  z-index: 2;
}
.hero-card.c2 {
  right: 0; top: 0;
  width: 58%;
  z-index: 3;
  transform: rotate(2.5deg);
}
.hero-card.c3 {
  left: 12%; bottom: 0;
  width: 64%;
  z-index: 4;
  transform: rotate(-1.5deg);
}
.hero-card h4 { font-size: 13px; color: var(--ink-muted); margin: 0 0 8px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-card .num { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: -0.01em; }
.hero-card .row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-top: 1px dashed var(--line); font-size: 13px; color: var(--ink-dim); }
.hero-card .row:first-of-type { border-top: 0; }
.hero-card .pill { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: var(--green-soft); color: var(--green-2); font-weight: 600; }
.hero-card .pill.amber { background: var(--accent-soft); color: var(--accent-2); }

/* Trust strip */
.trust {
  padding: 28px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-size: 14px;
}
.trust-inner strong { color: var(--ink); font-weight: 600; }
.trust-divider { width: 1px; height: 16px; background: var(--line-strong); }
@media (max-width: 700px) {
  .trust-divider { display: none; }
}

/* Grid + cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--line-strong);
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(234, 122, 50, 0.22);
}
.card .icon.green { background: var(--green-soft); color: var(--green-2); border-color: rgba(45, 106, 79, 0.22); }
.card .icon svg { width: 22px; height: 22px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.card p { margin: 0; color: var(--ink-dim); font-size: 15.5px; }

.section.dark .card {
  background: var(--dark-2);
  border-color: var(--line-dark);
  box-shadow: none;
  color: #e8efe9;
}
.section.dark .card:hover { background: var(--dark-3); border-color: var(--line-dark-strong); }
.section.dark .card h3 { color: #fdfbf6; }
.section.dark .card p { color: #a8b9af; }
.section.dark .card .icon {
  background: rgba(212, 167, 44, 0.14);
  color: var(--gold);
  border-color: rgba(212, 167, 44, 0.30);
}

/* Mileage section (deep dive) */
.mileage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .mileage { grid-template-columns: 1fr; gap: 40px; } }
.mileage h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  font-weight: 600;
}
.mileage p { font-size: 17px; color: var(--ink-dim); margin: 0 0 18px; }
.mileage .stat {
  display: flex;
  gap: 28px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.stat-item { min-width: 130px; }
.stat-item .v {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: -0.01em;
}
.stat-item .l {
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mileage-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--card-shadow);
}
.mileage-card .ml-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.mileage-card .ml-head h4 { margin: 0; font-size: 14px; color: var(--ink-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ml-trip {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: center;
}
.ml-trip:last-child { border-bottom: 0; }
.ml-trip .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  margin: 0 auto;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.ml-trip .dot.g { background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.ml-trip .path { display: flex; flex-direction: column; }
.ml-trip .path .from { font-size: 13px; color: var(--ink-muted); }
.ml-trip .path .to { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.ml-trip .km { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); }
.ml-trip .km small { color: var(--accent-2); font-size: 12px; font-weight: 500; }
.ml-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.ml-footer .total {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.ml-footer .deduction { color: var(--green-2); font-weight: 600; font-size: 14px; }

/* Bookings sync visual */
.sync-visual {
  background:
    linear-gradient(160deg, rgba(212, 167, 44, 0.12), rgba(45, 106, 79, 0.06) 60%, transparent),
    var(--dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.sync-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.sync-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 16px;
}
.sync-tile .src {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.sync-tile .name { font-weight: 600; font-size: 15.5px; color: #fdfbf6; }
.sync-tile .when { font-size: 13px; color: #a8b9af; margin-top: 4px; }
.sync-tile .amt { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-top: 12px; color: #fdfbf6; }

/* Phone mockup for app section */
.app-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .app-split { grid-template-columns: 1fr; gap: 40px; } }
.phone {
  width: 280px;
  height: 560px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 38px;
  padding: 14px;
  box-shadow: 0 25px 60px rgba(14, 26, 20, 0.25);
  position: relative;
  border: 1px solid var(--line-dark-strong);
}
.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, #fdfbf6, #f3ede1);
  overflow: hidden;
  position: relative;
  padding: 50px 18px 18px;
}
.phone-screen .ps-eyebrow {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 700;
}
.phone-screen .ps-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 4px 0 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.phone-screen .ps-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: var(--ink-dim);
}
.phone-screen .ps-card strong { color: var(--ink); display: block; font-size: 13px; }
.phone-screen .ps-card .right { float: right; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.phone-screen .ps-fab {
  position: absolute;
  bottom: 26px; right: 26px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px rgba(234, 122, 50, 0.4);
}
.phone-screen .ps-fab svg { width: 24px; height: 24px; color: #fff; }

.app-features { list-style: none; padding: 0; margin: 22px 0 0; }
.app-features li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line-dark); }
.app-features li:first-child { border-top: 0; padding-top: 0; }
.app-features .af-icon {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(212, 167, 44, 0.14); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212, 167, 44, 0.28);
}
.app-features .af-icon svg { width: 18px; height: 18px; }
.app-features h4 { margin: 0 0 4px; font-size: 16px; color: #fdfbf6; font-weight: 600; }
.app-features p { margin: 0; font-size: 14.5px; color: #a8b9af; }

/* Pricing / Waitlist tease */
.waitlist-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
  text-align: center;
}
.waitlist-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.waitlist-card p { margin: 0 0 24px; color: var(--ink-dim); }
.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .waitlist-form { grid-template-columns: 1fr; }
}
.waitlist-form input {
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font: inherit;
  outline: none;
}
.waitlist-form input:focus { border-color: var(--accent); }

/* Final CTA */
.final-cta {
  position: relative;
  text-align: center;
  padding: 110px 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(234, 122, 50, 0.18), transparent 60%),
    var(--dark);
  color: #e8efe9;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 auto 18px;
  max-width: 760px;
  color: #fdfbf6;
  line-height: 1.12;
}
.final-cta p { color: #a8b9af; max-width: 580px; margin: 0 auto 30px; font-size: 17px; }

/* Footer */
footer {
  background: #07120c;
  color: #a8b9af;
  padding: 60px 0 28px;
  border-top: 1px solid var(--line-dark);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .foot-grid { grid-template-columns: 1fr; } }
footer .brand { color: #fdfbf6; }
.foot-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fdfbf6;
  margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 8px; font-size: 14px; }
.foot-col a:hover { color: #fdfbf6; }
.foot-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #7e8c84;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.family-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 500;
}
.family-link:hover { color: #fdfbf6; }

/* Page head (sub-pages) */
.page-head {
  padding: 100px 0 60px;
  text-align: center;
  background:
    radial-gradient(700px 300px at 50% -10%, rgba(234, 122, 50, 0.10), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 50px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 600;
}
.page-head p { max-width: 640px; margin: 0 auto; color: var(--ink-dim); font-size: 18px; }

/* Forms */
.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--ink-dim); font-weight: 500; }
.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 10px;
  font: inherit;
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }

/* Mobile nav */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(251, 248, 242, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px;
    gap: 4px;
  }
  .nav.open .nav-links a { padding: 12px 14px; font-size: 15px; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 4px;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--ink-dim); font-size: 15.5px; }
