:root {
    --ink-950: #030913;
    --ink-900: #07111f;
    --ink-850: #0a1625;
    --ink-800: #0e1d30;
    --ink-750: #13263a;
    --steel-50: #effbff;
    --steel-100: #d7f4ff;
    --steel-200: #afe7fb;
    --steel-300: #72d7ff;
    --steel-400: #3bc2ef;
    --steel-500: #18a7d8;
    --steel-600: #0784b0;
    --steel-700: #086b8d;
    --slate-50: #f7fafc;
    --slate-100: #eaf0f5;
    --slate-200: #d3dde7;
    --slate-300: #afbdca;
    --slate-400: #8394a6;
    --slate-500: #66788c;
    --white: #fff;
    --success: #45d7a0;
    --warning: #ffc86b;
    --danger: #ff7c86;
    --shell: min(100% - 2rem, 108rem);
    --radius-sm: .75rem;
    --radius-md: 1.125rem;
    --radius-lg: 1.65rem;
    --radius-xl: 2rem;
    --shadow-soft: 0 1.25rem 4rem rgba(0, 0, 0, .24);
    --shadow-card: 0 1.25rem 3rem rgba(0, 0, 0, .2);
    --header-height: 4.75rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + .75rem);
    background: var(--ink-950);
}

body {
    margin: 0;
    min-width: 20rem;
    overflow-x: hidden;
    color: var(--slate-200);
    background:
        radial-gradient(circle at 10% 8%, rgba(24, 167, 216, .1), transparent 26rem),
        radial-gradient(circle at 86% 28%, rgba(59, 194, 239, .08), transparent 32rem),
        var(--ink-900);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
    overflow: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: '';
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 3rem 3rem;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: .2rem solid var(--steel-300);
    outline-offset: .2rem;
}

::selection {
    color: var(--ink-950);
    background: var(--steel-300);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
}

.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 9999;
    padding: .7rem 1rem;
    border-radius: .65rem;
    color: var(--ink-950);
    background: var(--steel-300);
    font-weight: 800;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.topbar {
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: var(--slate-300);
    background: var(--ink-950);
    font-size: .88rem;
}

.topbar__inner,
.topbar__links,
.topbar__links a,
.topbar__location {
    align-items: center;
}

.topbar__inner {
    min-height: 2.5rem;
    justify-content: space-between;
}

.topbar__links {
    gap: 1.25rem;
}

.topbar__links a,
.topbar__location {
    gap: .4rem;
}

.topbar__links a:hover {
    color: var(--steel-300);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(3, 9, 19, .88);
    backdrop-filter: blur(1.25rem);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(59, 194, 239, .18);
    background: rgba(3, 9, 19, .96);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .22);
}

.header__inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    gap: .75rem;
}

.brand {
    width: min(10.75rem, 47vw);
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: auto;
}

.desktop-nav,
.header__cta {
    display: none;
}

.header__cta {
    display: none !important;
}

.menu-toggle {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    margin-left: auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .85rem;
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
}

.menu-toggle .icon {
    width: 1.45rem;
    height: 1.45rem;
}

.menu-toggle__close {
    display: none;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__open {
    display: none;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__close {
    display: block;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(59, 194, 239, .15);
    background: rgba(3, 9, 19, .99);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .35);
}

.mobile-menu__inner {
    display: grid;
    gap: .3rem;
    padding-block: .8rem 1.2rem;
}

.mobile-menu a:not(.button) {
    padding: .75rem .85rem;
    border-radius: .7rem;
    color: var(--slate-200);
    font-size: 1.08rem;
    font-weight: 700;
}

.mobile-menu a:not(.button):hover {
    color: var(--white);
    background: rgba(255, 255, 255, .05);
}

.button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.15rem;
    border: 1px solid transparent;
    border-radius: .9rem;
    color: var(--ink-950);
    background: var(--steel-300);
    box-shadow: 0 .8rem 2rem rgba(24, 167, 216, .2);
    font-weight: 900;
    line-height: 1.1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover {
    background: var(--steel-200);
    box-shadow: 0 1rem 2.3rem rgba(24, 167, 216, .3);
    transform: translateY(-.12rem);
}

.button:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.button--primary {
    background: linear-gradient(135deg, var(--steel-300), var(--steel-500));
}

.button--ghost {
    border-color: rgba(255, 255, 255, .16);
    color: var(--white);
    background: rgba(255, 255, 255, .055);
    box-shadow: none;
}

.button--ghost:hover {
    border-color: rgba(114, 215, 255, .4);
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    box-shadow: none;
}

.button--light {
    color: var(--ink-950);
    background: var(--white);
    box-shadow: none;
}

.button--light:hover {
    background: var(--steel-100);
}

.button--small {
    min-height: 2.75rem;
    padding: .7rem 1rem;
    border-radius: .75rem;
    font-size: .95rem;
}

.button--full,
.button--wide {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--steel-300);
    font-weight: 800;
}

.text-link .icon {
    transition: transform .2s ease;
}

.text-link:hover .icon {
    transform: translateX(.2rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
    color: var(--steel-300);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span:first-child {
    width: 2rem;
    height: 1px;
    background: var(--steel-300);
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    isolation: isolate;
}

.hero__image,
.hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    z-index: -3;
    object-fit: cover;
    object-position: 52% center;
    filter: saturate(.85) contrast(1.05) brightness(.72);
    transform: scale(1.03);
}

.hero__veil {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(3, 9, 19, .26), rgba(3, 9, 19, .86) 90%),
        linear-gradient(90deg, rgba(3, 9, 19, .94), rgba(3, 9, 19, .55) 65%, rgba(3, 9, 19, .2));
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 10rem;
    content: '';
    background: linear-gradient(to bottom, transparent, var(--ink-900));
}

.hero__layout {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    gap: 2rem;
    padding-block: 4.25rem 3.5rem;
}

.hero__content {
    max-width: 52rem;
}

.hero h1 {
    max-width: 15ch;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: clamp(2.55rem, 10vw, 4.65rem);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: .98;
}

.hero h1 em {
    color: var(--steel-300);
    font-style: normal;
}

.hero__lead {
    max-width: 42rem;
    margin-bottom: 1.75rem;
    color: var(--slate-100);
    font-size: clamp(1.08rem, 3.6vw, 1.35rem);
    line-height: 1.6;
}

.hero__actions {
    display: grid;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1rem;
    color: var(--slate-200);
    font-size: .92rem;
    font-weight: 700;
}

.hero__facts span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
}

.hero__facts .icon {
    color: var(--success);
}

.hero-card {
    align-self: end;
    padding: 1.35rem;
    border: 1px solid rgba(114, 215, 255, .2);
    border-radius: var(--radius-lg);
    background: rgba(7, 17, 31, .82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(1.25rem);
}

.hero-card__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    place-items: center;
    border-radius: .9rem;
    color: var(--ink-950);
    background: var(--steel-300);
}

.hero-card__label {
    margin-bottom: .15rem;
    color: var(--slate-400);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-card__phone {
    display: block;
    margin-bottom: .75rem;
    color: var(--white);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.15;
}

.hero-card > p:not(.hero-card__label) {
    margin-bottom: .9rem;
    color: var(--slate-300);
}

.hero-card__rating {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: .3rem .7rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-card__rating .stars {
    grid-column: 1 / -1;
}

.hero-card__rating strong {
    color: var(--white);
}

.hero-card__rating span {
    color: var(--slate-400);
    font-size: .9rem;
}

.stars {
    color: var(--warning);
    letter-spacing: .08em;
    line-height: 1;
}

.trust-strip {
    position: relative;
    z-index: 2;
    border-block: 1px solid rgba(255, 255, 255, .08);
    background: rgba(5, 13, 24, .82);
}

.trust-strip__grid {
    display: grid;
}

.trust-strip__grid > div {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.trust-strip__grid > div:last-child {
    border-bottom: 0;
}

.trust-strip__grid .icon {
    width: 1.7rem;
    height: 1.7rem;
    color: var(--steel-300);
}

.trust-strip__grid span {
    display: grid;
    color: var(--slate-400);
    font-size: .9rem;
    line-height: 1.35;
}

.trust-strip__grid strong {
    color: var(--white);
    font-size: 1rem;
}

.section {
    position: relative;
    padding-block: 4.75rem;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading h2,
.split-feature__content h2,
.contact-copy h2,
.rating-copy h2,
.faq-intro h2,
.cta-band h2 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: clamp(2.15rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.section-heading > p,
.section-heading--split > p,
.section-heading--center > p,
.lead {
    color: var(--slate-300);
    font-size: 1.08rem;
    line-height: 1.7;
}

.section-heading--center {
    max-width: 52rem;
    margin-inline: auto;
    margin-bottom: 2.25rem;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.services-grid {
    display: grid;
    gap: 1rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(19, 38, 58, .92), rgba(7, 17, 31, .96));
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    border-color: rgba(114, 215, 255, .25);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .3);
    transform: translateY(-.25rem);
}

.service-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.service-card__media::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(to top, rgba(7, 17, 31, .75), transparent 58%);
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-card:hover .service-card__media img {
    transform: scale(1.045);
}

.service-card__number {
    position: absolute;
    right: 1rem;
    bottom: .7rem;
    z-index: 1;
    color: rgba(255, 255, 255, .82);
    font-size: 2.2rem;
    font-weight: 900;
}

.service-card__body {
    padding: 1.3rem;
}

.service-card h3 {
    margin-bottom: .3rem;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.2;
}

.service-card__body > strong {
    display: block;
    margin-bottom: .7rem;
    color: var(--steel-300);
}

.service-card p {
    margin-bottom: 1rem;
    color: var(--slate-300);
}

.section--dark {
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, .07);
    background:
        radial-gradient(circle at 85% 18%, rgba(24, 167, 216, .12), transparent 28rem),
        var(--ink-950);
}

.split-feature {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.split-feature__visual {
    position: relative;
    min-height: 22rem;
}

.split-feature__visual > img {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.split-feature__visual::before {
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: -1;
    width: 7rem;
    height: 7rem;
    border-top: .25rem solid var(--steel-300);
    border-left: .25rem solid var(--steel-300);
    border-radius: .5rem 0 0;
    content: '';
    opacity: .45;
}

.split-feature__badge {
    position: absolute;
    right: .8rem;
    bottom: .8rem;
    left: .8rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
    background: rgba(3, 9, 19, .88);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(1rem);
}

.split-feature__badge > .icon {
    width: 2rem;
    height: 2rem;
    color: var(--steel-300);
}

.split-feature__badge span {
    display: grid;
    color: var(--slate-300);
    font-size: .9rem;
}

.split-feature__badge strong {
    color: var(--white);
    font-size: 1rem;
}

.split-feature__content .lead {
    margin-bottom: 1.4rem;
}

.check-list {
    display: grid;
    gap: 1rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.check-list li > .icon {
    width: 1.35rem;
    height: 1.35rem;
    margin-top: .15rem;
    padding: .22rem;
    border-radius: 50%;
    color: var(--ink-950);
    background: var(--success);
}

.check-list span {
    display: grid;
    color: var(--slate-300);
}

.check-list strong {
    color: var(--white);
}

.section--gallery {
    background: linear-gradient(180deg, var(--ink-900), var(--ink-850));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
}

.gallery-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: .9rem;
    background: var(--ink-800);
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    gap: .5rem;
    padding: .8rem;
    color: var(--white);
    background: linear-gradient(to top, rgba(3, 9, 19, .9), transparent 65%);
    opacity: 0;
    transition: opacity .25s ease;
}

.gallery-item__overlay span {
    overflow: hidden;
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-item:hover img {
    filter: brightness(.9);
    transform: scale(1.045);
}

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay {
    opacity: 1;
}

.gallery-more {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .03);
}

.gallery-more p {
    margin: 0;
    color: var(--slate-300);
}

.gallery-more strong {
    color: var(--white);
}

.section--process {
    background:
        radial-gradient(circle at 20% 20%, rgba(24, 167, 216, .08), transparent 23rem),
        var(--ink-900);
}

.process-grid {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    counter-reset: process;
    list-style: none;
}

.process-grid li {
    position: relative;
    min-height: 16rem;
    padding: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    background: rgba(14, 29, 48, .72);
}

.process-grid li > span {
    position: absolute;
    top: .4rem;
    right: .8rem;
    color: rgba(114, 215, 255, .08);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
}

.process-grid li > .icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1.25rem;
    color: var(--steel-300);
}

.process-grid h3 {
    margin-bottom: .6rem;
    color: var(--white);
    font-size: 1.4rem;
}

.process-grid p {
    margin: 0;
    color: var(--slate-300);
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding-block: 3.2rem;
    color: var(--ink-950);
    background: linear-gradient(135deg, var(--steel-300), var(--steel-500));
}

.cta-band::before {
    position: absolute;
    top: -8rem;
    right: -4rem;
    width: 20rem;
    height: 20rem;
    border: 2.8rem solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: '';
}

.cta-band__inner {
    position: relative;
    display: grid;
    gap: 1.4rem;
    align-items: center;
}

.cta-band .eyebrow {
    color: rgba(3, 9, 19, .75);
}

.cta-band .eyebrow > span:first-child {
    background: rgba(3, 9, 19, .75);
}

.cta-band h2 {
    max-width: 20ch;
    margin-bottom: 0;
    color: var(--ink-950);
    font-size: clamp(2rem, 7vw, 3.45rem);
}

.section--contact {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: var(--ink-950);
}

.contact-layout {
    display: grid;
    gap: 2.2rem;
    align-items: start;
}

.contact-copy .lead {
    margin-bottom: 1.5rem;
}

.contact-cards {
    display: grid;
    gap: .75rem;
}

.contact-cards > * {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-width: 0;
    padding: .95rem 1rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .9rem;
    background: rgba(255, 255, 255, .035);
}

.contact-cards > a:hover {
    border-color: rgba(114, 215, 255, .3);
    background: rgba(114, 215, 255, .06);
}

.contact-cards > * > .icon {
    width: 1.55rem;
    height: 1.55rem;
    color: var(--steel-300);
}

.contact-cards span {
    display: grid;
    min-width: 0;
}

.contact-cards small {
    color: var(--slate-400);
}

.contact-cards strong {
    overflow-wrap: anywhere;
    color: var(--white);
    line-height: 1.25;
}

.form-card,
.offer-step {
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(19, 38, 58, .92), rgba(7, 17, 31, .96));
    box-shadow: var(--shadow-soft);
}

.form-card {
    padding: 1.25rem;
}

.form-card__header {
    margin-bottom: 1.25rem;
}

.form-card__step {
    display: inline-flex;
    margin-bottom: .55rem;
    padding: .32rem .65rem;
    border-radius: 999px;
    color: var(--steel-200);
    background: rgba(59, 194, 239, .1);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-card h3,
.offer-step h3 {
    margin-bottom: .3rem;
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1.2;
}

.form-card__header p,
.offer-step__heading p {
    margin: 0;
    color: var(--slate-400);
}

.field-grid {
    display: grid;
    gap: 1rem;
}

.field {
    display: grid;
    gap: .42rem;
    margin-bottom: 1rem;
    color: var(--slate-200);
    font-weight: 700;
}

.field span {
    font-size: .94rem;
}

.field input,
.field textarea,
.dimension-field input,
.dimension-field textarea {
    width: 100%;
    min-height: 3.25rem;
    padding: .85rem .9rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .78rem;
    outline: 0;
    color: var(--white);
    background: rgba(3, 9, 19, .55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea,
.dimension-field textarea {
    min-height: 8rem;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder,
.dimension-field input::placeholder,
.dimension-field textarea::placeholder {
    color: var(--slate-500);
}

.field input:focus,
.field textarea:focus,
.dimension-field input:focus,
.dimension-field textarea:focus {
    border-color: var(--steel-300);
    background: rgba(3, 9, 19, .82);
    box-shadow: 0 0 0 .22rem rgba(59, 194, 239, .12);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin: .2rem 0 1.15rem;
    color: var(--slate-300);
    font-size: .9rem;
    line-height: 1.45;
}

.consent input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .1rem;
    flex: 0 0 auto;
    accent-color: var(--steel-400);
}

.link-button,
.footer-link,
.cookie-note button:not(.button) {
    display: inline;
    padding: 0;
    border: 0;
    color: var(--steel-300);
    background: none;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: .16em;
    cursor: pointer;
}

.form-status {
    min-height: 1.45rem;
    margin: .8rem 0 0;
    color: var(--slate-300);
    font-size: .92rem;
    text-align: center;
}

.form-status.is-error {
    color: var(--danger);
}

.form-status.is-success {
    color: var(--success);
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.section--offer {
    background:
        radial-gradient(circle at 80% 12%, rgba(24, 167, 216, .1), transparent 30rem),
        var(--ink-900);
}

.offer-form {
    display: grid;
    gap: 1rem;
}

.offer-step {
    padding: 1.2rem;
}

.offer-step__heading {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: 1.25rem;
}

.offer-step__heading > span {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: .72rem;
    color: var(--ink-950);
    background: var(--steel-300);
    font-weight: 900;
}

.offer-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
}

.offer-type {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1rem;
    color: var(--white);
    background: var(--ink-850);
    cursor: pointer;
    text-align: left;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.offer-type:hover {
    border-color: rgba(114, 215, 255, .35);
    transform: translateY(-.1rem);
}

.offer-type[aria-pressed='true'] {
    border-color: var(--steel-300);
    box-shadow: 0 0 0 .2rem rgba(59, 194, 239, .12), 0 1rem 2rem rgba(0, 0, 0, .2);
}

.offer-type > img {
    width: 100%;
    height: clamp(7.5rem, 28vw, 10rem);
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, rgba(8, 20, 38, .9), rgba(5, 14, 28, .98));
}

.offer-type > span {
    display: grid;
    padding: .75rem;
    line-height: 1.2;
}

.offer-type strong {
    overflow: hidden;
    font-size: .95rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.offer-type small {
    margin-top: .22rem;
    overflow: hidden;
    color: var(--slate-400);
    font-size: .75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.offer-type > i {
    position: absolute;
    top: .55rem;
    right: .55rem;
    display: none;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border-radius: 50%;
    color: var(--ink-950);
    background: var(--steel-300);
    box-shadow: 0 .45rem 1rem rgba(0, 0, 0, .25);
}

.offer-type[aria-pressed='true'] > i {
    display: grid;
}

.offer-type > i .icon {
    width: 1rem;
    height: 1rem;
}

.offer-dimensions[hidden] {
    display: none;
}

.dimension-grid {
    display: grid;
    gap: .8rem;
}

.dimension-card {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1rem;
    background: rgba(3, 9, 19, .4);
}

.dimension-card h4 {
    margin: 0 0 .8rem;
    color: var(--steel-200);
    font-size: 1.15rem;
}

.dimension-fields {
    display: grid;
    gap: .75rem;
}

.dimension-field {
    display: grid;
    gap: .35rem;
    color: var(--slate-300);
    font-size: .88rem;
    font-weight: 700;
}

.form-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: .45rem;
    margin: .9rem 0 0;
    color: var(--slate-400);
    font-size: .86rem;
    text-align: center;
}

.form-note .icon {
    margin-top: .1rem;
    color: var(--steel-300);
}

.section--rating {
    border-block: 1px solid rgba(255, 255, 255, .07);
    background: var(--ink-950);
}

.rating-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.rating-copy > p {
    color: var(--slate-300);
    font-size: 1.08rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.rating-summary > strong {
    color: var(--white);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.rating-summary > div {
    display: grid;
    gap: .35rem;
}

.rating-summary span {
    color: var(--slate-400);
}

.rating-widget {
    padding: 1.4rem;
    border: 1px solid rgba(114, 215, 255, .16);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(19, 38, 58, .86), rgba(7, 17, 31, .96));
    box-shadow: var(--shadow-soft);
}

.rating-widget__label {
    margin-bottom: .85rem;
    color: var(--white);
    font-size: 1.18rem;
    font-weight: 800;
    text-align: center;
}

.rating-buttons {
    display: flex;
    justify-content: center;
    gap: .25rem;
}

.rating-buttons button {
    display: grid;
    width: 2.85rem;
    height: 2.85rem;
    place-items: center;
    padding: 0;
    border: 0;
    color: var(--slate-500);
    background: transparent;
    cursor: pointer;
    transition: color .18s ease, transform .18s ease;
}

.rating-buttons button .icon {
    width: 2.05rem;
    height: 2.05rem;
    fill: currentColor;
}

.rating-buttons button.is-active,
.rating-buttons button:hover {
    color: var(--warning);
    transform: scale(1.08);
}

.rating-buttons.is-locked button {
    cursor: default;
}

.rating-widget__hint,
.rating-message {
    min-height: 1.4rem;
    margin: .45rem 0 1rem;
    color: var(--slate-400);
    font-size: .9rem;
    text-align: center;
}

.rating-message {
    margin-bottom: 0;
    color: var(--success);
}

.rating-bars {
    display: grid;
    gap: .5rem;
}

.rating-bars > div {
    display: grid;
    grid-template-columns: 2.2rem 1fr 1.8rem;
    align-items: center;
    gap: .55rem;
    color: var(--slate-400);
    font-size: .82rem;
}

.rating-bars i {
    height: .42rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.rating-bars b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--warning);
    transition: width .35s ease;
}

.rating-bars em {
    font-style: normal;
    text-align: right;
}

.section--faq {
    background: var(--ink-900);
}

.faq-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.faq-intro > p {
    margin-bottom: 1.25rem;
    color: var(--slate-300);
}

.faq-list {
    display: grid;
    gap: .75rem;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 1rem;
    background: rgba(14, 29, 48, .66);
}

.faq-list details[open] {
    border-color: rgba(114, 215, 255, .22);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: .12rem;
    border-radius: 1rem;
    content: '';
    background: var(--steel-300);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > div {
    padding: 0 1rem 1rem;
}

.faq-list p {
    margin: 0;
    color: var(--slate-300);
}

.site-footer {
    padding-block: 3.5rem 5.5rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: var(--ink-950);
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-brand img {
    width: 12rem;
    height: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 28rem;
    color: var(--slate-400);
}

.site-footer h2 {
    margin-bottom: .8rem;
    color: var(--white);
    font-size: 1.12rem;
}

.site-footer ul {
    display: grid;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li,
.site-footer a:not(.button),
.footer-link {
    color: var(--slate-400);
}

.site-footer a:not(.button):hover,
.footer-link:hover {
    color: var(--steel-300);
}

.footer-link {
    text-decoration: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
}

.footer-contact .icon {
    margin-top: .2rem;
    color: var(--steel-300);
}

.footer-bottom {
    display: grid;
    gap: .5rem;
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: var(--slate-500);
    font-size: .9rem;
}

.footer-bottom p {
    margin: 0;
}

.mobile-actions {
    position: fixed;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: .45rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1rem;
    background: rgba(3, 9, 19, .94);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .35);
    backdrop-filter: blur(1rem);
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
    transition: opacity .25s ease, transform .25s ease;
}

.mobile-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-actions a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: .7rem;
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    font-weight: 800;
}

.mobile-actions a:last-child {
    color: var(--ink-950);
    background: var(--steel-300);
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 5.5rem;
    z-index: 70;
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .8rem;
    color: var(--white);
    background: rgba(3, 9, 19, .88);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(.75rem);
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top .icon {
    transform: rotate(-90deg);
}

.gallery-dialog,
.privacy-dialog,
.notice-dialog {
    max-width: none;
    max-height: none;
    margin: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--slate-200);
    background: var(--ink-900);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, .55);
}

.gallery-dialog::backdrop,
.privacy-dialog::backdrop,
.notice-dialog::backdrop {
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(.45rem);
}

.gallery-dialog {
    width: min(96vw, 100rem);
    height: min(92dvh, 70rem);
    overflow: hidden;
    border-radius: 1rem;
}

.gallery-dialog figure {
    display: grid;
    width: 100%;
    height: 100%;
    margin: 0;
    grid-template-rows: 1fr auto;
}

.gallery-dialog figure img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: #02060c;
}

.gallery-dialog figcaption {
    padding: .85rem 3.5rem;
    color: var(--slate-200);
    background: var(--ink-950);
    font-weight: 700;
    text-align: center;
}

.dialog-close,
.gallery-dialog__nav {
    position: absolute;
    z-index: 4;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: .8rem;
    color: var(--white);
    background: rgba(3, 9, 19, .82);
    cursor: pointer;
    backdrop-filter: blur(.7rem);
}

.dialog-close {
    top: .75rem;
    right: .75rem;
}

.gallery-dialog__nav {
    top: 50%;
    transform: translateY(-50%);
}

.gallery-dialog__nav--prev {
    left: .65rem;
}

.gallery-dialog__nav--next {
    right: .65rem;
}

.gallery-dialog__counter {
    position: absolute;
    top: .85rem;
    left: .85rem;
    z-index: 3;
    padding: .35rem .7rem;
    border-radius: 999px;
    color: var(--white);
    background: rgba(3, 9, 19, .78);
    font-size: .85rem;
    font-weight: 800;
}

.privacy-dialog {
    width: min(94vw, 55rem);
    height: min(92dvh, 52rem);
    overflow: hidden;
    border-radius: 1.2rem;
}

.legal-dialog__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: var(--ink-950);
}

.legal-dialog__header .eyebrow {
    margin-bottom: .45rem;
}

.legal-dialog__header h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.7rem;
}

.dialog-close--inside {
    position: static;
    flex: 0 0 auto;
}

.legal-content {
    height: calc(100% - 7rem);
    overflow-y: auto;
    padding: 1.2rem;
}

.legal-content h3 {
    margin: 1.5rem 0 .5rem;
    color: var(--steel-200);
    font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
    color: var(--slate-300);
}

.legal-content a {
    color: var(--steel-300);
    text-decoration: underline;
}

.legal-date {
    text-align: right;
}

.notice-dialog {
    width: min(90vw, 28rem);
    padding: 1.5rem;
    border-radius: 1.2rem;
    text-align: center;
}

.notice-dialog__icon {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    place-items: center;
    border-radius: 50%;
    color: var(--ink-950);
    background: var(--success);
}

.notice-dialog.is-error .notice-dialog__icon {
    color: var(--white);
    background: var(--danger);
}

.notice-dialog h2 {
    margin-bottom: .5rem;
    color: var(--white);
}

.notice-dialog p {
    margin-bottom: 1.2rem;
    color: var(--slate-300);
}

.cookie-note {
    position: fixed;
    right: .75rem;
    bottom: 5.4rem;
    left: .75rem;
    z-index: 90;
    display: grid;
    gap: .8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
    background: rgba(3, 9, 19, .97);
    box-shadow: var(--shadow-soft);
}

.cookie-note[hidden] {
    display: none;
}

.cookie-note p {
    margin: 0;
    color: var(--slate-300);
    font-size: .9rem;
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity .65s ease, transform .65s ease;
}

.js [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

@media (min-width: 36rem) {
    :root {
        --shell: min(100% - 3rem, 108rem);
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        gap: .8rem;
    }

    .gallery-item--wide {
        grid-column: span 2;
        aspect-ratio: 16 / 8;
    }

    .gallery-more,
    .cta-band__inner,
    .footer-bottom {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .contact-cards,
    .field-grid--two,
    .dimension-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-type-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cookie-note {
        right: 1rem;
        bottom: 1rem;
        left: auto;
        width: min(28rem, calc(100vw - 2rem));
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

@media (min-width: 48rem) {
    :root {
        --header-height: 5.25rem;
    }

    .section {
        padding-block: 6rem;
    }

    .hero__layout {
        padding-block: 5rem 4rem;
    }

    .hero-card {
        max-width: 28rem;
    }

    .trust-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip__grid > div {
        padding: 1.15rem;
        border-right: 1px solid rgba(255, 255, 255, .07);
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .trust-strip__grid > div:nth-child(2n) {
        border-right: 0;
    }

    .trust-strip__grid > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .section-heading--split {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
        gap: 2rem;
        align-items: end;
    }

    .section-heading--split > p {
        margin-bottom: .35rem;
    }

    .service-card__body,
    .form-card,
    .offer-step,
    .rating-widget {
        padding: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gallery-item--wide {
        grid-column: span 2;
        aspect-ratio: 8 / 5;
    }

    .process-grid li {
        min-height: 17rem;
        padding: 1.65rem;
    }

    .button--wide {
        width: auto;
        min-width: 15rem;
    }

    .site-footer {
        padding-bottom: 3.5rem;
    }

    .mobile-actions {
        display: none;
    }

    .back-to-top {
        bottom: 1.25rem;
    }
}

@media (min-width: 64rem) {
    .topbar,
    .topbar__inner,
    .topbar__links,
    .topbar__links a,
    .topbar__location {
        display: flex;
    }

    .site-header {
        top: 0;
    }

    .brand {
        width: 12.5rem;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: clamp(.7rem, 1.6vw, 1.65rem);
        margin-left: auto;
    }

    .desktop-nav a {
        position: relative;
        padding: .75rem .1rem;
        color: var(--slate-300);
        font-weight: 800;
    }

    .desktop-nav a::after {
        position: absolute;
        right: 0;
        bottom: .45rem;
        left: 0;
        height: .12rem;
        content: '';
        background: var(--steel-300);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .2s ease;
    }

    .desktop-nav a:hover {
        color: var(--white);
    }

    .desktop-nav a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .header__cta {
        display: inline-flex !important;
        margin-left: clamp(.5rem, 1.5vw, 1.25rem);
    }

    .menu-toggle,
    .mobile-menu {
        display: none !important;
    }

    .hero {
        min-height: min(52rem, calc(100svh - 7.75rem));
    }

    .hero__layout {
        min-height: min(52rem, calc(100svh - 7.75rem));
        grid-template-columns: minmax(0, 1.5fr) minmax(20rem, .5fr);
        gap: 4rem;
        padding-block: 5rem;
    }

    .hero__image {
        object-position: center;
    }

    .hero__veil {
        background:
            linear-gradient(180deg, rgba(3, 9, 19, .16), rgba(3, 9, 19, .72) 92%),
            linear-gradient(90deg, rgba(3, 9, 19, .96), rgba(3, 9, 19, .58) 52%, rgba(3, 9, 19, .18));
    }

    .hero-card {
        align-self: center;
        padding: 1.7rem;
    }

    .trust-strip__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .trust-strip__grid > div,
    .trust-strip__grid > div:nth-child(2n) {
        padding: 1.3rem 1.4rem;
        border-right: 1px solid rgba(255, 255, 255, .07);
        border-bottom: 0;
    }

    .trust-strip__grid > div:last-child {
        border-right: 0;
    }

    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-card:nth-child(even) {
        transform: translateY(1.5rem);
    }

    .service-card:nth-child(even):hover {
        transform: translateY(1.25rem);
    }

    .split-feature,
    .contact-layout,
    .rating-layout,
    .faq-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(3rem, 6vw, 6.5rem);
    }

    .split-feature__visual,
    .split-feature__visual > img {
        min-height: 36rem;
    }

    .split-feature__badge {
        right: -1.5rem;
        bottom: 2rem;
        left: auto;
        width: 22rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .process-grid li:nth-child(even) {
        margin-top: 1.5rem;
    }

    .contact-copy {
        position: sticky;
        top: calc(var(--header-height) + 1.5rem);
    }

    .offer-form {
        gap: 1.25rem;
    }

    .offer-type-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dimension-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rating-layout {
        grid-template-columns: minmax(0, .8fr) minmax(28rem, 1.2fr);
    }

    .faq-layout {
        grid-template-columns: minmax(18rem, .65fr) minmax(0, 1.35fr);
    }

    .faq-intro {
        position: sticky;
        top: calc(var(--header-height) + 1.5rem);
    }

    .footer-grid {
        grid-template-columns: 1.45fr .8fr .8fr 1.05fr;
    }
}

@media (min-width: 90rem) {
    .offer-type-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    :root {
        --shell: min(100% - 6rem, 108rem);
    }

    body {
        font-size: 1.08rem;
    }

    .section {
        padding-block: 7.25rem;
    }

    .hero {
        min-height: 55rem;
    }

    .hero__layout {
        min-height: 55rem;
    }

    .service-card__body {
        padding: 1.8rem;
    }

    .gallery-grid {
        gap: 1rem;
    }
}

@media (min-width: 160rem) {
    :root {
        --shell: min(100% - 10rem, 118rem);
    }

    html {
        font-size: 18px;
    }

    .hero {
        min-height: 62rem;
    }

    .hero__layout {
        min-height: 62rem;
    }
}

@media (hover: none) {
    .gallery-item__overlay {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
