:root {
  color-scheme: light;
  --navy: #10233c;
  --navy-deep: #0a192b;
  --blue: #0783bf;
  --blue-dark: #00699e;
  --slate: #5e6976;
  --text: #182637;
  --muted: #637181;
  --line: #dce3e9;
  --paper: #f4f7f9;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(16, 35, 60, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body { margin: 0; min-width: 320px; color: var(--text); background: var(--white); font-family: Inter, Arial, Helvetica, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--blue); }

.container { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.section { padding-block: clamp(4.25rem, 8vw, 7.25rem); }
.section--soft { background: var(--paper); }
.section--dark { color: var(--white); background: var(--navy); }
.section-heading { max-width: 760px; margin-bottom: 2.4rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading p:last-child { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.section--dark .section-heading p:last-child { color: #c1ccd7; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-weight: 700; letter-spacing: -0.035em; line-height: 1.12; text-wrap: balance; }
h1 { max-width: 800px; margin-bottom: 1.25rem; font-size: clamp(2.55rem, 5vw, 4.55rem); }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4.3vw, 3.6rem); }
h3 { margin-bottom: 0.8rem; font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { line-height: 1.72; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.lede { max-width: 700px; color: #536273; font-size: clamp(1.08rem, 1.55vw, 1.27rem); line-height: 1.7; }
.eyebrow { margin-bottom: 0.8rem; color: var(--blue-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; line-height: 1.45; text-transform: uppercase; }
.section--dark .eyebrow { color: #75c9f3; }
.muted { color: var(--muted); }
.intro-copy { max-width: 740px; color: #455363; font-size: 1.08rem; }

.utility-bar { color: #dbe6f0; background: var(--navy-deep); font-size: 0.78rem; }
.utility-bar__inner { display: flex; min-height: 35px; align-items: center; justify-content: space-between; gap: 1rem; }
.utility-bar a { color: var(--white); font-weight: 700; text-decoration: none; }
.site-header { position: sticky; z-index: 30; top: 0; border-bottom: 1px solid rgba(16, 35, 60, 0.08); background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(16px); }
.site-header__inner { display: flex; min-height: 94px; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; width: min(218px, 35vw); }
.brand img { width: 100%; height: auto; }
.primary-navigation { display: flex; align-items: center; justify-content: flex-end; gap: clamp(0.8rem, 1.5vw, 1.5rem); }
.primary-navigation > a:not(.button) { position: relative; padding-block: 0.45rem; color: #29384a; font-size: 0.91rem; font-weight: 650; text-decoration: none; transition: color 160ms ease; }
.primary-navigation .menu { display: flex; align-items: center; gap: inherit; margin: 0; padding: 0; list-style: none; }
.primary-navigation .menu a { position: relative; padding-block: 0.45rem; color: #29384a; font-size: 0.91rem; font-weight: 650; text-decoration: none; transition: color 160ms ease; }
.primary-navigation .menu a:hover, .primary-navigation .menu .current-menu-item > a { color: var(--blue-dark); }
.primary-navigation > a:not(.button):hover, .primary-navigation > a.is-active { color: var(--blue-dark); }
.primary-navigation > a.is-active::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; border-radius: 2px; background: var(--blue); content: ""; }
.menu-toggle { display: none; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 0.65rem; padding: 0.9rem 1.35rem; border: 1px solid var(--blue); border-radius: 999px; color: var(--white); background: var(--blue); box-shadow: 0 8px 20px rgba(7, 131, 191, 0.18); font-size: 0.96rem; font-weight: 750; line-height: 1; text-decoration: none; transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease; }
.button:hover { transform: translateY(-2px); border-color: var(--blue-dark); background: var(--blue-dark); box-shadow: 0 12px 25px rgba(7, 131, 191, 0.24); }
.button:active { transform: translateY(0); }
.button:disabled { cursor: wait; opacity: 0.65; transform: none; }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid #67c6f4; outline-offset: 3px; }
.button--small { min-height: 44px; padding: 0.72rem 1.05rem; font-size: 0.88rem; }
.button--outline { border-color: rgba(255, 255, 255, 0.48); color: var(--white); background: transparent; box-shadow: none; }
.button--outline:hover { color: var(--navy); background: var(--white); }
.button--navy { border-color: var(--navy); background: var(--navy); box-shadow: none; }
.button--navy:hover { border-color: var(--navy-deep); background: var(--navy-deep); }
.text-link { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--blue-dark); font-weight: 750; text-decoration: none; }
.text-link:hover { color: var(--navy); }
.center-action { display: flex; justify-content: center; margin-top: 2.2rem; }
.skip-link { position: fixed; z-index: 100; top: 0.75rem; left: 0.75rem; transform: translateY(-160%); padding: 0.8rem 1rem; border-radius: 8px; color: var(--white); background: var(--navy); }
.skip-link:focus { transform: translateY(0); }

.hero { overflow: hidden; padding-block: clamp(3.6rem, 7vw, 6rem); background: linear-gradient(135deg, #f6f9fb 0%, #fff 53%, #edf4f8 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(350px, 0.97fr); align-items: center; gap: clamp(2.25rem, 6vw, 5rem); }
.hero-copy { padding-block: 1rem; }
.hero-copy .eyebrow { margin-bottom: 1.1rem; }
.hero-copy h1 strong { color: var(--blue-dark); font-weight: inherit; }
.hero-copy .lede { margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; }
.hero-image { position: relative; min-height: 480px; overflow: hidden; border-radius: 28px 28px 110px 28px; background: #d5dee5; box-shadow: var(--shadow); }
.hero-image img { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-image::after { position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(9, 25, 43, 0.18)); content: ""; pointer-events: none; }
.hero-note { position: absolute; z-index: 1; right: 1.1rem; bottom: 1.1rem; max-width: 230px; padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,0.72); border-radius: 14px; color: var(--navy); background: rgba(255,255,255,0.94); box-shadow: 0 8px 28px rgba(16,35,60,0.14); font-size: 0.87rem; font-weight: 700; line-height: 1.45; }
.trust-row { display: flex; flex-wrap: wrap; gap: 0.65rem 1.25rem; margin-top: 1.7rem; color: #48596b; font-size: 0.88rem; font-weight: 650; }
.trust-row span::before { margin-right: 0.45rem; color: var(--blue); content: "✓"; font-weight: 900; }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.service-card { display: flex; overflow: hidden; flex-direction: column; border: 1px solid #e3e9ee; border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 30px rgba(16,35,60,0.045); transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.service-card:hover, .service-card:focus-within { transform: translateY(-5px); border-color: #cbdce8; box-shadow: var(--shadow); }
.service-card__image { display: block; height: 240px; overflow: hidden; background: #e3e9ee; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.45rem 1.5rem 1.6rem; }
.service-card__body .eyebrow { min-height: 2.25em; margin-bottom: 0.55rem; font-size: 0.68rem; }
.service-card__body h3 a { color: inherit; text-decoration: none; }
.service-card__body > p:not(.eyebrow) { min-height: 5.2em; margin-bottom: 1.25rem; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.service-card__body .text-link { margin-top: auto; align-self: flex-start; }

.about-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(2.5rem, 7vw, 6rem); }
.about-image { min-height: 470px; overflow: hidden; border-radius: 24px 24px 24px 100px; background: #dce3e9; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem 1rem; margin: 1.6rem 0 1.8rem; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 0.65rem; color: #364658; line-height: 1.5; }
.check-list li::before { display: inline-grid; width: 1.45rem; height: 1.45rem; flex: 0 0 1.45rem; place-items: center; border-radius: 50%; color: var(--blue-dark); background: #e2f3fb; content: "✓"; font-size: 0.76rem; font-weight: 900; }
.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.stats-strip > div { padding: 1.4rem; background: var(--white); }
.stats-strip strong { display: block; margin-bottom: 0.35rem; color: var(--navy); font-size: 1.02rem; }
.stats-strip span { color: var(--muted); font-size: 0.86rem; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.feature-card { padding: 1.35rem; border: 1px solid #e2e9ef; border-radius: 15px; background: #fff; }
.feature-icon { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; margin-bottom: 1.15rem; border-radius: 12px; color: var(--blue-dark); background: #e2f3fb; font-size: 1.05rem; font-weight: 850; }
.feature-card h3 { margin-bottom: 0.45rem; font-size: 1.08rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.89rem; line-height: 1.6; }

.gallery-preview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery-preview a { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 18px; background: #d7e0e7; }
.gallery-preview img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 500ms ease; }
.gallery-preview a:hover img { transform: scale(1.04); }
.gallery-preview a:focus-visible img { transform: scale(1.04); }
.gallery-preview a::after { position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(9,25,43,0.32)); content: ""; }
.gallery-caption { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; left: 1rem; color: var(--white); font-size: 0.9rem; font-weight: 700; }
.gallery-grid { columns: 4; column-gap: 0.85rem; }
.gallery-item { position: relative; display: block; width: 100%; overflow: hidden; margin-bottom: 0.85rem; padding: 0; break-inside: avoid; border: 0; border-radius: 14px; background: #dbe3e9; cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; transition: transform 350ms ease; }
.gallery-item::after { position: absolute; z-index: 1; right: 0.75rem; bottom: 0.75rem; display: grid; width: 2.25rem; height: 2.25rem; place-items: center; border: 1px solid rgba(255,255,255,0.7); border-radius: 50%; color: var(--white); background: rgba(9,25,43,0.7); content: "+"; font-size: 1.2rem; line-height: 1; opacity: 0; transform: translateY(4px); transition: opacity 180ms ease, transform 180ms ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: translateY(0); }
.gallery-item:focus-visible { outline-offset: 4px; }
.gallery-dialog { width: min(94vw, 1080px); max-width: none; max-height: 92vh; padding: 0; overflow: visible; border: 0; border-radius: 16px; background: transparent; }
.gallery-dialog::backdrop { background: rgba(5, 15, 27, 0.88); backdrop-filter: blur(5px); }
.gallery-dialog__frame { position: relative; display: grid; min-height: 300px; place-items: center; touch-action: pan-y; }
.gallery-dialog img { max-width: 100%; max-height: 82vh; border-radius: 10px; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.gallery-dialog__close, .gallery-dialog__step { position: absolute; z-index: 2; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,0.46); border-radius: 50%; color: var(--white); background: rgba(9,25,43,0.72); cursor: pointer; }
.gallery-dialog__close { top: -0.75rem; right: -0.75rem; font-size: 1.5rem; }
.gallery-dialog__step { top: 50%; transform: translateY(-50%); font-size: 1.4rem; }
.gallery-dialog__step--prev { left: 0.75rem; }
.gallery-dialog__step--next { right: 0.75rem; }
.gallery-dialog__caption { margin-top: 0.8rem; color: #e6edf4; text-align: center; }

.service-hero { padding-block: clamp(3.5rem, 7vw, 6.5rem); background: linear-gradient(135deg, #f3f7fa, #fff 60%, #eaf3f8); }
.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.service-hero-image { min-height: 390px; overflow: hidden; border-radius: 24px 24px 90px 24px; background: #dce4ea; box-shadow: var(--shadow); }
.service-hero-image img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 1.3rem; color: #687788; font-size: 0.83rem; }
.breadcrumbs a { color: var(--blue-dark); text-decoration: none; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.2rem; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { color: #49596a; line-height: 1.8; }
.prose ul, .prose ol { display: grid; gap: 0.45rem; padding-left: 1.3rem; }
.prose li::marker { color: var(--blue); }
.prose-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: clamp(2.5rem, 6vw, 5rem); }
.side-card { position: sticky; top: 130px; padding: 1.45rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.side-card h2 { font-size: 1.3rem; }
.side-card p { color: var(--muted); font-size: 0.92rem; }
.side-card__phone { margin: 1rem 0 0 !important; }
.side-card__phone a { color: var(--blue-dark); font-weight: 750; text-decoration: none; }
.service-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.service-photo-row img { width: 100%; height: 260px; border-radius: 15px; object-fit: cover; }
.numbered-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: step; }
.numbered-step { padding: 1.4rem; border-top: 3px solid var(--blue); border-radius: 0 0 14px 14px; background: #fff; counter-increment: step; }
.numbered-step::before { display: block; margin-bottom: 1rem; color: var(--blue-dark); content: "0" counter(step); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; }
.numbered-step h3 { font-size: 1.1rem; }
.numbered-step p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.cta-band { padding-block: 4.25rem; color: var(--white); background: var(--navy); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { max-width: 680px; margin-bottom: 0.55rem; color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
.cta-band p { max-width: 650px; margin-bottom: 0; color: #c7d2dd; }
.cta-band__actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 0.75rem; }

.contact-grid { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr); align-items: start; gap: clamp(2rem, 6vw, 5rem); }
.contact-card { display: grid; gap: 0.95rem; margin-top: 1.5rem; }
.contact-item { display: flex; gap: 0.85rem; padding: 1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.contact-item__icon { display: grid; width: 2.5rem; height: 2.5rem; flex: 0 0 2.5rem; place-items: center; border-radius: 12px; color: var(--blue-dark); background: #e4f4fb; font-weight: 800; }
.contact-item strong { display: block; margin-bottom: 0.15rem; color: var(--navy); font-size: 0.9rem; }
.contact-item a, .contact-item span { color: #566678; font-size: 0.94rem; line-height: 1.5; text-decoration: none; }
.contact-item a:hover { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 0.2em; }
.contact-form { padding: clamp(1.3rem, 3vw, 2rem); border: 1px solid #e0e7ed; border-radius: 20px; background: #fff; box-shadow: 0 12px 40px rgba(16,35,60,0.06); }
.contact-form h2 { margin-bottom: 0.6rem; font-size: 1.7rem; }
.contact-form__intro { margin-bottom: 1.5rem; color: var(--muted); font-size: 0.92rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-field { display: grid; gap: 0.45rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: #334558; font-size: 0.86rem; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; padding: 0.75rem 0.85rem; border: 1px solid #cbd5de; border-radius: 10px; color: var(--text); background: #fff; }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #8492a0; }
.form-note { margin: 1rem 0 1.1rem; color: #667586; font-size: 0.78rem; line-height: 1.55; }
.form-note a { color: var(--blue-dark); }
.form-status { min-height: 1.5em; margin: 0.8rem 0 0; font-size: 0.9rem; font-weight: 650; }
.form-status[data-state="success"] { color: #176a47; }
.form-status[data-state="error"] { color: #a13333; }
.form-status[data-state="loading"] { color: var(--blue-dark); }
.form-setup-note { padding: 1rem; border-left: 3px solid var(--blue); border-radius: 0 10px 10px 0; color: #435366; background: #edf7fc; font-size: 0.9rem; line-height: 1.6; }
.form-turnstile { margin-top: 0.25rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip-path: inset(50%) !important; white-space: nowrap !important; }

.site-footer { padding-top: 3.7rem; color: #dce5ee; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.75fr 1fr; gap: 3rem; padding-bottom: 2.6rem; }
.footer-brand-column p { max-width: 330px; margin-top: 1rem; color: #b9c7d5; font-size: 0.92rem; line-height: 1.7; }
.footer-logo { display: inline-flex; width: min(278px, 100%); padding: 0.55rem 0.7rem; border-radius: 12px; background: var(--white); }
.footer-logo img { width: 100%; height: auto; }
.footer-heading { margin: 0 0 1rem; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-links, .footer-contact { display: grid; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-contact a { color: #c8d4df; font-size: 0.9rem; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: #7bd0fa; }
.footer-contact li { color: #c8d4df; font-size: 0.9rem; line-height: 1.6; }
.footer-bottom { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.13); color: #aab8c7; font-size: 0.8rem; }
.footer-bottom a { color: #c8d4df; text-decoration: none; }

@media (max-width: 1100px) {
  .primary-navigation { gap: 0.85rem; }
  .primary-navigation > a:not(.button) { font-size: 0.84rem; }
  .brand { width: 185px; }
  .site-header__inner { min-height: 86px; }
  .nav-cta { padding-inline: 0.9rem; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { columns: 3; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, 720px); }
  .site-header__inner { min-height: 78px; }
  .brand { width: min(176px, 49vw); }
  .menu-toggle { display: flex; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid #d5dee6; border-radius: 12px; background: #fff; cursor: pointer; }
  .menu-toggle span { width: 19px; height: 2px; border-radius: 4px; background: var(--navy); transition: transform 160ms ease, opacity 160ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .primary-navigation { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-items: stretch; justify-content: stretch; gap: 0; padding: 0.6rem 18px 1.1rem; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 16px 25px rgba(16,35,60,0.1); }
  .primary-navigation.is-open { display: grid; grid-template-columns: minmax(0, 1fr); }
  .primary-navigation > a:not(.button) { padding: 0.9rem 0.35rem; border-bottom: 1px solid #eef1f4; font-size: 0.95rem; }
  .primary-navigation .menu { display: grid; gap: 0; }
  .primary-navigation .menu a { display: block; padding: 0.9rem 0.35rem; border-bottom: 1px solid #eef1f4; font-size: 0.95rem; }
  .primary-navigation > a.is-active::after { display: none; }
  .primary-navigation .nav-cta { margin-top: 0.8rem; }
  .hero-grid, .service-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-image { min-height: min(74vw, 520px); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image, .about-image img { min-height: min(72vw, 430px); }
  .prose-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .gallery-preview { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand-column { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .utility-bar__inner { min-height: 34px; font-size: 0.69rem; }
  .utility-bar__inner span { max-width: 68%; }
  .site-header__inner { min-height: 72px; }
  .section { padding-block: 3.75rem; }
  .hero { padding-block: 2.6rem 3.5rem; }
  h1 { font-size: clamp(2.25rem, 10.5vw, 3rem); line-height: 1.06; }
  h2 { font-size: clamp(1.9rem, 9vw, 2.7rem); }
  .lede { font-size: 1.02rem; line-height: 1.65; }
  .hero-image { min-height: 390px; border-radius: 20px 20px 76px 20px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 0.55rem 0.8rem; font-size: 0.78rem; }
  .services-grid, .feature-grid, .check-list, .numbered-steps, .service-photo-row { grid-template-columns: 1fr; }
  .service-card:last-child:nth-child(odd) { grid-column: auto; }
  .service-card__image { height: 250px; }
  .service-card__body > p:not(.eyebrow) { min-height: auto; }
  .stats-strip { grid-template-columns: 1fr; }
  .stats-strip > div { padding: 1rem 1.1rem; }
  .gallery-preview { display: flex; width: calc(100% + 16px); gap: 0.65rem; overflow-x: auto; padding-right: 16px; padding-bottom: 0.75rem; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .gallery-preview a { min-width: 78%; flex: 0 0 78%; scroll-snap-align: start; }
  .gallery-grid { columns: 2; column-gap: 0.55rem; }
  .gallery-item { margin-bottom: 0.55rem; border-radius: 10px; }
  .gallery-item::after { right: 0.55rem; bottom: 0.55rem; width: 2rem; height: 2rem; opacity: 1; transform: none; }
  .gallery-dialog__step { width: 38px; height: 38px; }
  .gallery-dialog__close { top: -0.6rem; right: 0; }
  .service-hero-image, .service-hero-image img { min-height: 330px; }
  .service-photo-row img { height: 230px; }
  .cta-band { padding-block: 3.2rem; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .button { width: 100%; flex: 1 1 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .contact-form { padding: 1.15rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand-column { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1rem; }
}

@media (max-width: 900px) {
  body.menu-is-open { overflow: hidden; }
}

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