:root {
  --forest: #1F4D3A;
  --forest-dark: #173A2C;
  --forest-soft: #E8EFEA;
  --lime: #F3F5F1;
  --ink: #111714;
  --muted: #5d6862;
  --sand: #F3F5F1;
  --line: #DDE4DF;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(23, 58, 44, 0.12);
  --radius: 1.25rem;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #f1bf55;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: .6rem;
}

.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section.compact { padding: clamp(3rem, 5vw, 5rem) 0; }
.section.soft { background: var(--sand); }
.section.green { color: var(--white); background: var(--forest-dark); }
.section[id] { scroll-margin-top: 5.5rem; }

.eyebrow {
  margin: 0 0 .7rem;
  color: #285D47;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.green .eyebrow { color: #C8D8CF; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 1.2rem; font-size: clamp(2.7rem, 7vw, 5.4rem); }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4.5vw, 3.45rem); }
h3 { margin-bottom: .7rem; font-size: clamp(1.2rem, 2vw, 1.55rem); }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.green .lead { color: #DDE8E1; }
.section-heading { display: grid; gap: 1rem; margin-bottom: 2.3rem; }
.section-heading.split { grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); align-items: end; }
.section-heading p:last-child { margin-bottom: 0; }
.microcopy { color: var(--muted); font-size: .88rem; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  color: var(--white);
  background: var(--forest-dark);
}

.nav-wrap { min-height: 74px; display: flex; align-items: center; gap: 1.15rem; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 56px; height: 56px; object-fit: cover; border-radius: .7rem; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 1.05rem; }
.main-nav a { padding: .55rem .05rem; color: #F3F5F1; font-size: .86rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.main-nav a:hover { color: var(--white); }
.main-nav a[aria-current="page"] { color: var(--white); box-shadow: inset 0 -2px #C8D8CF; }
.nav-actions { display: flex; align-items: center; gap: .65rem; }
.language-switcher { display: flex; align-items: center; gap: .35rem; color: #B8C7BF; font-size: .74rem; font-weight: 800; }
.language-switcher a { padding: .2rem; display: inline-flex; align-items: center; gap: .24rem; color: inherit; text-decoration: none; }
.language-switcher a[aria-current="page"] { color: var(--white); }
.language-flag { width: 14px; height: 10px; flex: 0 0 auto; display: inline-block; overflow: hidden; border: 1px solid rgba(255,255,255,.28); border-radius: 1px; box-shadow: 0 0 0 1px rgba(23,58,44,.08); }
.flag-fr { background: linear-gradient(90deg, #1d3f8b 0 33.33%, #fff 33.33% 66.66%, #d9293d 66.66%); }
.flag-en { background: #012169 url("../images/flag-uk.svg") center / cover no-repeat; }
.flag-es { background: linear-gradient(#c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75%); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: .8rem;
  color: var(--white);
  background: transparent;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: .85rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--forest); box-shadow: 0 10px 25px rgba(23,58,44,.18); }
.button.primary:hover { background: #285D47; }
.site-header .button.primary { color: var(--forest-dark); background: #F3F5F1; box-shadow: none; }
.button.secondary { border-color: var(--forest); color: var(--forest); background: transparent; }
.site-header .button.secondary { border-color: rgba(255,255,255,.38); color: var(--white); }
.button.light { color: var(--forest-dark); background: var(--white); }
.button.text { min-height: auto; padding: .4rem 0; border-radius: 0; color: var(--forest); }
.button[aria-disabled="true"] { pointer-events: none; opacity: .56; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}
.hero-media, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: hero-fade 21s infinite;
}
.hero-slide:nth-child(2) { animation-delay: 7s; object-position: center 48%; }
.hero-slide:nth-child(3) { animation-delay: 14s; object-position: center 38%; }
.hero-overlay { background: linear-gradient(90deg, rgba(23,58,44,.94) 0%, rgba(23,58,44,.75) 48%, rgba(23,58,44,.32) 100%); }
.hero-content { position: relative; z-index: 2; padding: clamp(5rem, 11vw, 8rem) 0; }
.hero .eyebrow { color: #D3E0D8; }
.hero p:not(.eyebrow) { max-width: 670px; margin-bottom: 2rem; color: #F3F5F1; font-size: clamp(1.08rem, 2.2vw, 1.35rem); }
.hero .button.secondary { border-color: rgba(255,255,255,.64); color: var(--white); }
.hero-facts { margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; }
.hero-facts li { padding: .45rem .75rem; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #E8EFEA; background: rgba(23,58,44,.45); font-size: .86rem; }

.page-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  color: var(--white);
  background: var(--forest-dark);
}
.page-hero .eyebrow { color: #C8D8CF; }
.page-hero h1 { max-width: 860px; margin-bottom: 1rem; font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
.page-hero .lead { max-width: 760px; margin-bottom: 0; color: #DDE8E1; }

@keyframes hero-fade {
  0%, 100% { opacity: 0; transform: scale(1.03); }
  5%, 30% { opacity: 1; transform: scale(1); }
  35% { opacity: 0; }
}

.location-grid { display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.45fr); gap: 1rem; }
.location-card { position: relative; z-index: 2; padding: clamp(1.6rem, 3vw, 2.5rem); border-radius: var(--radius); color: var(--white); background: var(--forest); box-shadow: var(--shadow); }
.location-card .mini-brand { width: 76px; margin-bottom: 2rem; border-radius: .75rem; }
.location-card address { margin: 1.25rem 0; font-style: normal; font-size: 1.15rem; }
.location-card strong { display: block; font-size: 1.35rem; }
.location-card p { color: #DDE8E1; }
.map-wrap { min-height: 470px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #F3F5F1; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 470px; display: block; border: 0; }

.arrival-grid { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.arrival-photo { width: 100%; max-height: 660px; object-fit: cover; object-position: center; border-radius: var(--radius); box-shadow: var(--shadow); }
.arrival-copy .detail-list { margin-top: 1.5rem; }
.home-installation .arrival-grid { width: min(100%, 980px); grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); }
.home-installation .arrival-photo { height: 400px; max-height: 400px; padding: .65rem; object-fit: contain; background: var(--forest-soft); }
.detail-list { display: grid; gap: .8rem; padding: 0; list-style: none; }
.detail-list li { display: flex; gap: .75rem; align-items: flex-start; }
.detail-list .check { flex: 0 0 auto; width: 1.5rem; height: 1.5rem; display: grid; place-items: center; margin-top: .08rem; border-radius: 50%; color: var(--white); background: var(--forest); font-size: .78rem; }

.trust-section { padding: clamp(2.25rem, 4vw, 3.5rem) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; }
.trust-item { min-width: 0; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); box-shadow: 0 10px 26px rgba(23,58,44,.07); }
.trust-item strong { display: block; color: var(--forest-dark); line-height: 1.25; }
.trust-item span { display: block; margin-top: .3rem; color: var(--muted); font-size: .9rem; line-height: 1.35; }

.service-grid, .pricing-grid, .capacity-grid, .tutorial-grid, .key-pricing { display: grid; gap: 1rem; }
.service-grid { grid-template-columns: repeat(2, 1fr); }
.service-card { min-height: 340px; padding: clamp(1.7rem, 4vw, 3rem); display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.service-card:first-child { color: var(--white); border-color: var(--forest); background: var(--forest); }
.service-card:first-child p { color: #DDE8E1; }
.service-card p { max-width: 520px; color: var(--muted); }
.service-card .button { margin-top: auto; align-self: flex-start; }
.home-services .service-card { min-height: 250px; padding: clamp(1.5rem, 3vw, 2.2rem); }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.steps.five { grid-template-columns: repeat(5, 1fr); }
.step { position: relative; padding: 1.35rem; border-top: 2px solid var(--forest); background: var(--white); }
.step::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); display: block; margin-bottom: 1.4rem; color: #285D47; font-size: .82rem; font-weight: 900; letter-spacing: .12em; }
.step strong { display: block; line-height: 1.35; }
.step p { margin: .75rem 0 0; color: var(--muted); font-size: .94rem; }
.green .step { border-color: #AFC7BA; color: var(--white); background: rgba(255,255,255,.055); }
.green .step p { color: #DDE8E1; }
.green .step::before { color: #C8D8CF; }

.pricing-grid { grid-template-columns: repeat(2, 1fr); }
.price-card { position: relative; padding: clamp(1.6rem, 4vw, 2.7rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.price-card.featured { border-color: var(--forest); box-shadow: var(--shadow); }
.size-badge { width: 3.25rem; height: 3.25rem; display: grid; place-items: center; margin-bottom: 1.4rem; border-radius: 1rem; color: var(--white); background: var(--forest); font-size: 1.4rem; font-weight: 900; }
.dimensions { color: var(--muted); font-size: 1.05rem; }
.price-lines { margin: 1.5rem 0 0; display: grid; gap: .3rem; }
.price-lines strong { color: var(--forest-dark); font-size: clamp(1.45rem, 3vw, 2.1rem); }
.price-lines span { color: var(--muted); }

.capacity-grid { grid-template-columns: repeat(2, 1fr); }
.capacity-card { padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.capacity-card-header { padding: .8rem .8rem 1.15rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.capacity-card-header h3, .capacity-card-header p { margin: 0; }
.capacity-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.capacity-images img { width: 100%; height: 260px; padding: .3rem; object-fit: contain; object-position: center; border-radius: .85rem; background: var(--forest-soft); }

.object-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.object-card { padding: 1rem; display: grid; grid-template-rows: 170px auto auto; align-content: start; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }
.object-card img { width: 100%; height: 160px; padding: .45rem; object-fit: contain; object-position: center; margin-bottom: 1rem; border-radius: .75rem; background: var(--forest-soft); }
.object-card strong, .object-card span { display: block; }
.object-card span { color: var(--muted); }

.wide-cta { padding: clamp(1.8rem, 4vw, 3.2rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-radius: var(--radius); color: var(--white); background: var(--forest); }
.wide-cta h2 { max-width: 650px; margin-bottom: .3rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.wide-cta p { margin-bottom: 0; color: #DDE8E1; }
.wide-cta .button { flex: 0 0 auto; }

.reviews-section { background: var(--white); }
.reviews-strip { padding: 1.35rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--sand); }
.reviews-strip .eyebrow { margin-bottom: .25rem; }
.reviews-strip p:last-child { margin: 0; color: var(--muted); }
.reviews-strip .button { flex: 0 0 auto; }

.key-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.key-intro p { color: #DDE8E1; }
.key-callout { padding: 1.4rem; border: 1px solid rgba(255,255,255,.2); border-radius: 1rem; background: rgba(255,255,255,.055); }
.key-callout strong { display: block; margin-bottom: .3rem; }
.key-callout p { margin-bottom: 0; font-size: .92rem; }

.tutorial-grid { grid-template-columns: repeat(2, 1fr); }
.tutorial-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.tutorial-card img { width: 100%; height: 230px; padding: .7rem; object-fit: contain; object-position: center; border-bottom: 1px solid var(--line); background: var(--forest-soft); }
.tutorial-copy { padding: 1.25rem; }
.tutorial-copy .step-label { color: #285D47; font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tutorial-copy p:last-child { margin-bottom: 0; color: var(--muted); }
.tutorial-final { max-width: 720px; margin: 1rem auto 0; padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; border-radius: 1rem; background: var(--forest-soft); }
.tutorial-final .number { flex: 0 0 auto; width: 2.5rem; height: 2.5rem; display: grid; place-items: center; border-radius: .75rem; color: var(--white); background: var(--forest); font-weight: 900; }

.key-pricing { grid-template-columns: repeat(3, 1fr); }
.key-price { padding: 1.5rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }
.key-price span, .key-price strong { display: block; }
.key-price span { color: var(--muted); }
.key-price strong { margin-top: .7rem; color: var(--forest); font-size: 2rem; }

.summary-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 1rem; }
.summary-card { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.summary-lines { display: grid; gap: .75rem; margin: 1.4rem 0 1.8rem; }
.summary-line { padding-bottom: .75rem; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.summary-line:last-child { padding-bottom: 0; border-bottom: 0; }
.summary-line strong { color: var(--forest); text-align: right; }

.review-card { padding: clamp(1.7rem, 4vw, 3rem); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--sand); }
.stars { color: #a16d0a; letter-spacing: .18em; }
.review-card h2 { margin: .5rem 0 .4rem; }
.review-card p { margin-bottom: 0; color: var(--muted); }

.faq-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.faq-nav { position: sticky; top: 6.5rem; }
.faq-nav a { display: block; padding: .55rem 0; color: var(--muted); font-weight: 700; text-decoration: none; }
.faq-group + .faq-group { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 1.25rem 2.5rem 1.25rem 0; position: relative; border: 0; color: var(--ink); background: transparent; font: inherit; font-weight: 800; text-align: left; cursor: pointer; }
.faq-question::after { content: "+"; position: absolute; right: .2rem; top: 1rem; color: var(--forest); font-size: 1.6rem; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 2.5rem 1.25rem 0; color: var(--muted); }
.faq-answer p:last-child { margin-bottom: 0; }
.support-visual { margin-top: 1rem; display: flex; align-items: center; gap: 1rem; }
.support-visual img { width: 180px; height: 120px; flex: 0 0 auto; object-fit: contain; border: 1px solid var(--line); border-radius: .8rem; background: var(--white); }
.support-visual small { max-width: 280px; color: var(--muted); line-height: 1.45; }

.contact-strip { padding: 2.2rem 0; color: var(--white); background: var(--forest); }
.contact-grid { display: grid; grid-template-columns: 1.2fr repeat(2, .7fr); gap: 1.5rem; align-items: center; }
.contact-grid h2 { margin-bottom: .3rem; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.contact-grid p { margin-bottom: 0; color: #DDE8E1; }
.contact-link { font-weight: 800; text-decoration: none; overflow-wrap: anywhere; }

.site-footer { padding: 3.5rem 0 6.5rem; color: #DCE6E0; background: var(--forest-dark); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; }
.footer-brand img { width: 92px; margin-bottom: 1rem; border-radius: 1rem; }
.footer-brand p { color: #AFC1B7; }
.footer-title { margin-bottom: .8rem; color: var(--white); font-weight: 900; }
.footer-links { margin: 0; padding: 0; display: grid; gap: .5rem; list-style: none; }
.footer-links a { color: #DCE6E0; text-decoration: none; }
.footer-links .unavailable { color: #8BA296; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.13); color: #9BB0A5; font-size: .84rem; }

.mobile-cta { display: none; }

.legal-hero { padding: 4rem 0 3rem; color: var(--white); background: var(--forest-dark); }
.legal-hero h1 { max-width: 900px; font-size: clamp(2.4rem, 5vw, 4.4rem); }
.legal-meta { color: #C3D2CA; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); justify-content: center; gap: 3rem; align-items: start; }
.legal-toc { position: sticky; top: 6.5rem; max-height: calc(100vh - 8rem); overflow: auto; padding-right: .8rem; }
.legal-toc a { display: block; padding: .35rem 0; color: var(--muted); font-size: .82rem; text-decoration: none; }
.legal-content article { margin-bottom: 2.5rem; }
.legal-content article h2 { padding-top: 1rem; margin-bottom: 1rem; font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -.02em; }
.legal-content p { white-space: pre-line; }
.legal-content ul { padding-left: 1.25rem; }
.legal-notice { margin-bottom: 2rem; padding: 1.2rem; border-left: 4px solid var(--forest); background: var(--forest-soft); }

@media (max-width: 1080px) {
  .main-nav { position: fixed; inset: 74px 0 0; padding: 2rem 1.25rem 8rem; display: none; align-items: stretch; overflow-y: auto; background: var(--forest-dark); }
  .main-nav.open { display: block; }
  .main-nav a { display: block; padding: .75rem 0; font-size: 1.15rem; }
  .menu-toggle { display: block; order: 3; }
  .nav-actions { margin-left: auto; }
  .steps.five { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .container { width: min(calc(100% - 2rem), var(--container)); }
  .section-heading.split, .location-grid, .arrival-grid, .key-intro, .summary-grid, .faq-layout, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
  .location-card { order: 2; }
  .map-wrap, .map-wrap iframe { min-height: 380px; }
  .arrival-photo { max-height: 580px; }
  .home-installation .arrival-grid { width: 100%; grid-template-columns: 1fr; }
  .home-installation .arrival-photo { height: 340px; max-height: 340px; }
  .trust-grid, .steps, .steps.five, .object-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .capacity-grid, .tutorial-grid { grid-template-columns: 1fr; }
  .capacity-images img { height: 220px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-nav, .legal-toc { position: static; }
  .legal-toc { display: none; }
}

@media (max-width: 580px) {
  html { scroll-padding-top: 4.8rem; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 48px; height: 48px; }
  .nav-actions .button { display: none; }
  .support-visual { align-items: flex-start; flex-direction: column; }
  .support-visual img { width: 160px; height: 106px; }
  .main-nav { inset-block-start: 68px; }
  .language-switcher { margin-left: auto; }
  .hero { min-height: 670px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(23,58,44,.72), rgba(23,58,44,.95)); }
  .hero .cta-row .button { width: 100%; }
  .hero-facts { gap: .4rem; }
  .hero-facts li { font-size: .77rem; }
  .steps, .steps.five, .pricing-grid, .object-grid, .key-pricing, .footer-grid { grid-template-columns: 1fr; }
  .reviews-strip { align-items: stretch; flex-direction: column; }
  .trust-section { padding: 1.5rem 0; }
  .trust-grid { gap: .65rem; }
  .trust-item { padding: .9rem .85rem; }
  .trust-item strong { font-size: .93rem; }
  .trust-item span { font-size: .8rem; }
  .page-hero { padding: 3.25rem 0; }
  .page-hero h1 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
  .capacity-images { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capacity-images img { height: 150px; }
  .object-card { grid-template-rows: 155px auto auto; }
  .object-card img { height: 145px; }
  .tutorial-card img { height: 190px; }
  .home-installation .arrival-photo { height: 300px; max-height: 300px; }
  .wide-cta, .review-card { display: block; }
  .wide-cta .button, .review-card .button { width: 100%; margin-top: 1.2rem; }
  .summary-line { display: grid; }
  .summary-line strong { text-align: left; }
  .footer-bottom { display: grid; }
  .mobile-cta { position: fixed; z-index: 90; left: .8rem; right: .8rem; bottom: .8rem; display: block; }
  .mobile-cta .button { width: 100%; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
}

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

@media print {
  .site-header, .mobile-cta, .site-footer, .legal-toc { display: none !important; }
  .legal-layout { display: block; }
  .section { padding: 1rem 0; }
  .legal-content { max-width: none; }
}
