:root {
    --green: #3f9a30;
    --green-deep: #2c6f22;
    --green-bright: #57b13a;
    --navy: #213f6e;
    --navy-2: #2b4f86;
    --red: #d63a1f;
    --red-deep: #b62f17;
    --pine: var(--navy);
    --pine-2: var(--navy-2);
    --terra: var(--red);
    --terra-2: var(--red-deep);
    --ink: #1e2630;
    --ink-soft: #3a4452;
    --muted: #5d6775;
    --line: #e7e9ec;
    --bg: #ffffff;
    --bg-warm: #f4f5f7;
    --shadow-sm: 0 1px 2px rgba(20, 30, 50, 0.04), 0 6px 18px rgba(20, 30, 50, 0.05);
    --shadow-md: 0 18px 44px rgba(20, 30, 50, 0.12);
    --radius: 8px;
    --font-serif: "Schibsted Grotesk", system-ui, -apple-system, sans-serif;
    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --sec-y: 90px;
    --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.68;
    font-size: 17px;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--green); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: rgba(63, 154, 48, 0.18); color: var(--ink); }

:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--pine);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius);
    z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: 15px 26px;
    border-radius: var(--radius);
    border: 1.6px solid transparent;
    min-height: 48px;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.btn--lg { padding: 17px 32px; font-size: 1.04rem; }
.btn--sm { min-height: 42px; padding: 11px 18px; font-size: .94rem; }
.btn--block { width: 100%; }
.btn--accent {
    background: var(--terra);
    color: #fff;
    box-shadow: 0 1px 1px rgba(122, 26, 10, 0.3), 0 8px 20px rgba(214, 58, 31, 0.18);
}
.btn--accent:hover {
    background: var(--terra-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 3px rgba(122, 26, 10, 0.3), 0 14px 28px rgba(214, 58, 31, 0.24);
}
.btn--accent:active { transform: translateY(0); }
.btn--light {
    background: #fff;
    color: var(--pine);
}
.btn--light:hover {
    background: #eef1f4;
    color: var(--pine);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    border-color: #cfd5dc;
    color: var(--ink);
}
.btn--outline:hover {
    background: #fff;
    border-color: var(--green);
    color: var(--green-deep);
    transform: translateY(-2px);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--pine);
    font-size: 1.02rem;
}
.link-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--terra);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}
.link-arrow:hover { color: var(--terra); }
.link-arrow:hover svg { transform: translateX(4px); }

.topbar { background: var(--green-deep); color: #fff; }
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; padding: 7px 0; font-size: .87rem; }
.topbar__usp { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; min-width: 0; }
.topbar__usp svg { width: 15px; height: 15px; flex: none; fill: #fff; }
.topbar__usp strong { font-weight: 700; }
.topbar__extra { color: rgba(255, 255, 255, 0.82); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__phone { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 600; white-space: nowrap; flex: none; }
.topbar__phone svg { width: 15px; height: 15px; flex: none; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.topbar__phone:hover { color: #fff; opacity: .85; }
.trust__row::-webkit-scrollbar { display: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(244, 245, 247, 0.88);
    backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 84px;
}
.brand { display: inline-flex; align-items: center; justify-self: start; }
.brand__logo { height: 56px; width: auto; }

.topnav { display: flex; align-items: center; gap: 27px; justify-self: center; }
.topnav__link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--ink-soft);
    padding: 6px 0;
    position: relative;
}
.topnav__item { position: relative; }
.topnav__item > .topnav__link { display: inline-flex; align-items: center; gap: 5px; }
.topnav__caret { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.topnav__item:hover .topnav__caret, .topnav__item:focus-within .topnav__caret { transform: rotate(180deg); }
.topnav__item::after { content: ""; position: absolute; left: -12px; right: -12px; top: 100%; height: 18px; }
.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 236px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 100;
}
.topnav__item:hover .dropdown, .topnav__item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: 9px;
    font-weight: 500;
    font-size: .98rem;
    color: var(--ink-soft);
    white-space: nowrap;
}
.dropdown a:hover { background: var(--bg-warm); color: var(--red); }
.topnav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--terra);
    transition: width .2s ease;
}
.topnav__link:hover, .topnav__link.is-active { color: var(--pine); }
.topnav__link:hover::after, .topnav__link.is-active::after { width: 100%; }

.nav__side { justify-self: end; display: flex; align-items: center; gap: 20px; }
.nav__phone { font-weight: 600; color: var(--pine); font-size: 1rem; }
.nav__phone:hover { color: var(--terra); }

.burger {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.burger__bar {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.burger.is-open .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger__bar:nth-child(2) { opacity: 0; }
.burger.is-open .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mmenu {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: var(--bg-warm);
    padding: 20px 28px 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
    visibility: hidden;
}
.mmenu.is-open { transform: translateX(0); visibility: visible; }
.mmenu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.mmenu__logo { height: 56px; width: auto; }
.mmenu__close {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}
.mmenu__close span {
    position: absolute;
    left: 12px;
    top: 22px;
    width: 22px;
    height: 2px;
    background: var(--ink);
}
.mmenu__close span:first-child { transform: rotate(45deg); }
.mmenu__close span:last-child { transform: rotate(-45deg); }
.mmenu__nav { display: flex; flex-direction: column; padding: 14px 0; gap: 0; }
.mmenu__nav > a, .mmenu__toggle {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--ink);
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}
.mmenu__nav > a:hover, .mmenu__toggle:hover { color: var(--terra); }
.mmenu__group { display: flex; flex-direction: column; }
.mmenu__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: left;
    cursor: pointer;
}
.mmenu__toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.mmenu__toggle.is-open svg { transform: rotate(180deg); }
.mmenu__sub { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mmenu__sub.is-open { max-height: 360px; }
.mmenu__sub a {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--ink-soft);
    padding: 12px 0 12px 18px;
    border-bottom: 1px solid var(--line);
}
.mmenu__sub a:last-child { border-bottom: none; }
.mmenu__sub a:hover { color: var(--terra); }
.mmenu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.mmenu__foot .btn { width: 100%; }
.mmenu__phone { text-align: center; font-weight: 600; color: var(--pine); }
body.nav-open { overflow: hidden; }

.hero { position: relative; background: var(--bg-warm); overflow: hidden; }
.hero__grid { position: relative; z-index: 2; display: flex; align-items: center; min-height: 568px; }
.hero__copy { max-width: 560px; padding: 88px 0; }
.hero__title {
    font-size: clamp(2.7rem, 5.4vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.02;
}
.hero__lead {
    margin-top: 26px;
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 30em;
}
.hero__cta {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}
.hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 47vw;
    z-index: 1;
}
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 56% 54%; }
.hero__media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 150px;
    background: linear-gradient(90deg, var(--bg-warm) 8%, rgba(244, 245, 247, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.trust { background: var(--bg-warm); border-bottom: 1px solid var(--line); }
.trust__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 22px 0 26px; }
.trust__item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 13px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}
.trust__item > div { min-width: 0; }
.trust__item svg { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust__item strong { display: block; font-weight: 700; font-size: .83rem; color: var(--ink); line-height: 1.25; }
.trust__item span { font-size: .72rem; color: var(--muted); line-height: 1.25; }

.reco-widget-section {
    background: var(--bg-warm);
    padding: 18px 0 34px;
    border-bottom: 1px solid var(--line);
}

.reco-widget-section iframe {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-title { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.section-sub { margin-top: 18px; font-size: 1.14rem; color: var(--muted); }

.services { padding: var(--sec-y) 0; background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #dce0e5; }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .6, .2, 1); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { display: flex; flex-direction: column; padding: 26px 24px 26px; flex: 1; }
.card h3 { font-size: 1.34rem; }
.card__body p { margin-top: 11px; color: var(--muted); font-size: .98rem; }
.card .ticks { margin-top: auto; padding-top: 18px; gap: 9px; }
.card .ticks::before {
    content: "";
    display: block;
    height: 1px;
    background: var(--line);
    margin: 0 0 16px;
}
.card .ticks li { font-size: .95rem; }
.card__more {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    font-weight: 600;
    color: var(--red);
    font-size: .96rem;
}
.card__more svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.card:hover .card__more svg { transform: translateX(4px); }

.helhet { background: var(--bg-warm); padding: var(--sec-y) 0; border-top: 1px solid #e8ebee; border-bottom: 1px solid #e8ebee; }
.helhet__top { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.helhet__media { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md), 18px 18px 0 0 rgba(214, 58, 31, 0.14); }
.helhet__media img { width: 100%; aspect-ratio: 4 / 4.3; object-fit: cover; object-position: 50% 60%; display: block; }
.helhet__copy p { margin-top: 18px; color: var(--muted); font-size: 1.12rem; }
.helhet__copy .helhet__note { color: var(--ink); font-weight: 500; }
.helhet__copy .btn { margin-top: 28px; }
.trades { list-style: none; margin: 56px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 40px; }
.trade { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding-top: 24px; border-top: 1px solid #dee2e8; }
.trade__ico {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.trade__ico svg { width: 23px; height: 23px; fill: none; stroke: var(--terra); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trade__txt { display: flex; flex-direction: column; min-width: 0; }
.trade__txt strong { font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.01em; }
.trade__txt span { margin-top: 4px; color: var(--muted); font-size: .96rem; line-height: 1.45; }
.ticks {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ticks li {
    position: relative;
    padding-left: 30px;
    color: var(--ink-soft);
    font-size: 1rem;
}
.ticks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .42em;
    width: 16px;
    height: 9px;
    border-left: 2.4px solid var(--green);
    border-bottom: 2.4px solid var(--green);
    transform: rotate(-45deg);
}

.reviews { padding: var(--sec-y) 0; background: var(--bg-warm); }
.reviews__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; max-width: none; margin-bottom: 46px; }
.reco-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 20px;
    box-shadow: var(--shadow-sm);
}
.reco-badge:hover { border-color: var(--green); }
.reco-badge__score { font-family: var(--font-serif); font-weight: 800; font-size: 2.1rem; color: var(--navy); line-height: 1; }
.reco-badge__meta { display: flex; flex-direction: column; gap: 2px; font-size: .88rem; color: var(--muted); font-weight: 500; }
.reco-badge__stars { color: var(--green); letter-spacing: 2px; font-size: 1rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
    position: relative;
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.review::before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: var(--green);
    margin-bottom: 22px;
}
.review blockquote { margin: 0; font-size: 1.07rem; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.review figcaption { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.review figcaption span { display: block; font-weight: 500; color: var(--muted); font-size: .85rem; margin-top: 2px; }
.reviews__cta { margin-top: 38px; text-align: center; }

.gallery { padding: var(--sec-y) 0; background: var(--bg); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery__grid figure { margin: 0; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .6, .2, 1); }
.gallery__grid figure:hover img { transform: scale(1.05); }
.gallery__grid .g-lg { grid-column: span 2; grid-row: span 2; }
.gallery__grid .g-wide { grid-column: span 2; }

.process { padding: var(--sec-y) 0; background: var(--bg-warm); border-top: 1px solid #e8ebee; }
.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}
.step { position: relative; padding-top: 24px; border-top: 2px solid var(--line); }
.step:first-child { border-top-color: var(--terra); }
.step__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--pine);
    margin-bottom: 20px;
}
.step__ico svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.step h3 { font-size: 1.24rem; }
.step p { margin-top: 9px; color: var(--muted); font-size: 1rem; }

.faq { padding: var(--sec-y) 0; background: var(--bg); }
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 48px; }
.qa { padding: 24px 0; border-top: 1px solid var(--line); }
.qa h3 { font-size: 1.2rem; }
.qa p { margin-top: 10px; color: var(--muted); font-size: 1.02rem; }

.about { background: var(--navy); color: #c8d2e2; padding: var(--sec-y) 0; }
.about__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.about__media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32), 18px 18px 0 0 rgba(214, 58, 31, 0.34);
}
.about__media img {
    width: 100%;
    aspect-ratio: 4 / 3.3;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2, .6, .2, 1);
}
.about:hover .about__media img { transform: scale(1.04); }
.about__title { color: #fff; font-size: clamp(2rem, 3.4vw, 2.8rem); }
.about__quote {
    margin-top: 22px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: 0;
}
.vals {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 36px;
}
.vals li { padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.vals strong {
    display: block;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.18rem;
    color: #fff;
    margin-bottom: 5px;
}
.vals span { color: #a9b4c6; font-size: 1rem; line-height: 1.55; }
.about__text { margin-top: 18px; color: #c8d2e2; font-size: 1.08rem; line-height: 1.65; }

.band {
    background-color: var(--green-deep);
    background-image: linear-gradient(rgba(28, 86, 22, 0.92), rgba(34, 95, 26, 0.86)), url(images/golv-lagg.webp);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 72px 0;
}
.band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.band__text { max-width: 640px; }
.band__text h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.band__text p { margin-top: 14px; color: #d4ead0; font-size: 1.12rem; }
.band__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.band__phone { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.band__phone > svg { width: 22px; height: 22px; flex: none; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.band__phone span { display: flex; flex-direction: column; line-height: 1.2; font-weight: 700; font-size: 1.18rem; }
.band__phone small { font-weight: 500; font-size: .8rem; color: rgba(255, 255, 255, 0.82); }
.band__phone:hover { color: #fff; opacity: .9; }

.contact { padding: var(--sec-y) 0; background: var(--bg-warm); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: 60px; }
.contact__lead { margin-top: 18px; color: var(--muted); font-size: 1.12rem; max-width: 42ch; }
.contact__list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 2px; }
.contact__list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.contact__ico {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact__ico svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--terra);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact__txt { display: flex; flex-direction: column; line-height: 1.4; }
.contact__label { font-weight: 600; color: var(--muted); font-size: .82rem; }
.contact__txt a, .contact__txt > span:last-child { font-weight: 600; color: var(--ink); font-size: 1.06rem; }
.contact__txt a:hover { color: var(--terra); }
.contact__badge { margin-top: 34px; }
.contact__badge img { width: 230px; height: auto; }

.contact__form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.form__title { font-size: 1.55rem; margin-bottom: 8px; }
.form__row { display: flex; flex-direction: column; margin-top: 16px; }
.form__row label { font-weight: 600; font-size: .92rem; color: var(--ink-soft); margin-bottom: 7px; }
.form input, .form textarea {
    font: inherit;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 15px;
    width: 100%;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.form input::placeholder, .form textarea::placeholder { color: #9aa79a; }
.form input:focus, .form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(58, 125, 74, 0.15);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .btn { margin-top: 24px; }
.form__note { margin-top: 14px; text-align: center; font-size: .9rem; color: var(--muted); }

#contact-form { max-width: 100%; overflow: hidden; }
#contact-form .g-recaptcha { transform-origin: left center; max-width: 100%; }
@media (max-width: 400px) {
    #contact-form .g-recaptcha { transform: scale(0.85); }
}
@media (max-width: 340px) {
    #contact-form .g-recaptcha { transform: scale(0.75); }
}

.site-footer { background: var(--navy); color: #aab5c8; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding: 64px 28px 46px; }
.footer__brand { min-width: 0; }
.footer__logobox { display: inline-flex; background: #fff; border-radius: 8px; padding: 14px 16px; line-height: 0; }
.footer__logobox img { height: 56px; width: auto; }
.footer__tag { margin-top: 18px; color: #93a0b6; font-size: 1rem; max-width: 36ch; }
.footer__uc {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 22px;
    padding: 9px 12px;
    background: #fff;
    border-radius: 8px;
    line-height: 0;
}
.footer__uc img { width: 150px; height: auto; }
.footer__badges { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.footer__badge { display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 8px; padding: 10px 12px; line-height: 0; }
.footer__badge img { height: 82px; width: auto; }
.footer__uc, .footer__badge { position: relative; cursor: zoom-in; transition: transform 0.15s ease; }
.footer__uc:hover, .footer__badge:hover { transform: translateY(-2px); }
.footer__uc:focus-visible, .footer__badge:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; }
.footer__uc::before, .footer__badge::before { content: ""; position: absolute; top: 8px; right: 8px; width: 9px; height: 9px; border: 1.6px solid #fff; border-radius: 50%; opacity: 0.75; filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.55)); transition: opacity 0.15s ease; pointer-events: none; }
.footer__uc::after, .footer__badge::after { content: ""; position: absolute; top: 17px; right: 6px; width: 5px; height: 1.6px; background: #fff; border-radius: 1px; transform: rotate(45deg); opacity: 0.75; filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.55)); transition: opacity 0.15s ease; pointer-events: none; }
.footer__uc:hover::before, .footer__badge:hover::before, .footer__uc:hover::after, .footer__badge:hover::after { opacity: 1; }
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(12, 18, 30, 0.82); }
.lightbox.is-open { display: flex; }
.lightbox__inner { position: relative; background: #fff; border-radius: 16px; padding: 22px; max-width: min(92vw, 560px); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); }
.lightbox__img { display: block; width: 100%; height: auto; max-height: 78vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: none; background: #fff; color: #1e2630; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3); cursor: pointer; font-size: 24px; line-height: 44px; text-align: center; z-index: 1; }
.lightbox__close::before { content: "\00d7"; }
.lightbox__close:hover { background: var(--bg-warm); }
body.lightbox-open { overflow: hidden; }
.footer__col h3 { color: #fff; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; margin: 0 0 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col li { color: #93a0b6; font-size: 1rem; }
.footer__col a { color: #c4ccda; }
.footer__col a:hover { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer__bar-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 20px;
    padding-bottom: 22px;
    font-size: .9rem;
    color: #7f8ba1;
    flex-wrap: wrap;
}
.footer__cred { color: var(--green-bright); font-weight: 600; }

.subhero { background: var(--bg-warm); border-bottom: 1px solid var(--line); }
.subhero__grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; padding: 48px 0 66px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; font-size: .9rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb svg { width: 14px; height: 14px; fill: none; stroke: var(--muted); stroke-width: 2; }
.breadcrumb .breadcrumb__here { color: var(--ink); font-weight: 600; }
.subhero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); font-weight: 800; letter-spacing: 0; }
.subhero__lead { margin-top: 18px; font-size: 1.18rem; color: var(--ink-soft); max-width: 46ch; }
.subhero__cta { margin-top: 30px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.subhero__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md), 18px 18px 0 0 rgba(214, 58, 31, 0.16);
}

.content { padding: var(--sec-y) 0; }
.content__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.prose h3 { font-size: 1.28rem; margin-top: 32px; }
.prose p { color: var(--ink-soft); font-size: 1.08rem; }
.prose .ticks { margin-top: 20px; }
.prose figure { margin: 28px 0 0; }
.prose figure img { width: 100%; aspect-ratio: 16 / 10; border-radius: 8px; object-fit: cover; box-shadow: var(--shadow-sm); }
.aside {
    position: sticky;
    top: 108px;
    background: var(--bg-warm);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px;
}
.aside h3 { font-size: 1.3rem; }
.aside p { margin-top: 10px; color: var(--muted); }
.aside .aside__contact { margin-top: 18px; display: grid; gap: 10px; }
.aside .aside__contact a { font-weight: 600; color: var(--ink); }
.aside .aside__contact a:hover { color: var(--red); }
.aside .btn { margin-top: 22px; width: 100%; }
.related { padding: var(--sec-y) 0; background: var(--bg); }
.related .cards { grid-template-columns: repeat(3, 1fr); }

.svc-incl { padding: var(--sec-y) 0; background: var(--bg); }
.svc-incl__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.svc-incl__copy p { margin-top: 16px; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.65; }
.svc-incl__media img {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md), 18px 18px 0 0 rgba(214, 58, 31, 0.14);
}
.ticks--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 28px; }

.svc-note {
    background-color: var(--navy);
    background-image: linear-gradient(rgba(20, 34, 60, 0.92), rgba(26, 44, 74, 0.86)), url(images/matning.webp);
    background-size: cover;
    background-position: center;
    color: #c8d2e2;
    padding: 78px 0;
}
.svc-note__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.svc-note__copy h2 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.svc-note__copy p { margin-top: 14px; color: #c8d2e2; font-size: 1.08rem; line-height: 1.65; }
.svc-note__card { background: rgba(15, 26, 47, 0.74); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 8px; padding: 28px; backdrop-filter: blur(3px); }
.svc-note__card strong { display: block; font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem; color: #fff; }
.svc-note__card p { margin: 10px 0 0; color: #a9b4c6; font-size: .98rem; }
.svc-note__card .btn { margin-top: 18px; }
.svc-note__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
}
.svc-note__phone:hover { color: var(--green-bright); }

.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .6, .2, 1); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .cards .reveal:nth-child(2), .js .reviews__grid .reveal:nth-child(2) { transition-delay: .08s; }
.js .cards .reveal:nth-child(3), .js .reviews__grid .reveal:nth-child(3) { transition-delay: .16s; }
.js .cards .reveal:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1040px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
    .nav { display: flex; justify-content: space-between; }
    .topnav, .nav__side { display: none; }
    .burger { display: inline-flex; }
    .hero { display: flex; flex-direction: column; }
    .hero__media { position: static; width: 100%; height: 58vw; max-height: 420px; order: -1; }
    .hero__media::before { display: none; }
    .hero__copy { padding: 44px 0 56px; max-width: none; }
    .helhet__top { grid-template-columns: 1fr; gap: 36px; }
    .helhet__media { order: -1; max-width: 520px; }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 30px; }
    .steps::before { display: none; }
    .faq__grid { grid-template-columns: 1fr; gap: 0; }
    .about__grid { grid-template-columns: 1fr; gap: 38px; }
    .about__media { order: -1; }
    .contact__grid { grid-template-columns: 1fr; gap: 42px; }
    .subhero__grid { grid-template-columns: 1fr; gap: 34px; }
    .subhero__media { order: -1; }
    .content__grid { grid-template-columns: 1fr; gap: 40px; }
    .aside { position: static; }
    .svc-incl__grid { grid-template-columns: 1fr; gap: 34px; }
    .svc-incl__media { order: -1; }
    .svc-note__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 820px) {
    :root { --sec-y: 72px; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
    .reviews__grid { grid-template-columns: 1fr; }
    .trades { grid-template-columns: repeat(2, 1fr); gap: 22px 30px; }
    .trust__row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px 0 22px;
    }
    .trust__item {
        width: 100%;
        max-width: none;
        padding: 14px 16px;
    }
    .trust__item strong { font-size: .95rem; }
    .trust__item span { font-size: .8rem; }
    .vals { grid-template-columns: 1fr; gap: 22px; }
    .band__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .band__actions { width: 100%; align-items: stretch; }
    .band__actions .btn,
    .band__phone { width: 100%; justify-content: center; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 28px; padding: 48px 28px 36px; }
    .footer__brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 18px 20px; align-items: center; }
    .footer__tag { margin-top: 0; max-width: 44ch; }
    .footer__uc { grid-column: 1 / -1; margin-top: 0; }
    .footer__badges { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .cards, .related .cards { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 28px; }
    .trades { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
    .gallery__grid .g-lg, .gallery__grid .g-wide { grid-column: span 1; }
    .gallery__grid .g-lg { grid-row: span 1; }
    .topbar__extra { display: none; }
    .topbar__row { font-size: .8rem; }
    .ticks--cols { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .footer__brand { display: block; }
    .footer__tag { margin-top: 18px; }
    .footer__uc { margin-top: 20px; }
    .footer__col { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
}

@media (max-width: 460px) {
    body { font-size: 16px; }
    .container { padding-left: 20px; padding-right: 20px; }
    .topbar__row { gap: 10px; }
    .topbar__phone svg { display: none; }
    .hero__media { height: 64vw; min-height: 240px; }
    .hero__copy { padding: 36px 0 46px; }
    .hero__lead,
    .section-sub,
    .contact__lead,
    .svc-incl__copy p,
    .subhero__lead { font-size: 1.03rem; }
    .hero__cta,
    .subhero__cta {
        width: 100%;
        align-items: stretch;
        gap: 14px;
    }
    .hero__cta .btn,
    .hero__cta .link-arrow,
    .subhero__cta .btn,
    .subhero__cta .link-arrow {
        width: 100%;
        justify-content: center;
    }
    .hero__cta .link-arrow,
    .subhero__cta .link-arrow {
        min-height: 48px;
        padding: 13px 18px;
        border: 1.5px solid #cfd5dc;
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow-sm);
    }
    .card__more {
        justify-content: center;
        min-height: 44px;
        padding: 11px 16px;
        border: 1px solid #e0e4e8;
        border-radius: 8px;
        background: var(--bg-warm);
    }
    .mmenu__phone {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
    }
    .section-head { margin-bottom: 36px; }
    .card__body { padding: 22px 20px 24px; }
    .svc-note__card { padding: 24px 20px; }
    .contact__form-wrap { padding: 26px 22px; }
    .contact__list li { align-items: flex-start; gap: 12px; }
    .contact__txt a,
    .contact__txt > span:last-child {
        font-size: 1rem;
        overflow-wrap: anywhere;
    }
    .footer__grid { padding-left: 20px; padding-right: 20px; }
    .footer__bar-row { justify-content: flex-start; padding-left: 20px; padding-right: 20px; }
}
