:root {
    --white: #fff;
    --cream: #faf8f5;
    --sand: #eeebe6;
    --warm: #d4cfc8;
    --dark: #1a1915;
    --body: #4a4740;
    --soft: #9a9590;
    --red: #c70c16;
    --red-dark: #a80a12;
    --red-bg: rgba(199,12,22,.06);
    --blue: #123b6d;
    --blue-dark: #0e2f57;
    --blue-bg: rgba(18,59,109,.07);
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Outfit', system-ui, sans-serif;
    --top-h: 38px;
    --nav-h: 68px;
    --r: 16px;
    --max: 1200px;
    --pad: clamp(1.25rem, 4vw, 2.5rem);
    --section-y: clamp(4rem, 8vw, 6rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--top-h) + var(--nav-h) + 1rem);
    overflow-x: clip;
}
body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

[data-lucide] { width: 16px; height: 16px; }

::selection {
    background: rgba(18,59,109,.15);
    color: var(--dark);
}

em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: normal;
}

.anim {
    opacity: 0; transform: translateY(18px);
    animation: rise .7s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.a1 { animation-delay: .15s }
.a2 { animation-delay: .3s }
.a3 { animation-delay: .5s }
.a4 { animation-delay: .7s }
.a5 { animation-delay: .95s }

section {
    overflow: hidden;
}

body.js .reveal { opacity: 0; transform: translateY(28px); }
body.js .reveal.show {
    opacity: 1; transform: none;
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

.pill {
    display: inline-block;
    font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--blue);
    background: var(--blue-bg);
    padding: .4rem 1.1rem;
    border-radius: 100px;
}

.text-link {
    display: inline-flex; align-items: center;
    font-weight: 600; font-size: .88rem;
    color: var(--red);
    gap: .35rem;
    transition: gap .25s;
}
.text-link:hover { gap: .55rem; }
.text-link i { width: 16px; height: 16px; }

.cta {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--sans); font-weight: 600; font-size: .88rem;
    padding: .9rem 2.2rem; border-radius: 10px;
    border: none; cursor: pointer;
    transition: all .3s cubic-bezier(.16,1,.3,1);
}
.cta--white {
    background: var(--white); color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.cta--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.cta--ghost {
    background: rgba(255,255,255,.12); color: var(--white);
    border: 1px solid rgba(255,255,255,.25);
}
.cta--ghost:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
}
.cta--red {
    background: var(--red); color: var(--white);
    box-shadow: 0 4px 20px rgba(199,12,22,.25);
}
.cta--red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(199,12,22,.35);
}
.cta--red i { width: 16px; height: 16px; }

.header-fixed {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    transition: transform .3s ease;
}
.header-fixed.hide-top {
    transform: translateY(calc(var(--top-h) * -1));
}

.topbar {
    height: var(--top-h);
    background: var(--dark);
    font-size: .75rem;
    color: rgba(255,255,255,.7);
}

.topbar__wrap {
    max-width: 1300px; margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.topbar__l, .topbar__r { display: flex; align-items: center; gap: 1.2rem; }

.topbar__link {
    display: inline-flex; align-items: center; gap: .3rem;
    transition: color .15s;
}
.topbar__link:hover { color: var(--white); }
.topbar__link i { width: 11px; height: 11px; }

.topbar__shop {
    display: inline-flex; align-items: center; gap: .25rem;
    font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--white); background: var(--red);
    padding: .22rem .75rem; border-radius: 4px;
    transition: filter .15s;
}
.topbar__shop i { width: 10px; height: 10px; }
.topbar__shop:hover { filter: brightness(1.12); }

.nav {
    height: var(--nav-h);
    transition: background .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(250,248,245,.92);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-color: var(--sand);
}
.nav.menu-open {
    background: var(--dark);
    border-color: transparent;
}
.nav.menu-open.scrolled {
    background: var(--dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: transparent;
}

.nav__bar {
    max-width: 1300px; margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%; display: flex; align-items: center;
}

.nav__logo {
    margin-right: auto;
    display: flex; align-items: center;
    line-height: 1;
}
.nav__logo img {
    height: 28px; width: auto;
    transition: background .3s, padding .3s;
}
.nav.scrolled .nav__logo img {
    filter: none;
}
.nav.menu-open .nav__logo img {
    background: var(--white);
    padding: .2rem .5rem;
    border-radius: 4px;
}

.nav__center {
    display: flex; align-items: center; gap: 2.2rem;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__center a {
    font-size: .78rem; font-weight: 500;
    color: rgba(255,255,255,.65);
    transition: color .2s;
    position: relative;
}
.nav__center a:hover { color: var(--white); }
.nav.scrolled .nav__center a { color: var(--body); }
.nav.scrolled .nav__center a:hover { color: var(--dark); }

.nav__center a::after {
    content: ''; position: absolute; left: 0; bottom: -4px;
    width: 100%; height: 1.5px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
}
.nav__center a:hover::after { transform: scaleX(1); }
.nav__external {
    display: inline-flex; align-items: center; gap: .2rem;
}
.nav__external i { width: 10px; height: 10px; opacity: .5; }
.nav__external::after { display: none; }

.nav__dropdown { position: relative; display: flex; align-items: center; }
.nav__dropdown-toggle {
    display: inline-flex; align-items: center; gap: .2rem;
    font-size: .78rem; font-weight: 500;
    color: rgba(255,255,255,.65);
    transition: color .2s;
    position: relative;
}
.nav__dropdown-toggle::after { display: none; }
.nav__dropdown:hover .nav__dropdown-toggle { color: var(--white); }
.nav.scrolled .nav__dropdown-toggle { color: var(--body); }
.nav.scrolled .nav__dropdown:hover .nav__dropdown-toggle { color: var(--dark); }
.nav--light .nav__dropdown-toggle { color: var(--body); }
.nav--light .nav__dropdown:hover .nav__dropdown-toggle { color: var(--dark); }
.nav__chevron { width: 12px; height: 12px; opacity: .5; transition: transform .2s; }
.nav__dropdown:hover .nav__chevron { transform: rotate(180deg); opacity: .8; }

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 12px;
    padding: 0;
    min-width: 230px;
    overflow: hidden;
    opacity: 0; visibility: hidden;
    transition: opacity .2s, visibility .2s, transform .2s;
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    z-index: 110;
}
.nav__dropdown-menu::before {
    content: ''; position: absolute;
    top: -8px; left: 0; right: 0; height: 8px;
}
.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
    display: block;
    padding: .45rem 1.2rem;
    font-size: .78rem; font-weight: 500;
    color: var(--body);
    transition: background .15s, color .15s;
}
.nav__dropdown-menu a:first-child { padding-top: .5rem; }
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown-menu a:hover {
    background: var(--cream);
    color: var(--dark);
}
.nav__dropdown-menu .nav__dropdown-promo {
    display: flex; flex-direction: column; gap: .15rem;
    padding: .8rem 1.2rem;
    background: var(--red-bg);
    border-bottom: 1px solid var(--sand);
    transition: background .15s;
}
.nav__dropdown-menu .nav__dropdown-promo:hover { background: rgba(199,12,22,.12); color: inherit; }
.nav__dropdown-badge {
    font-size: .6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--white); background: var(--red);
    padding: .15rem .45rem; border-radius: 4px;
    width: fit-content;
}
.nav__dropdown-promo strong {
    font-size: .82rem; font-weight: 600;
    color: var(--dark);
}
.nav__dropdown-promo span:last-child {
    font-size: .7rem;
    color: var(--soft);
}

.nav__dropdown-menu .nav__dropdown-all {
    border-top: 1px solid var(--sand);
    padding: .6rem 1.2rem;
    display: flex; align-items: center; gap: .3rem;
    font-weight: 600;
    color: var(--red);
}
.nav__dropdown-all [data-lucide] { width: 12px; height: 12px; display: inline-block; }
.nav__dropdown-menu .nav__dropdown-all:hover { color: var(--red-dark); background: var(--red-bg); }

.nav__btn {
    font-size: .76rem; font-weight: 600;
    color: var(--white); background: var(--blue);
    padding: .5rem 1.1rem; border-radius: 8px;
    transition: filter .15s, transform .15s;
}
.nav__btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

.nav__hamburger {
    display: none;
    width: 32px; height: 32px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    background: none; border: none; cursor: pointer; z-index: 101;
    padding: 4px;
}
.nav__hamburger span {
    display: block; width: 20px;
    height: 2px; background: var(--white);
    border-radius: 2px; transition: all .3s;
}
.nav.scrolled .nav__hamburger span { background: var(--dark); }
.nav.menu-open .nav__hamburger span { background: var(--white); }
.nav.menu-open .nav__logo img {
    background: var(--white);
    padding: .2rem .5rem;
    border-radius: 4px;
}
.nav__hamburger.on span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__hamburger.on span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mmenu {
    position: fixed; inset: 0; z-index: 99;
    background: var(--dark);
    opacity: 0; visibility: hidden;
    transition: opacity .35s, visibility .35s;
}
.mmenu.on { opacity: 1; visibility: visible; }

.mmenu__inner {
    height: 100%;
    display: flex; flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--top-h) + var(--nav-h) + 1rem) var(--pad) 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    mask-image: linear-gradient(to bottom, transparent 0%, black 2%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 2%, black 92%, transparent 100%);
}

.mmenu__nav {
    display: flex; flex-direction: column;
    gap: 0;
    margin-bottom: auto;
}
.mmenu__nav a {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    color: var(--white);
    padding: .4rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color .15s;
}
.mmenu__nav a:first-child {
    border-top: 1px solid rgba(255,255,255,.08);
}
.mmenu__nav a:hover { color: rgba(255,255,255,.6); }

.mmenu__group {
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mmenu__accordion {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    font-family: var(--serif);
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    color: var(--white);
    padding: .4rem 0;
    background: none; border: none; cursor: pointer;
    text-align: left;
}
.mmenu__accordion:hover { color: rgba(255,255,255,.7); }
.mmenu__chevron {
    width: 20px; height: 20px;
    opacity: .4;
    transition: transform .3s;
    flex-shrink: 0;
}
.mmenu__group.open .mmenu__chevron { transform: rotate(180deg); }
.mmenu__sub {
    display: none;
    flex-direction: column;
    padding: .4rem .8rem .6rem;
    margin: .2rem 0 .4rem;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
}
.mmenu__group.open .mmenu__sub { display: flex; }
.mmenu__sub a {
    font-family: var(--sans);
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    padding: .25rem 0;
    border-bottom: none;
}
.mmenu__sub a:hover { color: var(--white); }
.mmenu__sub-promo {
    display: flex; align-items: center; gap: .5rem;
    font-family: var(--sans);
    font-size: .85rem; font-weight: 600;
    color: rgba(255,255,255,.8);
    padding: .35rem 0;
    border-bottom: none;
}
.mmenu__sub-promo:hover { color: var(--white); }
.mmenu__sub-badge {
    font-size: .55rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--white); background: var(--red);
    padding: .15rem .4rem; border-radius: 3px;
    flex-shrink: 0;
    order: 2; margin-left: auto;
}
.mmenu__sub-all {
    display: inline-flex; align-items: center; gap: .3rem;
    font-weight: 600;
    color: var(--red);
    margin-top: .3rem;
}
.mmenu__sub-all i { width: 14px; height: 14px; }
.mmenu__sub-all:hover { color: var(--white); }

.mmenu__cta {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: var(--sans);
    font-size: .9rem; font-weight: 600;
    color: var(--red);
    padding: .8rem 0;
    border-bottom: none;
}
.mmenu__cta i { width: 16px; height: 16px; }
.mmenu__cta:hover { color: var(--white); }

.mmenu__foot {
    display: flex; flex-direction: column; gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.mmenu__contact {
    display: flex; flex-direction: column; gap: .4rem;
}
.mmenu__contact a {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    transition: color .15s;
}
.mmenu__contact a:hover { color: var(--white); }
.mmenu__contact i { width: 13px; height: 13px; }

.mmenu__shop {
    display: inline-flex; align-items: center; gap: .3rem;
    font-weight: 600; font-size: .78rem;
    color: rgba(255,255,255,.4);
    transition: color .15s;
}
.mmenu__shop i { width: 13px; height: 13px; }
.mmenu__shop:hover { color: var(--white); }

.hero {
    position: relative;
    height: 100svh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
    padding-top: calc(var(--top-h) + var(--nav-h));
    padding-bottom: 3.5rem;
}
.hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 35%;
    will-change: transform;
}
.hero__fade {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center 30%, rgba(20,18,12,.05), rgba(20,18,12,.5) 70%),
        linear-gradient(to top, rgba(20,18,12,.75) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(20,18,12,.35) 0%, transparent 35%);
}

.hero__center {
    position: relative; z-index: 2;
    max-width: 740px; padding: 0 1.5rem;
}

.hero__badge {
    font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .22em;
    color: var(--white);
    margin-bottom: 1.8rem;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.hero__h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 6.5vw, 5.2rem);
    line-height: 1.05; color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero__sub {
    font-size: .9rem; font-weight: 500;
    color: rgba(255,255,255,.85);
    letter-spacing: .2em;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.hero__ctas { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.hero__foot {
    position: absolute; bottom: 4.5rem; left: 0; right: 0;
    z-index: 2;
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 0 var(--pad);
    font-size: .72rem; font-weight: 500;
    color: rgba(255,255,255,.5);
}
.hero__foot a, .hero__foot > span {
    display: inline-flex; align-items: center; gap: .3rem;
    transition: color .15s;
}
.hero__foot a:hover { color: rgba(255,255,255,.85); }
.hero__foot i { width: 12px; height: 12px; }

.hero__scroll {
    display: flex; flex-direction: column; align-items: center;
}
.hero__scroll-line {
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scrollPulse {
    0%, 100% { opacity: .25; transform: scaleY(.5); }
    50% { opacity: .8; transform: scaleY(1); }
}

.hero__marquee {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: var(--dark);
    padding: .75rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.06);
}

.marquee__track {
    display: flex; align-items: center; gap: 2rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
    will-change: transform;
}
.marquee__track span {
    font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .18em;
    color: rgba(255,255,255,.5);
}
.marquee__dot {
    width: 1px; height: 12px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
    font-size: 0;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reco-strip {
    background: var(--cream);
    padding: 2rem var(--pad) 0;
}
.reco-strip__iframe {
    display: block;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    border: 0;
    overflow: hidden;
}

.intro {
    background: var(--cream);
    padding: var(--section-y) var(--pad);
}
.intro__wrap {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.intro__left .pill { margin-bottom: 1rem; }
.intro__left h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.2rem;
}
.intro__lead {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.2rem;
    font-weight: 400;
}
.intro__left p {
    font-size: .95rem; line-height: 1.85;
    color: var(--body);
    margin-bottom: 1rem;
}

.intro__usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}
.intro__usp {
    display: flex; align-items: flex-start; gap: .7rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--sand);
    transition: border-color .2s, box-shadow .2s;
}
.intro__usp:hover {
    border-color: var(--warm);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.intro__usp i {
    width: 20px; height: 20px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}
.intro__usp strong {
    display: block;
    font-size: .82rem; font-weight: 600;
    color: var(--dark);
    margin-bottom: .15rem;
}
.intro__usp span {
    font-size: .78rem; line-height: 1.5;
    color: var(--soft);
}

.intro__cta {
    margin-top: 1.5rem;
}

.intro__img-wrap {
    border-radius: var(--r);
    overflow: hidden;
}
.intro__img-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.intro__img-wrap:hover img { transform: scale(1.03); }

.siffror {
    background: var(--dark);
    padding: .9rem var(--pad);
}
.siffror__wrap {
    max-width: var(--max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.siffror__item {
    display: flex; align-items: baseline; gap: .35rem;
}
.siffror__num {
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.siffror__label {
    font-size: .75rem; font-weight: 400;
    color: rgba(255,255,255,.5);
}

.produkter {
    background: var(--cream);
    padding: var(--section-y) var(--pad);
}
.produkter__wrap {
    max-width: var(--max); margin: 0 auto;
}

.produkter__head {
    margin-bottom: 2rem;
}
.produkter__head .pill { margin-bottom: 1rem; }
.produkter__head h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--dark);
    line-height: 1.15;
}
.produkter__sub {
    font-size: .95rem;
    color: var(--body);
    line-height: 1.7;
    margin-top: .9rem;
    max-width: 500px;
}

.products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.product {
    display: block;
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--sand);
    transition: box-shadow .3s, transform .3s;
}
.product:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.product__img {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.product__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.product:hover .product__img img { transform: scale(1.04); }

.product__body {
    padding: 1.5rem;
}
.product__body h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: .5rem;
}
.product__body p {
    font-size: .88rem; line-height: 1.7;
    color: var(--body);
    margin-bottom: 1rem;
}
.product__link {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .82rem; font-weight: 600;
    color: var(--red);
    transition: gap .2s;
}
.product__link i { width: 14px; height: 14px; }
.product:hover .product__link { gap: .5rem; }

.produkter__more {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 1.5rem;
    padding: 1.4rem 1.6rem;
    background: var(--red);
    border-radius: var(--r);
    color: var(--white);
    transition: background .2s;
}
.produkter__more:hover { background: var(--red-dark); }
.produkter__more-text {
    display: flex; align-items: center; gap: .7rem;
}
.produkter__more-text > i {
    width: 20px; height: 20px;
    flex-shrink: 0;
    opacity: .7;
}
.produkter__more-text strong {
    display: block;
    font-size: 1rem; font-weight: 600;
}
.produkter__more-text span {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    margin-top: .15rem;
}
.produkter__more-arrow {
    flex-shrink: 0;
    opacity: .6;
    transition: opacity .2s, transform .2s;
}
.produkter__more-arrow i { width: 20px; height: 20px; }
.produkter__more:hover .produkter__more-arrow {
    opacity: 1; transform: translateX(3px);
}

.produkter__parts {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: .6rem;
    padding: 1.4rem 1.6rem;
    background: var(--blue);
    border-radius: var(--r);
    color: var(--white);
    transition: background .2s;
}
.produkter__parts:hover { background: var(--blue-dark); }
.produkter__parts-text {
    display: flex; align-items: center; gap: .8rem;
}
.produkter__parts-text i {
    width: 22px; height: 22px;
    flex-shrink: 0;
    opacity: .7;
}
.produkter__parts-text strong {
    display: block;
    font-size: 1rem; font-weight: 600;
}
.produkter__parts-text span {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    margin-top: .15rem;
}
.produkter__parts-arrow {
    flex-shrink: 0;
    opacity: .5;
    transition: opacity .2s, transform .2s;
}
.produkter__parts-arrow i { width: 20px; height: 20px; }
.produkter__parts:hover .produkter__parts-arrow {
    opacity: 1; transform: translate(2px, -2px);
}

.bygg {
    background: var(--dark);
    padding: clamp(3rem, 6vw, 4.5rem) var(--pad);
    position: relative;
    overflow: hidden;
}
.bygg__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .2;
}
.bygg__wrap {
    max-width: 720px; margin: 0 auto;
    text-align: center;
    position: relative; z-index: 1;
}
.bygg__badge {
    display: inline-block;
    font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--white);
    background: var(--red);
    padding: .3rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}
.bygg__wrap h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: .8rem;
}
.bygg__wrap p {
    font-size: .95rem; line-height: 1.7;
    color: rgba(255,255,255,.65);
    margin-bottom: 1.5rem;
}
.bygg__ctas {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; flex-wrap: wrap;
}

.galleri {
    background: var(--white);
    padding: var(--section-y) var(--pad);
}
.galleri__wrap {
    max-width: var(--max); margin: 0 auto;
}
.galleri__head {
    margin-bottom: 2rem;
}
.galleri__head .pill { margin-bottom: 1rem; }
.galleri__head h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--dark);
    line-height: 1.15;
}

.galleri__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: .8rem;
}
.galleri__item {
    border-radius: var(--r);
    overflow: hidden;
}
.galleri__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.galleri__item:hover img { transform: scale(1.05); }
.galleri__item[data-action] { cursor: pointer; position: relative; }

.galleri__more {
    text-align: center;
    margin-top: 1.5rem;
}
.galleri__item--wide { grid-column: span 2; }

.galleri__zoom {
    position: absolute; top: .8rem; right: .8rem;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    color: var(--dark);
    opacity: .7;
    transition: opacity .2s;
}
.galleri__zoom i { width: 14px; height: 14px; }
.galleri__item:hover .galleri__zoom { opacity: 1; }

.galleri__label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: .6rem .8rem;
    font-size: .75rem; font-weight: 500;
    color: var(--white);
    background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
}

.lightbox {
    position: fixed; inset: 0;
    z-index: 200;
    background: rgba(0,0,0,.9);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
    cursor: pointer;
}
.lightbox.on { opacity: 1; visibility: visible; }
.lightbox__close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__close i { width: 20px; height: 20px; }
.lightbox__prev, .lightbox__next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: background .2s;
    z-index: 2;
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__prev svg, .lightbox__next svg { width: 22px; height: 22px; }
.lightbox__img {
    max-width: 80vw; max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    cursor: default;
}

.showcase {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) var(--pad);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.showcase__img {
    position: absolute; inset: -10% 0;
    width: 100%; height: 120%;
    object-fit: cover;
}
.showcase__fade {
    position: absolute; inset: 0;
    background: var(--dark);
    opacity: .8;
}
.showcase__content {
    position: relative; z-index: 1;
    max-width: 800px;
    display: flex; align-items: center; gap: clamp(2rem, 4vw, 3rem);
}
.showcase__content::before {
    content: '';
    width: 3px; min-height: 60px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}
.showcase__text p {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    line-height: 1.45;
    color: var(--white);
    margin-bottom: .6rem;
}
.showcase__text .showcase__attr {
    font-size: .75rem; font-weight: 500;
    letter-spacing: .08em;
    color: rgba(255,255,255,.4);
}

.kontakt {
    background: var(--cream);
    padding: var(--section-y) var(--pad);
}
.kontakt__wrap {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}

.kontakt__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.kontakt__left .pill { margin-bottom: 1rem; }
.kontakt__left h2, .kontakt__left > p, .kontakt__cards { align-self: stretch; }
.kontakt__left h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: .8rem;
}
.kontakt__left > p {
    font-size: .95rem; line-height: 1.8;
    color: var(--body);
    margin-bottom: 2rem;
}

.kontakt__cards {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1;
}
.kontakt__card {
    display: flex; align-items: center; gap: .7rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--sand);
    transition: border-color .2s, box-shadow .2s;
}
.kontakt__card:hover {
    border-color: var(--warm);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.kontakt__card svg {
    width: 16px; height: 16px;
    color: var(--blue);
    flex-shrink: 0;
}
.kontakt__card div {
    display: flex; flex-direction: column;
}
.kontakt__card strong {
    font-size: .82rem; font-weight: 600;
    color: var(--dark);
}
.kontakt__card span {
    font-size: .72rem;
    color: var(--soft);
}

.kontakt__form {
    background: var(--white);
    padding: clamp(2rem, 4vw, 2.8rem);
    border-radius: var(--r);
    border: 1px solid var(--sand);
    box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.form__title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: .4rem;
}
.form__sub {
    font-size: .85rem;
    color: var(--soft);
    margin-bottom: 1.8rem;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}
.form__group {
    margin-bottom: 1.1rem;
}
.form__group label {
    display: block;
    font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--soft);
    margin-bottom: .45rem;
}
.form__group input,
.form__group textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: .9rem;
    color: var(--dark);
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 8px;
    padding: .8rem 1rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: none;
}
.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-bg);
}
.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--soft);
}

.form__online-hint {
    display: flex; align-items: center; gap: .5rem;
    padding: .6rem .8rem;
    margin-bottom: 1.2rem;
    background: var(--blue-bg);
    border: 1px solid rgba(18,59,109,.12);
    border-radius: 8px;
    font-size: .75rem; line-height: 1.4;
    color: var(--body);
    transition: border-color .2s, background .2s;
}
.form__online-hint:hover {
    border-color: var(--blue);
    background: rgba(18,59,109,.1);
}
.form__online-hint > [data-lucide]:first-child { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.form__online-hint > [data-lucide]:last-child { width: 12px; height: 12px; color: var(--soft); flex-shrink: 0; margin-left: auto; }
.form__online-hint strong { color: var(--blue); }

.kontakt__form .cta {
    width: 100%;
    margin-top: .5rem;
    padding: 1rem 2rem;
    background: var(--blue);
    box-shadow: 0 4px 20px rgba(18,59,109,.25);
}
.kontakt__form .cta:hover {
    background: var(--blue-dark);
    box-shadow: 0 10px 36px rgba(18,59,109,.35);
}

#contact-form,
#quick-contact-form {
    max-width: 100%;
    overflow: hidden;
}
#contact-form .g-recaptcha,
#quick-contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

.pergola {
    background: var(--white);
    padding: var(--section-y) var(--pad);
}
.pergola__wrap {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}
.pergola__slider {
    position: relative;
}
.pergola__slides-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
}
.pergola__slides {
    display: flex;
    transition: transform .4s ease;
}
.pergola__slides img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    flex-shrink: 0;
}
.pergola__arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.9);
    border: none; border-radius: 50%;
    cursor: pointer;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    transition: background .15s;
    z-index: 1;
}
.pergola__arrow svg { width: 16px; height: 16px; }
.pergola__arrow:hover { background: var(--white); }
.pergola__arrow--prev { left: .8rem; }
.pergola__arrow--next { right: .8rem; }
.pergola__thumbs {
    display: flex; gap: .4rem;
    margin-top: .6rem;
}
.pergola__thumbs img {
    width: 0; flex: 1;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: .5;
    border: 2px solid transparent;
    transition: opacity .2s, border-color .2s;
}
.pergola__thumbs img.active {
    opacity: 1;
    border-color: var(--red);
}
.pergola__thumbs img:hover {
    opacity: .8;
}

.pergola__content .pill { margin-bottom: 1rem; }
.pergola__content h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: .8rem;
}
.pergola__price {
    font-size: 1.1rem; font-weight: 700;
    color: var(--red);
    margin-bottom: 1.2rem;
}
.pergola__specs {
    list-style: none;
    display: flex; flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
}
.pergola__specs li {
    display: flex; align-items: center; gap: .5rem;
    font-size: .85rem;
    color: var(--body);
}
.pergola__specs i {
    width: 15px; height: 15px;
    color: var(--blue);
    flex-shrink: 0;
}
.pergola__colors {
    font-size: .8rem;
    color: var(--soft);
    margin-bottom: 1.5rem;
}
.pergola__colors a {
    color: var(--red);
    text-decoration: underline;
}


.footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    flex-grow: 1;
}
html { height: 100%; }
body { min-height: 100%; display: flex; flex-direction: column; }
.footer__cta {
    padding: clamp(3rem, 6vw, 4.5rem) var(--pad);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__cta-wrap {
    max-width: var(--max); margin: 0 auto;
}
.footer__cta h3 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: .5rem;
}
.footer__cta p {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.5rem;
}
.footer__cta-btns {
    display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap;
}
.footer__top {
    padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__wrap {
    max-width: var(--max); margin: 0 auto;
}
.footer__top .footer__wrap {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.2fr;
    gap: clamp(2.5rem, 5vw, 5rem);
}

.footer__brand { max-width: 340px; }
.footer__logo {
    display: block;
    margin-bottom: 1.2rem;
}
.footer__logo img {
    height: 34px; width: auto;
    background: var(--white);
    padding: .3rem .6rem;
    border-radius: 5px;
}
.footer__brand p {
    font-size: .85rem; line-height: 1.75;
    color: rgba(255,255,255,.45);
}
.footer__brand-sub {
    margin-top: .8rem;
    font-size: .78rem;
    color: rgba(255,255,255,.4);
}
.footer__brand-sub a {
    color: rgba(255,255,255,.65);
    text-decoration: underline;
}
.footer__brand-sub a:hover {
    color: var(--white);
}

.footer__col h4 {
    font-family: var(--sans);
    font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer__col a, .footer__col span {
    display: block;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    transition: color .15s;
    margin-bottom: .5rem;
}
.footer__col a:hover { color: var(--white); }
.footer__icon-link {
    display: flex; align-items: center; gap: .4rem;
}
.footer__icon-link i { width: 13px; height: 13px; opacity: .4; flex-shrink: 0; }

.footer__mid {
    padding: 1.2rem var(--pad);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__mid-wrap {
    display: flex; align-items: center; justify-content: space-between;
}
.footer__policies {
    display: flex; gap: 1.5rem;
}
.footer__policies a {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    transition: color .15s;
}
.footer__policies a:hover { color: var(--white); }
.footer__social {
    display: flex; gap: .5rem;
}
.footer__social a {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: rgba(255,255,255,.4);
    transition: border-color .15s, color .15s;
}
.footer__social a:hover { border-color: rgba(255,255,255,.3); color: var(--white); }
.footer__social svg { width: 14px; height: 14px; }

.footer__bottom {
    padding: 1.2rem var(--pad);
}
.footer__bottom .footer__wrap {
    display: flex; justify-content: center;
}
.footer__bottom span {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
}

@media (max-width: 1200px) {
    .nav__center, .nav__btn { display: none; }
    .nav__hamburger { display: flex; }
    .nav__dropdown-menu { display: none; }
    .footer__top .footer__wrap { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .topbar__desk { display: none; }
    .topbar { font-size: .68rem; height: 34px; }
    .topbar__shop { font-size: .6rem; padding: .18rem .55rem; }

    .intro__wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro__right { order: -1; }
    .intro__img-wrap img { aspect-ratio: 16 / 9; }
    .intro__usps { grid-template-columns: 1fr; }

    .siffror__wrap { flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }

    .products { grid-template-columns: 1fr; }

    .hero__foot > a, .hero__foot > span:last-child { display: none; }
    .hero__foot { justify-content: center; }
    .hero__ctas { flex-direction: column; align-items: center; }
    .hero__ctas .cta { width: 100%; max-width: 300px; }

    .kontakt__wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .kontakt__cards { flex-direction: column; }
    .form__row { grid-template-columns: 1fr; }

    .galleri__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
    .galleri__item--wide { grid-column: span 1; }


    .footer__top .footer__wrap { grid-template-columns: 1fr; gap: 2rem; }
    .footer__cta-btns { flex-direction: column; align-items: center; }
    .footer__cta-btns .cta { width: 100%; max-width: 280px; }
    .footer__mid-wrap { flex-direction: column; gap: .8rem; text-align: center; }
    .footer__policies { flex-wrap: wrap; justify-content: center; gap: .8rem; }
    .footer__social { justify-content: center; }
    .pergola__wrap { grid-template-columns: 1fr; }
    .pergola__content { text-align: left; }
}

@media (max-width: 480px) {
    :root { --nav-h: 60px; }
    .hero__scroll { display: none; }
    .hero__foot { bottom: 4rem; }
    .kontakt__cards { grid-template-columns: 1fr; }
    .marquee__track { animation-duration: 18s; }
    .galleri__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}

@media (max-width: 640px) {
    section, section > div, section > div > div, section > div > div > div {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: clip;
    }
    .contact-grid > div, .grid > div {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha,
    #quick-contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha,
    #quick-contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

.widget {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 150;
}
.widget__toggle {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    border: 2px solid rgba(255,255,255,.15);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: background .2s, transform .15s, border-color .2s;
}
.widget__toggle:hover { background: #2a2924; border-color: rgba(255,255,255,.2); transform: scale(1.05); }
.widget__toggle svg { width: 22px; height: 22px; }
.widget__icon-close { display: none; }
.widget.on .widget__icon-open { display: none; }
.widget.on .widget__icon-close { display: block; }

.widget__hint {
    position: absolute;
    bottom: 60px; right: 0;
    white-space: nowrap;
    background: var(--dark);
    color: var(--white);
    font-size: .78rem; font-weight: 500;
    padding: .5rem .9rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
.widget__hint::after {
    content: '';
    position: absolute;
    bottom: -5px; right: 18px;
    border: 5px solid transparent;
    border-top-color: var(--dark);
    border-bottom: none;
}
.widget__hint.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.widget__hint-close {
    position: absolute;
    top: -6px; right: -6px;
    width: 18px; height: 18px;
    background: var(--dark);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    padding: 0;
    transition: color .15s, border-color .15s;
}
.widget__hint-close svg { width: 10px; height: 10px; }
.widget__hint-close:hover { color: var(--white); border-color: var(--white); }

.widget__panel {
    position: absolute;
    bottom: 64px; right: 0;
    z-index: 2;
    width: 320px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,.15);
    border: 1px solid var(--sand);
    opacity: 0; visibility: hidden;
    transform: translateY(8px) scale(.96);
    transform-origin: bottom right;
    transition: opacity .25s, visibility .25s, transform .25s;
}
.widget.on .widget__panel {
    opacity: 1; visibility: visible;
    transform: none;
}

.widget__header {
    display: flex; align-items: center; gap: .6rem;
    padding: 1rem 1.2rem;
    background: var(--dark);
    color: var(--white);
    font-size: .85rem; font-weight: 600;
    border-radius: 16px 16px 0 0;
}
.widget__header .widget__logo { margin-left: auto; }
.widget__close {
    position: absolute;
    top: -10px; right: -10px;
    z-index: 3;
    width: 28px; height: 28px;
    background: var(--dark);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.widget__close svg { width: 12px; height: 12px; }
.widget__close:hover { background: var(--red); }
.widget__logo {
    height: 18px; width: auto;
    background: var(--white);
    padding: .1rem .3rem;
    border-radius: 3px;
}

.widget__body {
    padding: 1rem 1.2rem 1.2rem;
    max-height: 380px;
    overflow-y: auto;
}

.widget__promo {
    display: block;
    padding: .6rem .8rem;
    margin-bottom: .6rem;
    background: var(--red-bg);
    border: 1px solid rgba(199,12,22,.15);
    border-radius: 8px;
    font-size: .78rem; font-weight: 600;
    color: var(--red);
    text-align: center;
    transition: background .15s, border-color .15s;
}
.widget__promo:hover { background: rgba(199,12,22,.12); border-color: var(--red); }

.widget__options {
    display: flex; flex-direction: column;
    gap: .5rem;
}
.widget__opt {
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem 1rem;
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 10px;
    font-size: .82rem; font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: border-color .15s, background .15s;
    text-align: left;
}
.widget__opt:hover {
    border-color: var(--red);
    background: var(--red-bg);
}
.widget__opt-arrow {
    font-size: .7rem;
    color: var(--soft);
    flex-shrink: 0;
}

.widget__back {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .75rem; font-weight: 600;
    color: var(--soft);
    cursor: pointer;
    margin-bottom: .8rem;
    background: none; border: none;
    padding: 0;
    transition: color .15s;
}
.widget__back:hover { color: var(--dark); }
.widget__back svg {
    width: 14px; height: 14px;
}

.widget__info {
    font-size: .85rem;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 1rem;
}
.widget__info strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: .4rem;
}

.widget__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: .7rem;
    background: var(--red);
    color: var(--white);
    font-size: .82rem; font-weight: 600;
    border-radius: 8px;
    transition: background .15s;
    margin-bottom: .5rem;
}
.widget__cta:hover { background: var(--red-dark); }

.widget__cta-sec {
    display: block;
    width: 100%;
    text-align: center;
    padding: .6rem;
    font-size: .78rem; font-weight: 500;
    color: var(--body);
    border: 1px solid var(--sand);
    border-radius: 8px;
    transition: border-color .15s;
}
.widget__cta-sec:hover { border-color: var(--blue); }

@media (max-width: 480px) {
    .widget { bottom: 1rem; right: 1rem; }
    .widget__toggle { width: 46px; height: 46px; }
    .widget__toggle svg { width: 20px; height: 20px; }
    .widget__panel {
        width: calc(100vw - 2rem);
        right: 0;
        bottom: 58px;
    }
}

.cta--outline {
    background: transparent; color: var(--dark);
    border: 1.5px solid var(--warm);
}
.cta--outline:hover {
    border-color: var(--dark);
    transform: translateY(-2px);
}

.breadcrumb {
    display: flex; align-items: center; gap: .4rem;
    font-size: .72rem; font-weight: 500;
    color: var(--soft);
    max-width: var(--max); margin: 0 auto .8rem;
}
.breadcrumb a {
    color: var(--soft);
    transition: color .15s;
}
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb span { color: var(--warm); }
.breadcrumb > :last-child { color: var(--dark); }

.pg-head {
    background: var(--cream);
    padding: calc(var(--top-h) + var(--nav-h) + clamp(1.5rem, 3vw, 2.5rem)) var(--pad) var(--section-y);
}
.pg-head__wrap {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.pg-head__text h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.2rem;
}
.pg-head__text p {
    font-size: .95rem; line-height: 1.85;
    color: var(--body);
    margin-bottom: .8rem;
}
.pg-head__price {
    font-size: 1.2rem; font-weight: 700;
    color: var(--red);
    margin: .8rem 0;
}
.pg-head__price span {
    font-size: .75rem; font-weight: 400;
    color: var(--soft);
}
.pg-head__ctas {
    display: flex; gap: .6rem; flex-wrap: wrap;
    margin-top: 1.5rem;
}
.pg-head__img {
    border-radius: var(--r);
    overflow: hidden;
}
.pg-head__img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.pg-head__aside {
    display: flex; flex-direction: column; gap: 1rem;
}
.pg-head__cards {
    display: flex; flex-direction: column; gap: .4rem;
}
.pg-head__aside-img {
    width: 100%;
    border-radius: var(--r);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.pg-why {
    background: var(--white);
    padding: var(--section-y) var(--pad);
    border-top: 1px solid var(--sand);
}
.pg-why__wrap {
    max-width: 800px; margin: 0 auto;
    text-align: center;
}
.pg-why__wrap h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.pg-why__wrap > p {
    font-size: .95rem; line-height: 1.85;
    color: var(--body);
    margin-bottom: 2.5rem;
}
.pg-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.pg-why__item {
    padding: 1.2rem .8rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--sand);
}
.pg-why__item i {
    width: 22px; height: 22px;
    color: var(--blue);
    margin-bottom: .6rem;
}
.pg-why__item strong {
    display: block;
    font-size: .82rem; font-weight: 600;
    color: var(--dark);
    margin-bottom: .2rem;
}
.pg-why__item span {
    font-size: .72rem; line-height: 1.5;
    color: var(--soft);
}

.nav--light {
    background: rgba(250,248,245,.95);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-color: var(--sand);
}
.nav--light .nav__center a { color: var(--body); }
.nav--light .nav__center a:hover { color: var(--dark); }
.nav--light .nav__hamburger span { background: var(--dark); }

.pg-row {
    padding: var(--section-y) var(--pad);
    background: var(--cream);
}
.pg-row--alt { background: var(--white); }
.pg-row__wrap {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.pg-row--reverse .pg-row__img { order: 2; }
.pg-row__img {
    border-radius: var(--r);
    overflow: hidden;
}
.pg-row__img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.pg-row__img:hover img { transform: scale(1.03); }
.pg-row__text .pill { margin-bottom: .8rem; }
.pg-row__text h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: .8rem;
}
.pg-row__text p {
    font-size: .92rem; line-height: 1.8;
    color: var(--body);
    margin-bottom: 1rem;
}
.pg-row__list {
    list-style: none;
    display: flex; flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.2rem;
}
.pg-row__list li {
    display: flex; align-items: center; gap: .5rem;
    font-size: .85rem;
    color: var(--dark);
}
.pg-row__list i {
    width: 15px; height: 15px;
    color: var(--red);
    flex-shrink: 0;
}
.pg-row__price {
    display: block;
    font-size: .8rem; font-weight: 600;
    color: var(--blue);
    margin-bottom: 1.2rem;
}

.pg-env {
    background: var(--cream);
    padding: var(--section-y) var(--pad);
}
.pg-env__wrap {
    max-width: var(--max); margin: 0 auto;
}
.pg-env__text {
    max-width: 720px;
    margin-bottom: 2rem;
}
.pg-env__text h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.pg-env__text h3 {
    font-family: var(--sans);
    font-size: 1rem; font-weight: 600;
    color: var(--dark);
    margin: 1.2rem 0 .4rem;
}
.pg-env__text p {
    font-size: .95rem; line-height: 1.85;
    color: var(--body);
    margin-bottom: .6rem;
}
.pg-env__text ul {
    list-style: none;
    margin: .5rem 0 1rem;
}
.pg-env__text li {
    font-size: .92rem; line-height: 1.8;
    color: var(--body);
    padding: .15rem 0;
}
.pg-env__text a {
    color: var(--red);
    text-decoration: underline;
    transition: color .15s;
}
.pg-env__text a:hover { color: var(--red-dark); }

.pg-legal {
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
}
.pg-legal .pg-head__wrap {
    grid-template-columns: 1fr;
    max-width: 800px;
}
.pg-legal .pg-head__text h1 { margin-bottom: .3rem; }
.pg-legal .pg-head__text p {
    font-size: .9rem;
    color: var(--soft);
}
.pg-legal + .pg-why {
    padding-top: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    border-top: none;
    text-align: left;
}
.pg-legal-body {
    max-width: 800px; margin: 0 auto;
    text-align: left;
    background: var(--white);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--r);
    border: 1px solid var(--sand);
}
.pg-legal-body > p:first-child {
    font-size: .9rem;
    color: var(--body);
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--sand);
}
.pg-legal-body h2 {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--dark); line-height: 1.25;
    margin: 1.8rem 0 .5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--sand);
}
.pg-legal-body h2:first-of-type { border-top: none; padding-top: 0; }
.pg-legal-body h3 {
    font-size: .88rem; font-weight: 600;
    color: var(--dark); margin: 1rem 0 .25rem;
}
.pg-legal-body h4 {
    font-size: .82rem; font-weight: 600;
    color: var(--dark); margin: .8rem 0 .2rem;
}
.pg-legal-body p {
    font-size: .85rem; line-height: 1.75;
    color: var(--body); margin-bottom: .4rem;
}
.pg-legal-body ul {
    list-style: disc; padding-left: 1.2rem;
    margin-bottom: .6rem;
}
.pg-legal-body li {
    font-size: .85rem; line-height: 1.75;
    color: var(--body); margin-bottom: .15rem;
}
.pg-legal-body strong { color: var(--dark); }
.pg-legal-body a {
    color: var(--red); text-decoration: underline;
}
.pg-legal-body a:hover { color: var(--red-dark); }
.pg-env__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
}
.pg-env__img {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 3 / 4;
}
.pg-env__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.pg-env__img:hover img { transform: scale(1.05); }

.pg-price {
    background: var(--dark);
    padding: var(--section-y) var(--pad);
}
.pg-price__wrap {
    max-width: 720px; margin: 0 auto;
    text-align: center;
}
.pg-price__wrap h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.pg-price__wrap > p {
    font-size: .95rem; line-height: 1.85;
    color: rgba(255,255,255,.6);
    margin-bottom: 2rem;
}
.pg-price__needs {
    text-align: left;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.pg-price__needs strong {
    display: block;
    font-size: .85rem; font-weight: 600;
    color: var(--white);
    margin-bottom: .8rem;
}
.pg-price__needs ul {
    list-style: none;
    display: flex; flex-direction: column;
    gap: .5rem;
}
.pg-price__needs li {
    display: flex; align-items: center; gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.55);
}
.pg-price__needs i {
    width: 15px; height: 15px;
    color: var(--red);
    flex-shrink: 0;
}

.pg-offert {
    background: var(--white);
    padding: var(--section-y) var(--pad);
}
.pg-offert__wrap {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}
.pg-offert__info h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: .8rem;
}
.pg-offert__info > p {
    font-size: .95rem; line-height: 1.85;
    color: var(--body);
    margin-bottom: 1.5rem;
}
.pg-offert__cards {
    display: flex; flex-direction: column;
    gap: .5rem;
}

@media (max-width: 1024px) {
    .pg-why__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .pg-head__wrap { grid-template-columns: 1fr; gap: 2rem; }
    .pg-head__img { order: -1; }
    .pg-head__img img { aspect-ratio: 16 / 9; }
    .pg-row__wrap { grid-template-columns: 1fr; gap: 1.5rem; }
    .pg-row--reverse .pg-row__img { order: 0; }
    .pg-row__img img { aspect-ratio: 16 / 9; }
    .pg-env__images { grid-template-columns: 1fr 1fr; }
    .pg-offert__wrap { grid-template-columns: 1fr; }
    .pg-why__grid { grid-template-columns: 1fr 1fr; }
}

.insp {
    background: var(--white);
    padding: var(--section-y) var(--pad);
}
.insp__grid {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: .6rem;
}
.insp__item {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.insp__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.insp__item:hover img { transform: scale(1.04); }
.insp__item--wide { grid-column: span 2; }
.insp__item--tall { grid-row: span 2; }

.insp-social {
    background: var(--cream);
    padding: var(--section-y) var(--pad);
}
.insp-social__wrap {
    max-width: var(--max); margin: 0 auto;
}
.insp-social__head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.insp-social__head h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--dark); line-height: 1.2;
    margin-bottom: .3rem;
}
.insp-social__head p {
    font-size: .9rem;
    color: var(--soft);
}
.insp-social__feed {
    max-width: 500px; margin: 0 auto;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--sand);
    background: var(--white);
}
.insp-social__feed iframe {
    display: block; width: 100%; height: 500px; border: none;
}
@media (max-width: 540px) {
    .insp-social__feed { max-width: 100%; }
}

.insp-cta {
    background: var(--red);
    padding: clamp(3rem, 6vw, 4.5rem) var(--pad);
    text-align: center;
}
.insp-cta__wrap {
    max-width: 600px; margin: 0 auto;
}
.insp-cta h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: .5rem;
}
.insp-cta p {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 1.5rem;
}
.insp-cta__btns {
    display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap;
}

@media (max-width: 768px) {
    .insp__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .insp__item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
    .insp__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .insp__item--wide { grid-column: span 1; }
    .insp__item--tall { grid-row: span 1; }
    .insp-cta__btns { flex-direction: column; align-items: center; }
    .insp-cta__btns .cta { width: 100%; max-width: 280px; }
    .pg-why__grid { grid-template-columns: 1fr; }
    .pg-env__images { grid-template-columns: 1fr; }
    .breadcrumb { font-size: .65rem; gap: .3rem; }
}

.c-hero {
    position: relative;
    padding: calc(var(--top-h) + var(--nav-h) + clamp(3rem, 6vw, 5rem)) var(--pad) clamp(3rem, 6vw, 5rem);
    overflow: hidden;
    text-align: center;
}
.c-hero__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.c-hero__fade {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--dark) 0%, rgba(26,25,21,.85) 100%);
}
.c-hero__content {
    position: relative; z-index: 1;
    max-width: 560px; margin: 0 auto;
}
.c-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1.1; color: var(--white);
    margin-bottom: .8rem;
}
.c-hero p {
    font-size: .95rem; line-height: 1.7;
    color: rgba(255,255,255,.6);
}
.c-hero .breadcrumb {
    justify-content: center;
    color: rgba(255,255,255,.5);
}
.c-hero .breadcrumb a { color: rgba(255,255,255,.5); }
.c-hero .breadcrumb a:hover { color: var(--white); }
.c-hero .breadcrumb span { color: rgba(255,255,255,.3); }
.c-hero .breadcrumb > :last-child { color: rgba(255,255,255,.8); }

.c-card {
    display: flex; align-items: center; gap: .7rem;
    padding: .65rem .9rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--sand);
    transition: border-color .15s;
}
a.c-card:hover { border-color: var(--blue); }
.c-card__icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--blue-bg);
    border-radius: 8px;
    flex-shrink: 0;
}
.c-card__icon i { width: 14px; height: 14px; color: var(--blue); }
.c-card strong {
    font-size: .82rem; font-weight: 600;
    color: var(--dark);
}
.c-card > span {
    font-size: .78rem;
    color: var(--body);
    margin-left: auto;
}
.c-card__sub { display: none; }
.c-social-bottom {
    display: flex; align-items: center; justify-content: center;
    gap: .5rem;
    margin-top: .8rem;
}
.c-social-bottom span {
    font-size: .72rem; font-weight: 500;
    color: var(--soft);
}
.c-social-bottom a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 50%;
    color: var(--body);
    transition: border-color .15s, color .15s;
}
.c-social-bottom a:hover { border-color: var(--blue); color: var(--blue); }
.c-social-bottom i { width: 13px; height: 13px; }

.c-form-section {
    background: var(--white);
    padding: var(--section-y) var(--pad);
}
.c-form-section__wrap {
    max-width: var(--max); margin: 0 auto;
}
.c-form-section__heading {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: .4rem;
}
.c-form-section__sub {
    font-size: .92rem; line-height: 1.7;
    color: var(--body);
    margin-bottom: 2rem;
    max-width: 560px;
}
.c-form-section__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}
.c-map {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--sand);
}
.c-map iframe {
    display: block; width: 100%;
    border: 0;
}
.c-info-main {
    display: flex; flex-direction: column;
    gap: .35rem;
    margin-top: 1.2rem;
}
.c-info-extra {
    margin-top: .8rem;
    padding: .8rem 1rem;
    background: var(--cream);
    border-radius: 10px;
    border: 1px solid var(--sand);
    display: flex; flex-direction: column;
    gap: .4rem;
}
.c-info-extra__item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .75rem;
    color: var(--body);
}
.c-info-extra__item i, .c-info-extra__item [data-lucide] {
    width: 13px; height: 13px;
    color: var(--soft);
    flex-shrink: 0;
}
.c-info-extra__social {
    display: flex; align-items: center; gap: .5rem;
    padding-top: .4rem;
    border-top: 1px solid var(--sand);
    margin-top: .2rem;
}
.c-info-extra__social span {
    font-size: .72rem; font-weight: 500;
    color: var(--soft);
}
.c-info-extra__social a {
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 6px;
    color: var(--body);
    transition: border-color .15s, color .15s;
}
.c-info-extra__social a:hover { border-color: var(--blue); color: var(--blue); }
.c-info-extra__social svg { width: 13px; height: 13px; }
.c-social {
    display: flex; align-items: center; gap: .6rem;
    margin-top: 1rem;
}
.c-social span {
    font-size: .72rem; font-weight: 500;
    color: var(--soft);
}
.c-social__links {
    display: flex; gap: .4rem;
}
.c-social__links a {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 8px;
    color: var(--body);
    transition: border-color .15s, color .15s;
}
.c-social__links a:hover { border-color: var(--blue); color: var(--blue); }
.c-social__links svg { width: 14px; height: 14px; }

.offert-ways {
    background: var(--white);
    padding: var(--section-y) var(--pad);
    border-top: 1px solid var(--sand);
}
.offert-ways__wrap {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.offert-way {
    display: flex; flex-direction: column;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--r);
    border: 1px solid var(--sand);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.offert-way:hover {
    border-color: var(--warm);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transform: translateY(-2px);
}
.offert-way--highlight {
    background: var(--red-bg);
    border-color: rgba(199,12,22,.15);
    position: relative;
}
.offert-way--highlight:hover {
    border-color: var(--red);
}
.offert-way__badge {
    position: absolute;
    top: .8rem; right: .8rem;
    font-size: .6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--white); background: var(--red);
    padding: .15rem .5rem; border-radius: 4px;
}
.offert-way > [data-lucide] {
    width: 22px; height: 22px;
    color: var(--blue);
    margin-bottom: .8rem;
}
.offert-way--highlight > [data-lucide] { color: var(--red); }
.offert-way h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: .4rem;
}
.offert-way p {
    font-size: .85rem; line-height: 1.65;
    color: var(--body);
    margin-bottom: auto;
}
.offert-way__link {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .8rem; font-weight: 600;
    color: var(--red);
    margin-top: 1rem;
}
.offert-way__link i { width: 14px; height: 14px; }

@media (max-width: 768px) {
    .offert-ways__wrap { grid-template-columns: 1fr; }
    .c-form-section__grid { grid-template-columns: 1fr; }
    .pg-offert__wrap { grid-template-columns: 1fr; }
    .pg-offert__form { order: -1; }
}

.pg-env--white { background: var(--white); }
.pg-env__text--center { text-align: center; max-width: none; }

.citila-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.citila-specs__card {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: var(--r);
    padding: 2rem;
}
.citila-specs__card h3 {
    font-family: var(--sans);
    font-size: 1rem; font-weight: 600;
    color: var(--dark);
    margin-bottom: .8rem;
}
.citila-specs__card h3:not(:first-child) {
    margin-top: 1.5rem;
}
.citila-specs__card ul {
    list-style: none;
}
.citila-specs__card li {
    font-size: .88rem; line-height: 1.8;
    color: var(--body);
    padding: .2rem 0;
    border-bottom: 1px solid var(--sand);
}
.citila-specs__card li:last-child { border-bottom: none; }
.citila-specs__card li strong { color: var(--dark); }
.citila-specs__card p {
    font-size: .88rem; line-height: 1.75;
    color: var(--body);
    margin-bottom: .4rem;
}
@media (max-width: 768px) {
    .citila-specs { grid-template-columns: 1fr; }
}

.citila-uses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.citila-uses__card {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--r);
    padding: 2rem 1.5rem;
    text-align: center;
}
.citila-uses__card > [data-lucide] {
    width: 32px; height: 32px;
    color: var(--red);
    margin-bottom: 1rem;
}
.citila-uses__card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: .6rem;
}
.citila-uses__card p {
    font-size: .88rem; line-height: 1.75;
    color: var(--body);
}
@media (max-width: 768px) {
    .citila-uses { grid-template-columns: 1fr; }
}

.citila-faq__list {
    max-width: 800px;
    margin: 0 auto;
}
.citila-faq__item {
    border: 1px solid var(--sand);
    border-radius: var(--r);
    margin-bottom: .6rem;
    overflow: hidden;
    background: var(--white);
}
.citila-faq__q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem;
    font-family: var(--sans);
    font-size: .95rem; font-weight: 500;
    color: var(--dark);
    background: none; border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}
.citila-faq__q:hover { color: var(--red); }
.citila-faq__q [data-lucide] {
    width: 18px; height: 18px;
    flex-shrink: 0;
    transition: transform .25s;
}
.citila-faq__item.open .citila-faq__q [data-lucide] {
    transform: rotate(180deg);
}
.citila-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}
.citila-faq__item.open .citila-faq__a {
    max-height: 300px;
}
.citila-faq__a p {
    padding: 0 1.25rem 1rem;
    font-size: .88rem; line-height: 1.75;
    color: var(--body);
}
.pg-row__ctas {
    display: flex; gap: .8rem; flex-wrap: wrap;
    margin-top: .5rem;
}
