@font-face {
  font-family: "Geist";
  src: url("./geist.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #17191c;
  --muted: #646a70;
  --red: #ef3b3f;
  --red-dark: #d8292e;
  --soft: #f4f4f2;
  --line: #e2e2de;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(20, 22, 25, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: "Geist", sans-serif; }
body, button, input, select, textarea { font-family: "Geist", sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.topbar { background: var(--ink); color: #fff; font-size: 12px; font-weight: 650; letter-spacing: .02em; }
.topbar__inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: #fff; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(20,22,25,.08); backdrop-filter: blur(12px); }
.site-header__inner { display: flex; min-height: 78px; align-items: center; gap: 34px; }
.brand img { width: 174px; height: auto; }
.desktop-nav { display: flex; margin-left: auto; align-items: center; gap: 26px; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 680; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta { display: inline-flex; min-height: 44px; padding: 0 17px; align-items: center; gap: 8px; border-radius: 8px; background: var(--red); color: #fff; font-size: 13px; font-weight: 750; }

.hero { overflow: hidden; padding: 54px 0 0; background: #fff; }
.hero__layout { position: relative; display: grid; min-height: 650px; grid-template-columns: 1.03fr .97fr; align-items: start; }
.hero__copy { position: relative; z-index: 2; padding: 58px 36px 150px 0; }
.eyebrow { margin: 0 0 15px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow--light { color: #fff; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(55px,7vw,91px); line-height: .88; letter-spacing: -.075em; }
.hero h1 span { display: block; color: var(--red); }
.hero__lede { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.button-row { display: flex; margin-top: 28px; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 51px; padding: 0 20px; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 9px; font-size: 14px; font-weight: 760; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--red); color: #fff; box-shadow: 0 12px 28px rgba(239,59,63,.22); }
.button--primary:hover { background: var(--red-dark); }
.button--outline { border-color: #e2e2de; background: #fff; }
.button--dark { background: var(--ink); color: #fff; }
.button--glass { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.09); color: #fff; backdrop-filter: blur(8px); }
.button-row--center { justify-content: center; }
.hero__checks { display: flex; margin-top: 28px; flex-wrap: wrap; gap: 16px; }
.hero__checks span { display: inline-flex; align-items: center; gap: 6px; color: #646a70; font-size: 12px; font-weight: 650; }
.hero__checks svg { color: var(--red); }
.hero__visual { position: relative; height: 565px; overflow: hidden; border-radius: 28px 28px 0 28px; background: #e2e2de; }
.hero__visual::after { position: absolute; inset: 0; background: rgba(10,12,15,.12); content: ""; }
.hero__visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__stamp { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: flex; padding: 15px 17px; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; background: rgba(20,22,25,.74); color: #fff; backdrop-filter: blur(10px); }
.hero__stamp svg { color: #fff; }
.hero__stamp div { display: flex; flex-direction: column; }
.hero__stamp strong { font-size: 13px; }
.hero__stamp span { margin-top: 2px; color: rgba(255,255,255,.74); font-size: 11px; }
.hero__form { position: absolute; z-index: 4; right: -10px; bottom: 0; width: 385px; padding: 22px; border-radius: 16px 16px 0 0; background: var(--red); color: #fff; box-shadow: var(--shadow); }
.form-heading { display: flex; margin-bottom: 16px; align-items: center; gap: 12px; }
.form-heading__icon { display: grid; width: 42px; height: 42px; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.16); }
.form-heading p, .form-heading h2 { margin: 0; }
.form-heading p { color: rgba(255,255,255,.74); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-heading h2 { margin-top: 3px; font-size: 20px; letter-spacing: -.03em; }

.lead-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form label { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.lead-form label > span { color: #646a70; font-size: 11px; font-weight: 720; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #e2e2de; border-radius: 8px; outline: none; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.lead-form input, .lead-form select { min-height: 47px; padding: 0 12px; }
.lead-form textarea { padding: 12px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,59,63,.12); }
.lead-form .form-grid__wide { grid-column: 1 / -1; }
.lead-form button { display: flex; width: 100%; min-height: 51px; margin-top: 14px; padding: 0 18px; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 8px; background: var(--red); color: #fff; font-size: 13px; font-weight: 800; cursor: pointer; }
.lead-form button:hover { background: var(--red-dark); }
.lead-form .form-note { margin: 11px 0 0; color: #646a70; font-size: 10px; line-height: 1.5; }
.lead-form .form-note a { font-weight: 750; text-decoration: underline; }
.lead-form--compact .form-grid { gap: 8px; }
.lead-form--compact label > span { color: rgba(255,255,255,.88); }
.lead-form--compact input, .lead-form--compact select { min-height: 42px; border: 0; }
.lead-form--compact button { margin-top: 10px; background: var(--ink); }
.lead-form--compact .form-note { color: rgba(255,255,255,.78); }

.trust-strip { padding: 28px 0; background: #f4f4f2; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-strip__grid > div { display: flex; align-items: center; justify-content: center; gap: 11px; border-right: 1px solid #e2e2de; }
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-strip svg { color: var(--red); }
.trust-strip span { display: flex; flex-direction: column; color: var(--muted); font-size: 11px; }
.trust-strip strong { margin-bottom: 2px; color: var(--ink); font-size: 14px; }

.section { padding: 112px 0; }
.section--soft { background: var(--soft); }
.section-heading { margin-bottom: 44px; }
.section-intro { max-width: 670px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-heading h2, .process h2, .areas h2, .faq h2, .quote h2, .about-story h2, .about-values h2, .about-approach h2 { max-width: 720px; margin: 0; font-size: clamp(38px,5vw,60px); line-height: .98; letter-spacing: -.055em; }
.section-heading--center { text-align: center; }
.section-heading--center h2 { margin-inline: auto; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 70px; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.service-card { position: relative; display: flex; min-height: 310px; padding: 25px; overflow: hidden; flex-direction: column; border: 1px solid #e2e2de; border-radius: 13px; background: #fff; }
.service-card--featured { background: var(--red); color: #fff; }
.service-card__tag { position: absolute; top: 18px; right: 18px; padding: 6px 8px; border-radius: 999px; background: rgba(255,255,255,.18); font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.service-card__icon { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 10px; background: rgba(239,59,63,.10); color: var(--red); }
.service-card--featured .service-card__icon { background: #fff; }
.service-card__number { position: absolute; top: 70px; right: -4px; color: #f4f4f2; font-size: 82px; font-weight: 850; line-height: 1; letter-spacing: -.08em; }
.service-card--featured .service-card__number { color: rgba(255,255,255,.13); }
.service-card h3 { position: relative; margin: auto 0 10px; font-size: 20px; letter-spacing: -.035em; }
.service-card p { position: relative; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.service-card--featured p { color: rgba(255,255,255,.76); }
.service-card a { display: inline-flex; margin-top: 20px; align-items: center; gap: 8px; color: var(--red); font-size: 12px; font-weight: 780; }
.service-card--featured a { color: #fff; }

.why__layout { display: grid; grid-template-columns: .8fr 1.4fr .8fr; align-items: center; gap: 35px; }
.feature-list { display: flex; flex-direction: column; gap: 46px; }
.feature-list article { display: flex; gap: 13px; }
.feature-list article > span { display: grid; width: 42px; height: 42px; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(239,59,63,.10); color: var(--red); }
.feature-list h3 { margin: 0 0 7px; font-size: 15px; letter-spacing: -.025em; }
.feature-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.why__image { position: relative; height: 450px; overflow: hidden; border-radius: 220px 220px 24px 24px; background: #e2e2de; }
.why__image img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.why__image-label { position: absolute; right: 22px; bottom: 22px; left: 22px; padding: 13px 15px; border-radius: 9px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; text-align: center; }
.proof-bar { position: relative; z-index: 2; display: grid; margin: -24px 45px 0; padding: 24px 12px; grid-template-columns: repeat(4,1fr); border-radius: 14px; background: var(--red); color: #fff; box-shadow: 0 18px 45px rgba(239,59,63,.2); }
.proof-bar > div { display: flex; min-height: 48px; padding: 0 20px; align-items: center; justify-content: center; flex-direction: column; border-right: 1px solid rgba(255,255,255,.24); text-align: center; }
.proof-bar > div:last-child { border: 0; }
.proof-bar strong { font-size: 22px; letter-spacing: -.04em; }
.proof-bar span { margin-top: 2px; color: rgba(255,255,255,.75); font-size: 10px; }

.process__layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.process__intro { position: sticky; top: 135px; align-self: start; }
.process__intro > p:not(.eyebrow), .areas__layout > div:first-child > p, .faq__layout > div:first-child > p, .about-story__copy > p:not(.eyebrow), .about-approach__copy > p:not(.eyebrow) { margin: 24px 0 28px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.timeline { border-left: 1px solid #e2e2de; }
.timeline article { position: relative; display: grid; min-height: 145px; padding: 0 0 45px 65px; grid-template-columns: 72px 1fr; }
.timeline article:last-child { padding-bottom: 0; }
.timeline article::before { position: absolute; top: 0; left: -7px; width: 13px; height: 13px; border: 3px solid var(--soft); border-radius: 50%; background: var(--red); box-shadow: 0 0 0 1px var(--red); content: ""; }
.timeline article > span { color: #e2e2de; font-size: 43px; font-weight: 850; line-height: 1; letter-spacing: -.07em; }
.timeline h3 { margin: 2px 0 9px; font-size: 20px; letter-spacing: -.03em; }
.timeline p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.result-grid figure { position: relative; height: 470px; margin: 0; overflow: hidden; border-radius: 16px; background: #e2e2de; }
.result-grid figure::after { position: absolute; inset: 52% 0 0; background: rgba(10,12,15,.72); content: ""; }
.result-grid img { width: 100%; height: 100%; object-fit: cover; }
.result-grid figcaption { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: flex; align-items: flex-end; gap: 14px; color: #fff; }
.result-grid figcaption > span { padding: 6px 9px; border-radius: 999px; background: var(--red); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.result-grid h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.result-grid p { margin: 4px 0 0; color: rgba(255,255,255,.73); font-size: 11px; }
.fine-print { margin: 14px 0 0; color: #646a70; font-size: 10px; font-style: italic; text-align: center; }

.cta-photo { position: relative; display: grid; min-height: 490px; place-items: center; overflow: hidden; background: url('https://roofupkeep.com/wp-content/uploads/2026/08/residential-gutter-cleaning-in-progress-1280x760.jpg') center 48%/cover; color: #fff; }
.cta-photo::before { position: absolute; inset: 0; background: rgba(14,16,18,.72); content: ""; }
.cta-photo__content { position: relative; z-index: 1; max-width: 890px; text-align: center; }
.cta-photo h2 { margin: 0; font-size: clamp(42px,6vw,68px); line-height: .98; letter-spacing: -.055em; }

.areas__layout { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 14px; font-weight: 780; }
.area-list { display: flex; flex-wrap: wrap; gap: 9px; }
.area-list span { display: inline-flex; min-height: 43px; padding: 0 13px; align-items: center; gap: 7px; border: 1px solid #e2e2de; border-radius: 999px; background: #fff; color: #646a70; font-size: 12px; font-weight: 650; }
.area-list svg { color: var(--red); }

.faq__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq__items { border-top: 1px solid #e2e2de; }
.faq details { border-bottom: 1px solid #e2e2de; }
.faq summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; font-size: 16px; font-weight: 760; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { display: grid; width: 31px; height: 31px; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--red); color: #fff; font-size: 19px; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 670px; margin: -2px 55px 25px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.quote { background: var(--red); color: #fff; }
.quote__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.quote__copy > p:not(.eyebrow) { max-width: 470px; margin: 25px 0 34px; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.75; }
.contact-list { display: flex; flex-direction: column; gap: 13px; }
.contact-list > a, .contact-list > span { display: flex; align-items: center; gap: 12px; }
.contact-list > a > svg, .contact-list > span > svg { box-sizing: content-box; padding: 9px; border-radius: 50%; background: rgba(255,255,255,.14); }
.contact-list > a > span, .contact-list > span > span { display: flex; flex-direction: column; }
.contact-list small { color: rgba(255,255,255,.64); }
.contact-list strong { margin-top: 2px; font-size: 13px; }
.quote__form-card { padding: 34px; border-radius: 16px; background: #fff; color: var(--ink); box-shadow: var(--shadow); }

.footer { padding: 65px 0 25px; background: #191b1e; color: #fff; }
.footer__cta { display: flex; min-height: 122px; padding: 28px 34px; align-items: center; justify-content: space-between; gap: 25px; border-radius: 14px; background: var(--red); }
.footer__cta span { max-width: 640px; font-size: clamp(28px,4vw,44px); font-weight: 780; line-height: 1; letter-spacing: -.05em; }
.footer__cta i { display: grid; width: 54px; height: 54px; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #fff; color: var(--red); }
.footer__grid { display: grid; padding: 58px 0 48px; grid-template-columns: 1.45fr .7fr .85fr 1fr; gap: 55px; }
.footer__brand img { width: 190px; filter: brightness(0) invert(1); }
.footer__brand p { max-width: 330px; margin: 20px 0 0; color: #646a70; font-size: 12px; line-height: 1.75; }
.footer__grid h3 { margin: 0 0 18px; font-size: 13px; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; gap: 11px; }
.footer__grid a, .footer__grid span { display: inline-flex; align-items: center; gap: 7px; color: #646a70; font-size: 11px; }
.footer__grid a:hover { color: #fff; }
.footer__bottom { display: flex; padding-top: 22px; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #646a70; font-size: 10px; }
.mobile-actions { display: none; }

/* About page */
.about-hero { position: relative; display: grid; min-height: 500px; place-items: end start; background: url('https://roofupkeep.com/wp-content/uploads/2026/08/professional-roofer-safety-harness-asphalt-shingles-1280x853.jpg') center 48%/cover; color: #fff; }
.about-hero::before { position: absolute; inset: 0; background: rgba(15,17,19,.68); content: ""; }
.about-hero__content { position: relative; z-index: 1; padding-bottom: 72px; }
.about-hero h1 { max-width: 800px; margin: 0; font-size: clamp(58px,9vw,108px); line-height: .88; letter-spacing: -.075em; }
.about-hero p:not(.eyebrow) { max-width: 590px; margin: 22px 0 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.65; }
.about-story__layout, .about-approach__layout { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 86px; }
.about-story__image, .about-approach__image { height: 520px; overflow: hidden; border-radius: 16px; }
.about-story__image img, .about-approach__image img { width: 100%; height: 100%; object-fit: cover; }
.about-story__image img { object-position: 60% center; }
.about-values .section-heading { text-align: center; }
.about-values .section-heading h2 { margin-inline: auto; }
.value-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.value-card { grid-column: span 2; }
.value-card--wide { grid-column: span 4; }
.value-card { min-height: 250px; padding: 25px; border-radius: 14px; background: var(--red); color: #fff; }
.value-card > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: #fff; color: var(--red); }
.value-card h3 { margin: 55px 0 10px; font-size: 18px; letter-spacing: -.03em; }
.value-card p { margin: 0; color: rgba(255,255,255,.73); font-size: 12px; line-height: 1.7; }
.about-trust { padding: 86px 0; }
.about-trust__layout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 45px; }
.about-trust h2 { max-width: 650px; margin: 0; font-size: clamp(38px,5vw,60px); line-height: .98; letter-spacing: -.055em; }
.about-trust__badges { display: flex; gap: 15px; }
.about-trust__badges span { display: flex; min-width: 155px; min-height: 105px; padding: 18px; align-items: center; justify-content: center; flex-direction: column; border-radius: 12px; background: var(--soft); text-align: center; }
.about-trust__badges strong { color: var(--red); font-size: 22px; }
.about-trust__badges small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.about-approach__image { border-radius: 16px 170px 16px 16px; }
.about-approach__image img { object-position: center; }
.about-approach__checks { display: grid; margin: 28px 0; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-approach__checks span { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 680; }
.about-approach__checks svg { color: var(--red); }

@media (max-width: 1050px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a:nth-last-child(-n+2) { display: none; }
  .hero__layout { min-height: 700px; }
  .hero__copy { padding-right: 24px; }
  .hero__form { right: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 285px; }
  .why__layout { grid-template-columns: .9fr 1.2fr .9fr; gap: 22px; }
  .process__layout, .faq__layout { gap: 65px; }
  .footer__grid { grid-template-columns: 1.3fr .7fr .8fr; }
  .footer__grid > div:last-child { grid-column: 1/-1; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 700px); }
  .topbar__inner span { max-width: 70%; }
  .site-header__inner { min-height: 66px; }
  .brand img { width: 145px; }
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero { padding-top: 25px; background: #fff; }
  .hero__layout { display: flex; min-height: 0; flex-direction: column; }
  .hero__copy { order: 1; padding: 34px 0 35px; }
  .hero h1 { font-size: clamp(54px,13vw,82px); }
  .hero__visual { order: 2; width: 100%; height: 460px; border-radius: 20px; }
  .hero__form { position: relative; right: auto; bottom: auto; order: 3; width: calc(100% - 24px); margin: -54px auto 0; border-radius: 16px; }
  .trust-strip { margin-top: 34px; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid > div { justify-content: flex-start; border: 0; }
  .section { padding: 80px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .why__layout { grid-template-columns: 1fr 1fr; }
  .why__image { order: -1; height: 420px; grid-column: 1/-1; border-radius: 210px 210px 20px 20px; }
  .proof-bar { margin: 24px 0 0; grid-template-columns: 1fr 1fr; }
  .proof-bar > div:nth-child(2) { border-right: 0; }
  .proof-bar > div:nth-child(-n+2) { padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.24); }
  .proof-bar > div:nth-child(n+3) { padding-top: 15px; }
  .process__layout, .areas__layout, .faq__layout, .quote__layout { grid-template-columns: 1fr; gap: 55px; }
  .process__intro { position: static; }
  .timeline article { padding-left: 50px; }
  .result-grid figure { height: 390px; }
  .areas__layout { gap: 35px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1/-1; }
  .footer__grid > div:last-child { grid-column: 1/-1; }
  .about-story__layout, .about-approach__layout { grid-template-columns: 1fr; gap: 45px; }
  .about-story__image, .about-approach__image { height: 460px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-card, .value-card--wide { grid-column: auto; }
  .about-trust__layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { padding-bottom: 71px; }
  .container { width: calc(100% - 30px); }
  .topbar { font-size: 10px; }
  .topbar__inner { min-height: 31px; }
  .topbar__inner span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar a { font-size: 0; }
  .topbar a svg { width: 16px; height: 16px; }
  .site-header__inner { min-height: 62px; }
  .brand img { width: 133px; }
  .header-cta { min-height: 39px; padding: 0 12px; }
  .hero__copy { padding-top: 26px; }
  .eyebrow { margin-bottom: 11px; font-size: 10px; }
  .hero h1 { font-size: clamp(48px,16vw,67px); line-height: .9; }
  .hero__lede { margin-top: 20px; font-size: 16px; line-height: 1.55; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero__checks { gap: 10px 14px; }
  .hero__visual { height: 390px; }
  .hero__stamp { right: 14px; bottom: 14px; left: 14px; }
  .hero__form { width: calc(100% - 12px); padding: 19px; }
  .lead-form .form-grid { grid-template-columns: 1fr; }
  .lead-form .form-grid__wide { grid-column: auto; }
  .trust-strip__grid { gap: 20px 10px; }
  .trust-strip__grid > div { gap: 8px; }
  .trust-strip svg { width: 23px; }
  .trust-strip strong { font-size: 12px; }
  .section { padding: 70px 0; }
  .section-heading h2, .process h2, .areas h2, .faq h2, .quote h2, .about-story h2, .about-values h2, .about-approach h2 { font-size: 39px; }
  .section-heading { margin-bottom: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .why__layout { grid-template-columns: 1fr; }
  .why__image { height: 360px; grid-column: auto; }
  .feature-list { gap: 24px; }
  .proof-bar { margin-top: 34px; }
  .proof-bar > div { padding-inline: 8px; }
  .proof-bar strong { font-size: 18px; }
  .timeline { margin-left: 6px; }
  .timeline article { min-height: 130px; padding-left: 30px; grid-template-columns: 55px 1fr; }
  .timeline article > span { font-size: 33px; }
  .timeline h3 { font-size: 17px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-grid figure { height: 360px; }
  .cta-photo { min-height: 540px; }
  .cta-photo h2 { font-size: 43px; }
  .area-list span { min-height: 39px; padding: 0 10px; font-size: 11px; }
  .faq__layout { gap: 38px; }
  .faq summary { min-height: 70px; font-size: 14px; }
  .quote__form-card { padding: 22px; }
  .footer { padding-top: 45px; }
  .footer__cta { min-height: 105px; padding: 22px; }
  .footer__cta span { font-size: 27px; }
  .footer__cta i { width: 45px; height: 45px; }
  .footer__grid { padding: 45px 0 35px; gap: 35px 25px; }
  .footer__grid > div:last-child { flex-direction: column; }
  .footer__bottom { flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 80; right: 0; bottom: 0; left: 0; display: grid; min-height: 71px; padding: 7px max(8px,env(safe-area-inset-right)) max(7px,env(safe-area-inset-bottom)) max(8px,env(safe-area-inset-left)); grid-template-columns: repeat(3,1fr); border-top: 1px solid #e2e2de; background: rgba(255,255,255,.97); box-shadow: 0 -10px 35px rgba(18,20,22,.12); backdrop-filter: blur(14px); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; color: #646a70; font-size: 10px; font-weight: 760; }
  .mobile-actions a span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: #f4f4f2; color: var(--ink); }
  .mobile-actions a:last-child { color: var(--red); }
  .mobile-actions a:last-child span { background: var(--red); color: #fff; }
  .about-hero { min-height: 470px; background-position: 62% center; }
  .about-hero__content { padding-bottom: 45px; }
  .about-hero h1 { font-size: 64px; }
  .about-hero p:not(.eyebrow) { font-size: 15px; }
  .about-story__image, .about-approach__image { height: 360px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 225px; }
  .about-trust__badges { width: 100%; }
  .about-trust__badges span { min-width: 0; flex: 1; }
  .about-approach__checks { grid-template-columns: 1fr; }
}

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

/* WordPress integration */
body.admin-bar .site-header { top: 32px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-notice { margin: 0 0 18px; padding: 13px 15px; border-radius: 8px; font-size: 13px; font-weight: 700; }
.form-notice--success { background: #f4f4f2; color: #17191c; }
.form-notice--error { background: rgba(239,59,63,.10); color: #d8292e; }
.ru-icon { display: inline-grid; place-items: center; flex: 0 0 auto; line-height: 1; }
.service-card__icon, .feature-list article > span { font-size: 20px; font-weight: 800; }
.hero__stamp .ru-icon { font-size: 23px; }
.trust-strip .ru-icon { width: 28px; color: var(--red); font-size: 23px; }
.button .ru-icon { font-size: 17px; }
.quote__form-card .lead-form button { border: 0; }
.site-main { min-height: 60vh; }
.content-fallback { padding: 100px 0; }
.content-fallback h1 { margin: 0 0 22px; font-size: clamp(42px, 7vw, 74px); line-height: 1; letter-spacing: -.06em; }
.content-fallback .entry-content { max-width: 760px; color: var(--muted); line-height: 1.7; }
.not-found { text-align: center; }

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
