:root {
  --navy: #062f3d;
  --navy-2: #0b4050;
  --yellow: #f6ca25;
  --yellow-2: #ffe46b;
  --cream: #f4f0e7;
  --paper: #fffdf8;
  --ink: #10252c;
  --muted: #5f6b6e;
  --line: #d9d8d0;
  --red: #d92f39;
  --shadow: 0 20px 50px rgba(6, 47, 61, .16);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; background: #fff; padding: 12px 18px; font-weight: 900; }
.skip-link:focus { top: 16px; }

.topbar { background: var(--yellow); color: var(--navy); font-size: .82rem; font-weight: 800; letter-spacing: .02em; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { display: flex; gap: 10px; align-items: center; font-weight: 950; }
.topbar a span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .75; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 253, 248, .96); border-bottom: 1px solid rgba(16, 37, 44, .1); backdrop-filter: blur(12px); }
.header__inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand__mark { width: 45px; height: 45px; display: grid; place-items: center; background: var(--yellow); border: 3px solid var(--navy); transform: rotate(-3deg); }
.brand__mark svg { width: 31px; fill: var(--navy); }
.brand__words { display: grid; line-height: .9; }
.brand__words b { font-family: Impact, "Arial Narrow", sans-serif; font-size: 1.35rem; letter-spacing: .035em; }
.brand__words em { margin-top: 6px; color: var(--red); font-style: normal; font-size: .83rem; font-weight: 950; letter-spacing: .18em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 34px); margin-left: auto; }
.desktop-nav a { position: relative; font-size: .82rem; font-weight: 850; text-transform: uppercase; letter-spacing: .045em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-call { align-self: stretch; min-width: 185px; display: grid; align-content: center; padding: 0 22px; background: var(--navy); color: #fff; margin-left: 10px; }
.header-call__label { color: var(--yellow); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.header-call strong { font-size: 1rem; letter-spacing: .035em; }
.mobile-menu { display: none; margin-left: auto; position: relative; }

.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(135deg, transparent 25%, #fff 25%, #fff 26%, transparent 26%, transparent 75%, #fff 75%, #fff 76%, transparent 76%); background-size: 36px 36px; }
.hero__shape { position: absolute; top: 0; right: 0; width: 48%; height: 100%; background: var(--yellow); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); }
.hero__grid { position: relative; z-index: 2; min-height: 670px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(35px, 6vw, 85px); padding-block: 70px 78px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--yellow); font-size: .76rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 4px; background: currentColor; }
.eyebrow--dark { color: var(--red); }
.hero h1, .section-heading h2, .before-after h2, .area h2, .faq h2, .final-cta h2, .callout h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: .94;
  letter-spacing: .012em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(3.65rem, 6.3vw, 6.9rem); }
.hero h1 mark, .before-after h2 mark { color: var(--yellow); background: none; }
.hero__lead { max-width: 620px; margin: 26px 0 28px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.6vw, 1.15rem); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 23px; border: 0; font-weight: 950; text-transform: uppercase; letter-spacing: .035em; box-shadow: 6px 6px 0 rgba(6, 47, 61, .18); transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 rgba(6, 47, 61, .22); }
.button svg { width: 21px; fill: currentColor; }
.button--yellow { background: var(--yellow); color: var(--navy); }
.button--navy { background: var(--navy); color: #fff; }
.button--large { min-height: 62px; padding-inline: 28px; }
.text-link { font-size: .9rem; font-weight: 900; border-bottom: 2px solid rgba(255,255,255,.45); padding-bottom: 4px; }
.text-link span { color: var(--yellow); margin-left: 4px; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 13px 20px; padding: 0; margin: 30px 0 0; list-style: none; color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 750; }
.hero__ticks li::before { content: "✓"; display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 7px; border-radius: 50%; background: var(--yellow); color: var(--navy); font-weight: 950; }
.hero__visual { position: relative; align-self: stretch; display: grid; place-items: center; }
.hero__photo { width: min(610px, 100%); aspect-ratio: 4 / 4.25; border: 12px solid var(--paper); box-shadow: 18px 20px 0 var(--red), var(--shadow); transform: rotate(2deg); overflow: hidden; background: #d8d4c9; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; }
.hero__badge { position: absolute; top: 35px; right: -20px; width: 132px; height: 132px; display: grid; align-content: center; justify-items: center; background: var(--navy); border: 6px solid var(--yellow); border-radius: 50%; transform: rotate(8deg); box-shadow: 0 12px 30px rgba(0,0,0,.25); line-height: .86; }
.hero__badge b { font-family: Impact, sans-serif; color: var(--yellow); font-size: 2rem; }
.hero__badge span { font-family: Impact, sans-serif; font-size: 1.32rem; }
.hero__badge small { margin-top: 8px; color: var(--yellow); font-weight: 950; letter-spacing: .16em; }
.hero__note { position: absolute; left: -30px; bottom: 46px; padding: 14px 20px; background: var(--paper); color: var(--navy); font-size: .78rem; font-weight: 950; letter-spacing: .05em; text-transform: uppercase; box-shadow: var(--shadow); transform: rotate(-2deg); }

.trust-strip { position: relative; z-index: 5; background: var(--yellow); border-bottom: 1px solid rgba(6,47,61,.14); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-strip__grid > div { min-height: 112px; display: flex; align-items: center; gap: 15px; padding: 22px clamp(16px, 3vw, 38px); border-right: 1px solid rgba(6,47,61,.18); }
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-strip b { font-family: Impact, sans-serif; font-size: 2.3rem; color: rgba(6,47,61,.24); }
.trust-strip span { display: grid; font-size: .78rem; color: rgba(6,47,61,.76); }
.trust-strip strong { color: var(--navy); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }

.section { padding-block: clamp(76px, 9vw, 120px); }
.section-heading { margin-bottom: 48px; }
.section-heading--split { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 60px; }
.section-heading h2, .faq h2 { max-width: 760px; color: var(--navy); font-size: clamp(2.65rem, 5vw, 5.2rem); }
.section-heading > p, .section-heading > div + p { max-width: 450px; margin: 0; color: var(--muted); }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center h2 { margin-inline: auto; }
.section-heading--center > p { margin: 18px auto 0; }
.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.service-card { position: relative; min-height: 390px; padding: 38px; overflow: hidden; box-shadow: var(--shadow); }
.service-card--photo { display: flex; align-items: end; color: #fff; }
.service-card--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card--photo:hover img { transform: scale(1.035); }
.service-card__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,34,45,.96) 3%, rgba(4,34,45,.2) 75%); }
.service-card__content { position: relative; z-index: 2; }
.service-card__content > span, .service-card__number { display: block; margin-bottom: 18px; color: var(--yellow); font-size: .75rem; font-weight: 950; letter-spacing: .15em; }
.service-card h3 { max-width: 480px; margin: 0 0 13px; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(2rem, 3.2vw, 3.35rem); line-height: .98; text-transform: uppercase; letter-spacing: .02em; }
.service-card p { max-width: 480px; margin: 0; font-size: .93rem; }
.service-card--yellow { background: var(--yellow); color: var(--navy); }
.service-card--navy { background: var(--navy); color: #fff; }
.service-card--yellow .service-card__number { color: rgba(6,47,61,.45); }
.service-card--navy .service-card__number { color: var(--yellow); }
.service-card__icon { position: absolute; right: 32px; top: 32px; width: 70px; fill: none; stroke: currentColor; stroke-width: 4; opacity: .22; }
.service-card > a { position: absolute; left: 38px; bottom: 36px; font-size: .82rem; font-weight: 950; text-transform: uppercase; border-bottom: 2px solid currentColor; }
.service-card > a span { margin-left: 8px; }

.before-after { padding-block: clamp(78px, 10vw, 135px); background: var(--navy); color: #fff; overflow: hidden; }
.before-after__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.before-after h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.before-after__copy > p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.75); margin: 24px 0 30px; }
.comparison { position: relative; min-height: 570px; }
.comparison__card { position: absolute; margin: 0; background: #fff; padding: 9px 9px 46px; box-shadow: 0 28px 55px rgba(0,0,0,.32); }
.comparison__card img { width: 100%; height: 100%; object-fit: cover; }
.comparison__card figcaption { position: absolute; left: 20px; bottom: 13px; color: var(--navy); font-size: .78rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.comparison__card--before { left: 0; top: 0; width: 47%; height: 485px; transform: rotate(-4deg); }
.comparison__card--after { right: 0; bottom: 0; width: 62%; height: 440px; transform: rotate(3deg); }
.comparison__card--after figcaption { color: var(--red); }

.process { background: var(--paper); }
.process__layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: clamp(35px, 7vw, 90px); align-items: center; margin-top: 60px; }
.process__photo { margin: 0; position: relative; padding: 12px; background: var(--yellow); transform: rotate(-1.5deg); box-shadow: var(--shadow); }
.process__photo img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.process__photo figcaption { padding: 16px 8px 6px; color: var(--navy); font-size: .76rem; font-weight: 900; text-align: center; text-transform: uppercase; }
.process__steps { list-style: none; padding: 0; margin: 0; }
.process__steps li { display: grid; grid-template-columns: 78px 1fr; gap: 24px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process__steps li:first-child { padding-top: 0; }
.process__steps li > span { display: grid; place-items: center; width: 68px; height: 68px; background: var(--navy); color: var(--yellow); font-family: Impact, sans-serif; font-size: 2.4rem; box-shadow: 6px 6px 0 var(--yellow); }
.process__steps h3 { margin: 0 0 7px; color: var(--navy); font-size: 1.28rem; }
.process__steps p { margin: 0; color: var(--muted); }

.callout { position: relative; overflow: hidden; background: var(--yellow); color: var(--navy); }
.callout__pattern { position: absolute; inset: 0; opacity: .1; background-image: repeating-linear-gradient(-55deg, transparent, transparent 20px, var(--navy) 21px, var(--navy) 24px); }
.callout__inner { position: relative; z-index: 2; min-height: 240px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.callout p { margin: 0 0 4px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.callout h2 { font-size: clamp(3rem, 6vw, 6rem); }
.callout a { display: grid; flex: 0 0 auto; padding: 24px 30px; background: var(--navy); color: #fff; box-shadow: 9px 9px 0 rgba(6,47,61,.18); }
.callout a small { color: var(--yellow); text-transform: uppercase; font-weight: 900; letter-spacing: .12em; }
.callout a strong { font-size: clamp(1.5rem, 3vw, 2.2rem); }

.gallery-section { background: var(--cream); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 16px; }
.gallery__item { position: relative; margin: 0; overflow: hidden; grid-column: span 4; box-shadow: 0 13px 28px rgba(6,47,61,.12); }
.gallery__item--tall { grid-column: span 7; grid-row: span 2; }
.gallery__item--wide { grid-column: span 5; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery__item:hover img { transform: scale(1.035); }
.gallery__item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(3,30,39,.8)); }
.gallery__item figcaption { position: absolute; z-index: 2; left: 19px; bottom: 15px; color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; font-size: .75rem; }

.area { background: var(--navy); color: #fff; padding-block: clamp(80px, 10vw, 130px); overflow: hidden; }
.area__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.area__visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.area__rings { position: absolute; inset: 0; display: grid; place-items: center; }
.area__rings i { position: absolute; border: 2px solid rgba(246,202,37,.32); border-radius: 50%; }
.area__rings i:nth-child(1) { width: 190px; height: 190px; }
.area__rings i:nth-child(2) { width: 320px; height: 320px; }
.area__rings i:nth-child(3) { width: 450px; height: 450px; }
.area__rings b { width: 28px; height: 28px; border: 7px solid var(--yellow); border-radius: 50%; box-shadow: 0 0 0 12px rgba(246,202,37,.18); }
.area__visual > span { position: absolute; bottom: 93px; padding: 7px 13px; background: var(--yellow); color: var(--navy); font-size: .72rem; font-weight: 950; letter-spacing: .13em; }
.area h2 { font-size: clamp(3.4rem, 6vw, 6.5rem); }
.area__copy > p:not(.eyebrow) { max-width: 500px; margin: 24px 0 30px; color: rgba(255,255,255,.75); }

.faq { background: var(--paper); }
.faq__grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(45px, 8vw, 105px); }
.faq__grid > div:first-child > p:last-child { color: var(--muted); max-width: 420px; }
.faq__items details { border-top: 1px solid var(--line); }
.faq__items details:last-child { border-bottom: 1px solid var(--line); }
.faq__items summary { cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; color: var(--navy); font-size: 1.05rem; font-weight: 850; list-style: none; }
.faq__items summary::-webkit-details-marker { display: none; }
.faq__items summary span { color: var(--red); font-size: 1.4rem; transition: transform .2s ease; }
.faq__items details[open] summary span { transform: rotate(45deg); }
.faq__items details p { margin: -7px 45px 24px 0; color: var(--muted); }

.final-cta { padding-block: 70px; background: var(--yellow); color: var(--navy); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta__kicker { display: block; font-size: .78rem; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.final-cta h2 { font-size: clamp(3rem, 6vw, 5.7rem); }
.final-cta .button { flex: 0 0 auto; white-space: nowrap; }

.footer { background: #031e27; color: rgba(255,255,255,.73); padding: 70px 0 110px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .65fr .95fr; gap: 70px; }
.brand--footer { color: #fff; }
.footer__grid > div:first-child > p { max-width: 410px; margin: 22px 0 0; }
.footer h3 { margin: 0 0 18px; color: var(--yellow); font-size: .75rem; text-transform: uppercase; letter-spacing: .13em; }
.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: .88rem; }
.footer__grid a:hover { color: #fff; }
.footer__phone { color: #fff; font-size: 1.42rem; font-weight: 950; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.floating-call { position: fixed; z-index: 500; right: 24px; bottom: 22px; display: flex; align-items: center; gap: 12px; min-width: 245px; padding: 10px 18px 10px 10px; background: var(--yellow); color: var(--navy); border: 3px solid var(--navy); box-shadow: 8px 8px 0 rgba(6,47,61,.35); transition: transform .2s ease; }
.floating-call:hover { transform: translateY(-3px); }
.floating-call__icon { display: grid; place-items: center; width: 45px; height: 45px; background: var(--navy); color: var(--yellow); }
.floating-call svg { width: 23px; fill: currentColor; }
.floating-call > span:last-child { display: grid; line-height: 1.2; }
.floating-call small { font-size: .66rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.floating-call strong { font-size: 1.1rem; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu summary { cursor: pointer; display: grid; gap: 5px; padding: 12px; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 28px; height: 3px; background: var(--navy); }
  .mobile-menu nav { position: absolute; right: 0; top: 58px; width: min(330px, calc(100vw - 40px)); padding: 22px; display: grid; gap: 14px; background: var(--paper); box-shadow: var(--shadow); border-top: 5px solid var(--yellow); }
  .mobile-menu nav > a:not(.button) { padding-bottom: 10px; border-bottom: 1px solid var(--line); font-weight: 850; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero__badge { right: -10px; }
  .hero__note { left: -10px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 680px); }
  .topbar__inner > span { display: none; }
  .topbar__inner { justify-content: center; }
  .header__inner { min-height: 74px; }
  .header-call { display: none; }
  .hero__shape { width: 100%; height: 38%; top: auto; bottom: 0; clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%); }
  .hero__grid { grid-template-columns: 1fr; padding-top: 62px; }
  .hero__copy { max-width: 680px; }
  .hero__visual { min-height: 550px; }
  .hero__photo { height: 490px; aspect-ratio: auto; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid > div { min-height: 90px; border-right: 0; border-bottom: 1px solid rgba(6,47,61,.16); }
  .section-heading--split { grid-template-columns: 1fr; gap: 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .before-after__grid, .process__layout, .area__grid, .faq__grid { grid-template-columns: 1fr; }
  .before-after__copy { max-width: 650px; }
  .process__photo { max-width: 540px; margin-inline: auto; }
  .callout__inner, .final-cta__inner { flex-direction: column; align-items: flex-start; padding-block: 50px; }
  .gallery { grid-auto-rows: 230px; }
  .gallery__item, .gallery__item--wide { grid-column: span 5; }
  .gallery__item--tall { grid-column: span 7; }
  .area__visual { order: 2; min-height: 410px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { padding-bottom: 76px; }
  .topbar { display: none; }
  .brand__mark { width: 39px; height: 39px; }
  .brand__words b { font-size: 1.05rem; }
  .brand__words em { font-size: .66rem; }
  .hero__grid { min-height: auto; padding: 48px 0 66px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 4.8rem); }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero__ticks { display: grid; }
  .hero__visual { min-height: 410px; }
  .hero__photo { height: 370px; border-width: 8px; box-shadow: 11px 13px 0 var(--red), var(--shadow); }
  .hero__badge { width: 105px; height: 105px; top: 0; right: -4px; border-width: 4px; }
  .hero__badge b { font-size: 1.5rem; }
  .hero__badge span { font-size: 1rem; }
  .hero__badge small { font-size: .54rem; }
  .hero__note { bottom: 20px; font-size: .65rem; }
  .section { padding-block: 76px; }
  .section-heading h2, .faq h2 { font-size: 3rem; }
  .service-card { min-height: 365px; padding: 28px; }
  .service-card > a { left: 28px; bottom: 28px; }
  .comparison { min-height: 490px; }
  .comparison__card--before { width: 60%; height: 390px; }
  .comparison__card--after { width: 70%; height: 330px; }
  .process__steps li { grid-template-columns: 58px 1fr; gap: 16px; }
  .process__steps li > span { width: 52px; height: 52px; font-size: 1.9rem; }
  .callout a { width: 100%; padding: 20px; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery__item, .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .area__grid { gap: 30px; }
  .area__rings i:nth-child(3) { width: 330px; height: 330px; }
  .area__rings i:nth-child(2) { width: 250px; height: 250px; }
  .area__rings i:nth-child(1) { width: 150px; height: 150px; }
  .area__visual { min-height: 340px; }
  .area__visual > span { bottom: 58px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid > div:first-child { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
  .floating-call { left: 0; right: 0; bottom: 0; min-width: 0; width: 100%; justify-content: center; border-width: 0; border-top: 3px solid var(--navy); box-shadow: 0 -8px 25px rgba(6,47,61,.18); }
}

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