:root {
  --blue-950: #081a3f;
  --blue-900: #10265b;
  --blue-800: #173573;
  --blue-700: #2450a5;
  --blue-100: #e8eefb;
  --blue-50: #f4f7fd;
  --amber-500: #f2a529;
  --amber-300: #ffc96d;
  --ink-950: #111827;
  --ink-700: #374151;
  --ink-500: #6b7280;
  --line: #dce2ec;
  --paper: #ffffff;
  --cloud: #f5f7fb;
  --error: #b42318;
  --success: #16745a;
  --shadow-lg: 0 32px 70px rgba(8, 26, 63, .18);
  --shadow-md: 0 18px 42px rgba(8, 26, 63, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-950);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; transform: translateY(-150%); color: #fff; background: var(--blue-950); border-radius: 8px; }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 38, 91, .10);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--blue-950); text-decoration: none; }
.brand-mark { display: grid; width: 43px; height: 43px; flex: 0 0 43px; place-items: center; border-radius: 12px; color: #fff; background: var(--blue-900); box-shadow: 0 7px 16px rgba(16, 38, 91, .18); }
.brand-mark svg { width: 31px; height: 31px; }
.brand-mark path:first-child { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linejoin: round; }
.brand-mark path:last-child { fill: none; stroke: var(--amber-500); stroke-width: 3.1; stroke-linecap: round; stroke-linejoin: round; }
.brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -.045em; }
.brand-name > span { color: var(--blue-700); }
.brand-name small { margin-left: 2px; color: var(--amber-500); font-size: 12px; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { color: var(--ink-700); font-size: 14px; font-weight: 600; text-decoration: none; }
.site-nav > a:hover { color: var(--blue-700); }
.site-nav .nav-cta { display: inline-flex; align-items: center; gap: 13px; padding: 11px 11px 11px 17px; color: #fff; background: var(--blue-900); border-radius: 10px; }
.site-nav .nav-cta:hover { color: #fff; background: var(--blue-800); }
.nav-cta span { display: grid; width: 27px; height: 27px; place-items: center; color: var(--blue-950); background: var(--amber-500); border-radius: 7px; }
.nav-toggle { display: none; width: 45px; height: 45px; padding: 10px; border: 0; border-radius: 9px; background: var(--blue-50); }
.nav-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 4px auto; background: var(--blue-950); border-radius: 2px; }

.hero { position: relative; overflow: hidden; padding: 34px 0 38px; background: var(--blue-950); }
.hero::before { position: absolute; inset: 0; content: ""; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .72fr); align-items: stretch; gap: 24px; }
.hero-editorial { display: grid; min-height: 670px; overflow: hidden; grid-template-rows: auto 1fr; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: var(--blue-900); box-shadow: var(--shadow-lg); }
.hero-copy { position: relative; z-index: 2; padding: 44px 46px 29px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.kicker i { width: 26px; height: 3px; background: var(--amber-500); border-radius: 3px; }
.kicker-on-dark { color: rgba(255,255,255,.76); }
.hero h1, .section-heading h2, .criteria-copy h2, .faq-grid h2, .final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.hero h1 { max-width: 650px; margin-top: 17px; color: #fff; font-size: clamp(48px, 5vw, 72px); }
.hero h1 em { color: var(--amber-300); font-style: normal; }
.hero-copy > p { max-width: 610px; margin: 20px 0 25px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.65; }
.hero-copy > p strong { color: #fff; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: 12px; }
.hero-proof b { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgba(255,255,255,.23); color: var(--amber-300); border-radius: 7px; font-size: 9px; }
.hero-visual { position: relative; min-height: 300px; margin: 0; overflow: hidden; }
.hero-visual::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg, var(--blue-900), transparent 30%); }
.hero-visual img { width: 100%; height: 100%; min-height: 325px; object-fit: cover; object-position: center 42%; }
.hero-visual figcaption { position: absolute; z-index: 3; right: 24px; bottom: 22px; display: grid; min-width: 220px; grid-template-columns: 1fr auto; align-items: center; padding: 13px 14px; color: var(--blue-950); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.66); border-radius: 13px; box-shadow: var(--shadow-md); backdrop-filter: blur(10px); }
.hero-visual figcaption span, .hero-visual figcaption strong { display: block; grid-column: 1; line-height: 1.3; }
.hero-visual figcaption span { color: var(--ink-500); font-size: 11px; }
.hero-visual figcaption strong { font-family: var(--font-display); font-size: 15px; }
.hero-visual figcaption i { display: grid; width: 34px; height: 34px; grid-column: 2; grid-row: 1 / 3; place-items: center; color: var(--blue-950); background: var(--amber-500); border-radius: 9px; font-style: normal; font-weight: 800; }

.form-panel { min-height: 670px; padding: 31px 31px 25px; align-self: stretch; color: var(--ink-950); background: #fff; border: 1px solid rgba(255,255,255,.60); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-heading { text-align: center; }
.form-heading > span { color: var(--blue-700); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.form-heading h2 { margin: 7px 0 2px; font-family: var(--font-display); font-size: 31px; letter-spacing: -.04em; line-height: 1.15; }
.form-heading p { margin: 0 0 22px; color: var(--ink-500); font-size: 13px; }
.form-progress { margin: 0 3px 26px; }
.progress-track { height: 3px; overflow: hidden; background: var(--blue-100); border-radius: 3px; }
.progress-track > span { display: block; width: 33.333%; height: 100%; background: var(--amber-500); border-radius: inherit; transition: width .25s ease; }
.form-progress ol { display: flex; justify-content: space-between; margin: -11px 0 0; padding: 0; list-style: none; }
.form-progress li { display: flex; width: 33.333%; flex-direction: column; align-items: center; gap: 4px; color: var(--ink-500); font-size: 11px; }
.form-progress li:first-child { align-items: flex-start; }
.form-progress li:last-child { align-items: flex-end; }
.form-progress li > span { display: grid; width: 22px; height: 22px; place-items: center; color: var(--ink-500); background: var(--blue-100); border: 2px solid #fff; border-radius: 7px; box-shadow: 0 0 0 1px #cad5ea; font-size: 10px; font-weight: 800; }
.form-progress li.is-active > span, .form-progress li.is-complete > span { color: var(--blue-950); background: var(--amber-500); box-shadow: 0 0 0 1px var(--amber-500); }
.form-progress li.is-active small { color: var(--blue-900); font-weight: 700; }
.match-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.match-form legend { width: 100%; margin: 0; font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -.035em; line-height: 1.25; text-align: center; }
.step-intro { margin: 4px 0 19px; color: var(--ink-500); font-size: 13px; text-align: center; }
.project-choices { display: grid; gap: 10px; }
.choice-card { position: relative; display: grid; min-height: 102px; grid-template-columns: 56px 1fr 26px; align-items: center; gap: 13px; padding: 14px 15px; cursor: pointer; border: 1px solid var(--line); background: var(--paper); border-radius: 15px; transition: .2s ease; }
.choice-card:hover { transform: translateY(-2px); border-color: #aebfe2; box-shadow: 0 10px 23px rgba(16,38,91,.08); }
.choice-card:has(input:checked) { border-color: var(--blue-700); background: var(--blue-50); box-shadow: inset 0 0 0 1px var(--blue-700); }
.choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice-card > span:nth-of-type(2) { display: flex; flex-direction: column; }
.choice-card strong { font-family: var(--font-display); font-size: 15px; }
.choice-card small { color: var(--ink-500); font-size: 12px; }
.choice-card > b { color: var(--blue-700); font-size: 18px; }
.choice-icon { display: grid; width: 52px; height: 52px; place-items: center; color: var(--blue-700); background: var(--blue-100); border-radius: 13px; }
.choice-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.form-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 11px 20px; cursor: pointer; border: 0; border-radius: 11px; font-size: 14px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.form-button:hover { transform: translateY(-1px); }
.form-button-primary { color: #fff; background: var(--blue-900); box-shadow: 0 9px 22px rgba(16,38,91,.18); }
.form-button-primary:hover { background: var(--blue-800); }
.form-button-primary:disabled { cursor: wait; opacity: .7; }
.form-button-full { width: 100%; margin-top: 15px; }
.form-button-back { padding-inline: 5px 12px; color: var(--ink-500); background: transparent; }
.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.form-actions .form-button-primary { flex: 1; }
.form-field { margin-bottom: 14px; }
.form-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field label { display: block; margin-bottom: 5px; color: var(--ink-700); font-size: 14px; font-weight: 700; }
.form-field label > span { color: var(--error); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 47px;
  padding: 10px 12px;
  color: var(--ink-950);
  background: #fff;
  border: 1px solid #cfd7e5;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}
.form-field textarea { min-height: 80px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(36,80,165,.12); }
.form-field [aria-invalid="true"] { border-color: var(--error); }
.form-optional-details { margin-top: 7px; overflow: hidden; border: 1px solid var(--line); background: var(--cloud); border-radius: 11px; }
.form-optional-details summary { display: flex; min-height: 44px; align-items: center; gap: 8px; padding: 10px 13px; cursor: pointer; color: var(--blue-800); font-size: 13px; font-weight: 700; list-style: none; }
.form-optional-details summary::-webkit-details-marker { display: none; }
.form-optional-details summary span { margin-left: auto; color: var(--ink-500); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.form-optional-details summary::after { content: "+"; color: var(--amber-500); font-size: 20px; line-height: 1; }
.form-optional-details[open] summary::after { content: "−"; }
.form-optional-content { padding: 12px 13px 1px; background: #fff; border-top: 1px solid var(--line); }
.place-autocomplete-host, .place-autocomplete-host > *, gmp-place-autocomplete, #city_place_autocomplete { display: block; width: 100%; min-width: 0 !important; max-width: 100% !important; }
gmp-place-autocomplete, .place-fallback-input { min-height: 47px !important; color: var(--ink-950); background: #fff; border: 1px solid #cfd7e5 !important; border-radius: 10px !important; box-shadow: none; font-size: 14px; }
gmp-place-autocomplete:focus-within, .place-fallback-input:focus { border-color: var(--blue-700) !important; box-shadow: 0 0 0 3px rgba(36,80,165,.12) !important; }
.place-autocomplete-host.has-error gmp-place-autocomplete, .place-autocomplete-host.has-error .place-fallback-input { border-color: var(--error) !important; }
.field-error { margin: 4px 0 0; color: var(--error); font-size: 12px; line-height: 1.35; }
.field-error:empty { display: none; }
.form-error-summary, .local-preview-banner { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; padding: 10px 12px; border-radius: 10px; font-size: 12px; }
.form-error-summary { flex-direction: column; align-items: flex-start; gap: 0; color: var(--error); background: #fff0ed; border-left: 3px solid var(--error); }
.local-preview-banner { color: var(--blue-800); background: var(--blue-50); border: 1px solid #d8e2f5; }
.local-preview-banner > span { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; color: #fff; background: var(--blue-700); border-radius: 8px; }
.local-preview-banner div { display: flex; flex-direction: column; line-height: 1.35; }
.submission-terms { margin: 12px auto 0; color: var(--ink-500); font-size: 11px; line-height: 1.5; text-align: center; }
.submission-terms a { color: var(--blue-700); font-weight: 700; }
.submission-terms span { display: block; }
.honeypot { position: fixed !important; right: 0; bottom: 0; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); opacity: 0; pointer-events: none; }

.proof-strip { border-bottom: 1px solid var(--line); background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 106px; padding: 23px 25px; border-right: 1px solid var(--line); }
.proof-grid > div:first-child { padding-left: 0; }
.proof-grid > div:last-child { padding-right: 0; border-right: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { color: var(--blue-900); font-family: var(--font-display); font-size: 22px; letter-spacing: -.03em; }
.proof-grid span { margin-top: 2px; color: var(--ink-500); font-size: 13px; }

.method-section, .project-section, .faq-section { padding: 110px 0; }
.section-heading { margin-bottom: 52px; }
.section-heading h2, .criteria-copy h2, .faq-grid h2 { font-size: clamp(40px, 4.8vw, 64px); }
.split-heading { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-top: 15px; }
.split-heading > p { margin: 0 0 7px; color: var(--ink-500); font-size: 18px; line-height: 1.75; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.method-grid article { position: relative; padding: 34px 34px 15px 0; border-right: 1px solid var(--line); }
.method-grid article + article { padding-left: 34px; }
.method-grid article:last-child { padding-right: 0; border-right: 0; }
.method-grid article > span { color: var(--amber-500); font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.method-icon { display: grid; width: 58px; height: 58px; margin: 37px 0 24px; place-items: center; color: #fff; background: var(--blue-900); border-radius: 15px; font-family: var(--font-display); font-size: 22px; }
.method-grid h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 22px; letter-spacing: -.03em; }
.method-grid p { margin: 0; color: var(--ink-500); line-height: 1.7; }

.criteria-section { padding: 110px 0; color: #fff; background: var(--blue-900); }
.criteria-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; }
.criteria-copy { position: sticky; top: 118px; align-self: start; }
.criteria-copy h2 { margin: 16px 0 22px; }
.criteria-copy > p { max-width: 540px; color: rgba(255,255,255,.69); font-size: 17px; line-height: 1.75; }
.light-link, .dark-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; font-weight: 800; text-decoration: none; }
.light-link { color: var(--amber-300); }
.light-link span, .dark-link span { transition: transform .2s ease; }
.light-link:hover span, .dark-link:hover span { transform: translateX(4px); }
.criteria-list { border-top: 1px solid rgba(255,255,255,.18); }
.criteria-list article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.criteria-list article > span { color: var(--amber-300); font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.criteria-list h3 { margin: 0 0 5px; font-family: var(--font-display); font-size: 21px; }
.criteria-list p { margin: 0; color: rgba(255,255,255,.66); line-height: 1.65; }

.project-section { background: var(--cloud); }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.centered h2 { margin-top: 14px; }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.project-grid article { position: relative; overflow: hidden; min-height: 390px; padding: 43px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 15px 35px rgba(8,26,63,.07); }
.project-grid article:last-child { color: #fff; background: var(--blue-900); border-color: var(--blue-900); }
.project-grid article::after { position: absolute; right: -50px; bottom: -70px; width: 190px; height: 190px; content: ""; border: 28px solid var(--blue-100); border-radius: 50%; opacity: .8; }
.project-grid article:last-child::after { border-color: rgba(255,255,255,.10); }
.project-label { display: inline-block; margin-bottom: 55px; color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-grid article:last-child .project-label { color: var(--amber-300); }
.project-grid h3 { max-width: 510px; margin: 0 0 14px; font-family: var(--font-display); font-size: 31px; letter-spacing: -.04em; line-height: 1.15; }
.project-grid p { max-width: 520px; margin: 0 0 25px; color: var(--ink-500); line-height: 1.7; }
.project-grid article:last-child p { color: rgba(255,255,255,.68); }
.project-grid a { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-weight: 800; text-decoration: none; }
.project-grid article:last-child a { color: var(--amber-300); }

.faq-grid { display: grid; grid-template-columns: .72fr 1fr; gap: 90px; }
.faq-grid h2 { margin: 16px 0; }
.faq-grid > div:first-child > p { max-width: 430px; color: var(--ink-500); font-size: 17px; line-height: 1.75; }
.dark-link { color: var(--blue-700); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; color: var(--blue-950); font-family: var(--font-display); font-size: 18px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--amber-500); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -7px 38px 24px 0; color: var(--ink-500); line-height: 1.7; }

.final-cta { padding: 42px 0; background: var(--amber-500); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.final-cta-inner > div > span { color: var(--blue-800); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.final-cta h2 { max-width: 760px; margin-top: 4px; color: var(--blue-950); font-size: clamp(30px, 4vw, 50px); }
.final-cta a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 14px; padding: 13px 13px 13px 20px; color: #fff; background: var(--blue-950); border-radius: 12px; font-weight: 800; text-decoration: none; }
.final-cta a span { display: grid; width: 31px; height: 31px; place-items: center; color: var(--blue-950); background: #fff; border-radius: 8px; }

.site-footer { padding-top: 67px; color: rgba(255,255,255,.72); background: var(--blue-950); }
.footer-grid { display: grid; grid-template-columns: 1.55fr .72fr .92fr 1fr; gap: 55px; padding-bottom: 54px; }
.brand-on-dark { color: #fff; }
.brand-on-dark .brand-name > span { color: var(--amber-300); }
.footer-brand > p { max-width: 330px; margin: 22px 0 0; color: rgba(255,255,255,.60); }
.footer-grid h2 { margin: 7px 0 18px; color: #fff; font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 10px 0; font-size: 14px; text-decoration: none; }
.footer-grid > div:not(.footer-brand) > a:hover { color: var(--amber-300); }
.footer-contact > a { color: var(--amber-300); font-weight: 700; overflow-wrap: anywhere; }
.footer-contact p { font-size: 13px; }
.footer-bottom { display: flex; min-height: 73px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.footer-bottom button { padding: 0; color: rgba(255,255,255,.70); background: none; border: 0; cursor: pointer; }
.cookie-consent { position: fixed; z-index: 500; right: 18px; bottom: 18px; left: 18px; display: flex; max-width: 930px; margin-inline: auto; align-items: center; gap: 24px; padding: 18px 20px; color: var(--ink-950); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); }
.cookie-consent > div:first-child { flex: 1; }
.cookie-consent strong { font-family: var(--font-display); }
.cookie-consent p { margin: 2px 0 0; color: var(--ink-500); font-size: 13px; line-height: 1.45; }
.cookie-consent-actions { display: flex; gap: 8px; }
.cookie-button { min-height: 42px; padding: 8px 15px; cursor: pointer; border: 1px solid var(--line); border-radius: 9px; font-weight: 700; }
.cookie-button-primary { color: #fff; background: var(--blue-900); border-color: var(--blue-900); }
.cookie-button-secondary { color: var(--blue-900); background: #fff; }

@media (max-width: 1000px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr 400px; }
  .hero-copy { padding-inline: 34px; }
  .hero h1 { font-size: 51px; }
  .split-heading, .criteria-grid, .faq-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 680px); }
  .site-nav > a:not(.nav-cta) { display: block; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; top: 79px; right: 0; left: 0; display: none; align-items: stretch; padding: 24px; flex-direction: column; gap: 7px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 11px; font-size: 16px; }
  .site-nav .nav-cta { justify-content: space-between; margin-top: 5px; }
  .hero { padding-block: 22px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-editorial { min-height: 590px; }
  .form-panel { min-height: 0; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(3) { padding-left: 0; }
  .split-heading, .criteria-grid, .faq-grid { grid-template-columns: 1fr; }
  .split-heading { gap: 25px; }
  .method-grid { grid-template-columns: 1fr; border-top: 0; }
  .method-grid article, .method-grid article + article { padding: 28px 0; border-top: 1px solid var(--line); border-right: 0; }
  .method-icon { margin: 20px 0 17px; }
  .criteria-copy { position: static; }
  .project-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 22px, 500px); }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 39px; height: 39px; flex-basis: 39px; }
  .brand-name { font-size: 16px; }
  .site-nav { top: 71px; }
  .hero { padding-top: 11px; }
  .hero-editorial { min-height: 0; border-radius: 20px; }
  .hero-copy { padding: 31px 25px 22px; }
  .hero h1 { font-size: clamp(41px, 12vw, 55px); }
  .hero-copy > p { font-size: 16px; }
  .hero-proof { display: grid; }
  .hero-visual { min-height: 275px; }
  .hero-visual img { min-height: 275px; object-position: 59% center; }
  .hero-visual figcaption { right: 12px; bottom: 12px; min-width: 205px; }
  .form-panel { padding: 25px 18px 20px; border-radius: 20px; }
  .form-heading h2 { font-size: 27px; }
  .choice-card { min-height: 92px; grid-template-columns: 50px 1fr 22px; padding: 12px; }
  .choice-icon { width: 47px; height: 47px; }
  .form-field-row { grid-template-columns: 1fr; gap: 0; }
  .proof-grid > div { min-height: 93px; padding: 20px 14px; }
  .proof-grid > div:nth-child(odd) { padding-left: 0; }
  .proof-grid strong { font-size: 18px; }
  .method-section, .project-section, .faq-section, .criteria-section { padding: 80px 0; }
  .section-heading h2, .criteria-copy h2, .faq-grid h2 { font-size: 39px; }
  .method-grid h3 { font-size: 20px; }
  .criteria-grid { gap: 42px; }
  .criteria-list article { grid-template-columns: 42px 1fr; }
  .project-grid article { min-height: 360px; padding: 29px 25px; }
  .project-label { margin-bottom: 42px; }
  .project-grid h3 { font-size: 27px; }
  .final-cta-inner { align-items: stretch; flex-direction: column; }
  .final-cta a { justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .footer-bottom { padding-block: 22px; align-items: flex-start; flex-direction: column; }
  .cookie-consent { align-items: stretch; flex-direction: column; }
  .cookie-consent-actions { justify-content: flex-end; }
}

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

/* Secondary pages */
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.container.narrow { max-width: 850px; }
.section { padding: 105px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.eyebrow i { width: 26px; height: 3px; background: var(--amber-500); border-radius: 3px; }
.eyebrow-light { color: rgba(255,255,255,.74); }
.section-lead { color: var(--ink-500); font-size: 18px; line-height: 1.75; }
.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 12px; padding: 11px 19px; border: 1px solid transparent; border-radius: 11px; font-weight: 800; text-decoration: none; }
.button-dark { color: #fff; background: var(--blue-900); }
.button-cream { color: var(--blue-950); background: #fff; }
.button-coral { color: var(--blue-950); background: var(--amber-500); }
.button-outline { color: var(--blue-900); background: #fff; border-color: var(--line); }
.text-cta { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-weight: 800; text-decoration: none; }

.page-hero, .legal-hero { position: relative; overflow: hidden; padding: 105px 0; color: #fff; background: var(--blue-900); }
.page-hero::before, .legal-hero::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.page-hero .container, .legal-hero .container { position: relative; }
.page-hero h1, .legal-hero h1 { max-width: 790px; margin: 16px 0 20px; font-family: var(--font-display); font-size: clamp(46px, 6vw, 76px); letter-spacing: -.055em; line-height: 1.02; }
.page-hero p, .legal-hero p { max-width: 710px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; }
.page-hero .button { margin-top: 15px; }

.detail-process-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.detail-process-list article { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.detail-process-list article > span { color: var(--amber-500); font-family: var(--font-display); font-size: 14px; font-weight: 800; }
.detail-process-list small { color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.detail-process-list h2 { margin: 7px 0 10px; font-family: var(--font-display); font-size: clamp(27px, 3vw, 38px); letter-spacing: -.04em; line-height: 1.18; }
.detail-process-list p { max-width: 760px; margin: 0; color: var(--ink-500); line-height: 1.75; }
.question-guide-section { color: #fff; background: var(--blue-900); }
.question-guide-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 90px; }
.question-guide-grid h2 { margin: 15px 0; font-family: var(--font-display); font-size: clamp(38px, 4vw, 58px); letter-spacing: -.05em; line-height: 1.05; }
.question-guide-grid > div p { color: rgba(255,255,255,.68); }
.question-guide-grid ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.question-guide-grid li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.question-guide-grid li span { color: var(--amber-300); font-family: var(--font-display); font-weight: 800; }
.simple-cta { padding: 38px 0; background: var(--amber-500); }
.simple-cta > .container { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.simple-cta h2 { margin: 0; font-family: var(--font-display); font-size: clamp(29px, 4vw, 44px); letter-spacing: -.045em; line-height: 1.1; }
.simple-cta p { margin: 6px 0 0; color: var(--blue-800); }

.legal-hero { padding: 78px 0; }
.legal-hero h1 { font-size: clamp(43px, 5vw, 64px); }
.legal-section { padding: 85px 0 110px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 70px; }
.legal-layout aside { position: sticky; top: 105px; align-self: start; display: flex; flex-direction: column; padding: 18px; background: var(--blue-50); border: 1px solid var(--line); border-radius: 13px; }
.legal-layout aside strong { margin-bottom: 9px; color: var(--blue-900); font-family: var(--font-display); font-size: 13px; }
.legal-layout aside a { padding: 6px 0; color: var(--ink-500); font-size: 13px; text-decoration: none; }
.legal-layout aside a:hover { color: var(--blue-700); }
.legal-copy { min-width: 0; }
.legal-copy .legal-intro { color: var(--blue-900); font-size: 20px; font-weight: 600; line-height: 1.65; }
.legal-copy h2 { margin: 42px 0 12px; color: var(--blue-950); font-family: var(--font-display); font-size: 25px; letter-spacing: -.03em; }
.legal-copy h3 { margin: 25px 0 8px; font-family: var(--font-display); font-size: 18px; }
.legal-copy p, .legal-copy li { color: var(--ink-700); line-height: 1.78; }
.legal-copy a { color: var(--blue-700); font-weight: 700; }
.legal-copy code { padding: 2px 6px; color: var(--blue-900); background: var(--blue-50); border-radius: 5px; }

.contact-section { padding: 115px 0; color: #fff; background: var(--blue-900); }
.contact-grid { display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 90px; }
.contact-grid h1 { margin: 17px 0; font-family: var(--font-display); font-size: clamp(47px, 6vw, 74px); letter-spacing: -.055em; line-height: 1.02; }
.contact-grid > div:first-child p { max-width: 640px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; }
.contact-card { padding: 35px; color: var(--ink-950); background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); }
.contact-card > span { display: block; color: var(--blue-700); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-card > a { display: block; margin: 7px 0 10px; color: var(--blue-900); font-family: var(--font-display); font-size: 20px; font-weight: 800; overflow-wrap: anywhere; }
.contact-card p { color: var(--ink-500); line-height: 1.65; }
.contact-card hr { margin: 25px 0; border: 0; border-top: 1px solid var(--line); }

.confirmation-section { min-height: 70vh; padding: 80px 0; background: var(--cloud); }
.confirmation-grid { display: grid; grid-template-columns: 1.1fr .72fr; gap: 25px; }
.confirmation-main, .confirmation-aside { padding: 45px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 15px 40px rgba(8,26,63,.07); }
.confirmation-check { display: grid; width: 54px; height: 54px; margin-bottom: 24px; place-items: center; color: var(--blue-950); background: var(--amber-500); border-radius: 15px; font-size: 25px; font-weight: 800; }
.confirmation-main h1 { margin: 17px 0; font-family: var(--font-display); font-size: clamp(43px, 5vw, 66px); letter-spacing: -.055em; line-height: 1.03; }
.confirmation-main > p { color: var(--ink-500); font-size: 17px; line-height: 1.7; }
.next-steps-card { margin: 30px 0; padding: 26px; background: var(--blue-50); border-radius: 15px; }
.next-steps-card h2 { margin: 0 0 18px; font-family: var(--font-display); font-size: 21px; }
.next-steps-card ol { margin: 0; padding: 0; list-style: none; }
.next-steps-card li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding: 12px 0; }
.next-steps-card li > span { display: grid; width: 28px; height: 28px; place-items: center; color: #fff; background: var(--blue-900); border-radius: 8px; font-size: 11px; font-weight: 800; }
.next-steps-card li div { display: flex; flex-direction: column; }
.next-steps-card small { color: var(--ink-500); line-height: 1.55; }
.confirmation-note { font-size: 13px !important; }
.confirmation-note a { color: var(--blue-700); font-weight: 700; }
.confirmation-aside { color: #fff; background: var(--blue-900); border-color: var(--blue-900); }
.aside-kicker { color: var(--amber-300); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.profile-dots { display: flex; margin: 36px 0 24px; }
.profile-dots span { display: grid; width: 43px; height: 43px; margin-left: -7px; place-items: center; color: var(--blue-950); background: var(--amber-300); border: 3px solid var(--blue-900); border-radius: 50%; font-family: var(--font-display); font-size: 12px; font-weight: 800; }
.profile-dots span:first-child { margin-left: 0; }
.confirmation-aside h2 { margin: 0 0 25px; font-family: var(--font-display); font-size: 32px; letter-spacing: -.04em; line-height: 1.15; }
.confirmation-aside dl { margin: 0 0 28px; border-top: 1px solid rgba(255,255,255,.18); }
.confirmation-aside dl > div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.confirmation-aside dt { color: rgba(255,255,255,.55); }
.confirmation-aside dd { margin: 0; text-align: right; font-weight: 700; }
.confirmation-aside > p { margin: 8px 0; color: rgba(255,255,255,.75); font-size: 13px; }
.confirmation-aside > p span { color: var(--amber-300); }

.city-hero-section { padding: 75px 0 45px; color: #fff; background: var(--blue-900); }
.city-breadcrumb { display: flex; gap: 8px; margin-bottom: 26px; color: rgba(255,255,255,.60); font-size: 13px; }
.city-breadcrumb a { color: var(--amber-300); text-decoration: none; }
.city-hero-grid { display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 70px; }
.city-hero-copy h1 { margin: 15px 0 18px; font-family: var(--font-display); font-size: clamp(45px, 6vw, 72px); letter-spacing: -.055em; line-height: 1.02; }
.city-hero-copy h1 em { color: var(--amber-300); font-style: normal; }
.city-hero-copy > p { color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.city-selection-card { padding: 28px; color: var(--ink-950); background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); }
.city-selection-heading, .city-selection-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.city-selection-heading span { color: var(--blue-700); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.city-profile-stack { margin: 18px 0; }
.city-profile-row { display: grid; grid-template-columns: 39px 1fr auto; align-items: center; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.city-profile-row .avatar { display: grid; width: 39px; height: 39px; place-items: center; color: var(--blue-950); background: var(--blue-100); border-radius: 11px; font-size: 11px; font-weight: 800; }
.city-profile-row > div { display: flex; flex-direction: column; }
.city-profile-row small { color: var(--ink-500); font-size: 10px; }
.city-selection-footer { color: var(--ink-500); font-size: 11px; }
.city-selection-footer > span { color: var(--amber-500); font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.city-selection-footer p { display: flex; margin: 0; flex-direction: column; line-height: 1.4; }
.city-selection-footer p small { color: var(--ink-500); }
.city-quick-start { margin-top: 25px; padding: 20px; color: var(--blue-950); background: var(--amber-500); border-radius: 15px; }
.city-quick-start > strong { display: block; margin-bottom: 10px; font-family: var(--font-display); font-size: 16px; }
.city-quick-options { display: flex; gap: 8px; margin-bottom: 10px; }
.city-quick-options a { padding: 9px 13px; color: #fff; background: var(--blue-950); border-radius: 9px; font-size: 13px; font-weight: 700; text-decoration: none; }
.city-quick-both { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-950); font-size: 13px; font-weight: 800; }
.city-quick-start > small { display: block; margin-top: 6px; color: rgba(8,26,63,.72); font-size: 10px; }
.city-local-grid, .city-neighborhood-grid { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 80px; }
.city-local-grid h2, .city-neighborhood-grid h2, .city-project-section h2, .city-faq-section h2 { margin: 15px 0; font-family: var(--font-display); font-size: clamp(38px, 4vw, 58px); letter-spacing: -.05em; line-height: 1.05; }
.city-local-grid p, .city-neighborhood-grid p { color: var(--ink-500); font-size: 17px; line-height: 1.75; }
.city-map-card { position: relative; min-height: 360px; overflow: hidden; background: var(--blue-50); border: 1px solid var(--line); border-radius: 22px; }
.city-map-card > small, .city-map-card > strong, .city-map-card > span:not(.map-pin) { position: absolute; z-index: 2; left: 28px; }
.city-map-card > small { bottom: 83px; color: var(--ink-500); font-size: 11px; text-transform: uppercase; }
.city-map-card > strong { bottom: 47px; color: var(--blue-950); font-family: var(--font-display); font-size: 26px; }
.city-map-card > span:not(.map-pin) { bottom: 24px; color: var(--blue-700); font-size: 13px; }
.city-map-card .map-pin { z-index: 2; top: 80px; left: 57%; }
.map-lines { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(35deg, transparent 47%, var(--blue-700) 48% 49%, transparent 50%), linear-gradient(110deg, transparent 47%, var(--amber-500) 48% 49%, transparent 50%); background-size: 90px 90px, 130px 130px; }
.map-pin { position: absolute; display: grid; width: 44px; height: 44px; place-items: center; color: #fff; background: var(--blue-900); border: 5px solid #fff; border-radius: 50% 50% 50% 0; box-shadow: var(--shadow-md); transform: rotate(-45deg); }
.map-pin span { transform: rotate(45deg); }
.city-trust-strip { padding: 28px 0; border-block: 1px solid var(--line); }
.city-trust-strip > .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.city-trust-strip div { padding: 10px 25px; border-right: 1px solid var(--line); }
.city-trust-strip div:last-child { border-right: 0; }
.city-trust-strip strong, .city-trust-strip small { display: block; }
.city-trust-strip small { color: var(--ink-500); }
.city-criteria-section, .city-project-section, .city-faq-section { background: var(--cloud); }
.city-criteria-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.city-criteria-grid article { padding: 24px 20px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.city-criteria-grid article > span { color: var(--amber-500); font-family: var(--font-display); font-size: 12px; font-weight: 800; }
.city-criteria-grid h3 { font-family: var(--font-display); font-size: 17px; line-height: 1.25; }
.city-criteria-grid p { color: var(--ink-500); font-size: 13px; line-height: 1.6; }
.city-neighborhood-section { color: #fff; background: var(--blue-900); }
.city-neighborhood-grid > div p { color: rgba(255,255,255,.68); }
.city-neighborhood-grid ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; list-style: none; }
.city-neighborhood-grid li { display: flex; gap: 8px; padding: 12px 13px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; }
.city-neighborhood-grid li span { color: var(--amber-300); }
.city-project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.city-project-grid article { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.city-project-grid article > span { color: var(--blue-700); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.city-project-grid h3 { font-family: var(--font-display); font-size: 27px; letter-spacing: -.035em; line-height: 1.2; }
.city-project-grid p { color: var(--ink-500); line-height: 1.7; }
.city-project-grid a { color: var(--blue-700); font-weight: 800; text-decoration: none; }
.city-related-section { padding: 80px 0; color: #fff; background: var(--blue-950); }
.city-related-heading h2 { font-family: var(--font-display); font-size: 36px; letter-spacing: -.04em; }
.city-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 30px; }
.city-related-grid a { display: grid; grid-template-columns: 1fr auto; padding: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 11px; text-decoration: none; }
.city-related-grid small { grid-column: 1; color: rgba(255,255,255,.55); }
.city-related-grid a > span { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--amber-300); }

.admin-section, .admin-login-section { min-height: 70vh; padding: 80px 0; background: var(--cloud); }
.admin-login-section { display: grid; place-items: center; }
.admin-login-card { width: min(460px, calc(100% - 32px)); padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: 19px; box-shadow: var(--shadow-md); }
.admin-login-card h1 { margin: 13px 0 4px; font-family: var(--font-display); font-size: 42px; letter-spacing: -.05em; }
.admin-login-card > p { color: var(--ink-500); }
.admin-login-card form { display: grid; gap: 16px; margin-top: 25px; }
.admin-login-card label { font-size: 13px; font-weight: 700; }
.admin-login-card input { display: block; width: 100%; min-height: 47px; margin-top: 5px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; }
.admin-error { margin-top: 15px; padding: 10px; color: var(--error); background: #fff0ed; border-radius: 8px; }
.admin-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 28px; }
.admin-heading h1 { margin: 10px 0 0; font-family: var(--font-display); font-size: 47px; letter-spacing: -.05em; }
.admin-heading p { margin: 2px 0 0; color: var(--ink-500); }
.admin-actions { display: flex; gap: 9px; }
.admin-actions form { margin: 0; }
.admin-summary { display: flex; align-items: center; gap: 25px; margin-bottom: 20px; padding: 17px 20px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.admin-summary-count { display: flex; align-items: baseline; gap: 6px; }
.admin-summary-count strong { color: var(--blue-900); font-family: var(--font-display); font-size: 25px; }
.admin-summary-new { color: var(--success); font-weight: 700; }
.admin-summary > p { margin: 0 0 0 auto; color: var(--ink-500); font-size: 13px; }
.lead-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.lead-card { padding: 23px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 9px 25px rgba(8,26,63,.05); }
.lead-card-header, .lead-identity, .lead-contact-actions, .lead-card-footer { display: flex; align-items: center; }
.lead-card-header { justify-content: space-between; gap: 15px; }
.lead-identity { gap: 11px; }
.lead-avatar { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--blue-900); border-radius: 11px; font-size: 12px; font-weight: 800; }
.lead-identity h2 { margin: 0; font-family: var(--font-display); font-size: 17px; }
.lead-identity p { margin: 1px 0 0; color: var(--ink-500); font-size: 11px; }
.lead-status { padding: 5px 8px; color: var(--success); background: #e8f6f1; border-radius: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.lead-project { margin: 20px 0; padding: 17px; background: var(--blue-50); border-radius: 11px; }
.lead-project > span { color: var(--blue-700); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.lead-project h3 { margin: 3px 0 0; font-family: var(--font-display); font-size: 20px; }
.lead-project p { margin: 2px 0 0; color: var(--ink-500); font-size: 12px; }
.lead-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; }
.lead-facts div { padding: 10px; border: 1px solid var(--line); border-radius: 8px; }
.lead-facts dt { color: var(--ink-500); font-size: 10px; text-transform: uppercase; }
.lead-facts dd { margin: 2px 0 0; font-size: 13px; font-weight: 700; }
.lead-note { margin: 13px 0; padding: 12px; background: #fff8e9; border-radius: 8px; }
.lead-note span { color: #9a6300; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.lead-note p { margin: 3px 0 0; font-size: 13px; }
.lead-contact-actions { gap: 8px; margin-top: 16px; }
.lead-contact-actions a { display: flex; flex: 1; align-items: center; gap: 8px; padding: 10px; color: var(--blue-900); background: var(--blue-50); border-radius: 8px; font-size: 12px; text-decoration: none; overflow: hidden; }
.lead-contact-actions svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.lead-contact-actions span { display: flex; min-width: 0; flex-direction: column; overflow: hidden; text-overflow: ellipsis; }
.lead-contact-actions small { color: var(--ink-500); font-size: 9px; }
.lead-card-footer { justify-content: space-between; gap: 10px; margin-top: 16px; color: var(--ink-500); font-size: 10px; }
.admin-empty-state { padding: 70px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.admin-empty-state > span { font-family: var(--font-display); font-size: 50px; color: var(--amber-500); }
.admin-empty-state h2 { font-family: var(--font-display); }
.admin-empty-state p { color: var(--ink-500); }

@media (max-width: 900px) {
  .container { width: min(100% - 32px, 680px); }
  .question-guide-grid, .contact-grid, .confirmation-grid, .city-hero-grid, .city-local-grid, .city-neighborhood-grid { grid-template-columns: 1fr; gap: 45px; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-layout aside { position: static; }
  .city-criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .city-related-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 22px, 500px); }
  .section { padding: 75px 0; }
  .page-hero, .legal-hero, .contact-section { padding: 75px 0; }
  .detail-process-list article { grid-template-columns: 45px 1fr; gap: 12px; }
  .question-guide-grid { gap: 40px; }
  .simple-cta > .container, .city-quick-start > .container { align-items: stretch; flex-direction: column; }
  .legal-section { padding: 60px 0 80px; }
  .contact-card, .confirmation-main, .confirmation-aside { padding: 27px 22px; }
  .city-quick-options { flex-wrap: wrap; }
  .city-trust-strip > .container { grid-template-columns: 1fr; }
  .city-trust-strip div { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .city-trust-strip div:last-child { border-bottom: 0; }
  .city-criteria-grid, .city-project-grid, .city-related-grid, .city-neighborhood-grid ul { grid-template-columns: 1fr; }
  .admin-heading, .admin-summary { align-items: stretch; flex-direction: column; }
  .admin-summary > p { margin-left: 0; }
  .admin-actions { flex-wrap: wrap; }
  .lead-facts { grid-template-columns: 1fr; }
  .lead-contact-actions { align-items: stretch; flex-direction: column; }
}

/* Homepage — editorial layout specific to Choisis ton courtier */
.hero-reframed {
  padding: 46px 0 86px;
  color: #fff;
  background: var(--cloud);
  overflow: hidden;
}

.hero-stage {
  position: relative;
  min-height: 650px;
}

.hero-copy-panel {
  position: relative;
  z-index: 1;
  display: flex;
  width: 72%;
  min-height: 610px;
  padding: 68px 230px 54px 66px;
  flex-direction: column;
  background:
    radial-gradient(circle at 6% 10%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(145deg, var(--blue-900), var(--blue-950));
  border-radius: 30px 30px 105px 30px;
  box-shadow: 0 34px 80px rgba(8, 26, 63, .18);
}

.hero-copy-panel::after {
  position: absolute;
  right: 44px;
  bottom: 41px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  content: "";
}

.hero-copy-panel h1 {
  max-width: 710px;
  margin: 22px 0 20px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(52px, 6.1vw, 86px);
  font-weight: 700;
  letter-spacing: -.068em;
  line-height: .94;
}

.hero-copy-panel h1 em {
  display: block;
  color: var(--amber-300);
  font-style: normal;
  font-weight: 500;
}

.hero-copy-panel > p {
  max-width: 575px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy-panel > p strong { color: #fff; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 31px;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.hero-primary {
  gap: 24px;
  padding: 0 22px;
  color: var(--blue-950);
  background: var(--amber-300);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 19, 47, .22);
}

.hero-primary span { font-size: 19px; }
.hero-secondary { color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.35); }

.hero-metrics {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: auto;
  padding-top: 32px;
}

.hero-metrics span {
  display: flex;
  padding: 0 17px;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.16);
}

.hero-metrics span:first-child { padding-left: 0; border-left: 0; }
.hero-metrics b { color: var(--amber-300); font-family: var(--font-display); font-size: 30px; letter-spacing: -.04em; }
.hero-metrics small { margin-top: 2px; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.35; }

.hero-photo-panel {
  position: absolute;
  z-index: 2;
  top: 70px;
  right: 0;
  width: 47%;
  height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--blue-100);
  border: 10px solid var(--cloud);
  border-radius: 18px 80px 18px 18px;
  box-shadow: 0 30px 75px rgba(8, 26, 63, .23);
}

.hero-photo-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 16, 40, .75));
  content: "";
}

.hero-photo-panel img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }

.hero-photo-panel figcaption {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  color: #fff;
}

.hero-photo-panel figcaption span,
.hero-photo-panel figcaption strong { grid-column: 1; }
.hero-photo-panel figcaption span { color: rgba(255,255,255,.65); font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }
.hero-photo-panel figcaption strong { margin-top: 2px; font-family: var(--font-display); font-size: 25px; }
.hero-photo-panel figcaption i { grid-column: 2; grid-row: 1 / 3; align-self: center; display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue-950); background: var(--amber-300); border-radius: 50%; font-style: normal; }

.form-studio {
  scroll-margin-top: 82px;
  padding: 92px 0 108px;
  background:
    linear-gradient(90deg, rgba(15, 57, 136, .035) 1px, transparent 1px),
    linear-gradient(rgba(15, 57, 136, .035) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.55fr);
  gap: 70px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 105px;
  padding-top: 23px;
}

.form-intro h2 {
  max-width: 390px;
  margin: 20px 0 17px;
  color: var(--blue-950);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -.055em;
  line-height: 1;
}

.form-intro > p { max-width: 370px; color: var(--ink-500); line-height: 1.72; }
.form-intro ol { margin: 38px 0 0; padding: 0; list-style: none; }
.form-intro li { display: grid; grid-template-columns: 45px 1fr; gap: 13px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.form-intro li:last-child { border-bottom: 1px solid var(--line); }
.form-intro li b { color: var(--amber-500); font-family: var(--font-display); font-size: 12px; }
.form-intro li span { color: var(--blue-950); font-size: 14px; font-weight: 700; }

.form-studio .form-panel {
  width: 100%;
  min-height: 0;
  padding: 38px 40px 40px;
  border: 1px solid rgba(15, 57, 136, .13);
  border-radius: 24px 24px 72px 24px;
  box-shadow: 0 28px 75px rgba(8, 26, 63, .11);
}

.form-studio .form-heading { text-align: left; }
.form-studio .form-heading h2 { font-size: clamp(31px, 3vw, 43px); }
.form-studio .form-progress { margin: 27px 0 31px; }
.form-studio .project-choices { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }

.form-studio .choice-card {
  position: relative;
  display: flex;
  min-height: 178px;
  padding: 21px 18px 18px;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  border-radius: 14px;
}

.form-studio .choice-card > span:nth-of-type(2) { display: flex; flex-direction: column; }
.form-studio .choice-card > b { position: absolute; right: 17px; top: 24px; }
.form-studio .choice-icon { width: 48px; height: 48px; }
.form-studio .choice-card strong { font-size: 16px; }
.form-studio .choice-card small { margin-top: 4px; line-height: 1.35; }

.form-studio [data-form-step="2"] fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.form-studio [data-form-step="2"] legend,
.form-studio [data-form-step="2"] .step-intro,
.form-studio [data-form-step="2"] .form-optional-details { grid-column: 1 / -1; }

.method-section { background: var(--cloud); }
.method-grid { display: grid; grid-template-columns: 1.12fr .88fr; grid-template-rows: 1fr 1fr; gap: 15px; border: 0; background: transparent; }
.method-grid article { padding: 29px 31px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.method-grid article:first-child { grid-row: 1 / 3; padding: 43px; color: #fff; background: var(--blue-900); border: 0; border-radius: 22px 22px 74px 22px; }
.method-grid article:first-child > span { color: var(--amber-300); }
.method-grid article:first-child .method-icon { margin-top: 80px; color: var(--blue-950); background: var(--amber-300); }
.method-grid article:first-child h3 { margin-top: 28px; font-size: 32px; }
.method-grid article:first-child p { max-width: 390px; color: rgba(255,255,255,.68); }
.method-grid article:not(:first-child) { display: grid; grid-template-columns: 55px 1fr; column-gap: 18px; }
.method-grid article:not(:first-child) > span { grid-column: 1 / -1; }
.method-grid article:not(:first-child) .method-icon { grid-column: 1; grid-row: 2 / 4; margin-top: 19px; }
.method-grid article:not(:first-child) h3,
.method-grid article:not(:first-child) p { grid-column: 2; }

.project-grid { grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.project-card:nth-child(2) { margin-top: 68px; }

@media (max-width: 1050px) {
  .hero-copy-panel { width: 76%; padding-right: 225px; }
  .hero-photo-panel { width: 46%; }
  .form-layout { gap: 38px; }
}

@media (max-width: 900px) {
  .hero-reframed { padding-top: 26px; }
  .hero-stage { display: grid; min-height: 0; }
  .hero-copy-panel { width: 100%; min-height: 0; padding: 52px 44px 150px; border-radius: 24px 24px 70px 24px; }
  .hero-copy-panel h1 { font-size: clamp(49px, 9.5vw, 76px); }
  .hero-photo-panel { position: relative; top: auto; right: auto; width: calc(100% - 54px); height: 430px; margin: -112px 27px 0; border-width: 8px; }
  .hero-metrics { margin-top: 42px; padding-right: 0; }
  .form-layout { grid-template-columns: 1fr; }
  .form-intro { position: static; display: grid; grid-template-columns: 1.1fr .9fr; gap: 0 38px; padding-top: 0; }
  .form-intro .kicker,
  .form-intro > p { grid-column: 1; }
  .form-intro h2 { grid-column: 1; }
  .form-intro ol { grid-column: 2; grid-row: 1 / 5; margin-top: 0; align-self: center; }
  .method-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .method-grid article:first-child { grid-column: 1 / -1; grid-row: auto; }
  .method-grid article:first-child .method-icon { margin-top: 35px; }
}

@media (max-width: 680px) {
  .hero-reframed { padding: 12px 0 55px; }
  .hero-copy-panel { padding: 39px 24px 126px; border-radius: 18px 18px 54px 18px; }
  .hero-copy-panel::after { display: none; }
  .hero-copy-panel h1 { margin-top: 18px; font-size: clamp(43px, 14.5vw, 64px); }
  .hero-copy-panel > p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-secondary { align-self: center; min-height: 38px; }
  .hero-metrics { gap: 0; }
  .hero-metrics span { padding: 0 9px; }
  .hero-metrics b { font-size: 24px; }
  .hero-metrics small { font-size: 9px; }
  .hero-photo-panel { width: calc(100% - 24px); height: 330px; margin: -92px 12px 0; border-width: 6px; border-radius: 15px 55px 15px 15px; }
  .form-studio { padding: 68px 0 78px; }
  .form-layout { gap: 36px; }
  .form-intro { display: block; }
  .form-intro h2 { font-size: 42px; }
  .form-intro ol { margin-top: 27px; }
  .form-studio .form-panel { padding: 27px 18px 29px; border-radius: 18px 18px 50px 18px; }
  .form-studio .project-choices { grid-template-columns: 1fr; }
  .form-studio .choice-card { display: grid; min-height: 0; grid-template-columns: 46px 1fr auto; align-items: center; padding: 15px; flex-direction: initial; }
  .form-studio .choice-card > b { position: static; }
  .form-studio [data-form-step="2"] fieldset { grid-template-columns: 1fr; }
  .form-studio [data-form-step="2"] legend,
  .form-studio [data-form-step="2"] .step-intro,
  .form-studio [data-form-step="2"] .form-optional-details { grid-column: auto; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article:first-child { grid-column: auto; padding: 32px 27px; }
  .method-grid article:not(:first-child) { display: block; }
  .method-grid article:not(:first-child) .method-icon { margin-top: 23px; }
  .method-grid article:not(:first-child) h3,
  .method-grid article:not(:first-child) p { grid-column: auto; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(2) { margin-top: 0; }
}
