@font-face {
    font-family: "Quicksand";
    src: url("../fonts/quicksand-regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Quicksand";
    src: url("../fonts/quicksand-bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Quicksand";
    src: url("../fonts/quicksand-light.ttf") format("truetype");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Glory";
    src: url("../fonts/glory-bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Glory";
    src: url("../fonts/glory-extra-bold.ttf") format("truetype");
    font-weight: 800;
    font-display: swap;
}

:root {
    --navy: #142e46;
    --blue: #0759aa;
    --sky: #2dace7;
    --yellow: #ffdd1f;
    --ice: #effaff;
    --text: #132d46;
    --white: #fff;
    --shadow: 0 10px 28px rgba(20, 46, 70, .12);
    --radius: 38px;
    --shell: min(1240px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: var(--ice);
    font: 400 17px/1.55 "Quicksand", sans-serif;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

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

h1, h2, h3 {
    font-family: "Glory", sans-serif;
    line-height: .98;
}

h2 { font-size: clamp(3rem, 5vw, 5rem); }

.section-shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 18px;
    color: var(--white);
    background: var(--blue);
    border-radius: 10px;
    transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.button {
    display: inline-flex;
    min-height: 56px;
    padding: 0 38px;
    border: 2px solid transparent;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(20, 46, 70, .15); }
.button { position: relative; overflow: hidden; }
.button::after { content: ""; position: absolute; top: -50%; left: -75%; width: 42%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); transform: rotate(20deg); transition: left .55s ease; }
.button:hover::after { left: 135%; }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.button-yellow { color: #111; background: var(--yellow); }
.button-outline-yellow { color: var(--white); border-color: var(--yellow); background: rgba(8, 46, 80, .28); }
.button-outline-blue { color: var(--text); border-color: var(--sky); background: transparent; }

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 50%;
    width: var(--shell);
    transform: translateX(-50%);
    transition: transform .25s ease;
    animation: header-drop .65s cubic-bezier(.2,.8,.2,1) backwards;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
}

.trust-bar {
    display: flex;
    min-height: 54px;
    padding: 0 44px;
    color: var(--white);
    background: var(--navy);
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}

.trust-bar ul, .top-contact { display: flex; margin: 0; padding: 0; gap: 32px; align-items: center; list-style: none; }
.trust-bar li::before { content: "✓"; margin-right: 9px; color: var(--sky); font-weight: 700; }
.trust-bar a { text-decoration: none; }
.top-contact { gap: 22px; font-weight: 700; }
.top-contact a:last-child { white-space: nowrap; }
.top-contact span { color: var(--sky); }

.nav-bar {
    display: flex;
    min-height: 114px;
    padding: 0 30px 0 44px;
    background: var(--white);
    border-radius: 0 0 34px 34px;
    box-shadow: var(--shadow);
    align-items: center;
}

.brand { display: block; width: 165px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; margin-left: auto; align-items: center; gap: 41px; }
.main-nav a { font-weight: 700; text-decoration: none; white-space: nowrap; }
.main-nav a:hover { color: var(--blue); }
.notification { display: inline-grid; width: 20px; height: 20px; margin-left: 3px; color: var(--white); background: var(--sky); border-radius: 50%; place-items: center; font-size: 12px; }
.nav-quote { min-height: 64px; margin-left: 32px; padding-inline: 36px; }
.mobile-label { display: none; }
.menu-toggle { display: none; }

.hero {
    position: relative;
    display: grid;
    min-height: 935px;
    color: var(--white);
    background: url("../images/hero-home.jpg") center top / cover no-repeat;
    clip-path: ellipse(88% 64% at 50% 35%);
    place-items: center;
}

.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 35, 58, .05) 24%, rgba(4, 71, 129, .64) 83%); }
.hero-content { position: relative; z-index: 1; padding-top: 310px; text-align: center; }
.hero h1 { margin-bottom: 52px; font-size: clamp(4.5rem, 7vw, 7.2rem); font-weight: 800; text-shadow: 0 4px 5px rgba(0,0,0,.3); }
.hero .button { min-width: 250px; }
.hero-content h1 { animation: hero-rise .9s .2s cubic-bezier(.2,.8,.2,1) backwards; }
.hero-content .button { animation: hero-rise .9s .38s cubic-bezier(.2,.8,.2,1) backwards; }

.intro {
    position: relative;
    display: grid;
    min-height: 1020px;
    padding: 145px 0 110px;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.intro-copy { position: relative; }
.intro-copy::after { content: ""; position: absolute; z-index: -1; top: 120px; right: -10px; width: 310px; height: 410px; border: 5px solid rgba(255,255,255,.9); border-left: 0; border-radius: 0 180px 0 0; }
.intro h2 { color: var(--blue); }
.intro h2 span { color: var(--sky); }
.copy-indented { max-width: 430px; margin: 38px 0 0 130px; }
.copy-indented p { margin-bottom: 34px; font-size: 18px; }
.intro-image { width: 100%; max-height: 560px; border-radius: 46px; object-fit: cover; }

.benefits {
    display: grid;
    min-height: 570px;
    padding: 80px 0 130px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.benefits article {
    min-height: 320px;
    padding: 44px 38px;
    background: rgba(255,255,255,.62);
    border-radius: var(--radius);
    text-align: center;
}

.benefit-icon { display: grid; width: 68px; height: 68px; margin: 0 auto 22px; color: var(--white); background: var(--sky); border-radius: 50%; place-items: center; font: 800 32px/1 "Glory"; }
.benefits h3 { margin-bottom: 16px; color: var(--blue); font-size: 29px; }
.benefits p { margin: 0; }

.guarantee { position: relative; min-height: 1040px; overflow: hidden; }
.guarantee-blob { position: absolute; top: 80px; left: -110px; width: 760px; height: 760px; background: rgba(255,255,255,.85); border-radius: 43% 10% 48% 13%; transform: rotate(19deg); }
.guarantee-blob::after { content: ""; position: absolute; inset: 55px -50px -50px 55px; border: 5px solid rgba(255,255,255,.9); border-radius: inherit; }
.guarantee-content { position: relative; display: grid; padding-top: 110px; grid-template-columns: 1fr 1fr; align-items: center; }
.guarantee h2 { margin-left: 120px; color: var(--sky); }
.guarantee .copy-indented { position: relative; z-index: 2; margin-top: 170px; }
.euro-art { display: flex; color: rgba(70, 187, 240, .37); align-items: flex-end; justify-content: center; font: 800 260px/1 "Glory"; transform: rotate(-12deg); }
.euro-art small { margin-left: -45px; color: rgba(255,255,255,.9); font-size: 130px; }
.euro-art span { animation: euro-float 5.2s ease-in-out infinite; }
.euro-art small { animation: euro-float 4.4s .7s ease-in-out infinite reverse; }

.calculator { position: relative; display: grid; min-height: 1180px; padding: 170px 0 220px; grid-template-columns: 1fr 1fr; align-items: center; }
.calculator-images { position: relative; width: 480px; height: 520px; margin: 235px 0 0 80px; }
.calculator-images img { position: absolute; border-radius: 28px; object-fit: cover; filter: saturate(.78) opacity(.9); }
.calculator-images img:first-child { top: 30px; left: 35px; width: 190px; height: 150px; object-position: 45% center; }
.calculator-images img:last-child { right: 0; bottom: 20px; width: 300px; height: 270px; }
.calculator-images::before, .calculator-images::after { content: ""; position: absolute; z-index: -1; width: 175px; height: 205px; background: rgba(218, 243, 255, .76); border-radius: 34px; }
.calculator-images::before { top: 0; left: 110px; }
.calculator-images::after { right: 115px; bottom: 0; }
.calculator-card { position: absolute; z-index: 2; top: 110px; right: 40px; width: 555px; min-height: 650px; padding: 82px 90px 70px; color: var(--white); background: var(--blue); border-radius: 58px; }
.calculator-card h2 { margin-bottom: 30px; font-size: 4rem; }
.calculator-card p { font-size: 17px; }
.calculator-form { display: flex; margin-top: 28px; padding: 8px; background: var(--white); border-radius: 999px; }
.surface-field { display: flex; flex: 1 1 auto; align-items: center; }
.surface-field input { width: 72px; height: 46px; margin-left: 15px; padding: 0; color: var(--text); border: 0; outline: 0; font-weight: 700; text-align: center; }
.surface-field span { color: var(--text); }
.calculator-form .button { min-height: 46px; padding-inline: 23px; border: 0; font-size: 13px; }
.calculator-result { min-height: 26px; margin: 20px 0 0; color: var(--yellow); font-weight: 700; }
.conditions { font-size: 13px; }

.materials { padding: 95px 0 105px; color: var(--white); background: var(--navy); text-align: center; }
.materials h2 { margin-bottom: 38px; font-size: 2rem; }
.logo-row { display: flex; align-items: center; justify-content: center; gap: 75px; flex-wrap: wrap; }
.logo-row img { width: auto; max-width: 180px; height: 70px; object-fit: contain; }
.logo-row img:nth-child(2) { max-width: 195px; }

.quote-section { position: relative; min-height: 1600px; padding-top: 170px; }
.installer-image { width: 100%; height: 720px; background: url("../images/installer.jpg") center / cover no-repeat; clip-path: ellipse(75% 55% at 50% 48%); }
.quote-card { position: relative; z-index: 2; display: grid; width: min(1430px, calc(100% - 10px)); min-height: 760px; margin: -210px auto 0; padding: 100px 110px; color: var(--white); background: var(--blue); border-radius: 62px; grid-template-columns: .95fr 1.05fr; gap: 80px; }
.quote-copy h2 { margin-bottom: 28px; font-size: 6rem; }
.quote-copy address { display: flex; margin-bottom: 24px; flex-direction: column; font-style: normal; }
.quote-copy address a { color: var(--white); font-size: 25px; font-weight: 700; text-decoration: none; }
.quote-copy p { max-width: 570px; }
.google-rating { display: inline-flex; margin-top: 40px; padding: 20px 24px; color: #111; background: var(--white); border-radius: 14px; align-items: center; gap: 18px; }
.google-rating strong { display: flex; align-items: center; gap: 8px; }
.google-rating strong span { color: #4285f4; font-size: 32px; }
.google-rating i { color: #f6b600; font-style: normal; letter-spacing: 1px; }
.insula { width: 240px; margin-top: 30px; opacity: .58; filter: hue-rotate(155deg) saturate(2); }
.quote-form { padding-top: 5px; }
.quote-form label { display: flex; margin-bottom: 16px; flex-direction: column; }
.quote-form em { color: var(--yellow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.quote-form input:not([type="checkbox"]), .quote-form textarea { width: 100%; padding: 14px 22px; color: var(--text); background: var(--white); border: 2px solid transparent; border-radius: 999px; }
.quote-form textarea { border-radius: 22px; resize: vertical; }
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--yellow); outline: 0; }
.privacy-check { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: 10px; font-size: 13px; }
.privacy-check input { margin-top: 4px; }
.quote-form .button { margin-top: 8px; border: 0; }
.form-note { margin: 18px 0 0; }
.form-status { min-height: 24px; margin: 10px 0 0; color: var(--yellow); font-weight: 700; }
.honeypot { position: absolute; left: -9999px; }

.reviews { min-height: 1180px; padding: 130px 0 150px; }
.reviews header { margin-bottom: 110px; text-align: center; }
.reviews h2 { margin-bottom: 14px; color: var(--blue); font-size: 3.4rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-grid article { min-height: 380px; padding: 38px 34px; background: rgba(255,255,255,.72); border-radius: 28px; box-shadow: 0 12px 30px rgba(31, 86, 125, .05); }
.review-grid article, .benefits article { transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.review-grid article:hover, .benefits article:hover { background: rgba(255,255,255,.94); box-shadow: 0 18px 36px rgba(31,86,125,.11); transform: translateY(-8px); }
.review-grid h3 { color: var(--sky); font-size: 26px; }
.stars { color: #ffe36a; font-weight: 700; letter-spacing: 2px; }
.stars span { margin-left: 10px; color: #8292a1; font-weight: 400; letter-spacing: 0; }
.stats { display: grid; margin: 80px 0 0; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stats div { display: flex; flex-direction: column-reverse; }
.stats dt { font-weight: 700; }
.stats dd { margin: 0; color: var(--sky); font: 800 4.5rem/1 "Glory"; }

.site-footer { position: relative; padding-top: 80px; color: var(--white); background: var(--navy); border-radius: 50% 50% 0 0 / 80px 80px 0 0; overflow: hidden; }
.site-footer::after { content: ""; position: absolute; right: -27px; bottom: -26px; width: 534px; height: 510px; background: url("../images/footer-fox.svg") right bottom / contain no-repeat; opacity: .5; }
.footer-inner { position: relative; z-index: 1; padding: 90px 0 25px; }
.footer-cta { display: flex; margin-bottom: 65px; align-items: flex-end; justify-content: space-between; }
.footer-cta h2 { margin-bottom: 0; color: var(--sky); font-size: 5.4rem; }
.footer-cta h2 span { color: var(--white); }
.footer-cta .button { min-width: 250px; }
.footer-materials { margin-bottom: 75px; }
.footer-materials h3 { font-size: 28px; }
.footer-materials .logo-row { justify-content: flex-start; gap: 55px; }
.footer-materials .logo-row img { max-width: 150px; height: 55px; }
.footer-columns { display: grid; grid-template-columns: .8fr 1fr 2fr; gap: 58px; }
.footer-columns h3 { margin: 20px 0 18px; font-size: 30px; }
.footer-columns ul { margin: 0; padding: 0; list-style: none; }
.footer-columns li { margin-bottom: 7px; }
.footer-columns li::before { content: "›"; margin-right: 12px; color: var(--sky); font-size: 26px; font-weight: 800; line-height: 0; }
.footer-columns a { text-decoration: none; }
.footer-columns a:hover { color: var(--sky); }
.work-areas ul { columns: 2; column-gap: 50px; }
.work-areas li { break-inside: avoid; }
.footer-bottom { display: flex; margin-top: 80px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); justify-content: space-between; font-size: 12px; opacity: .75; }

.chat-button { position: fixed; z-index: 90; right: 20px; bottom: 20px; display: grid; width: 62px; height: 62px; background: #0857a8; border: 4px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 6px 16px rgba(0,0,0,.23); place-items: center; }
.chat-button svg { width: 31px; fill: none; stroke: var(--white); stroke-width: 1.8; }
.chat-button { animation: chat-pulse 2.8s ease-in-out infinite; }

.eyebrow {
    margin-bottom: 16px;
    color: var(--sky);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.subpage-hero {
    position: relative;
    display: grid;
    min-height: 720px;
    padding: 250px 0 115px;
    color: var(--white);
    background: var(--navy) var(--subpage-image) center / cover no-repeat;
    align-items: end;
    clip-path: ellipse(92% 67% at 50% 32%);
}

.subpage-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 35, 58, .92) 0%, rgba(8, 35, 58, .68) 48%, rgba(8, 35, 58, .28) 100%);
}

.subpage-hero-content { position: relative; z-index: 1; }
.subpage-hero-content h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(4.2rem, 7vw, 7rem); }
.subpage-hero-content > p:not(.eyebrow) { max-width: 710px; margin-bottom: 32px; font-size: 19px; }
.subpage-hero--article .subpage-hero-content h1,
.subpage-hero--legal .subpage-hero-content h1 { font-size: clamp(3.5rem, 6vw, 6rem); }

.breadcrumbs {
    display: flex;
    margin-top: -10px;
    padding: 28px 0 45px;
    gap: 10px;
    align-items: center;
    color: #587087;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

.breadcrumbs a { color: var(--blue); font-weight: 700; text-decoration: none; }
.breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; }

.editorial-page { padding: 45px 0 130px; }
.content-block {
    display: grid;
    padding: 72px 0;
    border-bottom: 1px solid rgba(20, 46, 70, .1);
    grid-template-columns: minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.content-block--with-image { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr); }
.content-block--reverse .content-block-copy { order: 2; }
.content-block--reverse figure { order: 1; }
.content-block-copy { max-width: 790px; }
.content-block h2 { margin-bottom: 28px; color: var(--blue); font-size: clamp(2.5rem, 4.3vw, 4.5rem); }
.content-block h2::first-line { color: var(--sky); }
.content-block p { max-width: 760px; margin-bottom: 20px; }
.content-block ul { margin: 25px 0 0; padding: 0; list-style: none; }
.content-block li { position: relative; margin-bottom: 12px; padding-left: 32px; }
.content-block li::before { position: absolute; left: 0; color: var(--sky); content: "✓"; font-weight: 700; }
.content-block figure { margin: 0; }
.content-block figure img { width: 100%; min-height: 360px; max-height: 520px; border-radius: 40px; box-shadow: var(--shadow); object-fit: cover; }

.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; color: var(--blue); }
.related-pages, .directory { padding: 90px 0 135px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-grid a {
    position: relative;
    display: flex;
    min-height: 220px;
    padding: 34px;
    background: rgba(255,255,255,.76);
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(31,86,125,.06);
    flex-direction: column;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.related-grid a:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.related-grid span { margin-bottom: 25px; color: var(--sky); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.related-grid strong { max-width: 90%; color: var(--blue); font: 800 27px/1.05 "Glory"; }
.related-grid i { margin-top: auto; color: var(--sky); font-size: 30px; font-style: normal; }

.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.directory-grid a { display: flex; min-height: 125px; padding: 26px; background: var(--white); border-radius: 24px; flex-direction: column; text-decoration: none; }
.directory-grid strong { color: var(--blue); font: 800 24px/1.08 "Glory"; }
.directory-grid span { margin-top: auto; color: var(--sky); font-weight: 700; }

.compact-quote {
    display: grid;
    margin-bottom: 160px;
    padding: 75px 85px;
    color: var(--white);
    background: var(--blue);
    border-radius: 48px;
    box-shadow: var(--shadow);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    align-items: center;
}
.compact-quote h2 { max-width: 790px; margin-bottom: 22px; font-size: clamp(3rem, 5vw, 5rem); }
.compact-quote p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; }
.compact-quote-actions { display: flex; align-items: center; flex-direction: column; gap: 18px; }
.compact-quote .text-link { color: var(--white); font-weight: 700; text-decoration: none; }

.comparison-tool {
    display: grid;
    margin: 55px auto 135px;
    padding: 75px;
    color: var(--white);
    background: var(--blue);
    border-radius: 48px;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}
.comparison-tool h2, .comparison-result h2 { font-size: clamp(3rem, 5vw, 5rem); }
.comparison-tool form { display: grid; gap: 18px; }
.comparison-tool label { display: flex; gap: 8px; flex-direction: column; font-weight: 700; }
.comparison-tool input, .comparison-tool select { width: 100%; min-height: 54px; padding: 0 20px; color: var(--text); background: var(--white); border: 0; border-radius: 999px; }
.comparison-tool .button { justify-self: start; border: 0; }
.comparison-result { margin: 55px auto 135px; padding: 85px; color: var(--white); background: var(--blue); border-radius: 48px; text-align: center; }
.comparison-result > p:not(.eyebrow) { max-width: 720px; margin-inline: auto; }
.result-price { display: flex; margin: 42px auto; flex-direction: column; }
.result-price span { opacity: .8; }
.result-price strong { color: var(--yellow); font: 800 clamp(2.8rem, 6vw, 5.5rem)/1 "Glory"; }

.calculator-result:not(:empty), .form-status:not(:empty) { animation: status-in .35s ease both; }

@keyframes header-drop {
    from { opacity: 0; transform: translateX(-50%) translateY(-25px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(34px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes euro-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-18px) rotate(4deg); }
}

@keyframes chat-pulse {
    0%, 100% { box-shadow: 0 6px 16px rgba(0,0,0,.23), 0 0 0 0 rgba(45,172,231,.22); }
    50% { box-shadow: 0 6px 16px rgba(0,0,0,.23), 0 0 0 12px rgba(45,172,231,0); }
}

@keyframes status-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
    .trust-bar ul li:nth-child(3), .trust-bar ul li:nth-child(4) { display: none; }
    .main-nav { gap: 18px; }
    .main-nav a:nth-child(4), .main-nav a:nth-child(5) { display: none; }
    .copy-indented { margin-left: 40px; }
    .calculator-images { margin-left: 0; }
    .quote-card { padding: 90px 55px; gap: 40px; }
    .footer-cta h2 { font-size: 4.3rem; }
    .site-footer::after { right: -20px; bottom: -20px; }
    .subpage-hero { min-height: 650px; }
    .content-block--with-image { grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 42px; }
    .compact-quote { padding: 65px 55px; gap: 40px; }
    .comparison-tool { padding: 65px 55px; gap: 45px; }
}

@media (max-width: 760px) {
    :root { --shell: calc(100% - 40px); --radius: 28px; }
    body { font-size: 16px; }
    h2 { font-size: 3.1rem; }

    .site-header, .site-header.is-sticky { position: absolute; width: calc(100% - 40px); }
    .trust-bar { min-height: 39px; padding: 0 20px; font-size: 11px; }
    .trust-bar ul { display: none; }
    .top-contact { width: 100%; gap: 0; justify-content: flex-end; }
    .top-contact a:first-child { display: none; }
    .nav-bar { min-height: 53px; padding: 0 18px 0 20px; border-radius: 0 0 27px 27px; }
    .brand { width: 116px; }
    .nav-quote { display: none; }
    .desktop-label { display: none; }
    .mobile-label { display: inline; }

    .menu-toggle { display: grid; width: 39px; height: 39px; margin-left: auto; padding: 9px; background: var(--sky); border: 0; border-radius: 50%; place-content: center; gap: 4px; }
    .menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; }
    .main-nav { position: fixed; top: 92px; right: 20px; left: 20px; display: flex; margin: 0; padding: 26px; background: var(--white); border-radius: 22px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 0; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .2s ease; }
    .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
    .main-nav a, .main-nav a:nth-child(4), .main-nav a:nth-child(5) { display: block; padding: 12px 5px; border-bottom: 1px solid #e6f1f7; }

    .hero { min-height: 598px; background-position: 48% center; clip-path: ellipse(100% 65% at 50% 35%); }
    .hero-content { padding: 270px 14px 0; }
    .hero h1 { margin-bottom: 42px; font-size: 2.72rem; }
    .hero .button { min-width: 205px; min-height: 50px; padding-inline: 20px; }

    .subpage-hero { min-height: 610px; padding: 235px 0 100px; background-position: 58% center; clip-path: ellipse(112% 67% at 50% 31%); }
    .subpage-hero-shade { background: linear-gradient(90deg, rgba(8,35,58,.9), rgba(8,35,58,.58)); }
    .subpage-hero-content h1, .subpage-hero--article .subpage-hero-content h1, .subpage-hero--legal .subpage-hero-content h1 { font-size: 3rem; }
    .subpage-hero-content > p:not(.eyebrow) { font-size: 16px; }
    .breadcrumbs { margin-top: -20px; padding-bottom: 22px; }
    .editorial-page { padding: 20px 0 85px; }
    .content-block, .content-block--with-image { display: flex; padding: 48px 0; gap: 30px; flex-direction: column; }
    .content-block--reverse .content-block-copy, .content-block--reverse figure { order: initial; }
    .content-block h2 { font-size: 2.8rem; }
    .content-block figure img { min-height: 240px; max-height: 390px; border-radius: 28px; }
    .related-pages, .directory { padding: 55px 0 95px; }
    .related-grid, .directory-grid { grid-template-columns: 1fr; }
    .related-grid a { min-height: 175px; padding: 28px; }
    .directory-grid a { min-height: 110px; }
    .compact-quote { display: block; margin-bottom: 105px; padding: 48px 28px; border-radius: 32px; }
    .compact-quote h2 { font-size: 3rem; }
    .compact-quote-actions { margin-top: 34px; align-items: flex-start; }
    .comparison-tool { display: block; margin: 25px auto 95px; padding: 48px 28px; border-radius: 32px; }
    .comparison-tool form { margin-top: 38px; }
    .comparison-result { margin: 25px auto 95px; padding: 52px 25px; border-radius: 32px; }
    .result-price strong { font-size: 2.7rem; }

    .intro { display: flex; min-height: 1080px; padding: 70px 0 130px; flex-direction: column; gap: 65px; }
    .intro h2 { font-size: 3rem; }
    .copy-indented { margin: 34px 0 0; }
    .copy-indented p { font-size: 16px; }
    .intro-copy::after { display: none; }
    .intro-image { margin-top: auto; border-radius: 32px; }

    .benefits { min-height: auto; padding: 20px 0 100px; grid-template-columns: 1fr; gap: 18px; }
    .benefits article { min-height: 0; padding: 30px 24px; }

    .guarantee { min-height: 930px; }
    .guarantee-blob { top: 100px; left: -170px; width: 570px; height: 570px; }
    .guarantee-content { display: block; padding-top: 110px; }
    .guarantee h2 { margin-left: 0; font-size: 3.2rem; }
    .guarantee .copy-indented { max-width: 300px; margin-top: 270px; }
    .euro-art { position: absolute; top: 550px; right: 0; font-size: 115px; }
    .euro-art small { margin-left: -25px; font-size: 60px; }

    .calculator { display: block; min-height: 850px; padding: 60px 0 120px; }
    .calculator-images { width: 100%; height: 300px; margin: 0 0 45px; }
    .calculator-images img:first-child { top: 10px; left: 8px; width: 145px; height: 110px; }
    .calculator-images img:last-child { right: 10px; bottom: 5px; width: 190px; height: 170px; }
    .calculator-images::before { left: 85px; width: 120px; height: 140px; }
    .calculator-images::after { right: 95px; width: 120px; height: 140px; }
    .calculator-card { position: relative; top: auto; right: auto; width: 100%; min-height: 0; padding: 55px 28px; border-radius: 36px; }
    .calculator-card h2 { font-size: 3.25rem; }
    .calculator-form { align-items: center; }
    .calculator-form .button { padding-inline: 16px; font-size: 11px; }

    .materials { padding: 56px 0; }
    .materials h2 { font-size: 1.45rem; line-height: 1.1; }
    .logo-row { gap: 28px; }
    .logo-row img { max-width: 103px; height: 48px; }

    .quote-section { min-height: 1830px; padding: 110px 0 140px; }
    .installer-image { display: none; }
    .quote-card { display: block; width: var(--shell); min-height: 0; margin: 0 auto; padding: 48px 25px 55px; border-radius: 32px; }
    .quote-copy h2 { font-size: 4rem; }
    .quote-copy address a { font-size: 19px; }
    .google-rating { margin-top: 22px; padding: 14px; font-size: 12px; }
    .google-rating strong span { font-size: 25px; }
    .insula { width: 175px; }
    .quote-form { margin-top: 45px; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .quote-form input:not([type="checkbox"]), .quote-form textarea { padding: 12px 17px; }

    .reviews { min-height: auto; padding: 90px 0 130px; }
    .reviews header { margin-bottom: 55px; }
    .reviews h2 { font-size: 2.65rem; }
    .review-grid { grid-template-columns: 1fr; }
    .review-grid article { min-height: 0; padding: 28px 24px; }
    .stats { grid-template-columns: 1fr 1fr; gap: 35px 10px; }
    .stats dd { font-size: 3.3rem; }

    .site-footer { padding-top: 45px; border-radius: 50% 50% 0 0 / 40px 40px 0 0; }
    .footer-inner { padding-top: 65px; }
    .footer-cta { display: block; margin-bottom: 45px; }
    .footer-cta h2 { margin-bottom: 35px; font-size: 3.15rem; }
    .footer-materials { margin-bottom: 45px; }
    .footer-materials h3 { font-size: 21px; }
    .footer-materials .logo-row { gap: 24px; }
    .footer-materials .logo-row img { max-width: 94px; height: 42px; }
    .footer-columns { display: block; }
    .footer-columns h3 { margin-top: 34px; }
    .work-areas ul { columns: 1; }
    .footer-bottom { gap: 20px; flex-direction: column; }
    .site-footer::after { right: -8px; bottom: -8px; width: 200px; height: 191px; }
    .chat-button { width: 58px; height: 58px; }
}

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