/* ==========================================================================
   GeGo's – Baum- und Gartenpflege
   Design system: organic / editorial "rooted craftsmanship"
   ========================================================================== */

/* ---------- Self-hosted fonts (no external requests) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/fraunces-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/hankengrotesk-latin.woff2") format("woff2");
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand & nature palette */
  --paper:        #f5f1e8;   /* warm cream background */
  --paper-2:      #efe9db;   /* slightly deeper cream */
  --ink:          #1d241c;   /* near-black green-brown text */
  --ink-soft:     #404a3c;   /* secondary text */
  --forest:       #1f4d2e;   /* deep forest green – primary */
  --forest-700:   #173d24;
  --forest-600:   #266138;
  --moss:         #6f8f4e;   /* olive/moss – secondary */
  --moss-300:     #a9c285;
  --bark:         #4a3c2f;   /* bark brown */
  --gecko:        #1f8fb5;   /* gecko blue – sharp accent */
  --gecko-600:    #157196;
  --sun:          #e7a33a;   /* warm star/gold accent */
  --line:         #d9d1bf;   /* hairline on paper */
  --white:        #ffffff;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale */
  --sp-1: .5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 3rem;   --sp-6: 4.5rem; --sp-7: 6.5rem;

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius: 18px;
  --radius-sm: 10px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(29,36,28,.06);
  --shadow:    0 14px 40px -16px rgba(23,61,36,.32);
  --shadow-lg: 0 30px 70px -28px rgba(23,61,36,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(111,143,78,.16), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(31,143,181,.08), transparent 55%);
  background-attachment: fixed;
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gecko); }
:focus-visible { outline: 3px solid var(--gecko); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--forest-700); letter-spacing: -.015em; text-wrap: balance; overflow-wrap: break-word; hyphens: manual; }
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.2rem); line-height: 1.06; font-optical-sizing: auto; }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem); margin-bottom: .9rem; }
h3 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem); margin-bottom: .55rem; }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; color: var(--bark); margin-bottom: .3rem; }
p { margin-bottom: var(--sp-2); max-width: 68ch; }
p:last-child { margin-bottom: 0; }
strong { color: var(--forest-700); font-weight: 700; }
.lead { font-size: clamp(1.12rem, 1.04rem + .5vw, 1.35rem); color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.4rem; text-wrap: pretty; }
.text-center p, .text-center .lead { margin-inline: auto; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 2rem + 6vw, var(--sp-7)); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.bg-paper-2 { background: var(--paper-2); }
.bg-forest { background: var(--forest-700); color: #eaf1e6; }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: #f4f9ef; }
.bg-forest a { color: var(--moss-300); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .18em; color: var(--moss);
  margin-bottom: var(--sp-2);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--moss); display: inline-block; }
.bg-forest .eyebrow { color: var(--moss-300); }
.bg-forest .eyebrow::before { background: var(--moss-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .9rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--forest); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--forest-600); color:#fff; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--accent { background: var(--gecko); color: #fff; }
.btn--accent:hover { background: var(--gecko-600); color:#fff; transform: translateY(-3px); }
.btn--ghost { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color:#fff; transform: translateY(-3px); }
.bg-forest .btn--ghost { border-color: var(--moss-300); color: #eaf1e6; }
.bg-forest .btn--ghost:hover { background: var(--moss-300); color: var(--forest-700); }
.bg-forest .btn--accent, .bg-forest .btn--primary { color: #fff; }
.bg-forest .btn--accent:hover, .bg-forest .btn--primary:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
/* Blur auf Pseudo-Element – sonst erzeugt backdrop-filter einen containing block,
   der das mobile fixed-Menü (.nav-menu) bricht. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(245,241,232,.82);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding-block: .7rem; }
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 600; color: var(--ink); padding: .5rem .8rem; border-radius: 999px;
  font-size: .98rem; position: relative; white-space: nowrap; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--forest); background: rgba(111,143,78,.14); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--forest); white-space: nowrap; }
.nav-phone svg { width: 1.05em; height: 1.05em; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  width: 46px; height: 46px; border-radius: 12px;
}
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--forest); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--paper); box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .4s var(--ease);
    display: flex; flex-direction: column; gap: var(--sp-3);
    padding: 6rem var(--sp-4) var(--sp-4); overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav-links a { font-size: 1.15rem; padding: .8rem 1rem; }
  .nav-cta { flex-direction: column; align-items: stretch; }
  .nav-cta .btn { justify-content: center; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(23,61,36,.4); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 99; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center; padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin-bottom: var(--sp-3); }
.hero h1 .accent { color: var(--moss); font-style: italic; }
.hero .lead { margin-bottom: var(--sp-4); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.hero-phone {
  display: inline-flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
  font-family: var(--font-display); margin-top: var(--sp-2);
}
.hero-phone .label { font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); font-size: .95rem; }
.hero-phone a { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.1rem); font-weight: 600; color: var(--forest); }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; transform: rotate(1.4deg);
  border: 8px solid #fff;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 28px; z-index: 3;
  background: var(--white); border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .85rem;
  transform: rotate(-2deg);
}
.hero-badge .stars { height: 18px; width: auto; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--forest); }
.hero-badge span { font-size: .82rem; color: var(--ink-soft); }
.hero-gecko { position: absolute; top: -10px; right: 4%; width: 90px; opacity: .9; transform: rotate(8deg); z-index: 1; pointer-events: none; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero-media .frame { aspect-ratio: 16/12; transform: rotate(0); }
  .hero-gecko { display: none; }
}

/* ---------- Marken-Trenner (Blatt-Emblem) ---------- */
.brand-divider { display: flex; align-items: center; justify-content: center; gap: clamp(.6rem, 2vw, 1.2rem); padding-block: clamp(2.2rem, 1.5rem + 3vw, 4rem); }
.brand-divider .rule { height: 2px; width: min(150px, 22vw); border-radius: 2px; background: linear-gradient(90deg, transparent, var(--moss-300)); }
.brand-divider .rule.is-right { background: linear-gradient(90deg, var(--moss-300), transparent); }
.brand-divider .mark { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%; background: var(--forest); display: grid; place-items: center; box-shadow: var(--shadow); position: relative; }
.brand-divider .mark::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--moss-300); opacity: .5; }
.brand-divider .mark svg { width: 28px; height: 28px; fill: #eaf1e6; }
.brand-divider .leaf { flex: 0 0 auto; width: 15px; height: 15px; fill: var(--moss); opacity: .75; }
.brand-divider .leaf.is-flip { transform: scaleX(-1); }
@media (max-width: 540px){ .brand-divider .leaf { display: none; } }

/* ---------- Grass divider ---------- */
.grass-divider { height: 70px; background: url("../img/landscape-maintenance-37.png") repeat-x bottom center / auto 100%; opacity: .85; margin-top: -1px; }
.grass-divider--flip { transform: scaleY(-1); }

/* ---------- Cards / service grid ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-3); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-4); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.card .btn { margin-top: auto; align-self: flex-start; }
.card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--moss), var(--forest)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--moss-300); }
.card:hover::after { transform: scaleX(1); }
.card .icon { width: 58px; height: 58px; display: grid; place-items: center; background: var(--paper-2); border-radius: 16px; margin-bottom: var(--sp-2); }
.card .icon img { width: 34px; height: 34px; }
.card h3 { margin-bottom: .5rem; }
.card ul { margin: var(--sp-1) 0 0; padding-left: 1.1rem; }
.card ul li { margin-bottom: .3rem; }

/* ---------- Feature / split rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media img, .split-media .ph { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
@media (max-width: 800px){ .split { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }

.icon-feature { display: flex; gap: var(--sp-2); align-items: flex-start; margin-bottom: var(--sp-3); }
.icon-feature .badge { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--forest); color: #fff; font-family: var(--font-display); font-size: 1.25rem; }
.icon-feature h4 { margin-bottom: .25rem; color: var(--forest-700); font-size: 1.15rem; }

/* ---------- Accordion (Dienstleistungen) ---------- */
.accordion { display: flex; flex-direction: column; gap: .8rem; }
.acc-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc-item.is-open { box-shadow: var(--shadow); border-color: var(--moss-300); }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.15rem 1.4rem; display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-size: clamp(1.05rem,1rem + .4vw,1.3rem); font-weight: 600; color: var(--forest-700);
}
.acc-trigger:hover { color: var(--forest); }
.acc-trigger .chev { margin-left: auto; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s; }
.acc-trigger .chev svg { width: 14px; height: 14px; stroke: var(--forest); }
.acc-item.is-open .acc-trigger .chev { transform: rotate(180deg); background: var(--moss-300); }
.acc-num { font-size: .85rem; color: var(--moss); font-weight: 700; font-family: var(--font-body); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-body { padding: 0 1.4rem 1.4rem; color: var(--ink-soft); }
.acc-body h5 { font-family: var(--font-body); font-weight: 700; color: var(--bark); margin: 1rem 0 .3rem; font-size: 1.05rem; }
.acc-body ul { padding-left: 1.2rem; margin-bottom: var(--sp-2); }
.acc-body ul li { margin-bottom: .35rem; }
.acc-body hr { border: 0; border-top: 1px solid var(--line); margin: 1.4rem 0; }

/* ---------- Testimonials (alle sichtbar, wie live) ---------- */
.tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-3); align-items: stretch; }
.tcard { background: var(--white); border-radius: var(--radius); padding: clamp(1.6rem,2.5vw,2.4rem); box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center; position: relative; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tcard .stars { height: 20px; margin: 0 auto var(--sp-2); }
.tcard blockquote { font-family: var(--font-display); font-size: clamp(1.05rem,1rem + .35vw,1.25rem); line-height: 1.5; color: var(--forest-700); font-style: italic; margin-bottom: var(--sp-2); flex: 1; }
.tcard cite { font-style: normal; font-weight: 700; color: var(--bark); margin-top: auto; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: var(--sp-3); text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem,1.6rem+2vw,3.4rem); color: var(--moss-300); line-height: 1; }
.stat .lbl { font-weight: 600; opacity: .9; }

/* ---------- Gallery (2-Spalten: Vorher/Nachher nebeneinander) ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); align-items: start; }
.gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; cursor: zoom-in; transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.gallery figure:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 340px; object-fit: cover; display: block; background: var(--paper-2); }
.gallery figcaption { padding: .85rem 1rem 1rem; font-size: .92rem; color: var(--ink-soft); line-height: 1.45; }
@media (max-width: 640px) { .gallery { grid-template-columns: 1fr; } .gallery img { height: auto; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(15,25,16,.92); display: none; place-items: center; z-index: 200; padding: 1.5rem; }
.lightbox.is-open { display: grid; animation: fade .25s var(--ease); }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #eaf1e6; text-align: center; margin-top: 1rem; max-width: 60ch; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; border-radius: 50%; width: 52px; height: 52px; font-size: 1.5rem; display: grid; place-items: center; transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Flyer grid ---------- */
.flyers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--sp-3); }
.flyer { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.flyer:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.flyer img { width: 100%; aspect-ratio: 1/1.414; object-fit: cover; background: var(--paper-2); }
.flyer .meta { padding: var(--sp-2); display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.flyer h3 { font-size: 1.15rem; }
.flyer .btn { margin-top: auto; justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
@media (max-width: 800px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem,3vw,2.6rem); box-shadow: var(--shadow-sm); }
.contact-line { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--paper-2); display: grid; place-items: center; }
.contact-line .ic svg { width: 22px; height: 22px; stroke: var(--forest); }
.contact-line .lbl { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--moss); font-weight: 700; }
.contact-line .val { font-size: 1.15rem; font-weight: 700; color: var(--forest-700); }
.contact-line .val a { color: var(--forest-700); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #f4f9ef; margin-bottom: var(--sp-2); }
.cta-band p { color: #d8e4d2; max-width: 50ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; margin-top: var(--sp-3); }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: var(--maxw-narrow); margin-inline: auto; }
.prose h2 { font-size: 1.8rem; margin: var(--sp-4) 0 var(--sp-2); }
.prose h3 { font-size: 1.3rem; margin: var(--sp-3) 0 var(--sp-1); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.3rem; margin-bottom: var(--sp-2); }
.prose a { word-break: break-word; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--forest-700); color: #eaf1e6; position: relative; overflow: hidden; padding-top: clamp(4rem, 3rem + 5vw, 7rem); padding-bottom: clamp(4.5rem, 3.5rem + 5vw, 8rem); }
.page-hero h1 { color: #f4f9ef; margin-bottom: 1rem; max-width: min(22ch, 100%); }
.page-hero .lead { color: #cfe0c7; max-width: min(60ch, 100%); margin-bottom: 0; }
.page-hero .eyebrow { color: var(--moss-300); }
.page-hero .eyebrow::before { background: var(--moss-300); }
.page-hero::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(111,143,78,.4), transparent 70%); }
.breadcrumb { font-size: .9rem; color: #aac39c; margin-bottom: var(--sp-2); }
.breadcrumb a { color: #cfe0c7; }

/* ---------- Floating contact ---------- */
.float-contact { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: .7rem; }
.float-contact a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .25s var(--ease); color: #fff; }
.float-contact a:hover { transform: scale(1.1); }
.float-contact .fc-phone { background: var(--forest); }
.float-contact .fc-wa { background: #25d366; }
.float-contact svg { width: 26px; height: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: #102a18; color: #c8d8bf; padding-block: var(--sp-5) var(--sp-3); margin-top: auto; border-top: 1px solid rgba(169,194,133,.25); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr; gap: var(--sp-4); align-items: start; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: var(--sp-3); } }
.site-footer h4 { color: #f4f9ef; margin-bottom: var(--sp-2); font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.site-footer a { color: #c8d8bf; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 56px; width: auto; margin-bottom: var(--sp-2); background: #fff; padding: .5rem .7rem; border-radius: 12px; box-shadow: var(--shadow-sm); }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--sp-4); padding-top: var(--sp-2); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .88rem; color: #9bb18d; }
.footer-bottom a { color: #9bb18d; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
/* No-JS / screenshot safety: never hide content when scripting unavailable */
@media (scripting: none) { .reveal { opacity: 1 !important; transform: none !important; } }
.reveal-all .reveal { opacity: 1 !important; transform: none !important; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: none; } }
.hero-copy > * { animation: riseIn .8s var(--ease) both; }
.hero-copy > *:nth-child(1){ animation-delay: .05s; }
.hero-copy > *:nth-child(2){ animation-delay: .15s; }
.hero-copy > *:nth-child(3){ animation-delay: .25s; }
.hero-copy > *:nth-child(4){ animation-delay: .35s; }
.hero-copy > *:nth-child(5){ animation-delay: .45s; }

/* page layout to keep footer down */
html, body { height: 100%; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }

/* ---------- Cookie notice ---------- */
.cookie-notice {
  position: fixed; left: 18px; bottom: 18px; z-index: 95;
  max-width: 380px; background: var(--white); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.3rem 1.4rem;
  transform: translateY(160%); opacity: 0; visibility: hidden;
  transition: transform .5s var(--ease), opacity .4s var(--ease), visibility .4s;
}
.cookie-notice.is-visible { transform: none; opacity: 1; visibility: visible; }
.cookie-notice h4 { font-family: var(--font-display); font-weight: 600; color: var(--forest-700); margin-bottom: .4rem; font-size: 1.1rem; }
.cookie-notice p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.5; }
.cookie-notice .actions { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.cookie-notice .btn { padding: .6rem 1.1rem; font-size: .92rem; }
.cookie-notice a.cn-more { font-weight: 600; font-size: .9rem; }
@media (max-width: 520px) {
  .cookie-notice { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* utility */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.center{ text-align:center }
.pill { display:inline-block; background:var(--paper-2); border:1px solid var(--line); color:var(--bark); padding:.3rem .8rem; border-radius:999px; font-size:.85rem; font-weight:600; margin:.2rem; }
