:root {
  --bg: #f4f1eb;
  --surface: #fffdf9;
  --surface-muted: #e9e5dd;
  --ink: #20231f;
  --ink-soft: #5b6059;
  --line: #d3cfc6;
  --accent: #b7462f;
  --accent-dark: #8f3423;
  --forest: #284f45;
  --forest-dark: #1e3c34;
  --white: #ffffff;
  --focus: #1d67c1;
  --shadow: 0 18px 44px rgba(30, 35, 30, 0.13);
  --radius-sm: 4px;
  --radius: 6px;
  --container: 1200px;
  --header-height: 76px;
  --section-space: 86px;
  color-scheme: light;
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.56;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.intake-disabled {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-inline-start: 5px solid var(--forest);
  border-radius: var(--radius);
  background: var(--surface);
}
.intake-disabled strong { display: block; font-size: 1.25rem; }
.intake-disabled p { margin: 8px 0 0; color: var(--ink-soft); }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { margin-bottom: 0; line-height: 1.08; letter-spacing: 0; text-wrap: balance; }
h1 { max-width: 920px; font-size: 58px; font-weight: 780; }
h2 { font-size: 42px; font-weight: 750; }
h3 { font-size: 24px; font-weight: 730; }
h4 { font-size: 21px; font-weight: 720; }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: #f2b7aa; }
.section-heading { max-width: 780px; margin-bottom: 46px; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--ink-soft); font-size: 18px; }
.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 60px;
  max-width: none;
  align-items: end;
}
.narrow-heading { max-width: 700px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 730;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-large { min-height: 54px; padding: 14px 24px; }
.button-primary { border-color: var(--accent); background: var(--accent); color: var(--white); }
.button-primary:hover { border-color: var(--accent-dark); background: var(--accent-dark); }
.button-secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--white); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--surface-muted); }
.button-ghost-light { border-color: rgba(255,255,255,.56); background: transparent; color: var(--white); }
.button-ghost-light:hover { background: rgba(255,255,255,.09); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-weight: 730;
  line-height: 1.45;
  text-decoration: none;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}
.icon-button svg { width: 22px; height: 22px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(44,47,42,.12);
  background: rgba(244,241,235,.97);
  transition: box-shadow 160ms ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(32,35,31,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-width: 0; display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 3px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 850;
}
.brand-copy { min-width: 0; display: grid; line-height: 1.12; }
.brand-copy strong { overflow: hidden; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; font-weight: 650; }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav > a:not(.button) { font-size: 14px; font-weight: 700; text-decoration: none; }
.primary-nav > a:hover { color: var(--accent-dark); }
.nav-cta { min-height: 44px; padding-inline: 17px; font-size: 14px; }
.menu-button { display: none; }

.hero { position: relative; min-height: 660px; overflow: hidden; background: #e5e1d9; }
.hero-image, .hero-wash { position: absolute; inset: 0; }
.hero-image { background-image: url("../images/demo-hero.webp"); background-position: center; background-size: cover; }
.hero-wash { right: auto; width: 61%; background: rgba(244,241,235,.95); }
.hero-inner { position: relative; min-height: 660px; display: flex; align-items: center; padding-block: 58px 64px; }
.hero-copy { width: min(58%, 720px); }
.hero-subhead { max-width: 650px; margin: 20px 0 0; font-size: 29px; font-weight: 740; line-height: 1.2; }
.hero-lead { max-width: 650px; margin: 16px 0 30px; color: #454942; font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-whatsapp { margin-left: 4px; }

.path-section { padding-block: 44px; background: var(--surface); border-bottom: 1px solid var(--line); }
.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.path-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.path-card p:not(.eyebrow) { margin: 15px 0 24px; color: var(--ink-soft); }
.path-card-strong { border-color: var(--forest); background: #eef1ea; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-grid > div {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  font-size: 14px;
}
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { padding-right: 0; border-right: 0; }
.trust-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--accent); }

.property-preview, .property-subhero { background: var(--forest-dark); color: var(--white); }
.property-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 78px;
  align-items: center;
}
.property-preview p:not(.eyebrow) { max-width: 760px; margin: 24px 0 28px; color: #d7e2de; font-size: 19px; }
.outcome-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.34); counter-reset: outcome; }
.outcome-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: #e4ece9;
  font-weight: 680;
  counter-increment: outcome;
}
.outcome-list li::before { content: "0" counter(outcome); margin-right: 16px; color: #f2b7aa; font-size: 13px; }

.services-section { background: var(--surface); }
.services-layout { display: grid; grid-template-columns: minmax(310px, .9fr) minmax(420px, 1.1fr); gap: 64px; align-items: start; }
.service-feature-image { position: sticky; top: calc(var(--header-height) + 26px); margin: 0; }
.service-feature-image img { width: 100%; height: auto; aspect-ratio: 4 / 5; border-radius: var(--radius); object-fit: cover; }
.service-feature-image figcaption { margin-top: 10px; color: var(--ink-soft); font-size: 12px; }
.service-stack > h3 { margin-bottom: 22px; }
.service-list { border-top: 1px solid var(--ink); }
.service-row { display: grid; grid-template-columns: 52px 1fr; gap: 12px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.service-number { padding-top: 3px; color: var(--accent-dark); font-size: 13px; font-weight: 780; }
.service-row h4 { margin-bottom: 8px; }
.service-row p { max-width: 560px; margin: 0; color: var(--ink-soft); }
.service-status {
  display: inline-block;
  margin-top: 10px;
  color: #76564d;
  font-size: 12px;
  font-weight: 700;
}
.coordinated-box { margin-top: 30px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #f6f3ed; }
.coordinated-box p { margin: 13px 0 0; color: var(--ink-soft); }

.process-section { border-top: 1px solid var(--line); background: #ebe7df; }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}
.process-list li { min-height: 220px; padding: 26px 25px 26px 0; border-right: 1px solid var(--line); }
.process-list li:not(:first-child) { padding-left: 25px; }
.process-list li:last-child { padding-right: 0; border-right: 0; }
.process-list li > span { display: block; margin-bottom: 46px; color: var(--accent-dark); font-size: 13px; font-weight: 780; }
.process-list h3 { min-height: 50px; margin-bottom: 14px; font-size: 21px; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.process-link { margin-top: 28px; }

.documentation-section { background: var(--bg); border-top: 1px solid var(--line); }
.doc-example { border-top: 1px solid var(--ink); padding-top: 12px; }
.project-images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.project-images figure { position: relative; margin: 0; overflow: hidden; background: var(--surface-muted); }
.project-images img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.image-label {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 3px;
  background: rgba(32,35,31,.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 760;
}
.image-label-after { background: rgba(40,79,69,.92); }
.doc-details, .review-panel { margin: 26px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.doc-details div, .review-panel div { padding: 18px 20px 18px 0; border-top: 1px solid var(--line); }
.doc-details dt, .review-panel dt { color: var(--ink-soft); font-size: 13px; }
.doc-details dd, .review-panel dd { margin: 6px 0 0; font-weight: 680; }

.area-section { border-top: 1px solid var(--line); background: var(--bg); }
.area-layout { display: grid; grid-template-columns: minmax(310px, .82fr) minmax(420px, 1.18fr); gap: 78px; align-items: center; }
.area-layout p:not(.eyebrow) { max-width: 560px; margin: 22px 0 22px; color: var(--ink-soft); font-size: 18px; }
.radius-list { margin: 0 0 24px; padding: 0; list-style: none; color: var(--ink-soft); }
.radius-list li { padding: 7px 0; }
.area-visual {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #e2e8e2;
  background-image: linear-gradient(#cbd6ce 1px, transparent 1px), linear-gradient(90deg, #cbd6ce 1px, transparent 1px);
  background-size: 44px 44px;
}
.area-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: start end;
  padding: 16px;
  border: 1px solid rgba(183,70,47,.55);
  border-radius: 50%;
  color: #875040;
  font-size: 12px;
  transform: translate(-50%, -50%);
}
.area-ring-outer { width: 350px; height: 350px; background: rgba(183,70,47,.05); }
.area-ring-middle { width: 270px; height: 270px; background: rgba(183,70,47,.06); }
.area-ring-inner { width: 180px; height: 180px; background: rgba(183,70,47,.08); }
.area-pin {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  padding: 12px 14px;
  border: 1px solid #9f3925;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(40,50,43,.16);
  transform: translate(-50%, -50%);
}
.area-pin span { color: var(--ink-soft); font-size: 12px; }
.area-label { position: absolute; padding: 4px 7px; background: rgba(255,255,255,.75); color: #536159; font-size: 12px; }
.area-label-north { top: 17%; left: 52%; }
.area-label-west { top: 48%; left: 13%; }
.area-label-east { top: 39%; right: 13%; }
.area-label-south { right: 17%; bottom: 18%; }
.area-disclaimer {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 8px;
  background: rgba(255,255,255,.86);
  color: #536159;
  font-size: 11px;
  font-weight: 680;
}

.reasons-section { background: var(--surface); }
.reasons-layout { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(440px, 1.22fr); gap: 80px; align-items: start; }
.reason-list { border-top: 1px solid var(--ink); }
.reason-list article { padding: 25px 0; border-bottom: 1px solid var(--line); }
.reason-list h3 { margin-bottom: 8px; }
.reason-list p { margin: 0; color: var(--ink-soft); }

.final-cta { padding-block: 78px; background: var(--accent-dark); color: var(--white); }
.final-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: end; }
.final-cta h2 { max-width: 780px; }
.final-cta p:last-child { margin: 20px 0 0; color: #f2d2c9; font-size: 18px; }
.final-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.site-footer { padding: 62px 0 24px; background: #181a18; color: #d8dbd6; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr .75fr; gap: 46px; }
.footer-brand { color: var(--white); }
.footer-brand .brand-copy small { color: #9da39c; }
.footer-grid p { max-width: 460px; margin: 20px 0 0; color: #a4aaa2; font-size: 14px; }
.footer-grid h2 { margin-bottom: 16px; color: var(--white); font-size: 13px; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-grid a { color: #d8dbd6; text-decoration: none; }
.footer-grid a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid #363a36; color: #838a82; font-size: 12px; }
.mobile-action-bar { display: none; }
.toast {
  position: fixed;
  z-index: 220;
  right: 20px;
  bottom: 20px;
  max-width: min(390px, calc(100vw - 40px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.subhero { padding-block: 104px 88px; }
.subhero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, .42fr); gap: 70px; align-items: end; }
.subhero h1 { color: var(--white); }
.subhero p:not(.eyebrow) { max-width: 780px; margin: 26px 0 30px; color: #d7e2de; font-size: 20px; }
.subhero-panel { padding: 24px; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.subhero-panel strong, .subhero-panel span { display: block; }
.subhero-panel span { margin-top: 10px; color: #d7e2de; }
.problem-grid, .usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.problem-grid article, .usecase-grid article {
  min-height: 116px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 700;
}
.usecase-section, .pain-section { background: var(--surface); }
.benefits-section { background: var(--bg); border-top: 1px solid var(--line); }
.benefits-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr); gap: 70px; align-items: start; }
.benefits-layout p { margin: 22px 0 0; color: var(--ink-soft); }
.check-list { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 32px; }
.check-list li { break-inside: avoid; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 680; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--accent-dark); }

.request-page { background: var(--bg); }
.request-intro { padding-block: 62px 34px; }
.request-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr); gap: 60px; align-items: end; }
.request-intro h1 { font-size: 48px; }
.request-intro p:not(.eyebrow) { max-width: 690px; margin: 20px 0 0; color: var(--ink-soft); font-size: 19px; }
.prototype-note, .prototype-warning {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f4ee;
  color: var(--ink-soft);
}
.prototype-note strong, .prototype-warning strong { display: block; color: var(--ink); }
.request-workspace { padding-block: 28px 90px; }
.request-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(30,35,30,.08);
}
.request-sidebar { padding: 30px; border-right: 1px solid var(--line); background: #eee9df; }
.request-sidebar span { display: block; color: var(--ink-soft); font-size: 13px; }
.request-sidebar strong { display: block; margin: 5px 0 22px; font-size: 23px; }
.progress-track { height: 5px; overflow: hidden; background: #d8d3ca; }
.progress-track span { display: block; width: 12.5%; height: 100%; background: var(--accent); transition: width 180ms ease; }
.request-form-page { min-width: 0; display: flex; flex-direction: column; }
.form-step, .form-success { max-width: 820px; width: 100%; padding: 48px min(7vw, 64px); }
.form-heading { max-width: 700px; margin-bottom: 30px; }
.form-heading h2 { font-size: 36px; }
.form-heading p { margin: 14px 0 0; color: var(--ink-soft); }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; border: 0; }
.choice-grid + .field-error { margin-top: 10px; }
.choice-grid legend { grid-column: 1 / -1; margin-bottom: 4px; font-weight: 740; }
.service-choices { margin-top: 30px; }
.service-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.choice-card span {
  min-height: 112px;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 150ms ease, background-color 150ms ease;
}
.choice-card input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 3px; }
.choice-card input:checked + span { border-color: var(--accent); background: #f8ece7; }
.choice-card strong { font-size: 17px; }
.choice-card small { margin-top: 6px; color: var(--ink-soft); }
.field-grid { display: grid; gap: 16px; margin-bottom: 16px; }
.field-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { display: grid; gap: 7px; margin-bottom: 16px; font-weight: 700; }
.field small { color: var(--ink-soft); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field [aria-invalid="true"] { border-color: #a52f25; }
.field em, .field-error { color: #a52f25; font-size: 13px; font-style: normal; font-weight: 650; }
.inline-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 20px;
  padding: 0;
  border: 0;
}
.inline-choices legend { width: 100%; margin-bottom: 4px; font-weight: 740; }
.inline-choices label, .check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfaf6;
  cursor: pointer;
}
.check-field { margin: 16px 0; }
.is-muted { opacity: .68; }
.content-status-note {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: #f7f4ee;
  color: var(--ink-soft);
  font-size: 14px;
}
.multi-request { margin-top: 24px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #f7f4ee; }
.multi-request-head { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.multi-request-head > div { display: grid; gap: 4px; }
.multi-request-head small { color: var(--ink-soft); font-weight: 500; }
.request-mini-card { margin-top: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.request-mini-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.request-mini-card-head h3 { font-size: 20px; }
.request-form-page > .photo-block { display: none; }
.photo-block { margin-top: 28px; }
.photo-block h3 { margin-bottom: 16px; font-size: 21px; }
.photo-block h3 small { color: var(--ink-soft); font-size: 13px; font-weight: 560; }
.upload-zone {
  min-height: 190px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  border: 2px dashed #b9b3a8;
  border-radius: var(--radius);
  background: #fbfaf6;
  text-align: center;
  cursor: pointer;
}
.upload-zone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-zone span { color: var(--ink-soft); font-size: 14px; }
.photo-preview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.photo-item { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--surface-muted); }
.photo-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-item button { width: 100%; padding: 8px; border: 0; background: var(--ink); color: var(--white); cursor: pointer; font-size: 12px; }
.privacy-hint { margin-top: 18px; color: var(--ink-soft); }
.review-panel { display: block; margin: 0; }
.review-panel div { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 14px 0; }
.review-group + .review-group { margin-top: 30px; }
.review-group h3 { padding-bottom: 12px; border-bottom: 1px solid var(--ink); font-size: 21px; }
.review-group dl { margin: 0; }
.form-error-summary { margin: 24px 48px 0; padding: 13px; border: 1px solid #a52f25; background: #fff4f1; color: #7b271f; font-weight: 700; }
.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  background: #fbfaf6;
}
.form-navigation span { color: var(--ink-soft); font-size: 14px; }
.pilot-request-card .request-sidebar p { margin: 20px 0 0; color: var(--ink-soft); font-size: 14px; }
.pilot-form .prototype-warning { margin-top: 22px; }

.legal-page { background: var(--bg); }
.legal-shell { width: min(calc(100% - 40px), 760px); margin: 60px auto; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.legal-shell .brand { margin-bottom: 36px; }
.legal-shell h1 { font-size: 44px; }
.legal-notice { margin: 26px 0; padding: 22px; border: 1px solid var(--line); background: #f7f4ee; }
.legal-notice h2 { font-size: 24px; }
.legal-notice p { margin: 12px 0 0; color: var(--ink-soft); }

@media (max-width: 1100px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .primary-nav { gap: 15px; }
  .hero-copy { width: min(64%, 680px); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; --section-space: 68px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .brand-copy small { display: none; }
  .menu-button { display: inline-grid; }
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 13px 4px; }
  .primary-nav .button { margin-top: 8px; }
  .hero, .hero-inner { min-height: auto; }
  .hero { display: flex; flex-direction: column; background: var(--bg); }
  .hero-inner { order: 1; }
  .hero-image { position: relative; inset: auto; order: 2; width: 100%; height: 280px; }
  .hero-wash { display: none; }
  .hero-inner { padding-block: 38px 46px; }
  .hero-copy { width: 100%; }
  .hero-lead { font-size: 18px; }
  .path-grid, .trust-grid, .property-preview-grid, .services-layout, .heading-split, .area-layout, .reasons-layout, .subhero-grid, .benefits-layout, .request-intro-grid, .request-card {
    grid-template-columns: 1fr;
  }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .service-feature-image { position: static; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list li:nth-child(2) { border-right: 0; padding-right: 0; }
  .process-list li:nth-child(3) { padding-left: 0; }
  .doc-details { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; align-items: start; }
  .problem-grid, .usecase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .check-list { columns: 1; }
  .request-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
  .request-card { min-height: 0; }
  .field-grid-two, .field-grid-three, .choice-grid, .service-choices { grid-template-columns: 1fr; }
  .form-step, .form-success { padding: 34px 22px; }
  .review-panel div { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  body.has-mobile-action-bar { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 21px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { gap: 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-image { height: 230px; }
  .hero-subhead { margin-top: 16px; font-size: 22px; }
  .hero-lead { margin-top: 14px; }
  .hero-actions, .final-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-actions .button, .final-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .path-card { padding: 22px; }
  .property-preview-grid { gap: 34px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:not(:first-child), .process-list li:nth-child(3) { min-height: auto; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li > span { margin-bottom: 18px; }
  .process-list h3 { min-height: 0; }
  .project-images, .problem-grid, .usecase-grid, .photo-preview { grid-template-columns: 1fr; }
  .area-visual { min-height: 330px; }
  .area-ring-outer { width: 285px; height: 285px; }
  .area-ring-middle { width: 225px; height: 225px; }
  .area-ring-inner { width: 150px; height: 150px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: grid; }
  .subhero { padding-block: 70px 58px; }
  .request-intro h1 { font-size: 34px; }
  .request-sidebar { padding: 22px; }
  .form-heading h2 { font-size: 28px; }
  .choice-card span { min-height: 94px; }
  .inline-choices { display: grid; }
  .multi-request-head, .form-navigation { align-items: stretch; flex-direction: column; }
  .form-navigation .button { width: 100%; }
  .form-navigation span { order: -1; }
  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #111;
    padding-bottom: env(safe-area-inset-bottom);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .mobile-action-bar.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-action-bar a, .mobile-action-bar button {
    min-height: 56px;
    display: grid;
    place-items: center;
    border: 0;
    background: var(--ink);
    color: var(--white);
    font-weight: 740;
    text-decoration: none;
  }
  .mobile-action-bar a:first-child { background: var(--accent); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
