:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f6faf6;
  --surface: #ffffff;
  --surface-green: #eef8ef;
  --text: #152219;
  --muted: #637068;
  --line: #dfe9e1;
  --green: #2e7d32;
  --green2: #4caf50;
  --green-dark: #176326;
  --green-soft: #eaf6eb;
  --white: #ffffff;
  --danger: #b42318;
  --radius: 22px;
  --shadow-sm: 0 10px 32px rgba(23, 99, 38, .08);
  --shadow: 0 24px 70px rgba(22, 70, 31, .13);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #fff; }
body { margin: 0; min-height: 100%; overflow-x: hidden; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(76, 175, 80, .35); outline-offset: 3px; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 900px; }
.muted { color: var(--muted); }
.skip-link { position: fixed; top: -100px; left: 18px; z-index: 99999; padding: 12px 16px; border-radius: 10px; background: var(--green-dark); color: #fff; }
.skip-link:focus { top: 18px; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(26, 99, 39, .1); background: rgba(255, 255, 255, .94); box-shadow: 0 8px 30px rgba(21, 63, 29, .055); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.site-header::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--green2), transparent); opacity: .5; content: ""; }
.header-inner { width: min(var(--container), calc(100% - 40px)); min-height: 146px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { min-width: 0; display: flex; align-items: center; }
.brand-logo { width: 280px; height: 141px; flex: 0 0 auto; display: flex; align-items: center; }
.brand-logo img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 3px; padding: 0; margin: 0; list-style: none; }
.nav-link { position: relative; display: inline-flex; padding: 11px 13px; border-radius: 12px; color: #39463d; font-size: 14px; font-weight: 720; transition: color .18s ease, background .18s ease; }
.nav-link::after { position: absolute; right: 14px; bottom: 5px; left: 14px; height: 2px; border-radius: 2px; background: var(--green); transform: scaleX(0); transition: transform .18s ease; content: ""; }
.nav-link:hover, .nav-link.is-active { background: var(--green-soft); color: var(--green-dark); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--green-dark); box-shadow: var(--shadow-sm); cursor: pointer; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 18px; border: 1px solid transparent; border-radius: 14px; cursor: pointer; font-weight: 780; line-height: 1.2; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green-dark), var(--green2)); color: #fff; box-shadow: 0 13px 28px rgba(46, 125, 50, .23); }
.btn-primary:hover { box-shadow: 0 17px 34px rgba(46, 125, 50, .3); }
.btn-outline { border-color: #b9d4be; background: #fff; color: var(--green-dark); }
.btn-outline:hover { border-color: var(--green2); background: var(--green-soft); }
.btn-light { background: #fff; color: var(--green-dark); box-shadow: 0 10px 26px rgba(0, 0, 0, .12); }
.btn-dark { border-color: rgba(255, 255, 255, .42); background: rgba(13, 67, 26, .28); color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: var(--green-dark); font-weight: 800; }
.text-link i { font-size: 12px; transition: transform .18s ease; }
.text-link:hover i { transform: translateX(4px); }

.hero { position: relative; isolation: isolate; overflow: hidden; padding: 78px 0 72px; background: #fff; }
.hero::before { position: absolute; z-index: -2; inset: 0; background: radial-gradient(720px 470px at 88% 20%, rgba(76, 175, 80, .13), transparent 72%), radial-gradient(500px 360px at 3% 80%, rgba(46, 125, 50, .07), transparent 72%); content: ""; }
.hero::after { position: absolute; z-index: -1; top: 26px; right: -120px; width: 440px; height: 440px; border: 1px solid rgba(76, 175, 80, .12); border-radius: 50%; box-shadow: 0 0 0 58px rgba(76, 175, 80, .025), 0 0 0 116px rgba(76, 175, 80, .018); content: ""; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(38px, 6vw, 82px); }
.hero-content { position: relative; z-index: 1; }
.badge { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid #c8e4cd; border-radius: 999px; background: #f2faf3; color: var(--green-dark); font-size: 13px; font-weight: 800; box-shadow: 0 8px 24px rgba(46, 125, 50, .06); }
.badge i { color: var(--green2); }
.hero h1, .page-hero h1 { margin: 19px 0 17px; color: #102016; font-size: clamp(40px, 5.15vw, 68px); line-height: 1.04; letter-spacing: -2.4px; text-wrap: balance; }
.hero h1 { max-width: 770px; }
.lead { max-width: 65ch; margin: 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; color: #3f4f43; font-size: 13px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid #e3ebe4; border-radius: 10px; background: rgba(255, 255, 255, .85); box-shadow: 0 7px 22px rgba(25, 73, 34, .055); }
.trust-row i { color: var(--green2); }
.hero-visual { position: relative; }
.visual-card { position: relative; padding: 15px; overflow: hidden; border: 1px solid #dbe9de; border-radius: 30px; background: rgba(255, 255, 255, .96); box-shadow: var(--shadow); }
.visual-card::before { position: absolute; top: -90px; left: -90px; width: 230px; height: 230px; border-radius: 50%; background: rgba(76, 175, 80, .12); filter: blur(52px); content: ""; pointer-events: none; }
.visual-top { position: relative; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 5px 13px; }
.visual-brand { min-width: 0; display: flex; align-items: center; gap: 11px; }
.visual-brand img { width: 104px; height: 52px; object-fit: contain; object-position: left center; }
.visual-brand > span { min-width: 0; display: grid; gap: 2px; }
.visual-brand small { color: var(--muted); font-size: 10px; }
.visual-brand strong { color: var(--text); font-size: 13px; }
.visual-status { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; color: var(--green-dark); font-size: 11px; font-weight: 750; }
.visual-status i { color: var(--green2); font-size: 7px; box-shadow: 0 0 0 4px rgba(76, 175, 80, .13); border-radius: 50%; }
.hero-gallery-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.hero-gallery-item { display: block; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid #d9e6dc; border-radius: 17px; background: var(--bg-soft); }
.hero-gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.hero-gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .42s ease; }
.hero-gallery-item:hover img { transform: scale(1.055); }

.section { padding: 88px 0; }
.section-tight { padding-top: 26px; }
.section.alt { position: relative; border-block: 1px solid #e3eee5; background: linear-gradient(180deg, #f7fbf7, #f1f8f2); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2, .split h2, .content-card h2, .location-card h2 { margin: 9px 0 11px; color: #14251a; font-size: clamp(30px, 4vw, 45px); line-height: 1.1; letter-spacing: -1.3px; text-wrap: balance; }
.section-head p, .lead-sm { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-kicker { display: inline-block; color: var(--green); font-size: 12px; font-weight: 880; letter-spacing: .13em; text-transform: uppercase; }
.grid { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.card:hover { border-color: #c7dfcb; box-shadow: 0 18px 45px rgba(25, 87, 37, .11); transform: translateY(-4px); }
.card h2, .card h3 { margin: 13px 0 8px; color: #18291d; }
.card h2 { font-size: 21px; }
.card h3 { font-size: 19px; }
.card p { margin: 0; color: var(--muted); line-height: 1.68; }
.card-icon { width: 51px; height: 51px; display: grid; place-items: center; border: 1px solid #cce4d0; border-radius: 16px; background: linear-gradient(145deg, #eef9ef, #dff1e2); color: var(--green-dark); box-shadow: inset 0 1px 0 #fff; font-size: 19px; }
.service-card { position: relative; min-height: 208px; overflow: hidden; }
.service-card::after { position: absolute; right: -48px; bottom: -56px; width: 140px; height: 140px; border-radius: 50%; background: rgba(76, 175, 80, .065); content: ""; }
.service-card-detail { min-height: 100%; }
.service-card-detail .text-link { position: relative; z-index: 1; }
.section-cta { display: flex; justify-content: center; margin-top: 28px; }

.split { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 58px; }
.checklist { display: grid; gap: 13px; padding: 0; margin: 25px 0 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; color: #334238; line-height: 1.55; }
.checklist i { margin-top: 4px; color: var(--green2); }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.stat { min-height: 164px; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; border: 1px solid #cee2d1; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.stat::before { width: 38px; height: 4px; margin-bottom: auto; border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--green2)); content: ""; }
.stat-num { color: var(--green-dark); font-size: clamp(31px, 4vw, 48px); letter-spacing: -1.6px; }
.stat-label { margin-top: 6px; color: var(--muted); font-size: 13px; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; border: 1px solid #d7e6da; border-radius: 999px; background: #fff; color: #35453a; font-weight: 700; box-shadow: 0 7px 20px rgba(28, 78, 37, .05); }
.pill i { color: var(--green2); }
.quote { min-height: 224px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.quote::before { width: 40px; height: 32px; margin-bottom: 13px; color: rgba(46, 125, 50, .19); font-family: Georgia, serif; font-size: 56px; line-height: 1; content: "“"; }
.quote .stars { color: #efb42d; letter-spacing: 2px; }
.quote p { margin: 17px 0; color: #334139; font-size: 16px; line-height: 1.65; }
.quote strong { margin-top: auto; color: var(--green-dark); font-size: 13px; }

.cta { padding: 34px 0 82px; background: #fff; }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(30px, 5vw, 50px); overflow: hidden; border: 1px solid rgba(46, 125, 50, .28); border-radius: 30px; background: linear-gradient(125deg, #176326, #2e7d32 54%, #4caf50); box-shadow: 0 26px 65px rgba(31, 112, 48, .22); color: #fff; }
.cta-inner::before, .cta-inner::after { position: absolute; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; content: ""; pointer-events: none; }
.cta-inner::before { top: -120px; right: -70px; width: 300px; height: 300px; }
.cta-inner::after { right: 120px; bottom: -170px; width: 260px; height: 260px; }
.cta-inner > * { position: relative; z-index: 1; }
.cta h2 { margin: 0 0 9px; color: #fff; font-size: clamp(26px, 3.5vw, 39px); letter-spacing: -.9px; }
.cta p { max-width: 680px; margin: 0; color: rgba(255, 255, 255, .86); line-height: 1.6; }
.cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 10px; }

.page-hero { position: relative; overflow: hidden; padding: 72px 0 54px; border-bottom: 1px solid #e0ece2; background: linear-gradient(135deg, #f9fcf9, #edf7ef); }
.page-hero::after { position: absolute; top: -160px; right: -80px; width: 430px; height: 430px; border: 80px solid rgba(76, 175, 80, .055); border-radius: 50%; content: ""; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero.compact { padding-bottom: 40px; }
.page-hero h1 { max-width: 900px; font-size: clamp(40px, 5vw, 61px); }
.page-hero p:not(.lead) { color: var(--muted); }
.list { display: grid; gap: 9px; padding: 0; margin: 19px 0 0; list-style: none; }
.list li { display: flex; gap: 9px; color: #3d4d42; line-height: 1.5; }
.list li::before { color: var(--green2); font-weight: 900; content: "✓"; }
.service-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.step { display: flex; gap: 16px; padding: 24px; border: 1px solid #d6e6d9; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.step-num { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(145deg, var(--green-dark), var(--green2)); color: #fff; box-shadow: 0 8px 18px rgba(46, 125, 50, .2); font-weight: 900; }
.step h3 { margin: 0 0 7px; color: var(--text); font-size: 17px; }
.step p { margin: 0; color: var(--muted); line-height: 1.55; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-btn { padding: 10px 15px; border: 1px solid #d4e3d7; border-radius: 999px; background: #fff; color: #415047; cursor: pointer; font-weight: 750; transition: .18s ease; }
.filter-btn:hover, .filter-btn.is-active { border-color: var(--green); background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(46, 125, 50, .18); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-flow: dense; gap: 17px; }
.gallery-card { min-height: 300px; overflow: hidden; border: 6px solid #fff; border-radius: 24px; background: var(--bg-soft); box-shadow: 0 13px 36px rgba(27, 67, 34, .13); }
.gallery-card:nth-child(5n + 1) { grid-column: span 2; }
.gallery-card a { position: relative; height: 100%; display: block; }
.gallery-card img { width: 100%; height: 100%; min-height: 300px; display: block; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-overlay { position: absolute; inset: auto 0 0; display: grid; gap: 4px; padding: 65px 20px 20px; background: linear-gradient(transparent, rgba(8, 28, 13, .9)); color: #fff; }
.gallery-overlay span { color: #9ee7a7; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.gallery-overlay strong { font-size: 17px; }
.gallery-overlay small { overflow: hidden; color: #e2ebe4; text-overflow: ellipsis; white-space: nowrap; }

.about-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 20px; }
.content-card { padding: clamp(26px, 4vw, 40px); }
.content-card > p, .prose p { color: var(--muted); line-height: 1.76; }
.accent-card { border-color: #bcd9c1; background: linear-gradient(150deg, #f6fbf7, #e8f5ea); }
.divider { height: 1px; margin: 25px 0; background: var(--line); }
.value-card > span { color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: .14em; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 20px; }
.contact-card address { margin: 18px 0; color: var(--muted); font-style: normal; line-height: 1.75; }
.contact-actions { display: grid; gap: 10px; }
.contact-actions > a { display: flex; align-items: center; gap: 13px; padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: #fbfdfb; transition: .18s ease; }
.contact-actions > a:hover { border-color: #bad8c0; background: var(--green-soft); transform: translateX(3px); }
.contact-actions > a > i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: #e6f4e8; color: var(--green-dark); }
.contact-actions span { display: grid; gap: 2px; font-weight: 750; }
.contact-actions small { color: var(--muted); font-size: 11px; font-weight: 650; }
.form-card h2 { margin-top: 0; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { display: grid; gap: 7px; }
.form-group label { color: #2f3e34; font-size: 13px; font-weight: 780; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 15px; border: 1px solid #ccd9ce; border-radius: 13px; outline: none; background: #fff; color: var(--text); box-shadow: inset 0 1px 2px rgba(22, 53, 28, .025); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #87928a; }
.form-group textarea { resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green2); box-shadow: 0 0 0 4px rgba(76, 175, 80, .13); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.privacy-label { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 13px; line-height: 1.55; cursor: pointer; }
.privacy-label input { position: absolute; opacity: 0; }
.checkmark { width: 23px; height: 23px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #b9c9bc; border-radius: 7px; background: #fff; }
.privacy-label input:focus-visible + .checkmark { outline: 3px solid rgba(76, 175, 80, .25); outline-offset: 2px; }
.privacy-label input:checked + .checkmark { border-color: var(--green2); background: var(--green); }
.privacy-label input:checked + .checkmark::after { color: #fff; font-size: 13px; font-weight: 900; content: "✓"; }
.privacy-label a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.alert { padding: 14px 15px; border: 1px solid var(--line); border-radius: 13px; background: #f8faf8; }
.alert.success { border-color: #9ed4a7; background: #eef9f0; color: #176326; }
.alert.error { border-color: #efb0aa; background: #fff1f0; color: var(--danger); }
.location-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 32px; border: 1px solid #d4e6d7; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.location-card p { margin: 0; color: var(--muted); }

.legal-card { padding: clamp(26px, 5vw, 50px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.prose h2 { margin: 34px 0 11px; color: #1a2a1f; font-size: 23px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 26px 0 8px; color: #233428; }
.prose ul, .prose ol { color: var(--muted); line-height: 1.76; }
.prose a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.cookie-table-wrap { margin: 19px 0 29px; overflow-x: auto; border: 1px solid var(--line); border-radius: 15px; }
.cookie-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 13px; }
.cookie-table th, .cookie-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.5; }
.cookie-table th { background: #edf7ef; color: #24372a; font-size: 12px; letter-spacing: .03em; }
.cookie-table td { color: #536158; }
.cookie-table tr:last-child td { border-bottom: 0; }
.cookie-table small { color: var(--muted); }
.cookie-settings-callout { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 29px 0; padding: 21px; border: 1px solid #bddbc2; border-radius: 16px; background: #eff8f0; }
.cookie-settings-callout h2 { margin: 0 0 6px; }
.cookie-settings-callout p { margin: 0; }

.site-footer { position: relative; margin-top: 20px; border-top: 1px solid #dce9de; background: linear-gradient(180deg, #f7fbf7, #fff); }
.site-footer::before { position: absolute; top: -2px; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--green2), var(--green), transparent); content: ""; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .72fr; gap: 38px; padding: 52px 0 36px; }
.footer-brand { display: inline-flex; align-items: center; }
.footer-brand img { width: 210px; height: 106px; display: block; object-fit: contain; object-position: left center; }
.footer-grid p { color: var(--muted); line-height: 1.7; }
.social-links { display: flex; gap: 8px; margin-top: 15px; }
.social-links a { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid #d5e5d8; border-radius: 11px; background: #fff; color: var(--green-dark); }
.social-links a:hover { border-color: var(--green2); background: var(--green-soft); }
.footer-title { margin: 0 0 15px; color: #223228; font-size: 15px; }
.footer-links { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
.footer-links a { color: #536158; font-size: 14px; line-height: 1.45; }
.footer-links a:hover { color: var(--green-dark); }
.footer-links i { width: 18px; color: var(--green); }
.footer-cookie-button { padding: 0; border: 0; background: none; color: #536158; font: inherit; font-size: 14px; text-align: left; cursor: pointer; }
.footer-cookie-button:hover, .footer-cookie-button:focus-visible { color: var(--green-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.floating-whatsapp { position: fixed; right: 21px; bottom: 21px; z-index: 80; width: 58px; height: 58px; display: grid; place-items: center; border: 4px solid #fff; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 14px 34px rgba(20, 92, 40, .27); font-size: 28px; transition: transform .18s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }

.consent-layer { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: flex-end; justify-content: center; padding: 22px; background: rgba(15, 35, 20, .42); backdrop-filter: blur(9px); }
.consent-layer[hidden], .consent-details[hidden], .consent-gpc[hidden] { display: none; }
.consent-dialog { width: min(880px, 100%); max-height: calc(100vh - 44px); overflow: auto; padding: clamp(23px, 4vw, 35px); border: 1px solid #d7e6da; border-radius: 24px; background: #fff; color: var(--text); box-shadow: 0 30px 90px rgba(16, 45, 23, .26); outline: none; }
.consent-dialog:focus-visible { box-shadow: 0 0 0 4px rgba(76, 175, 80, .25), 0 30px 90px rgba(16, 45, 23, .26); }
.consent-head { display: flex; align-items: center; gap: 15px; }
.consent-icon { width: 51px; height: 51px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #c7e0cc; border-radius: 15px; background: var(--green-soft); color: var(--green-dark); font-size: 21px; }
.consent-kicker { margin: 0 0 3px; color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.consent-head h2 { margin: 0; color: var(--text); font-size: clamp(21px, 3vw, 28px); }
.consent-text { margin: 16px 0; color: var(--muted); line-height: 1.65; }
.consent-summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 14px; background: #f9fbf9; color: #4d5b52; font-size: 13px; }
.consent-summary > span i { margin-right: 5px; color: var(--green2); }
.consent-details-toggle { border: 0; background: none; color: var(--green-dark); font: inherit; font-weight: 800; cursor: pointer; }
.consent-details-toggle i { margin-left: 5px; transition: transform .2s ease; }
.consent-details-toggle.is-open i { transform: rotate(180deg); }
.consent-details { display: grid; gap: 9px; margin-top: 10px; }
.consent-option { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: inherit; cursor: pointer; }
.consent-option:first-child { background: #f7faf7; cursor: default; }
.consent-option strong { display: block; margin-bottom: 3px; }
.consent-option p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.consent-required { flex: 0 0 auto; color: var(--green-dark); font-size: 12px; font-weight: 800; }
.consent-switch { position: relative; width: 48px; height: 28px; flex: 0 0 auto; }
.consent-switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.consent-switch > span { position: absolute; inset: 0; border: 1px solid #bdc9bf; border-radius: 999px; background: #e4e9e5; transition: .2s ease; }
.consent-switch > span::after { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, .15); transition: .2s ease; content: ""; }
.consent-switch input:checked + span { border-color: var(--green2); background: var(--green); }
.consent-switch input:checked + span::after { transform: translateX(20px); }
.consent-switch input:focus-visible + span { outline: 3px solid rgba(76, 175, 80, .28); outline-offset: 2px; }
.consent-switch input:disabled + span { opacity: .45; cursor: not-allowed; }
.consent-gpc { margin: 2px 0 0; padding: 11px 13px; border-left: 3px solid var(--green2); border-radius: 8px; background: #eef8ef; color: #455249; font-size: 12px; line-height: 1.55; }
.consent-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 18px; }
.consent-btn { min-height: 47px; padding: 11px 15px; border: 1px solid #bcd0c0; border-radius: 12px; background: #fff; color: #27362c; font-size: 13px; font-weight: 850; cursor: pointer; }
.consent-btn:hover { border-color: var(--green); background: var(--green-soft); color: var(--green-dark); }
.consent-btn.primary { border-color: var(--green); background: var(--green); color: #fff; }
.consent-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.consent-links a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }

.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 18px; background: rgba(3, 12, 6, .9); backdrop-filter: blur(8px); }
.lightbox.is-open { display: flex; }
.lightbox-dialog { width: min(1080px, 100%); overflow: hidden; border: 1px solid rgba(255, 255, 255, .18); border-radius: 20px; background: #0d150f; box-shadow: 0 30px 100px rgba(0, 0, 0, .45); }
.lightbox-top { display: flex; align-items: center; justify-content: space-between; padding: 9px 11px 9px 16px; color: #d1ddd4; }
.lb-btn, .lb-nav { display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .24); background: rgba(5, 9, 6, .72); color: #fff; cursor: pointer; }
.lb-btn { width: 42px; height: 42px; border-radius: 13px; }
.lightbox-body { position: relative; }
.lightbox-img { width: 100%; height: min(76vh, 760px); display: block; object-fit: contain; }
.lb-nav { position: absolute; top: 50%; width: 46px; height: 46px; border-radius: 14px; transform: translateY(-50%); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

@media (max-width: 1060px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-list { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: none; align-items: stretch; padding: 13px; border: 1px solid var(--line); border-radius: 0 0 18px 18px; background: rgba(255, 255, 255, .99); box-shadow: var(--shadow); }
  .nav-list.is-open { display: grid; }
  .nav-link { display: flex; }
  .nav-cta { margin: 7px 0 0; }
  .nav-cta .btn { width: 100%; }
  .hero-grid, .split, .about-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 800px; }
  .hero-visual { max-width: 820px; }
  .cards-3, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card:nth-child(5n + 1) { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 740px) {
  .container, .header-inner { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 110px; }
  .brand-logo { width: 190px; height: 96px; }
  .hero { padding: 52px 0 48px; }
  .hero h1, .page-hero h1 { letter-spacing: -1.5px; }
  .section { padding: 64px 0; }
  .section-tight { padding-top: 18px; }
  .page-hero { padding: 52px 0 39px; }
  .cards-3, .stats, .service-steps, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card img { min-height: 270px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner, .location-card { align-items: flex-start; flex-direction: column; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .footer-grid { gap: 29px; }
  .footer-bottom { flex-direction: column; }
  .cookie-settings-callout { align-items: flex-start; flex-direction: column; }
  .consent-layer { padding: 10px; }
  .consent-dialog { max-height: calc(100vh - 20px); padding: 20px; border-radius: 19px; }
  .consent-summary { align-items: flex-start; flex-direction: column; }
  .consent-actions { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brand-logo { width: 170px; height: 86px; }
  .nav-toggle { width: 44px; height: 44px; }
  .hero-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-gallery-item:first-child { grid-column: span 2; }
  .hero-cta .btn { width: 100%; }
  .visual-top { align-items: flex-start; flex-direction: column; }
  .visual-status { margin-left: 4px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .consent-option { align-items: flex-start; }
}

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