:root {
  --green: #075b48;
  --green-deep: #0b4f40;
  --lime: #76b82a;
  --pale: #eaf4e3;
  --white: #fff;
  --ink: #202a27;
  --muted: #5f6b67;
  --surface: #f5f7f6;
  --border: #dce5e1;
  --shadow: 0 18px 50px rgba(11, 79, 64, .10);
  --radius: 24px;
  --header: 88px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Manrope, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 2000; left: 1rem; top: -6rem; padding: .8rem 1rem; border-radius: 10px; color: white; background: var(--green-deep); }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section--soft { background: var(--surface); }
.section--pale { background: var(--pale); }
[id] { scroll-margin-top: 104px; }
.eyebrow { margin: 0 0 .9rem; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-heading { max-width: 700px; margin: 0 0 2.6rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2, .legal-hero h1 { margin: 0 0 .8rem; font-size: clamp(2rem, 4.2vw, 3.35rem); line-height: 1.08; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .78rem 1.25rem; border: 2px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1.2; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--green); box-shadow: 0 10px 25px rgba(7,91,72,.2); }
.button--primary:hover { background: var(--green-deep); }
.button--secondary { color: var(--green); border-color: var(--green); background: transparent; }
.button--light { color: var(--green-deep); background: white; }
.button--ghost-light { color: white; border-color: rgba(255,255,255,.65); }
.text-link { padding: 0; border: 0; color: var(--green); background: transparent; font-weight: 800; }

/* Header */
.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header); border-bottom: 1px solid transparent; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); transition: height .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { height: 72px; border-color: var(--border); box-shadow: 0 8px 30px rgba(32,42,39,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; color: var(--green-deep); text-decoration: none; }
.brand-logo { display: block; width: 218px; height: auto; object-fit: contain; }
.site-footer .brand-logo { width: 250px; padding: .4rem; border-radius: 12px; background: white; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a { padding: .6rem .72rem; border-radius: 9px; color: var(--ink); font-size: .9rem; font-weight: 700; text-decoration: none; }
.site-nav a:not(.button):hover, .site-nav a[aria-current="page"] { color: var(--green); background: var(--pale); }
.site-nav .button { margin-left: .5rem; padding-inline: 1rem; color: white; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 12px; color: var(--green); background: var(--pale); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6.5rem) 0 4.5rem; background: linear-gradient(135deg, #f8fbf8 0%, #edf6ea 100%); }
.hero::before { content: ""; position: absolute; width: 330px; height: 330px; right: -140px; top: -120px; border-radius: 50%; border: 75px solid rgba(118,184,42,.15); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.hero h1 { max-width: 780px; margin: 0 0 1.35rem; font-size: clamp(2.75rem, 6vw, 5.35rem); line-height: .98; letter-spacing: -.055em; }
.hero-copy > p:not(.eyebrow) { max-width: 640px; margin: 0 0 1.65rem; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.24rem); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.trust-line { display: flex; align-items: center; gap: .7rem; margin-top: 1.6rem; color: var(--green-deep); font-weight: 800; }
.trust-line::before { content: "✓"; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: white; background: var(--lime); }
.hero-visual { position: relative; min-height: 520px; }
.photo-placeholder { position: absolute; inset: 0 0 30px 35px; overflow: hidden; border-radius: 44% 44% 44% 18%; background: linear-gradient(145deg, rgba(7,91,72,.15), rgba(118,184,42,.12)), url('../assets/images/hero-cleaning.webp') center/cover; box-shadow: var(--shadow); }
.photo-placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,91,72,.3)); }
.hero-badge { position: absolute; z-index: 2; left: 0; bottom: 0; width: 190px; padding: 1.2rem; border-radius: 20px; color: white; background: var(--green-deep); box-shadow: var(--shadow); }
.hero-badge strong { display: block; font-size: 1.22rem; }
.hero-dot { position: absolute; z-index: 2; right: -12px; top: 35px; width: 90px; height: 90px; border-radius: 50%; background: var(--lime); opacity: .92; }
.trust-bar { border-block: 1px solid var(--border); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; justify-content: center; gap: .7rem; min-height: 92px; padding: 1rem; font-weight: 800; text-align: center; }
.trust-item::before { content: "✓"; color: var(--lime); font-size: 1.2rem; }

/* Cards and content */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card { padding: 1.75rem; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: 0 10px 35px rgba(32,42,39,.04); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.card:hover, .card:focus-within { transform: translateY(-5px); border-color: #b9d2c7; box-shadow: var(--shadow); }
.icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 1.15rem; border-radius: 15px; color: var(--green); background: var(--pale); font-size: 1.45rem; font-weight: 900; }
.card h3 { margin: 0 0 .5rem; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.about-visual { position: relative; }
.about-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 30px 30px 90px 30px; box-shadow: var(--shadow); }
.fact-chip { position: absolute; right: -20px; bottom: 30px; max-width: 240px; padding: 1rem 1.2rem; border-radius: 16px; color: white; background: var(--green); font-weight: 800; box-shadow: var(--shadow); }
.about-copy p { color: var(--muted); }
.quote { margin: 2rem 0 0; padding: 1.5rem 1.7rem; border-left: 5px solid var(--lime); border-radius: 0 16px 16px 0; color: var(--green-deep); background: var(--pale); font-size: 1.35rem; font-weight: 900; }
.benefit-card { position: relative; padding-left: 4.6rem; }
.benefit-card .icon { position: absolute; left: 1.25rem; top: 1.55rem; width: 42px; height: 42px; margin: 0; font-size: 1rem; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: steps; }
.step { position: relative; padding: 1.6rem 1.25rem; border-top: 3px solid var(--lime); border-radius: 0 0 18px 18px; background: white; box-shadow: 0 10px 30px rgba(11,79,64,.07); counter-increment: steps; }
.step::before { content: "0" counter(steps); display: block; margin-bottom: .8rem; color: var(--green); font-size: 2rem; font-weight: 900; letter-spacing: -.04em; }
.step h3 { margin: 0 0 .45rem; font-size: 1.08rem; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 240px 240px; gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 22px; background: var(--pale); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-label { position: absolute; left: 1rem; bottom: 1rem; padding: .45rem .75rem; border-radius: 999px; color: white; background: rgba(11,79,64,.9); font-size: .78rem; font-weight: 800; }
.placeholder-review { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.7rem, 4vw, 3rem); border: 1px dashed #9dbbb0; border-radius: var(--radius); background: var(--pale); }
.placeholder-review p { max-width: 680px; margin: 0; color: var(--green-deep); font-size: 1.15rem; font-weight: 800; }
.faq-list { max-width: 900px; margin: auto; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; font-size: 1.08rem; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .3rem; top: 1.25rem; color: var(--green); font-size: 1.45rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 780px; margin: 0; padding: 0 0 1.4rem; color: var(--muted); }
.cta-band { padding: 3.5rem 0; color: white; background: var(--green); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-inner h2 { margin: 0 0 .5rem; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.82); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 5vw, 5rem); }
.contact-panel { padding: 2rem; border-radius: var(--radius); color: white; background: var(--green-deep); }
.contact-panel h3 { margin: 0 0 .25rem; font-size: 1.5rem; }
.contact-panel > p { margin-top: 0; color: rgba(255,255,255,.7); }
.contact-list { display: grid; gap: 1.15rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.contact-list span { display: block; color: rgba(255,255,255,.65); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-list a { font-weight: 750; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label, .checkbox label { font-weight: 750; }
.required { color: #a12727; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: .78rem .9rem; border: 1px solid #bfcfc9; border-radius: 10px; color: var(--ink); background: white; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(118,184,42,.18); outline: 0; }
.field [aria-invalid="true"] { border-color: #a12727; }
.field-error { min-height: 1.2em; color: #8f1f1f; font-size: .82rem; }
.checkbox { grid-column: 1 / -1; display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: .7rem; }
.checkbox input { width: 20px; height: 20px; margin: .2rem 0 0; accent-color: var(--green); }
.form-status { grid-column: 1 / -1; display: none; padding: 1rem; border-radius: 10px; color: var(--green-deep); background: var(--pale); font-weight: 700; }
.form-status.is-visible { display: block; }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .85rem; }

/* Legal and footer */
.legal-hero { padding: 4.5rem 0 3rem; background: var(--pale); }
.legal-hero p { max-width: 720px; margin: 0; color: var(--muted); }
.legal-layout { display: grid; grid-template-columns: minmax(0, 760px) 240px; justify-content: space-between; gap: 4rem; }
.prose h2 { margin: 2.5rem 0 .7rem; font-size: 1.45rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.7rem 0 .5rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--green); }
.notice { padding: 1.2rem; border-left: 4px solid var(--lime); border-radius: 0 12px 12px 0; background: var(--pale); }
.side-nav { position: sticky; top: 100px; align-self: start; padding: 1.2rem; border: 1px solid var(--border); border-radius: 16px; }
.side-nav strong { display: block; margin-bottom: .7rem; }
.side-nav a { display: block; padding: .35rem 0; color: var(--green); }
.cookie-modal { position: fixed; z-index: 3000; inset: 0; display: none; place-items: center; padding: 1rem; background: rgba(5,36,30,.58); }
.cookie-modal.is-open { display: grid; }
.cookie-dialog { width: min(100%, 570px); max-height: calc(100vh - 2rem); overflow: auto; padding: 1.6rem; border-radius: 20px; background: white; box-shadow: var(--shadow); }
.cookie-dialog h2 { margin-top: 0; }
.cookie-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cookie-row p { margin: .2rem 0 0; color: var(--muted); font-size: .88rem; }
.cookie-dialog .actions { margin-top: 1.3rem; }
.site-footer { padding: 4rem 0 1.5rem; color: rgba(255,255,255,.8); background: #073e34; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer .brand { color: white; }
.site-footer h2 { margin: 0 0 1rem; color: white; font-size: 1rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: .4rem 0; }
.site-footer a:hover { color: white; }
.footer-about p { max-width: 300px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .85rem; }
.error-page { display: grid; min-height: calc(100vh - 88px); place-items: center; padding: 5rem 1rem; text-align: center; background: var(--pale); }
.error-code { color: var(--lime); font-size: clamp(6rem, 20vw, 12rem); font-weight: 900; line-height: .8; }
.error-page h1 { margin: 1.4rem 0 .7rem; font-size: clamp(2rem, 4vw, 3.5rem); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: var(--header) 0 auto; display: none; align-items: stretch; flex-direction: column; padding: 1rem; border-top: 1px solid var(--border); background: white; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 46px; padding: .75rem 1rem; }
  .site-nav .button { margin: .4rem 0 0; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-visual { min-height: 430px; }
  .trust-grid, .process { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  :root { --header: 76px; }
  .brand-logo { width: 180px; }
  .hero { padding-top: 3rem; }
  .hero-grid, .about-grid, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-visual { min-height: 430px; }
  .photo-placeholder { inset: 0 0 35px 15px; }
  .hero-dot { right: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 76px; padding: .75rem; font-size: .88rem; }
  .card-grid, .process { grid-template-columns: 1fr; }
  .about-visual { max-width: 500px; }
  .fact-chip { right: -5px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 200px 200px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
  .placeholder-review, .cta-inner { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full, .checkbox, .form-status { grid-column: auto; }
  .side-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .section { padding-block: 4rem; }
  .actions .button { width: 100%; }
  .hero-visual { min-height: 350px; }
  .hero-badge { width: 170px; padding: 1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; padding-left: 1.3rem; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 240px); }
  .gallery-item:first-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
}
