:root {
  --navy: #103a52;
  --navy-dark: #082735;
  --teal: #2b9fa0;
  --teal-dark: #187f80;
  --cream: #f4f1e9;
  --cream-deep: #e9e3d8;
  --white: #ffffff;
  --ink: #14232c;
  --muted: #5b6870;
  --line: #d8e0e3;
  --soft: #f6f8f8;
  --shadow: 0 24px 70px rgba(8, 39, 53, 0.15);
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--teal-dark); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-dark);
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.topbar { color: var(--white); background: var(--navy-dark); font-size: 13px; letter-spacing: .02em; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { display: flex; align-items: center; gap: 22px; margin: 0; }
.topbar p span { position: relative; color: rgba(255,255,255,.72); }
.topbar p span::before { content: ""; position: absolute; top: 50%; left: -12px; width: 3px; height: 3px; border-radius: 50%; background: var(--teal); }
.topbar a { font-weight: 800; color: var(--white); text-decoration: none; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,58,82,.09); backdrop-filter: blur(12px); }
.header-inner { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; width: 175px; height: 90px; text-decoration: none; }
.brand img { width: 165px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav > a { position: relative; color: var(--navy); font-size: 14px; font-weight: 750; text-decoration: none; }
.desktop-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--teal); transition: transform .2s ease; }
.desktop-nav > a:not(.nav-cta):hover::after, .desktop-nav > a:not(.nav-cta):focus-visible::after { transform: scaleX(1); }
.nav-cta { padding: 13px 19px; color: var(--white) !important; background: var(--teal-dark); border-radius: 999px; box-shadow: 0 10px 24px rgba(24,127,128,.2); }
.mobile-nav { display: none; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle at 10% 20%, rgba(43,159,160,.2), transparent 32%), linear-gradient(120deg, transparent 0 60%, rgba(255,255,255,.035) 60% 61%, transparent 61% 100%); }
.hero-grid { position: relative; min-height: 710px; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr); align-items: center; gap: 72px; padding-top: 78px; padding-bottom: 98px; }
.eyebrow { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin: 0 0 20px; color: #8de0de; font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.eyebrow.dark { color: var(--teal-dark); }
.hero h1, .section-heading h2, .project-copy h2, .craft-copy h2, .reviews-intro h2, .area-grid h2, .quote-copy h2, .legal-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  line-height: 1.06;
}
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(48px, 5.25vw, 78px); font-weight: 700; }
.hero h1 em { color: #91dfdd; font-style: normal; }
.hero-lead { max-width: 670px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 52px; padding: 13px 22px; border: 0; border-radius: 999px; font-size: 15px; font-weight: 850; text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--navy-dark); background: #8de0de; box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.button-primary:hover, .button-primary:focus-visible { background: var(--white); box-shadow: 0 18px 36px rgba(0,0,0,.2); }
.button-secondary { color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.4); }
.button-secondary:hover, .button-secondary:focus-visible { background: rgba(255,255,255,.1); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 11px 22px; margin: 32px 0 0; padding: 0; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 700; list-style: none; }
.hero-proof li { position: relative; padding-left: 19px; }
.hero-proof li::before { content: "✓"; position: absolute; left: 0; color: #8de0de; font-weight: 900; }
.hero-visual { position: relative; }
.hero-image-frame { position: relative; z-index: 1; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg); box-shadow: 0 30px 75px rgba(0,0,0,.27); }
.hero-image-frame::before { content: ""; position: absolute; z-index: 2; inset: 0; box-shadow: inset 0 0 0 9px rgba(255,255,255,.08); border-radius: inherit; pointer-events: none; }
.hero-image-frame img { width: 100%; aspect-ratio: 4 / 4.45; object-fit: cover; object-position: 50% 50%; }
.hero-visual::before { content: ""; position: absolute; top: -25px; right: -28px; width: 160px; height: 160px; border: 2px solid rgba(141,224,222,.45); border-radius: 50%; }
.hero-visual::after { content: ""; position: absolute; right: -42px; bottom: 48px; width: 105px; height: 170px; background: var(--teal); border-radius: 18px; transform: rotate(7deg); opacity: .9; }
.hero-card { position: absolute; z-index: 3; right: -26px; bottom: -34px; width: min(335px, 80%); padding: 22px 24px; color: var(--ink); background: var(--cream); border-radius: 17px; box-shadow: var(--shadow); }
.hero-card strong, .hero-card span { display: block; }
.hero-card strong { color: var(--navy); font-size: 15px; }
.hero-card span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.trust-wrap { position: relative; z-index: 4; margin-top: -36px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: var(--white); border: 1px solid rgba(16,58,82,.09); border-radius: 22px; box-shadow: var(--shadow); }
.trust-grid article { display: flex; align-items: flex-start; gap: 19px; padding: 28px 30px; }
.trust-grid article + article { border-left: 1px solid var(--line); }
.trust-number { color: var(--teal-dark); font-family: Georgia, serif; font-size: 29px; font-weight: 700; line-height: 1; }
.trust-grid h2 { margin: 0 0 4px; color: var(--navy); font-size: 16px; line-height: 1.35; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.section-heading { margin-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: 1fr .82fr; align-items: end; gap: 70px; }
.section-heading h2, .project-copy h2, .craft-copy h2, .reviews-intro h2, .area-grid h2, .quote-copy h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 4.1vw, 58px); }
.split-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; }
.centered { max-width: 730px; margin-right: auto; margin-left: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { color: var(--muted); font-size: 17px; }

.services { padding-top: 124px; background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { position: relative; overflow: hidden; min-height: 380px; padding: 38px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(43,159,160,.5); box-shadow: 0 22px 55px rgba(8,39,53,.1); }
.service-featured { color: var(--white); background: var(--navy); border-color: var(--navy); }
.service-card::after { content: ""; position: absolute; right: -90px; bottom: -95px; width: 220px; height: 220px; border: 1px solid rgba(43,159,160,.25); border-radius: 50%; }
.service-featured::after { border-color: rgba(141,224,222,.2); }
.service-index { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; color: var(--teal-dark); background: var(--white); border: 1px solid var(--line); border-radius: 50%; font-family: Georgia, serif; font-weight: 700; }
.service-featured .service-index { color: var(--navy); background: #8de0de; border-color: #8de0de; }
.service-card h3 { margin: 35px 0 11px; color: var(--navy); font-size: 26px; line-height: 1.2; }
.service-featured h3 { color: var(--white); }
.service-card > p { max-width: 570px; margin: 0; color: var(--muted); }
.service-featured > p { color: rgba(255,255,255,.75); }
.service-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.service-card li { position: relative; margin: 8px 0; padding-left: 23px; color: var(--ink); font-size: 14px; font-weight: 650; }
.service-featured li { color: rgba(255,255,255,.87); }
.service-card li::before { content: ""; position: absolute; top: .72em; left: 0; width: 10px; height: 2px; background: var(--teal); }

.project { background: var(--cream); }
.project-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: 75px; }
.project-image { position: relative; }
.project-image::before { content: ""; position: absolute; top: 24px; left: -24px; width: 74%; height: 92%; border: 1px solid rgba(16,58,82,.2); border-radius: var(--radius-lg); }
.project-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3.45; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.project-image span { position: absolute; z-index: 2; right: 22px; bottom: 22px; padding: 10px 14px; color: var(--white); background: rgba(8,39,53,.88); border-radius: 999px; font-size: 12px; font-weight: 800; backdrop-filter: blur(8px); }
.project-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.project-points { display: grid; gap: 16px; margin: 31px 0; }
.project-points div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding-top: 16px; border-top: 1px solid rgba(16,58,82,.15); }
.project-points strong { color: var(--navy); }
.project-points span { color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 850; text-decoration: none; border-bottom: 2px solid var(--teal); }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }
.text-link span { transition: transform .2s ease; }

.craft-section { color: var(--white); background: var(--navy-dark); }
.craft-grid { display: grid; grid-template-columns: 1fr .82fr; min-height: 700px; }
.craft-copy { padding: 105px 80px 100px 0; }
.craft-copy h2 { color: var(--white); }
.craft-copy > p:not(.eyebrow) { margin: 25px 0 0; color: rgba(255,255,255,.73); font-size: 17px; }
.craft-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; margin-top: 38px; }
.craft-list p { margin: 0; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.17); }
.craft-list strong, .craft-list span { display: block; }
.craft-list strong { color: #8de0de; font-size: 14px; }
.craft-list span { margin-top: 4px; color: rgba(255,255,255,.69); font-size: 13px; }
.craft-image { min-height: 620px; background: linear-gradient(rgba(8,39,53,.06), rgba(8,39,53,.18)), url('/assets/craftsmanship.jpg') center/cover no-repeat; }

.process { background: var(--white); }
.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 58px 0 0; padding: 0; list-style: none; }
.process-grid li { position: relative; padding: 0 27px 0 0; }
.process-grid li:not(:last-child)::after { content: ""; position: absolute; top: 25px; right: 0; width: calc(100% - 78px); height: 1px; transform: translateX(50%); background: var(--line); }
.process-grid li > span { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; color: var(--white); background: var(--navy); border-radius: 50%; font-family: Georgia, serif; font-size: 15px; font-weight: 700; }
.process-grid h3 { margin: 24px 0 8px; color: var(--navy); font-size: 19px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.reviews-section { padding: 105px 0; color: var(--white); background: var(--teal-dark); }
.reviews-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.reviews-intro h2 { color: var(--white); }
.reviews-intro > p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.review-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-cards blockquote { position: relative; margin: 0; padding: 34px 31px 28px; color: var(--ink); background: var(--white); border-radius: var(--radius-md); box-shadow: 0 22px 55px rgba(0,0,0,.12); }
.review-cards blockquote::before { content: "“"; position: absolute; top: 12px; right: 23px; color: rgba(43,159,160,.22); font-family: Georgia, serif; font-size: 72px; line-height: 1; }
.review-cards p { position: relative; margin: 0; font-family: Georgia, serif; font-size: 19px; line-height: 1.55; }
.review-cards footer { margin-top: 20px; color: var(--teal-dark); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }

.service-area { background: var(--cream); }
.area-grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 70px; }
.area-grid > div:first-child > p:not(.eyebrow) { margin: 23px 0 30px; color: var(--muted); font-size: 17px; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 36px; background: var(--white); border: 1px solid rgba(16,58,82,.1); border-radius: var(--radius-lg); box-shadow: 0 22px 60px rgba(8,39,53,.08); }
.area-list span { padding: 10px 15px; color: var(--navy); background: var(--soft); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 750; }

.quote-section { padding: 115px 0; color: var(--white); background: var(--navy); }
.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 78px; align-items: start; }
.quote-copy h2 { color: var(--white); }
.quote-copy > p:not(.eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.75); font-size: 17px; }
.contact-card { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-card p { display: grid; grid-template-columns: 80px 1fr; gap: 18px; margin: 0; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-card span { color: #8de0de; font-size: 12px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-card a, .contact-card strong { color: var(--white); font-size: 14px; font-weight: 750; text-decoration: none; word-break: break-word; }
.quote-form { position: relative; padding: 39px; color: var(--ink); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 28px 75px rgba(0,0,0,.2); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quote-form label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--navy); font-size: 13px; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 49px; padding: 12px 14px; color: var(--ink); background: #f8fafa; border: 1px solid #cfdadd; border-radius: 9px; outline: none; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.quote-form textarea { resize: vertical; min-height: 135px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { background: var(--white); border-color: var(--teal); box-shadow: 0 0 0 4px rgba(43,159,160,.14); }
.quote-form .consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; font-weight: 600; }
.quote-form .consent input { flex: 0 0 auto; width: 17px; min-height: 17px; height: 17px; margin-top: 2px; }
.quote-form .consent a { color: var(--teal-dark); }
.form-submit { width: 100%; margin-top: 8px; color: var(--white); background: var(--teal-dark); }
.form-submit:hover, .form-submit:focus-visible { color: var(--navy-dark); background: #8de0de; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-note a { color: var(--navy); font-weight: 800; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 72px 0 25px; color: rgba(255,255,255,.74); background: var(--navy-dark); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr 1fr .75fr; gap: 45px; }
.footer-brand img { width: 180px; height: auto; filter: brightness(1.12); }
.footer-brand p { max-width: 310px; margin: 15px 0 0; font-size: 13px; }
.site-footer h2 { margin: 5px 0 17px; color: #8de0de; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer div > a, .site-footer div > span { display: block; margin: 7px 0; color: rgba(255,255,255,.75); font-size: 13px; text-decoration: none; word-break: break-word; }
.site-footer div > a:hover, .site-footer div > a:focus-visible { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.13); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #8de0de; text-decoration: none; }
.mobile-cta { display: none; }

.legal-body { background: var(--cream); }
.legal-header { background: var(--white); border-bottom: 1px solid var(--line); }
.legal-header .header-inner { min-height: 82px; }
.legal-home-link { color: var(--navy); font-size: 14px; font-weight: 800; text-decoration: none; }
.legal-page { width: min(calc(100% - 40px), 850px); margin: 60px auto 90px; padding: 48px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 22px 60px rgba(8,39,53,.08); }
.legal-page h1 { margin: 0 0 12px; color: var(--navy); font-size: clamp(38px, 5vw, 56px); }
.legal-page h2 { margin: 34px 0 8px; color: var(--navy); font-size: 21px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page a { color: var(--teal-dark); font-weight: 700; }
.legal-meta { font-size: 13px; }

.result-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; color: var(--ink); background: var(--cream); }
.result-card { width: min(100%, 680px); padding: 50px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.result-card img { width: 220px; height: 120px; object-fit: cover; object-position: 50% 35%; margin: 0 auto 22px; }
.result-icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 22px; color: var(--white); background: var(--teal-dark); border-radius: 50%; font-size: 28px; font-weight: 900; }
.result-card h1 { margin: 0; color: var(--navy); font-family: Georgia, serif; font-size: 40px; }
.result-card p { color: var(--muted); }
.result-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.result-actions .button-secondary { color: var(--navy); border-color: var(--line); }

@media (max-width: 1050px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav > a { font-size: 13px; }
  .hero-grid { gap: 48px; }
  .project-grid, .quote-grid { gap: 50px; }
  .craft-copy { padding-right: 50px; }
}

@media (max-width: 900px) {
  .topbar p span:last-child { display: none; }
  .desktop-nav { display: none; }
  .mobile-nav { position: relative; display: block; }
  .mobile-nav summary { display: grid; gap: 5px; width: 46px; height: 46px; place-content: center; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { display: block; width: 19px; height: 2px; background: var(--navy); }
  .mobile-nav nav { position: absolute; top: 55px; right: 0; width: min(310px, calc(100vw - 40px)); padding: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); }
  .mobile-nav nav a { display: block; padding: 11px 12px; color: var(--navy); font-size: 14px; font-weight: 750; text-decoration: none; border-radius: 8px; }
  .mobile-nav nav a:hover { background: var(--soft); }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; padding-top: 70px; padding-bottom: 105px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 650px); }
  .hero-image-frame img { aspect-ratio: 4 / 3; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .split-heading, .project-grid, .area-grid, .quote-grid, .reviews-grid { grid-template-columns: 1fr; }
  .split-heading { gap: 20px; }
  .project-grid, .area-grid, .quote-grid, .reviews-grid { gap: 48px; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-copy { padding: 90px 0; }
  .craft-image { min-height: 460px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 25px; }
  .process-grid li:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  body { padding-bottom: 67px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .topbar-inner { justify-content: center; min-height: 34px; }
  .topbar p { gap: 0; }
  .topbar p span { display: none; }
  .topbar-inner > a { display: none; }
  .header-inner { min-height: 76px; }
  .brand { width: 150px; height: 72px; }
  .brand img { width: 145px; }
  .hero-grid { min-height: auto; padding-top: 56px; padding-bottom: 98px; }
  .hero h1 { font-size: clamp(43px, 12vw, 60px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { display: grid; gap: 8px; }
  .hero-visual::before { top: -18px; right: -14px; width: 110px; height: 110px; }
  .hero-visual::after { right: -15px; bottom: 12px; width: 65px; height: 115px; }
  .hero-card { right: 13px; bottom: -44px; width: calc(100% - 26px); }
  .trust-wrap { margin-top: -22px; }
  .trust-grid article { padding: 24px; }
  .services { padding-top: 94px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 30px 26px; }
  .service-card h3 { margin-top: 27px; }
  .project-image::before { left: -10px; }
  .project-points div { grid-template-columns: 1fr; gap: 5px; }
  .craft-copy { padding: 78px 0; }
  .craft-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { padding-right: 0; }
  .review-cards { grid-template-columns: 1fr; }
  .area-list { padding: 24px; }
  .quote-section { padding: 88px 0; }
  .quote-form { padding: 26px 21px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-card p { grid-template-columns: 66px 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 1500; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 67px; background: var(--navy-dark); box-shadow: 0 -8px 25px rgba(0,0,0,.18); }
  .mobile-cta a { display: grid; place-items: center; color: var(--white); font-size: 14px; font-weight: 850; text-decoration: none; }
  .mobile-cta a:last-child { color: var(--navy-dark); background: #8de0de; }
  .legal-page { margin-top: 35px; padding: 30px 24px; }
  .result-card { padding: 35px 23px; }
}

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