:root {
  --forest: #0f3228;
  --forest-2: #17483a;
  --leaf: #7da87f;
  --sand: #e9d0a8;
  --sand-light: #f6f0e6;
  --cream: #fffdf8;
  --charcoal: #202622;
  --muted: #667069;
  --line: #dfe3dc;
  --white: #fff;
  --shadow: 0 24px 70px rgba(18, 41, 33, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { margin-inline: auto; max-width: 1380px; padding-inline: clamp(20px, 5vw, 72px); }
.eyebrow {
  align-items: center;
  color: var(--forest-2);
  display: flex;
  font-size: 11px;
  font-weight: 850;
  gap: 11px;
  letter-spacing: .16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.eyebrow::before { background: var(--sand); content: ""; height: 2px; width: 34px; }
.eyebrow.light { color: var(--sand); }
.title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}
.copy { color: var(--muted); font-size: 15px; line-height: 1.8; }
.btn {
  align-items: center;
  background: var(--forest);
  border: 1px solid var(--forest);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  gap: 14px;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  transition: .18s ease;
}
.btn::after { content: "→"; font-size: 16px; }
.btn:hover { background: var(--forest-2); transform: translateY(-2px); }
.btn.sand { background: var(--sand); border-color: var(--sand); color: var(--forest); }
.btn.ghost { background: transparent; border-color: rgba(255,255,255,.42); }
.btn.light { background: white; border-color: white; color: var(--forest); }
.text-link { border-bottom: 1px solid; font-size: 11px; font-weight: 850; padding-bottom: 4px; }
.text-link:hover { color: var(--forest-2); }

.topline {
  align-items: center;
  background: var(--forest);
  color: rgba(255,255,255,.72);
  display: flex;
  font-size: 9px;
  font-weight: 750;
  gap: 30px;
  justify-content: center;
  letter-spacing: .08em;
  min-height: 32px;
  text-transform: uppercase;
}
.topline span::before { color: var(--sand); content: "•"; margin-right: 8px; }
.header {
  align-items: center;
  background: rgba(255,253,248,.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr auto;
  min-height: 82px;
  padding-inline: clamp(20px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 80;
}
.brand { align-items: center; display: flex; gap: 12px; white-space: nowrap; }
.brand-mark {
  align-items: center;
  background: var(--forest);
  color: var(--sand);
  display: flex;
  font-family: Georgia, serif;
  font-size: 23px;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-size: 13px; letter-spacing: .06em; }
.brand-copy small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .15em; margin-top: 5px; }
.nav { align-items: center; display: flex; gap: clamp(18px, 2.4vw, 34px); justify-content: center; }
.nav > a, .nav-group > button { background: none; border: 0; cursor: pointer; font-size: 11px; font-weight: 800; padding: 12px 0; }
.nav a:hover, .nav-group > button:hover { color: var(--forest-2); }
.nav-group { position: relative; }
.nav-menu {
  background: white;
  box-shadow: var(--shadow);
  display: none;
  left: -20px;
  min-width: 250px;
  padding: 10px;
  position: absolute;
  top: 39px;
}
.nav-group:hover .nav-menu, .nav-group:focus-within .nav-menu { display: grid; }
.nav-menu a { border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 750; padding: 12px; }
.nav-menu a:last-child { border-bottom: 0; }
.head-actions { align-items: center; display: flex; gap: 18px; justify-content: flex-end; }
.phone { font-size: 11px; font-weight: 850; }
.menu-toggle { background: none; border: 0; display: none; padding: 8px; }
.menu-toggle i { background: var(--charcoal); display: block; height: 2px; margin: 5px; width: 22px; }

.hero {
  background: var(--forest);
  color: white;
  min-height: 750px;
  overflow: hidden;
  position: relative;
}
.hero-bg { inset: 0; position: absolute; }
.hero-bg img { height: 100%; object-fit: cover; object-position: 53% center; width: 100%; }
.hero-bg::after {
  background: linear-gradient(90deg, rgba(7,32,24,.95) 0%, rgba(7,32,24,.86) 42%, rgba(7,32,24,.2) 77%, rgba(7,32,24,.12));
  content: "";
  inset: 0;
  position: absolute;
}
.hero-grid {
  align-items: center;
  display: grid;
  gap: 7vw;
  grid-template-columns: 1fr 400px;
  min-height: 750px;
  padding-block: 70px;
  position: relative;
}
.hero-copy { max-width: 730px; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 102px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .9;
  margin: 0;
}
.hero h1 em { color: var(--sand); font-weight: 400; }
.hero-copy > p:not(.eyebrow) { color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.75; margin: 28px 0; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 25px; margin-top: 35px; }
.hero-trust span { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; }
.hero-trust span::before { color: var(--sand); content: "✓"; margin-right: 7px; }
.quick-check { background: white; box-shadow: var(--shadow); color: var(--charcoal); padding: 28px; }
.quick-check-label { color: var(--forest-2); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.quick-check h2 { font-family: Georgia,serif; font-size: 30px; font-weight: 400; letter-spacing: -.04em; line-height: 1.05; margin: 9px 0; }
.quick-check > p { color: var(--muted); font-size: 10px; line-height: 1.6; margin: 0 0 19px; }
.quick-list { display: grid; gap: 7px; }
.quick-choice {
  align-items: center;
  background: var(--sand-light);
  border: 1px solid transparent;
  cursor: pointer;
  display: grid;
  font-size: 10px;
  font-weight: 800;
  gap: 13px;
  grid-template-columns: 45px 1fr auto;
  padding: 7px;
  text-align: left;
}
.quick-choice:hover { border-color: var(--leaf); }
.quick-choice img { height: 40px; object-fit: cover; width: 45px; }
.quick-choice i { color: var(--forest-2); font-style: normal; }
.quick-note { color: var(--muted); display: block; font-size: 8px; margin-top: 12px; text-align: center; }

.proof {
  background: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof article { border-right: 1px solid var(--line); min-height: 125px; padding: 29px clamp(18px,3vw,42px); }
.proof article:first-child { border-left: 1px solid var(--line); }
.proof b { color: var(--forest-2); display: block; font-family: Georgia,serif; font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.proof strong { display: block; font-size: 11px; margin-bottom: 5px; }
.proof p { color: var(--muted); font-size: 9px; line-height: 1.5; margin: 0; }

.section { padding-block: 105px; }
.section-head { align-items: end; display: grid; gap: 8vw; grid-template-columns: 1.15fr .85fr; margin-bottom: 45px; }
.section-head .copy { margin: 0; }
.choice-grid { display: grid; gap: 14px; grid-template-columns: repeat(3,1fr); }
.choice-card { background: white; border: 1px solid var(--line); min-height: 460px; overflow: hidden; transition: .18s ease; }
.choice-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.choice-card figure { height: 270px; margin: 0; overflow: hidden; }
.choice-card img { height: 100%; object-fit: cover; transition: .4s ease; width: 100%; }
.choice-card:hover img { transform: scale(1.03); }
.choice-card div { padding: 24px; }
.choice-card small { color: var(--forest-2); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.choice-card h3 { font-family: Georgia,serif; font-size: 27px; font-weight: 400; letter-spacing: -.04em; margin: 11px 0 8px; }
.choice-card p { color: var(--muted); font-size: 11px; line-height: 1.7; margin: 0; }

.compare { background: var(--forest); color: white; display: grid; grid-template-columns: .92fr 1.08fr; }
.compare-copy { align-self: center; padding: 90px clamp(30px,7vw,110px); }
.compare-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.8; }
.compare-table { background: white; color: var(--charcoal); display: grid; grid-template-columns: repeat(3,1fr); }
.compare-col { border-left: 1px solid var(--line); padding: 44px 25px; }
.compare-col:first-child { border-left: 0; }
.compare-col b { color: var(--forest-2); font-family: Georgia,serif; font-size: 16px; font-weight: 400; }
.compare-col h3 { font-size: 17px; margin: 20px 0; }
.compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-col li { border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.55; padding: 13px 0; }
.compare-col li::before { color: var(--leaf); content: "✓"; margin-right: 7px; }

.project-grid { display: grid; gap: 9px; grid-auto-rows: 240px; grid-template-columns: repeat(4,1fr); }
.project-grid figure { margin: 0; overflow: hidden; position: relative; }
.project-grid .wide { grid-column: span 2; }
.project-grid .tall { grid-row: span 2; }
.project-grid img { height: 100%; object-fit: cover; transition: .4s ease; width: 100%; }
.project-grid figure:hover img { transform: scale(1.03); }
.project-grid figcaption { background: rgba(15,50,40,.9); bottom: 0; color: white; font-size: 9px; font-weight: 850; left: 0; padding: 11px 14px; position: absolute; text-transform: uppercase; }

.process { background: var(--sand-light); display: grid; gap: 8vw; grid-template-columns: .8fr 1.2fr; padding: 100px clamp(20px,8vw,120px); }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { border-top: 1px solid #d9d4c9; display: grid; gap: 20px; grid-template-columns: 38px 1fr; padding: 22px 0; }
.process-list li:last-child { border-bottom: 1px solid #d9d4c9; }
.process-list > li > b { color: var(--forest-2); font-family: Georgia,serif; font-size: 17px; font-weight: 400; }
.process-list h3 { font-size: 16px; margin: 0 0 5px; }
.process-list p { color: var(--muted); font-size: 10px; line-height: 1.7; margin: 0; }

.cta {
  align-items: center;
  background: var(--forest-2);
  color: white;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  min-height: 310px;
  overflow: hidden;
  padding: 70px clamp(20px,8vw,120px);
  position: relative;
}
.cta::after { border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; height: 420px; position: absolute; right: 8%; top: -250px; width: 420px; }
.cta h2 { font-family: Georgia,serif; font-size: clamp(40px,5vw,68px); font-weight: 400; letter-spacing: -.055em; line-height: 1; margin: 0; max-width: 850px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 2; }
.cta-actions a:last-child { color: rgba(255,255,255,.72); font-size: 10px; text-align: center; }

.page-hero { background: var(--forest); color: white; min-height: 590px; position: relative; }
.page-hero-bg { inset: 0; position: absolute; }
.page-hero-bg img { height: 100%; object-fit: cover; width: 100%; }
.page-hero-bg::after { background: linear-gradient(90deg,rgba(8,36,27,.97),rgba(8,36,27,.78) 48%,rgba(8,36,27,.18)); content: ""; inset: 0; position: absolute; }
.page-hero-inner { align-items: center; display: grid; grid-template-columns: 1fr 330px; min-height: 590px; position: relative; }
.breadcrumbs { color: rgba(255,255,255,.57); font-size: 9px; font-weight: 800; margin-bottom: 25px; text-transform: uppercase; }
.page-hero h1 { font-family: Georgia,serif; font-size: clamp(52px,6.7vw,94px); font-weight: 400; letter-spacing: -.06em; line-height: .92; margin: 0; max-width: 850px; }
.page-hero-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; max-width: 650px; }
.page-hero-card { background: var(--sand); color: var(--forest); padding: 27px; }
.page-hero-card strong { display: block; font-family: Georgia,serif; font-size: 25px; font-weight: 400; line-height: 1.08; }
.page-hero-card p { font-size: 10px; line-height: 1.65; margin: 12px 0 20px; }
.page-hero-card .btn { width: 100%; }
.content-grid { display: grid; gap: 9vw; grid-template-columns: .8fr 1.2fr; }
.fact-list { list-style: none; margin: 0; padding: 0; }
.fact-list li { border-top: 1px solid var(--line); display: grid; gap: 14px; grid-template-columns: 31px 1fr; padding: 17px 0; }
.fact-list li:last-child { border-bottom: 1px solid var(--line); }
.fact-list b { color: var(--forest-2); font-family: Georgia,serif; font-weight: 400; }
.fact-list strong { display: block; font-size: 12px; }
.fact-list span span { color: var(--muted); display: block; font-size: 10px; line-height: 1.6; margin-top: 4px; }
.rich h2 { font-family: Georgia,serif; font-size: clamp(38px,4.4vw,62px); font-weight: 400; letter-spacing: -.055em; line-height: 1.02; margin: 0 0 22px; }
.rich h3 { font-size: 20px; margin: 32px 0 10px; }
.rich p { color: var(--muted); font-size: 13px; line-height: 1.85; }
.rich .btn { margin-top: 15px; }
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-image { min-height: 590px; }
.split-image img { height: 100%; object-fit: cover; width: 100%; }
.split-copy { align-self: center; padding: 80px clamp(30px,8vw,120px); }
.split-copy p { color: var(--muted); font-size: 13px; line-height: 1.8; }
.faq { display: grid; gap: 8vw; grid-template-columns: .75fr 1.25fr; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { align-items: center; cursor: pointer; display: flex; font-size: 12px; font-weight: 850; justify-content: space-between; list-style: none; padding: 20px 0; }
summary::-webkit-details-marker { display: none; }
summary i { color: var(--forest-2); font-family: Georgia,serif; font-size: 20px; font-style: normal; }
details[open] summary i { transform: rotate(45deg); }
details p { color: var(--muted); font-size: 11px; line-height: 1.75; margin: -2px 40px 21px 0; }
.related { background: var(--sand-light); padding-block: 85px; }
.related-grid { display: grid; gap: 10px; grid-template-columns: repeat(4,1fr); margin-top: 35px; }
.related-grid a { background: white; border: 1px solid var(--line); padding: 22px; }
.related-grid a:hover { border-color: var(--leaf); }
.related-grid small { color: var(--forest-2); font-weight: 900; }
.related-grid h3 { font-family: Georgia,serif; font-size: 21px; font-weight: 400; margin: 13px 0 7px; }
.related-grid p { color: var(--muted); font-size: 9px; line-height: 1.55; }

.check-page { background: var(--sand-light); min-height: 800px; padding-block: 62px 100px; }
.check-intro { margin: 0 auto 35px; max-width: 790px; text-align: center; }
.check-intro .eyebrow { justify-content: center; }
.check-intro h1 { font-family: Georgia,serif; font-size: clamp(48px,6vw,82px); font-weight: 400; letter-spacing: -.06em; line-height: .95; margin: 0; }
.check-intro > p:not(.eyebrow) { color: var(--muted); font-size: 13px; line-height: 1.7; }
.check-shell { background: white; box-shadow: var(--shadow); margin-inline: auto; max-width: 1060px; min-height: 590px; }
.check-top { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 18px; grid-template-columns: auto 1fr auto; padding: 19px 28px; }
.check-top strong { color: var(--forest-2); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.progress-track { background: var(--line); height: 4px; }
.progress-track span { background: var(--forest-2); display: block; height: 100%; transition: width .22s ease; width: 12.5%; }
.check-top small { color: var(--muted); font-size: 9px; }
.step { display: none; padding: 46px clamp(22px,7vw,75px); }
.step.active { display: block; }
.step-head { margin-bottom: 28px; max-width: 720px; }
.step-head small { color: var(--forest-2); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.step-head h2 { font-family: Georgia,serif; font-size: clamp(34px,4vw,50px); font-weight: 400; letter-spacing: -.045em; line-height: 1; margin: 9px 0; }
.step-head p { color: var(--muted); font-size: 11px; line-height: 1.65; margin: 0; }
.visual-options { display: grid; gap: 10px; grid-template-columns: repeat(4,1fr); }
.visual-option, .simple-option, .extra-option { cursor: pointer; display: block; position: relative; }
.visual-option input, .simple-option input, .extra-option input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.visual-option span { background: var(--sand-light); border: 2px solid transparent; display: block; height: 100%; padding: 7px; }
.visual-option img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.visual-option b { display: block; font-size: 10px; line-height: 1.4; padding: 12px 6px 8px; }
.visual-option input:checked + span, .simple-option input:checked + span, .extra-option input:checked + span { border-color: var(--forest-2); box-shadow: inset 0 -3px var(--leaf); }
.visual-option input:focus-visible + span, .simple-option input:focus-visible + span, .extra-option input:focus-visible + span { outline: 3px solid rgba(125,168,127,.35); }
.option-groups { display: grid; gap: 25px; grid-template-columns: 1fr 1fr; }
.option-group > strong { display: block; font-size: 10px; margin-bottom: 10px; }
.simple-options, .extra-options { display: grid; gap: 8px; grid-template-columns: repeat(2,1fr); }
.simple-option span, .extra-option span { align-items: center; background: var(--sand-light); border: 2px solid transparent; display: flex; font-size: 10px; font-weight: 800; min-height: 56px; padding: 13px; }
.extra-options { grid-template-columns: repeat(3,1fr); }
.field-grid { display: grid; gap: 13px; grid-template-columns: 1fr 1fr; }
.field { display: block; font-size: 9px; font-weight: 850; }
.field span { display: block; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  background: var(--sand-light);
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--charcoal);
  min-height: 52px;
  outline: 0;
  padding: 12px;
  width: 100%;
}
.field textarea { min-height: 95px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: white; border-color: var(--leaf); }
.summary-box { background: var(--forest); color: white; display: grid; gap: 30px; grid-template-columns: 1fr .72fr; padding: 30px; }
.summary-box h3 { font-family: Georgia,serif; font-size: 31px; font-weight: 400; margin: 0 0 17px; }
.summary-list { list-style: none; margin: 0; padding: 0; }
.summary-list li { border-top: 1px solid rgba(255,255,255,.14); display: flex; font-size: 10px; gap: 20px; justify-content: space-between; padding: 10px 0; }
.summary-list span { color: rgba(255,255,255,.56); }
.summary-list b { max-width: 65%; text-align: right; }
.summary-advice { background: var(--sand); color: var(--forest); padding: 24px; }
.summary-advice small { font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.summary-advice strong { display: block; font-family: Georgia,serif; font-size: 23px; font-weight: 400; line-height: 1.15; margin-top: 12px; }
.check-controls { align-items: center; border-top: 1px solid var(--line); display: flex; justify-content: space-between; padding: 19px 28px; }
.back { background: none; border: 0; cursor: pointer; font-size: 10px; font-weight: 850; padding: 12px; }
.back:disabled { opacity: .3; }
.step-error { color: #a63d23; display: none; font-size: 10px; font-weight: 800; margin: 16px 0 0; }
.step-error.show { display: block; }
.contact-hint { background: var(--sand-light); color: var(--muted); font-size: 9px; line-height: 1.6; margin: 15px 0; padding: 12px; }
.consent { align-items: start; display: grid; font-size: 9px; gap: 8px; grid-template-columns: 15px 1fr; line-height: 1.5; margin-top: 14px; }
.consent input { height: 15px; margin: 0; width: 15px; }
.success { display: none; padding: 70px; text-align: center; }
.success.show { display: block; }
.success h2 { font-family: Georgia,serif; font-size: 50px; font-weight: 400; margin: 0 0 15px; }
.success p { color: var(--muted); font-size: 12px; line-height: 1.7; margin-inline: auto; max-width: 560px; }
.success .btn { margin-top: 20px; }

.footer { background: #0a251d; color: white; padding: 65px clamp(20px,5vw,72px) 35px; }
.footer-grid { display: grid; gap: 50px; grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.footer .brand-mark { background: var(--sand); color: var(--forest); }
.footer .brand-copy small { color: rgba(255,255,255,.45); }
.footer-intro { color: rgba(255,255,255,.53); font-size: 10px; line-height: 1.75; margin-top: 20px; max-width: 340px; }
.footer h3 { color: var(--sand); font-size: 9px; letter-spacing: .15em; margin: 0 0 15px; text-transform: uppercase; }
.footer p, .footer a { color: rgba(255,255,255,.67); font-size: 10px; line-height: 1.85; margin: 0; }
.footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); display: flex; font-size: 8px; justify-content: space-between; margin-top: 44px; padding-top: 20px; }
.mobile-cta { display: none; }

@media (max-width: 1160px) {
  .header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .nav {
    align-items: stretch;
    background: white;
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 82px 0 auto;
    min-height: calc(100vh - 82px);
    padding: 28px;
    position: absolute;
  }
  .nav.open { display: flex; }
  .nav > a { border-bottom: 1px solid var(--line); font-size: 14px; padding: 14px 0; }
  .nav-group > button { display: none; }
  .nav-menu { box-shadow: none; display: grid; min-width: 0; padding: 0; position: static; }
  .nav-menu a { font-size: 12px; padding-left: 14px; }
  .head-actions .btn { display: none; }
  .hero-grid { gap: 4vw; grid-template-columns: 1fr 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-bg::after { background: linear-gradient(180deg,rgba(7,32,24,.62),rgba(7,32,24,.93) 50%,rgba(7,32,24,.99)); }
  .hero-grid { grid-template-columns: 1fr; padding-block: 75px 48px; }
  .quick-check { max-width: 620px; }
  .proof { grid-template-columns: 1fr 1fr; }
  .section-head, .content-grid, .faq, .process { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 250px; }
  .choice-card figure { height: 100%; }
  .compare, .split { grid-template-columns: 1fr; }
  .compare-table { min-height: 450px; }
  .project-grid { grid-template-columns: repeat(2,1fr); }
  .cta { align-items: start; grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; padding-block: 65px; }
  .page-hero-card { margin-top: 30px; max-width: 400px; }
  .split-image { min-height: 430px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .visual-options { grid-template-columns: repeat(2,1fr); }
  .summary-box { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { padding-bottom: 58px; }
  .topline { display: none; }
  .header { min-height: 68px; padding-inline: 16px; }
  .brand-mark { height: 38px; width: 38px; }
  .brand-copy strong { font-size: 11px; }
  .phone { display: none; }
  .nav { inset: 68px 0 auto; min-height: calc(100vh - 68px); }
  .hero { min-height: 0; }
  .hero-grid { min-height: 0; padding: 65px 18px 35px; }
  .hero h1 { font-size: clamp(53px,16vw,72px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .quick-check { padding: 20px; }
  .proof { grid-template-columns: 1fr; }
  .proof article, .proof article:first-child { border: 0; border-bottom: 1px solid var(--line); }
  .section { padding-block: 75px; }
  .title { font-size: 41px; }
  .choice-card { display: block; }
  .choice-card figure { height: 230px; }
  .compare-copy, .process, .split-copy { padding: 70px 18px; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-col { border-left: 0; border-top: 1px solid var(--line); padding: 30px 20px; }
  .project-grid { gap: 6px; grid-auto-rows: 165px; }
  .project-grid .tall { grid-row: span 1; }
  .cta { min-height: 390px; padding: 65px 18px; }
  .page-hero-inner { padding: 60px 18px; }
  .page-hero h1 { font-size: 51px; }
  .split-image { min-height: 330px; }
  .related-grid { grid-template-columns: 1fr; }
  .check-page { padding: 45px 0 75px; }
  .check-intro { padding-inline: 18px; }
  .check-intro h1 { font-size: 49px; }
  .check-shell { box-shadow: none; }
  .check-top { grid-template-columns: 1fr; gap: 8px; padding: 15px 18px; }
  .check-top small { display: none; }
  .step { padding: 33px 18px; }
  .visual-options, .option-groups, .field-grid { grid-template-columns: 1fr; }
  .extra-options { grid-template-columns: 1fr 1fr; }
  .check-controls { bottom: 58px; padding: 13px 18px; position: sticky; z-index: 30; }
  .success { padding: 60px 18px; }
  .footer { padding: 55px 18px 82px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-cta {
    align-items: center;
    background: var(--sand);
    bottom: 0;
    color: var(--forest);
    display: flex;
    font-size: 10px;
    font-weight: 900;
    justify-content: center;
    left: 0;
    min-height: 58px;
    position: fixed;
    right: 0;
    text-transform: uppercase;
    z-index: 90;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
