:root {
    --green: #003A27;
    --green-hover: #00291c;
    --green-soft: #31735E;
    --green-text: #003A27;
    --black: #1a1a1a;
    --gray-bg: #f6f6f6;
    --gray-input: #ececec;
    --gray-text: #4a4a4a;
    --white: #fff;
    --font: 'Montserrat', system-ui, sans-serif;
    --container: min(1180px, 92vw);
    --radius: 28px;
    --shadow-card: 0 8px 32px rgba(0, 58, 39, .08);
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
    --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); line-height: 1.65; background: var(--white); overflow-x: hidden; }
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin: 0 auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .85rem 1.8rem; font-family: var(--font); font-weight: 700; font-size: .82rem;
    letter-spacing: .02em; border: none; border-radius: 999px; cursor: pointer;
    transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-hover); transform: translateY(-1px); }
.btn-sm { padding: .55rem 1.35rem; font-size: .78rem; }
.btn-ghost { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn .btn-loader { display: none; align-items: center; gap: .5rem; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loader { display: flex; }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.spinner {
    width: 44px; height: 44px; border: 3px solid #ddd; border-top-color: var(--green);
    border-radius: 50%; animation: spin .7s linear infinite;
}
.spinner-sm { width: 18px; height: 18px; border-width: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,58,39,.06);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: var(--header-h); gap: 1rem;
}
.logo { display: flex; flex-direction: column; align-items: center; line-height: 1; color: var(--green); }
.logo-mark { width: 90px; height: auto; display: block; }
.logo-word { font-weight: 700; font-size: .72rem; letter-spacing: .22em; margin-top: 2px; }
.nav { display: flex; gap: 1.6rem; font-weight: 600; font-size: .95rem; }
.nav a { position: relative; padding: .25rem 0; }
.nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px;
    background: var(--green); transform: scaleX(0); transform-origin: center; transition: transform .25s;
}
.nav a.is-active::after, .nav a:hover::after { transform: scaleX(1); }
.menu-toggle {
    display: none; width: 42px; height: 42px; border: 0; background: none; cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: var(--green); margin: 6px 8px; }

.hero { position: relative; background: var(--white); }
.hero-slider { position: relative; min-height: min(72vh, 760px); overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero-slide.is-active { position: relative; opacity: 1; }
.hero-img, .hero-slide img { width: 100%; height: min(72vh, 760px); object-fit: cover; }
.hero-dots {
    display: flex; justify-content: center; gap: .55rem; z-index: 2;
    padding: .95rem 0 0;
}
.hero-dot {
    width: 10px; height: 10px; border-radius: 50%; border: 0; background: #cfd5d2; cursor: pointer;
}
.hero-dot.is-active { background: var(--green); }

.intro-section { padding: 4.5rem 0 3rem; text-align: center; }
.intro-title { color: var(--green); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.intro-lead { max-width: 720px; margin: 0 auto 2.8rem; color: var(--gray-text); }
.value-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1rem;
}
.value-item { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.value-icon { color: var(--green); }
.value-icon svg { width: 56px; height: 56px; display: block; }
.value-item p { font-weight: 600; font-size: .92rem; max-width: 12rem; }

.products-section { padding: 1rem 0 4rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.product-card { display: flex; flex-direction: column; gap: 1rem; }
.product-card h2 { color: var(--green); font-size: 1.6rem; }
.product-photo { overflow: hidden; border-radius: 8px; }
.product-photo img { width: 100%; height: 250px; object-fit: cover; transition: transform .5s; }
.product-photo:hover img { transform: scale(1.04); }
.product-copy { color: var(--gray-text); font-size: .95rem; min-height: 5.2em; }
.product-card h3 { font-size: .95rem; margin-top: .25rem; }
.extras-list { list-style: none; display: grid; gap: .85rem; margin-bottom: .6rem; }
.extras-list li { display: flex; align-items: center; gap: .8rem; font-size: .95rem; }
.extras-icon { color: var(--green); flex: 0 0 40px; width: 40px; height: 40px; }
.extras-icon svg { width: 40px; height: 40px; display: block; }
.product-card .btn { align-self: flex-start; margin-top: auto; }

.panels-section { padding: 1rem 0 3.5rem; text-align: center; }
.panels-section h2 { color: var(--green); font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 1.8rem; }
.carousel { position: relative; display: flex; align-items: center; gap: .6rem; }
.carousel-viewport { overflow: hidden; flex: 1; }
.carousel-track { display: flex; gap: 1rem; transition: transform .45s ease; align-items: center; }
.panel-item {
    flex: 0 0 150px;
    width: 150px;
    height: 430px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.panel-item picture { display: block; width: 100%; height: 100%; }
.panel-item img {
    width: 150px;
    height: 430px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
    background: #fff;
    display: block;
}
.carousel-btn {
    width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--green); color: #fff; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
}
.carousel-dots { display: flex; justify-content: center; gap: .45rem; margin-top: 1.2rem; }
.carousel-dots button {
    width: 8px; height: 8px; border-radius: 50%; border: 0; background: #cfd5d2; cursor: pointer;
}
.carousel-dots button.is-active { background: var(--green); }

.gallery-section { padding-bottom: 0; }
.gallery-row { display: grid; grid-template-columns: repeat(6, 1fr); }
.gallery-item img { width: 100%; height: 180px; object-fit: cover; }
.gallery-item { display: block; overflow: hidden; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item img { transition: transform .45s; }

.quote-footer { background: var(--green-soft); color: var(--white); padding: 3.2rem 0 3.6rem; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.2fr; gap: 3rem; align-items: start; }
.quote-footer h2 { font-size: 1.7rem; margin-bottom: 1.2rem; }
.quote-list { list-style: none; display: grid; gap: 1rem; }
.quote-list li { display: flex; align-items: center; gap: .75rem; }
.quote-list svg { flex: 0 0 20px; }
.contact-form { display: grid; gap: .85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; border: 0; border-radius: 10px; background: var(--gray-input);
    padding: .85rem 1rem; font: inherit; color: var(--black);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.form-actions { display: flex; justify-content: flex-end; }
.field-error { display: block; color: #fff; font-size: .75rem; min-height: 1em; }
.form-message { padding: .75rem 1rem; border-radius: 10px; background: rgba(255,255,255,.12); }
.form-group-gdpr { font-size: .82rem; }
.custom-checkbox { display: flex; gap: .6rem; align-items: flex-start; cursor: pointer; }
.custom-checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex: 0 0 18px; }
.checkbox-mark { display: none; }
.privacy-link { background: none; border: 0; color: #fff; text-decoration: underline; cursor: pointer; font: inherit; }
.recaptcha-modal-dialog { width: min(420px, 92vw); }
.recaptcha-modal-actions { display: flex; justify-content: flex-end; gap: .6rem; margin-top: 1rem; }
.recaptcha-modal-error { color: #ffd9d9; font-size: .85rem; margin-top: .6rem; }
.recaptcha-widget { display: flex; justify-content: center; min-height: 78px; }
.site-footer { background: var(--green-soft); color: rgba(255,255,255,.85); padding: 1.15rem 0 1.2rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; border-top: 1px solid rgba(255,255,255,.18); padding-top: 1rem; }

.product-page { padding-top: 1rem; }
.product-intro { padding: 2.2rem 0 1.5rem; }
.product-intro h1 { color: var(--green); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .5rem; position: relative; display: inline-block; }
.product-intro h1::after { content: ""; display: block; width: 72px; height: 4px; background: var(--green); margin-top: .55rem; }
.product-intro-text { max-width: 980px; color: var(--gray-text); }
.product-hero img { width: 100%; height: min(62vh, 640px); object-fit: cover; }
.product-features, .extra-blocks, .specs-section, .colors-section { padding: 2.6rem 0; }
.product-features h2, .specs-section h2, .colors-section h2, .about-page h1, .contact-details h1 {
    color: var(--green); font-size: 1.8rem; margin-bottom: 1.2rem;
}
.check-list { list-style: none; display: grid; gap: .7rem; max-width: 920px; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-dot {
    width: 26px; height: 26px; color: var(--green); background: transparent;
    display: inline-flex; align-items: center; justify-content: center; flex: 0 0 26px; margin-top: 1px;
}
.check-dot svg { display: block; width: 26px; height: 26px; }
.extra-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
.extra-block-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .45rem; }
.extra-block-icon { color: var(--green); flex: 0 0 56px; }
.extra-block-icon svg { width: 56px; height: 56px; display: block; }
.extra-block h3 { color: var(--green); margin: 0; font-size: 1.15rem; }
.extra-block p { margin: 0; padding-left: calc(56px + .9rem); }
.spec-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.spec-photos img { width: 100%; height: 240px; object-fit: cover; border-radius: 8px; }
.spec-photos figcaption { text-align: center; margin-top: .5rem; font-weight: 600; color: var(--green); }
.table-wrap { overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: .75rem .9rem; text-align: left; border-bottom: 1px solid #e6e6e6; }
.spec-table th { color: var(--green); }
.specs-lists-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.spec-side-photo img { width: 100%; border-radius: 8px; }
.spec-notes { margin-top: 1rem; color: var(--gray-text); }
.spec-list-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.spec-list-cols h3 { color: var(--green); margin-bottom: .6rem; }
.spec-list-cols ul { list-style: none; }
.spec-list-cols li { padding: .25rem 0; }
.colors-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; text-align: center; }
.color-shape {
    display: block; width: 96px; height: 57px; margin: 0 auto;
    background: currentColor;
    -webkit-mask: url(/assets/img/logo-icon.png) center / contain no-repeat;
    mask: url(/assets/img/logo-icon.png) center / contain no-repeat;
}
.colors-grid figcaption { margin-top: .4rem; font-size: .85rem; }

.about-page { padding: 2.5rem 0 3rem; }
.about-page h1 { display: inline-block; }
.about-page h1::after { content: ""; display: block; width: 64px; height: 4px; background: var(--green); margin: .55rem 0 1.4rem; }
.about-text { max-width: 920px; color: var(--gray-text); }
.about-text p { margin-bottom: 1rem; }
.about-photo { margin-top: 2rem; }
.about-photo img { width: 100%; height: min(52vh, 520px); object-fit: cover; border-radius: 8px; }

.contact-page { padding: 2.5rem 0 4rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-details h1 { display: inline-block; }
.contact-details h1::after { content: ""; display: block; width: 64px; height: 4px; background: var(--green); margin: .55rem 0 1.2rem; }
.contact-dl { display: grid; gap: .7rem; margin-bottom: 1.5rem; }
.contact-dl div { display: grid; grid-template-columns: 160px 1fr; gap: .5rem; }
.contact-dl dt { font-weight: 700; }
.contact-map iframe { width: 100%; height: 280px; border: 0; border-radius: 10px; }
.contact-card {
    background: var(--green-soft); color: #fff; border-radius: 28px; padding: 2rem 1.6rem 1.8rem;
}
.contact-card h2 { text-align: center; margin-bottom: 1.2rem; }
.contact-card .field-error { color: #ffe3e3; }

.cookie-banner {
    position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1200;
    background: #fff; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.16); padding: 1.2rem;
}
.cookie-banner-inner { display: flex; gap: 1rem; align-items: center; justify-content: space-between; width: 100%; }
.cookie-banner-actions { display: flex; gap: .6rem; }
.privacy-modal { position: fixed; inset: 0; z-index: 1300; display: flex; align-items: center; justify-content: center; }
.privacy-modal[hidden] { display: none; }
.privacy-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.privacy-modal-dialog { position: relative; background: #fff; width: min(760px, 92vw); max-height: 86vh; overflow: auto; border-radius: 16px; padding: 1.4rem; }
.privacy-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.privacy-modal-close { border: 0; background: none; font-size: 1.6rem; cursor: pointer; }
.lightbox { position: fixed; inset: 0; z-index: 1400; background: rgba(0,0,0,.86); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 86vh; }
.lightbox-close, .lightbox-nav {
    position: absolute; border: 0; background: none; color: #fff; font-size: 2.4rem; cursor: pointer;
}
.lightbox-close { top: 1rem; right: 1.4rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.legal-page { padding: 2.5rem 0 4rem; max-width: 860px; }
.legal-page h1 { color: var(--green); margin-bottom: 1rem; }
.legal-page h2 { color: var(--green); margin: 1.6rem 0 .6rem; }
.legal-page p, .legal-page li { color: var(--gray-text); margin-bottom: .7rem; }

.nav-backdrop { display: none; }

@media (max-width: 980px) {
    .nav { display: none; position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; flex-direction: column; padding: 1.2rem 1.4rem 1.6rem; gap: 1rem; box-shadow: 0 16px 30px rgba(0,0,0,.08); }
    .nav.is-open { display: flex; }
    .menu-toggle { display: block; }
    .value-grid, .products-grid { grid-template-columns: 1fr; }
    .quote-grid, .contact-layout, .extra-blocks, .specs-lists-grid, .spec-photos, .colors-grid { grid-template-columns: 1fr; }
    .gallery-row { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .contact-dl div { grid-template-columns: 1fr; }
    .header-cta { display: none; }
    .nav-backdrop.is-open { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.25); z-index: 900; }
}
@media (max-width: 640px) {
    .hero-slider, .hero-img, .hero-slide img { min-height: 42vh; height: 42vh; }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; }
}
