:root {
  --blue: #0879bb;
  --blue-light: #3ab1eb;
  --blue-dark: #045986;
  --navy: #051925;
  --navy-2: #082a3b;
  --ink: #0c2733;
  --muted: #60747d;
  --paper: #f0f4f5;
  --paper-2: #e4ecef;
  --line: #d3e0e4;
  --white: #fff;
  --signal: #f4e31f;
  --shadow: 0 30px 80px rgba(4, 25, 37, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: white; color: var(--ink); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.shell { width: min(1300px, calc(100% - 70px)); margin-inline: auto; }
.section { padding: 118px 0; }
.kicker, .eyebrow { margin: 0 0 20px; font-size: 9px; font-weight: 950; letter-spacing: .2em; text-transform: uppercase; }
.kicker { color: var(--blue); }
.kicker.light { color: #8bcbe7; }
.eyebrow { display: flex; align-items: center; gap: 13px; color: #c2dce7; }
.eyebrow span { width: 39px; height: 2px; background: var(--signal); }

.topline { background: var(--navy); color: #8ba6b1; font-size: 9px; letter-spacing: .08em; }
.topline .shell { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.topline .shell > div { display: flex; gap: 28px; }
.topline a:hover { color: white; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(18px); }
.nav { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { width: 218px; flex: 0 0 auto; padding: 11px 20px; border-radius: 3px; background: var(--blue); box-shadow: 0 12px 30px rgba(8,121,187,.2); }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; gap: 24px; align-items: center; font-size: 11px; font-weight: 900; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { position: absolute; content: ""; right: 100%; bottom: 4px; left: 0; height: 2px; background: var(--blue); transition: right .2s; }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: grid; gap: 2px; padding-right: 6px; }
.nav-phone span { color: var(--muted); font-size: 7px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.nav-phone strong { color: var(--blue); font-size: 11px; }
.nav-offer { min-height: 52px; display: flex; align-items: center; gap: 18px; padding: 7px 7px 7px 20px; border-radius: 3px; background: var(--signal); color: var(--navy); box-shadow: 0 12px 32px rgba(244,227,31,.3); font-size: 10px; font-weight: 950; letter-spacing: .07em; text-transform: uppercase; transition: transform .2s; }
.nav-offer:hover { transform: translateY(-3px); }
.nav-offer i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 2px; background: var(--navy); color: white; font-size: 17px; font-style: normal; }
.menu-button { width: 48px; height: 48px; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); background: white; }
.menu-button i { width: 19px; height: 2px; background: var(--ink); }

.button { min-height: 55px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 24px; border: 1px solid transparent; border-radius: 3px; font-size: 10px; font-weight: 950; letter-spacing: .07em; text-transform: uppercase; transition: transform .2s, box-shadow .2s, color .2s, background .2s; }
.button:hover { transform: translateY(-3px); }
.button-signal { background: var(--signal); color: var(--navy); box-shadow: 0 14px 35px rgba(244,227,31,.2); }
.button-dark { background: var(--navy); color: white; }
.button-outline { border-color: rgba(255,255,255,.42); color: white; }
.button-glass { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(12px); }
.button-glass:hover { background: white; color: var(--navy); }
.button-xl { min-height: 67px; gap: 22px; padding: 9px 11px 9px 22px; }
.button-xl > span { display: grid; gap: 3px; text-align: left; }
.button-xl small { opacity: .68; font-size: 7px; letter-spacing: .12em; }
.button-xl i { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 2px; background: rgba(5,25,37,.12); font-size: 17px; font-style: normal; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--blue); font-size: 11px; font-weight: 900; }
.text-link span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); }

.mobile-menu { position: fixed; inset: 0; z-index: 100; display: flex; flex-direction: column; overflow-y: auto; background: white; transform: translateX(100%); transition: transform .3s ease; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { min-height: 80px; display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; background: var(--blue); }
.mobile-menu-head img { width: 160px; }
.mobile-menu-head button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.5); background: transparent; color: white; font-size: 27px; }
.mobile-menu-body { flex: 1; padding: 15px 22px 30px; }
.mobile-menu-body > strong { display: block; margin: 24px 0 4px; color: var(--blue); font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.mobile-menu-body a { display: block; padding: 12px 2px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 800; }
.mobile-town-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 18px; background: var(--paper); }

.hero { min-height: 790px; position: relative; display: grid; align-items: center; overflow: hidden; background: var(--navy); color: white; }
.hero-image, .hero-shade, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(5,25,37,.99), rgba(5,25,37,.93) 42%, rgba(5,25,37,.48) 69%, rgba(5,25,37,.05)); }
.hero-grid { opacity: .15; background: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 78px 78px; mask-image: linear-gradient(90deg, #000, transparent 67%); }
.hero-gl { position: absolute; right: -3vw; bottom: -8vw; color: rgba(255,255,255,.055); font-size: 35vw; line-height: .8; font-weight: 950; letter-spacing: -.11em; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .55fr; gap: 78px; align-items: center; padding: 90px 0; }
.hero h1 { margin: 0; font-size: clamp(63px, 7.2vw, 105px); line-height: .86; letter-spacing: -.07em; font-weight: 300; }
.hero h1 strong { color: var(--signal); font-weight: 950; }
.hero-lead { max-width: 720px; margin: 30px 0 0; color: #c7dce4; font-size: 16px; line-height: 1.75; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 720px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.hero-meta > div { min-height: 105px; padding: 16px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.hero-meta span { display: block; margin-bottom: 18px; color: var(--signal); font-size: 8px; font-weight: 900; }
.hero-meta b { display: block; margin-bottom: 4px; font-size: 12px; }
.hero-meta small { color: #819ca7; font-size: 8px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.planner-card { overflow: hidden; border-top: 4px solid var(--signal); border-radius: 3px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.planner-head { min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 27px; background: var(--paper); color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.planner-card > h2, .planner-card > p, .planner-card > ul { margin-right: 29px; margin-left: 29px; }
.planner-card h2 { margin-top: 27px; margin-bottom: 0; font-size: 29px; line-height: 1.05; letter-spacing: -.05em; }
.planner-card > p { margin-top: 15px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.planner-card ul { list-style: none; margin-top: 20px; margin-bottom: 24px; padding: 0; border-top: 1px solid var(--line); }
.planner-card li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; }
.planner-card li::before { content: "•"; margin-right: 10px; color: var(--blue); }
.planner-card > a { min-height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 12px 20px 12px 29px; background: var(--blue); color: white; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.planner-card > a i { width: 41px; height: 41px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); font-size: 18px; font-style: normal; }

.signal-strip { overflow: hidden; background: var(--signal); color: var(--navy); }
.signal-strip > div { min-width: max-content; min-height: 53px; display: flex; align-items: center; gap: 30px; padding-inline: 25px; animation: ticker 30s linear infinite; font-size: 9px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.signal-strip i { color: var(--blue); font-size: 7px; }
@keyframes ticker { to { transform: translateX(-32%); } }

.intro-section { background: white; }
.intro-grid { display: grid; grid-template-columns: 130px 1fr .85fr; gap: 70px; align-items: end; }
.intro-index { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--line); }
.intro-index span { color: var(--blue); font-size: 31px; font-weight: 950; }
.intro-index small { color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; writing-mode: vertical-rl; }
.intro-grid h2, .section-head h2, .faq-grid h2 { margin: 0; font-size: clamp(47px, 5.2vw, 73px); line-height: .96; letter-spacing: -.065em; }
.intro-grid > div:last-child > p { margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.8; }

.services-section { padding: 115px 0; background: var(--navy); color: white; }
.section-head { display: grid; grid-template-columns: 1.1fr .65fr; gap: 100px; align-items: end; margin-bottom: 56px; }
.section-head > div:last-child > p { margin: 0; color: #8da7b2; font-size: 13px; line-height: 1.8; }
.section-head.dark > div:last-child > p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.service-card { min-height: 205px; display: grid; grid-template-columns: 52px 1fr 50px; gap: 20px; align-items: center; padding: 28px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); transition: background .2s, padding .2s; }
.service-card:hover { padding-inline: 38px; background: var(--blue); }
.service-number { color: var(--signal); font-size: 10px; font-weight: 900; }
.service-card small { color: #718d99; font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.service-card h3 { margin: 10px 0 10px; font-size: 27px; letter-spacing: -.04em; }
.service-card p { margin: 0; color: #8ea6b0; font-size: 11px; line-height: 1.65; }
.service-card:hover p { color: #d0e7f0; }
.service-card > i { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); color: var(--signal); font-size: 19px; font-style: normal; }

.architect-section { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 760px; }
.architect-image { min-height: 620px; position: relative; }
.architect-image img { width: 100%; height: 100%; object-fit: cover; }
.image-caption { position: absolute; right: 0; bottom: 0; padding: 14px 20px; background: var(--signal); color: var(--navy); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.architect-copy { padding: 95px max(45px, calc((100vw - 1300px)/2)); background: var(--blue); color: white; }
.architect-copy h2 { margin: 0; font-size: clamp(47px, 5.2vw, 73px); line-height: .96; letter-spacing: -.065em; }
.architect-copy > p:not(.kicker) { max-width: 620px; margin: 27px 0 32px; color: #d6edf6; font-size: 14px; line-height: 1.8; }
.architect-points { margin-bottom: 32px; border-top: 1px solid rgba(255,255,255,.25); }
.architect-points > div { display: grid; grid-template-columns: 38px 125px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.architect-points span { color: var(--signal); font-size: 9px; font-weight: 900; }
.architect-points b { font-size: 12px; }
.architect-points p { margin: 0; color: #c6e0ea; font-size: 10px; line-height: 1.6; }

.metrics { background: var(--signal); color: var(--navy); }
.metrics .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.metrics .shell > div { min-height: 155px; display: flex; flex-direction: column; justify-content: center; padding: 25px 32px; border-right: 1px solid rgba(5,25,37,.22); }
.metrics .shell > div:last-child { border: 0; }
.metrics strong { font-size: clamp(45px, 5vw, 68px); letter-spacing: -.06em; }
.metrics span { margin-top: 4px; font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.region-section { background: var(--paper); }
.region-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #bfd0d6; border-left: 1px solid #bfd0d6; }
.region-cards a { min-height: 310px; position: relative; padding: 30px; border-right: 1px solid #bfd0d6; border-bottom: 1px solid #bfd0d6; background: white; overflow: hidden; transition: background .2s, color .2s, transform .2s; }
.region-cards a:hover { z-index: 2; transform: translateY(-5px); background: var(--navy); color: white; }
.region-cards > a > span { color: var(--blue); font-size: 10px; font-weight: 900; }
.region-cards small { display: block; margin-top: 58px; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.region-cards h3 { margin: 10px 0 13px; font-size: 34px; letter-spacing: -.045em; }
.region-cards p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.region-cards a:hover small, .region-cards a:hover p { color: #8fa9b5; }
.region-cards i { position: absolute; right: 27px; bottom: 27px; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--blue); font-size: 18px; font-style: normal; }
.region-cards a:hover i { border-color: rgba(255,255,255,.25); color: var(--signal); }
.town-link-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 32px; border-top: 1px solid #bfd0d6; border-left: 1px solid #bfd0d6; }
.town-link-grid a { min-height: 86px; display: grid; grid-template-columns: 1fr 28px; align-items: center; padding: 15px 17px; border-right: 1px solid #bfd0d6; border-bottom: 1px solid #bfd0d6; background: white; transition: background .2s, color .2s; }
.town-link-grid span { grid-column: 1; color: var(--muted); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.town-link-grid strong { grid-column: 1; font-size: 13px; }
.town-link-grid i { grid-column: 2; grid-row: 1 / 3; color: var(--blue); font-style: normal; }
.town-link-grid a:hover { background: var(--blue); color: white; }
.town-link-grid a:hover span, .town-link-grid a:hover i { color: white; }

.references-section { padding: 110px 0; background: var(--navy); color: white; }
.references-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.references-grid h2 { margin: 0; font-size: clamp(47px, 5.2vw, 73px); line-height: .96; letter-spacing: -.065em; }
.references-grid > div:first-child > p:not(.kicker) { margin: 25px 0 30px; color: #8da6b1; font-size: 13px; line-height: 1.8; }
.reference-list { border-top: 1px solid rgba(255,255,255,.16); }
.reference-list > div { min-height: 72px; display: grid; grid-template-columns: 42px 1fr 90px; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.16); }
.reference-list span { color: var(--signal); font-size: 8px; font-weight: 900; }
.reference-list strong { font-size: 13px; }
.reference-list small { color: #6f8b96; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-align: right; text-transform: uppercase; }

.process-section { background: white; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 27px; }
.process-grid article > span { color: var(--blue); font-size: 9px; font-weight: 900; }
.process-line { height: 3px; position: relative; margin: 19px 0 27px; background: var(--line); }
.process-line::before { position: absolute; content: ""; inset: 0 auto 0 0; width: 30%; background: var(--blue); }
.process-grid h3 { margin: 0 0 11px; font-size: 19px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }

.form-section { background: var(--paper); }
.form-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 60px; align-items: start; }
.form-copy { position: sticky; top: 125px; }
.form-copy h2 { margin: 0; font-size: clamp(47px, 5.2vw, 70px); line-height: .98; letter-spacing: -.065em; }
.form-copy > p:not(.kicker):not(.privacy-hint) { margin: 25px 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.form-copy ol { list-style: none; margin: 28px 0; padding: 0; border-top: 1px solid var(--line); }
.form-copy li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 800; }
.form-copy li span { width: 28px; height: 28px; display: grid; place-items: center; background: var(--blue); color: white; font-size: 8px; }
.privacy-hint { color: #70838b; font-size: 9px; line-height: 1.65; }
.privacy-hint a { color: var(--blue); font-weight: 900; }
.form-card { min-width: 0; padding: 15px; border-top: 5px solid var(--blue); background: white; box-shadow: var(--shadow); }
.jotform-wrap { min-height: 680px; overflow: hidden; background: white; }
.jotform-wrap iframe { display: block; width: 100%; min-width: 100%; max-width: 100%; height: 1050px; border: 0; }

.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-grid > div:first-child > p:not(.kicker) { color: var(--muted); font-size: 12px; }
.big-phone { display: inline-block; margin-top: 15px; color: var(--blue); font-size: 25px; font-weight: 950; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 0; cursor: pointer; font-size: 14px; font-weight: 900; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; background: var(--paper-2); color: var(--blue); font-style: normal; transition: transform .2s; }
.accordion details[open] summary i { transform: rotate(45deg); }
.accordion details p { margin: -2px 55px 24px 0; color: var(--muted); font-size: 12px; line-height: 1.78; }

.site-footer { padding: 92px 0 27px; background: var(--navy); color: white; }
.footer-lead { display: flex; align-items: end; justify-content: space-between; gap: 45px; padding-bottom: 62px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-lead h2 { margin: 0; font-size: clamp(45px, 5vw, 70px); line-height: .95; letter-spacing: -.06em; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .9fr 1fr 1fr; gap: 55px; padding: 62px 0 48px; }
.footer-brand img { width: 205px; }
.footer-brand p { max-width: 350px; margin: 23px 0 14px; color: #8fa7b2; font-size: 11px; line-height: 1.75; }
.footer-brand small { color: #607b86; font-size: 9px; }
.site-footer h3 { margin: 0 0 18px; color: #66838e; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.site-footer a, .site-footer p { display: block; margin: 0 0 8px; color: #bfd0d7; font-size: 10px; line-height: 1.6; }
.site-footer a:hover { color: white; }
.footer-subtitle { margin-top: 22px !important; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.12); color: #5e7883; font-size: 8px; }
.sticky-actions { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; gap: 7px; }
.sticky-actions a { min-width: 185px; min-height: 68px; display: flex; align-items: center; gap: 12px; padding: 9px 14px; border-radius: 3px; box-shadow: 0 20px 55px rgba(2,18,27,.3); transition: transform .2s; }
.sticky-actions a:hover { transform: translateY(-4px); }
.sticky-actions a > span { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.sticky-actions small { display: block; margin-bottom: 3px; opacity: .7; font-size: 6px; letter-spacing: .12em; text-transform: uppercase; }
.sticky-actions strong { display: block; font-size: 12px; }
.sticky-call { background: var(--blue); color: white; }
.sticky-quote { background: var(--signal); color: var(--navy); }
.sticky-quote div { flex: 1; }
.sticky-quote i { font-style: normal; }

/* Shared subpages */
.subhero, .plain-hero, .offer-hero, .legal-hero, .town-hero { position: relative; overflow: hidden; background: var(--navy); color: white; }
.plain-hero::after, .offer-hero::after, .legal-hero::after { position: absolute; content: ""; inset: 0; opacity: .13; background: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 78px 78px; mask-image: linear-gradient(90deg, transparent, #000); }
.plain-hero-grid { min-height: 540px; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 260px; gap: 75px; align-items: center; padding: 75px 0; }
.plain-hero h1, .subhero h1, .offer-hero h1, .legal-hero h1 { margin: 0; font-size: clamp(55px, 6.5vw, 92px); line-height: .92; letter-spacing: -.07em; }
.plain-hero p:last-child, .subhero-copy > p:last-of-type, .offer-hero-copy > p:last-child, .legal-hero p:last-child { max-width: 740px; margin: 25px 0 0; color: #b6ccd5; font-size: 14px; line-height: 1.8; }
.hero-number { width: 230px; height: 230px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.25); color: var(--signal); font-size: 63px; font-weight: 950; }
.hero-number small { margin-top: 10px; color: #9cb3bd; font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.subhero-grid { min-height: 680px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; padding: 80px 0; }
.subhero-visual { height: 520px; position: relative; margin: 0; }
.subhero-visual::before { position: absolute; content: ""; inset: -14px 14px 14px -14px; border: 1px solid rgba(255,255,255,.22); pointer-events: none; }
.subhero-visual img { width: 100%; height: 100%; object-fit: cover; }
.subhero-visual figcaption { position: absolute; bottom: 0; left: 0; padding: 12px 16px; background: var(--signal); color: var(--navy); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.detail-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.detail-grid h2 { margin: 0; font-size: clamp(45px, 5vw, 69px); line-height: .98; letter-spacing: -.06em; }
.feature-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.feature-list span { color: var(--blue); font-size: 8px; font-weight: 900; }
.feature-list strong { font-size: 15px; }
.detail-note, .side-note { margin-top: 26px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.blue-cta { padding: 92px 0; background: var(--blue); color: white; }
.blue-cta-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 100px; align-items: end; }
.blue-cta h2 { margin: 0; font-size: clamp(46px, 5.4vw, 73px); line-height: .96; letter-spacing: -.065em; }
.blue-cta-grid > div:last-child > p { margin: 0 0 25px; color: #d2e9f3; font-size: 13px; line-height: 1.8; }

.button-row { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-buttons { margin-top: 31px; }
.subhero-copy h1 strong, .plain-hero h1 strong, .offer-hero h1 strong { color: var(--signal); font-weight: 950; }
.lead-copy { margin: 0 0 30px; color: var(--ink); font-size: 21px; line-height: 1.55; letter-spacing: -.02em; }
.info-panel { margin-top: 35px; padding: 31px; border-left: 4px solid var(--blue); background: var(--paper); }
.info-panel small { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.info-panel h3 { margin: 11px 0 10px; font-size: 24px; }
.info-panel p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.feature-list.compact { margin-top: 20px; }
.dark-split { padding: 105px 0; background: var(--navy); color: white; }
.dark-split-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.dark-split h2 { max-width: 500px; margin: 0; font-size: clamp(46px, 5vw, 69px); line-height: .96; letter-spacing: -.065em; }
.split-items { border-top: 1px solid rgba(255,255,255,.15); }
.split-items > div { display: grid; grid-template-columns: 48px 190px 1fr; gap: 22px; align-items: center; min-height: 103px; border-bottom: 1px solid rgba(255,255,255,.15); }
.split-items span { color: var(--signal); font-size: 8px; font-weight: 900; }
.split-items h3 { font-size: 16px; }
.split-items p { color: #88a3ae; font-size: 11px; line-height: 1.7; }

.overview-section { background: var(--paper); }
.overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #bfd0d6; border-left: 1px solid #bfd0d6; }
.overview-card { min-height: 315px; position: relative; padding: 38px; border-right: 1px solid #bfd0d6; border-bottom: 1px solid #bfd0d6; background: white; transition: background .25s, color .25s; }
.overview-card > span { color: var(--blue); font-size: 9px; font-weight: 950; }
.overview-card small { display: block; margin-top: 63px; color: var(--muted); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.overview-card h2 { margin: 10px 0 14px; font-size: 36px; letter-spacing: -.045em; }
.overview-card p { max-width: 490px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.overview-card i { position: absolute; right: 34px; top: 34px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--blue); font-size: 20px; font-style: normal; }
.overview-card:hover { background: var(--blue); color: white; }
.overview-card:hover > span, .overview-card:hover small, .overview-card:hover p, .overview-card:hover i { color: white; }
.overview-card:hover i { border-color: rgba(255,255,255,.3); }

.architect-hero { overflow: hidden; background: var(--navy); color: white; }
.architect-hero-grid { min-height: 720px; display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; padding: 75px 0; }
.architect-hero h1 { margin: 0; font-size: clamp(58px, 6.5vw, 92px); line-height: .88; letter-spacing: -.07em; font-weight: 350; }
.architect-hero h1 strong { color: var(--signal); font-weight: 950; }
.architect-hero-grid > div > p:last-of-type { max-width: 640px; margin: 28px 0 0; color: #abc2cc; font-size: 14px; line-height: 1.8; }
.architect-hero figure { height: 560px; position: relative; margin: 0; }
.architect-hero figure::before { position: absolute; content: ""; inset: -17px 18px 18px -17px; border: 1px solid rgba(255,255,255,.25); }
.architect-hero figure img { width: 100%; height: 100%; position: relative; object-fit: cover; }
.architect-hero figcaption { position: absolute; right: 0; bottom: 0; display: flex; gap: 16px; padding: 18px 21px; background: var(--signal); color: var(--navy); }
.architect-hero figcaption b { font-size: 30px; }
.architect-hero figcaption span { font-size: 8px; font-weight: 900; line-height: 1.45; letter-spacing: .08em; text-transform: uppercase; }
.planning-matrix { padding: 110px 0; background: var(--navy); color: white; }
.input-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.input-grid > div { min-height: 190px; padding: 27px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.input-grid span { color: var(--signal); font-size: 8px; font-weight: 950; }
.input-grid h3 { max-width: 290px; margin: 60px 0 0; font-size: 16px; line-height: 1.45; }
.interface-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.interface-grid > div { min-height: 370px; padding: 35px; background: white; }
.interface-grid span { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.interface-grid h2 { margin: 98px 0 20px; font-size: 31px; line-height: 1.05; letter-spacing: -.045em; }
.interface-grid p { color: var(--muted); font-size: 12px; line-height: 1.75; }
.architect-process { padding: 100px 0; background: var(--blue); color: white; }
.architect-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.3); border-left: 1px solid rgba(255,255,255,.3); }
.architect-process-grid > div { min-height: 220px; padding: 26px; border-right: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.architect-process-grid strong { color: var(--signal); font-size: 9px; }
.architect-process-grid h3 { margin: 80px 0 8px; font-size: 19px; }
.architect-process-grid p { margin: 0; color: #c7e4f0; font-size: 10px; line-height: 1.6; }

.reference-page { background: var(--paper); }
.reference-page-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; }
.reference-feature { background: var(--navy); color: white; }
.reference-feature img { width: 100%; height: 430px; object-fit: cover; }
.reference-feature > div { padding: 34px; }
.reference-feature span { color: var(--signal); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.reference-feature h2 { margin: 18px 0; font-size: 40px; line-height: 1.04; letter-spacing: -.05em; }
.reference-feature p { margin: 0; color: #91aab4; font-size: 12px; line-height: 1.7; }
.reference-page-list { border-top: 1px solid #bfd0d6; }
.reference-page-list article { min-height: 94px; display: grid; grid-template-columns: 45px 1fr 160px; align-items: center; gap: 17px; border-bottom: 1px solid #bfd0d6; }
.reference-page-list span { color: var(--blue); font-size: 8px; font-weight: 950; }
.reference-page-list h3 { font-size: 16px; }
.reference-page-list small { color: var(--muted); font-size: 7px; font-weight: 900; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.proof-strip { padding: 45px 0; background: var(--signal); color: var(--navy); }
.proof-strip .shell { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-strip .shell > div { padding: 8px 32px; border-right: 1px solid rgba(5,25,37,.25); }
.proof-strip .shell > div:last-child { border-right: 0; }
.proof-strip strong { display: block; font-size: 37px; letter-spacing: -.04em; }
.proof-strip span { font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.area-directory { background: var(--paper); }
.area-group { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; padding: 80px 0; border-bottom: 1px solid #bfd0d6; scroll-margin-top: 130px; }
.area-group:first-child { padding-top: 0; }
.area-group:last-child { padding-bottom: 0; border-bottom: 0; }
.area-group-copy > span { color: var(--blue); font-size: 10px; font-weight: 950; }
.area-group-copy small { display: block; margin-top: 50px; color: var(--muted); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.area-group-copy h2 { margin: 8px 0 19px; font-size: 52px; letter-spacing: -.055em; }
.area-group-copy p { color: var(--muted); font-size: 12px; line-height: 1.75; }
.area-town-list { border-top: 1px solid #bfd0d6; }
.area-town-list a { min-height: 91px; display: grid; grid-template-columns: 1fr 38px; align-items: center; padding: 15px 18px; border-bottom: 1px solid #bfd0d6; background: white; transition: padding .2s, background .2s; }
.area-town-list a span { grid-column: 1; color: var(--muted); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.area-town-list a strong { grid-column: 1; font-size: 18px; }
.area-town-list a i { grid-column: 2; grid-row: 1 / 3; color: var(--blue); font-style: normal; }
.area-town-list a:hover { padding-left: 28px; background: var(--blue); color: white; }
.area-town-list a:hover span, .area-town-list a:hover i { color: white; }

.cost-section { background: var(--paper); }
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #bfd0d6; border-left: 1px solid #bfd0d6; }
.cost-grid article { min-height: 260px; padding: 30px; border-right: 1px solid #bfd0d6; border-bottom: 1px solid #bfd0d6; background: white; }
.cost-grid span { color: var(--blue); font-size: 8px; font-weight: 950; }
.cost-grid h3 { margin: 83px 0 12px; font-size: 22px; }
.cost-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.cost-note { display: grid; grid-template-columns: .4fr 1fr auto; gap: 35px; align-items: center; margin-top: 32px; padding: 33px; background: var(--navy); color: white; }
.cost-note strong { font-size: 17px; }
.cost-note p { margin: 0; color: #9bb3bd; font-size: 11px; line-height: 1.7; }
.cost-note a { color: var(--signal); font-size: 10px; font-weight: 950; text-transform: uppercase; }

.offer-hero-layout { min-height: 570px; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .42fr; gap: 80px; align-items: center; padding: 80px 0; }
.offer-contact { min-height: 260px; display: flex; flex-direction: column; justify-content: end; padding: 29px; border-top: 4px solid var(--signal); background: white; color: var(--navy); box-shadow: var(--shadow); }
.offer-contact small { color: var(--blue); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.offer-contact a { margin: 15px 0 7px; color: var(--blue); font-size: 26px; font-weight: 950; }
.offer-contact span { color: var(--muted); font-size: 8px; }

.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.company-image { position: relative; }
.company-image img { width: 100%; height: 570px; object-fit: cover; }
.company-image span { position: absolute; bottom: 0; left: 0; padding: 15px 19px; background: var(--signal); font-size: 8px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.company-grid h2 { margin: 0; font-size: clamp(46px, 5vw, 67px); line-height: .97; letter-spacing: -.06em; }
.company-grid > div:last-child > p:not(.kicker) { color: var(--muted); font-size: 13px; line-height: 1.8; }
.company-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.company-stats div { min-height: 125px; padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.company-stats strong { display: block; margin-top: 30px; color: var(--blue); font-size: 24px; }
.company-stats span { color: var(--muted); font-size: 7px; font-weight: 900; text-transform: uppercase; }
.values-section { padding: 90px 0; background: var(--navy); color: white; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.values-grid article { min-height: 230px; padding: 27px; border-right: 1px solid rgba(255,255,255,.15); }
.values-grid span { color: var(--signal); font-size: 8px; font-weight: 950; }
.values-grid h3 { margin: 83px 0 10px; font-size: 23px; }
.values-grid p { color: #8da7b2; font-size: 10px; line-height: 1.7; }

.contact-section { padding-top: 0; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); padding-top: 110px; border-top: 1px solid #bfd0d6; border-left: 1px solid #bfd0d6; }
.contact-grid article { min-height: 265px; padding: 32px; border-right: 1px solid #bfd0d6; border-bottom: 1px solid #bfd0d6; background: white; }
.contact-grid small { color: var(--blue); font-size: 8px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.contact-grid a, .contact-grid h2 { display: block; margin: 92px 0 10px; color: var(--ink); font-size: 28px; font-weight: 950; line-height: 1.25; letter-spacing: -.03em; }
.contact-grid p { margin: 0; color: var(--muted); font-size: 10px; }
.contact-cta { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-top: 30px; padding: 45px; background: var(--blue); color: white; }
.contact-cta h2 { margin: 0; font-size: 39px; letter-spacing: -.04em; }

.legal-hero-grid { min-height: 480px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; padding: 75px 0; }
.legal-section { background: var(--paper); }
.legal-grid { display: grid; grid-template-columns: 250px 1fr; gap: 95px; align-items: start; }
.legal-grid aside { position: sticky; top: 130px; padding: 25px; border-top: 4px solid var(--blue); background: white; box-shadow: var(--shadow); }
.legal-grid aside strong { display: block; margin-bottom: 15px; font-size: 14px; }
.legal-grid aside a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.legal-copy { max-width: 820px; }
.legal-copy section { padding: 0 0 43px; margin-bottom: 43px; border-bottom: 1px solid #bfd0d6; scroll-margin-top: 135px; }
.legal-copy section > span { color: var(--blue); font-size: 8px; font-weight: 950; }
.legal-copy h2 { margin: 14px 0 19px; font-size: 31px; letter-spacing: -.035em; }
.legal-copy p { color: var(--muted); font-size: 12px; line-height: 1.85; }
.legal-copy a { color: var(--blue); font-weight: 800; }
.legal-date { font-size: 9px !important; }

.town-hero { min-height: 650px; display: grid; align-items: center; }
.town-hero > img, .town-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.town-hero-shade { background: linear-gradient(90deg, rgba(5,25,37,.98), rgba(5,25,37,.77) 54%, rgba(5,25,37,.15)); }
.town-hero-content { position: relative; z-index: 1; padding: 85px 0; }
.town-hero h1 { margin: 0; font-size: clamp(62px, 7vw, 100px); line-height: .87; letter-spacing: -.07em; font-weight: 350; }
.town-hero h1 strong { color: var(--signal); font-weight: 950; }
.town-hero-content > p:last-of-type { max-width: 700px; color: #bed1d9; font-size: 14px; line-height: 1.8; }
.local-services { padding: 105px 0; background: var(--navy); color: white; }
.mini-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.mini-service-grid > div { min-height: 220px; padding: 27px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.mini-service-grid span { color: var(--signal); font-size: 8px; font-weight: 950; }
.mini-service-grid h3 { margin: 100px 0 0; font-size: 17px; line-height: 1.35; }
.nearby-section { background: var(--paper); }
.nearby-section h2 { margin: 0 0 35px; font-size: 52px; letter-spacing: -.055em; }
.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #bfd0d6; border-left: 1px solid #bfd0d6; }
.nearby-grid > div { min-height: 115px; display: flex; flex-direction: column; justify-content: end; padding: 20px; border-right: 1px solid #bfd0d6; border-bottom: 1px solid #bfd0d6; background: white; }
.nearby-grid small { color: var(--blue); font-size: 7px; text-transform: uppercase; }
.nearby-grid strong { margin-top: 5px; font-size: 17px; }

@media (max-width: 1140px) {
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .hero-layout { grid-template-columns: 1fr .55fr; gap: 40px; }
  .hero h1 { font-size: 70px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 840px) {
  .shell { width: min(100% - 32px, 680px); }
  .topline { display: none; }
  .nav { min-height: 78px; }
  .brand { width: 166px; padding: 9px 14px; }
  .nav-phone { display: none; }
  .nav-offer { min-height: 44px; padding-left: 14px; }
  .nav-offer i { width: 32px; height: 32px; }
  .hero { min-height: auto; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,25,37,.98), rgba(5,25,37,.7)); }
  .hero-layout { grid-template-columns: 1fr; padding: 72px 0; }
  .hero h1 { font-size: clamp(56px, 15vw, 78px); }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div { min-height: 85px; }
  .planner-card { max-width: 540px; }
  .section { padding: 80px 0; }
  .intro-grid, .section-head, .architect-section, .references-grid, .form-grid, .faq-grid, .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-index { display: none; }
  .service-grid, .region-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 175px; }
  .architect-image { min-height: 480px; }
  .architect-copy { padding: 75px 24px; }
  .architect-points > div { grid-template-columns: 35px 110px 1fr; }
  .metrics .shell { grid-template-columns: repeat(2, 1fr); }
  .metrics .shell > div:nth-child(2) { border-right: 0; }
  .town-link-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .form-copy { position: static; }
  .form-card { padding: 7px; }
  .footer-lead { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { display: block; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding-bottom: 90px; }
  .sticky-actions { right: 0; bottom: 0; left: 0; gap: 0; }
  .sticky-actions a { width: 50%; min-width: 0; justify-content: center; border-radius: 0; box-shadow: none; }
  .sticky-actions a:hover { transform: none; }
  .plain-hero-grid, .subhero-grid, .blue-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .overview-grid, .architect-hero-grid, .reference-page-grid, .area-group, .company-grid, .legal-grid { grid-template-columns: 1fr; }
  .dark-split-grid, .offer-hero-layout { grid-template-columns: 1fr; gap: 45px; }
  .split-items > div { grid-template-columns: 40px 160px 1fr; }
  .architect-hero-grid { min-height: auto; padding: 70px 0; }
  .architect-hero figure { height: 470px; }
  .input-grid, .cost-grid { grid-template-columns: repeat(2, 1fr); }
  .interface-grid { grid-template-columns: 1fr; }
  .interface-grid > div { min-height: 270px; }
  .interface-grid h2 { margin-top: 65px; }
  .architect-process-grid, .values-grid, .mini-service-grid, .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .area-group { gap: 35px; }
  .company-image img { height: 470px; }
  .legal-grid aside { position: static; }
  .contact-cta { align-items: flex-start; flex-direction: column; }
  .hero-number { display: none; }
  .subhero-grid { min-height: auto; padding: 70px 0; }
  .subhero-visual { height: 420px; }
}

@media (max-width: 540px) {
  .nav-offer { display: none; }
  .mobile-town-grid { grid-template-columns: 1fr; }
  .mobile-menu-actions { grid-template-columns: 1fr; }
  .hero h1 { font-size: 54px; }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .architect-copy h2, .intro-grid h2, .section-head h2, .faq-grid h2 { font-size: 44px; }
  .architect-points > div { grid-template-columns: 30px 1fr; }
  .architect-points p { grid-column: 2; }
  .metrics .shell { grid-template-columns: 1fr; }
  .metrics .shell > div { border-right: 0; border-bottom: 1px solid rgba(5,25,37,.2); }
  .town-link-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .sticky-actions a > span { display: none; }
  .sticky-actions small { font-size: 6px; }
  .plain-hero h1, .subhero h1, .offer-hero h1, .legal-hero h1 { font-size: 45px; }
  .subhero-visual { height: 320px; }
  .overview-grid, .input-grid, .architect-process-grid, .cost-grid, .values-grid, .mini-service-grid, .nearby-grid, .contact-grid, .proof-strip .shell { grid-template-columns: 1fr; }
  .overview-card { min-height: 265px; padding: 25px; }
  .overview-card small { margin-top: 43px; }
  .overview-card h2 { font-size: 29px; }
  .dark-split, .planning-matrix, .local-services { padding: 75px 0; }
  .split-items > div { grid-template-columns: 34px 1fr; gap: 14px; padding: 18px 0; }
  .split-items p { grid-column: 2; margin-top: -10px; }
  .architect-hero h1 { font-size: 48px; }
  .architect-hero figure { height: 330px; }
  .reference-page-list article { grid-template-columns: 35px 1fr; }
  .reference-page-list small { display: none; }
  .reference-feature img { height: 300px; }
  .proof-strip .shell > div { border-right: 0; border-bottom: 1px solid rgba(5,25,37,.25); }
  .cost-note { grid-template-columns: 1fr; }
  .offer-hero-layout { min-height: auto; }
  .offer-contact { min-height: 190px; }
  .company-stats { grid-template-columns: 1fr; }
  .company-image img { height: 330px; }
  .contact-grid { padding-top: 70px; }
  .contact-grid article { min-height: 220px; }
  .contact-grid a, .contact-grid h2 { margin-top: 67px; font-size: 23px; overflow-wrap: anywhere; }
  .legal-grid { gap: 45px; }
  .town-hero h1 { font-size: 53px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
