/* =========================================================
   Lapko Trockenbau — Minden
   Design: Waldgrün + Sand · Fraunces (Display) + Manrope (Text)
   Editorial, warm, ruhig — bewusst eigenständig.
   ========================================================= */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
/* Barlow — robuste Industrie-Grotesk (Fließtext) */
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
/* Oswald — kräftige, condensed Display-Schrift (Headlines, Bau-Charakter) */
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/oswald-var.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Waldgrün */
  --forest:    #1E3A2A;   /* tiefes Dunkelgrün — Ink für dunkle Flächen */
  --forest-2:  #24442F;
  --green:     #2E6B41;   /* Primär */
  --green-600: #285C39;
  --green-700: #21492E;
  --moss:      #57896A;   /* gedämpftes Hellgrün */

  /* Sand / Creme */
  --cream:     #FBF6EC;   /* Seitenhintergrund */
  --sand:      #F1E8D6;   /* Alt-Sektionen / Karten */
  --sand-2:    #E7DBC3;   /* tiefer Sandton */
  --paper:     #FFFFFF;

  /* Warm-Akzent (Ocker) — sparsam */
  --gold:      #B4832C;
  --gold-soft: #d8b167;

  /* Text */
  --ink:       #20271F;   /* warmes Fast-Schwarz */
  --body:      #3B4238;
  --muted:     #6E7466;
  --muted-2:   #8A8F80;

  /* Linien / Flächen */
  --line:      rgba(30, 58, 42, .14);
  --line-soft: rgba(30, 58, 42, .08);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(30,45,30,.05), 0 4px 14px rgba(30,45,30,.05);
  --shadow-md: 0 6px 26px rgba(30,45,30,.09), 0 2px 8px rgba(30,45,30,.05);
  --shadow-lg: 0 26px 60px rgba(23,45,28,.18), 0 8px 20px rgba(23,45,28,.10);

  --font-sans: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-disp: 'Oswald', 'Barlow', system-ui, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }
::selection { background: var(--green); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-disp);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.7rem, 6.4vw, 4.9rem); font-weight: 700; line-height: 1.03; text-transform: uppercase; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); font-weight: 600; text-transform: uppercase; }
h3 { font-size: 1.4rem; letter-spacing: .015em; }
p  { color: var(--body); }
.serif-i { color: var(--green); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--gold); display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section-head { max-width: 640px; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700; font-size: .96rem;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(30,90,55,.24); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(30,90,55,.30); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.24); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-whatsapp { background: #1FA855; color: #fff; box-shadow: 0 10px 24px rgba(31,168,85,.28); }
.btn-whatsapp:hover { background: #1c934b; transform: translateY(-2px); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,246,236,.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--line-soft); box-shadow: 0 6px 24px rgba(30,45,30,.06); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 54px; width: auto; display: block; }
.brand-logo--footer {
  height: 50px; background: var(--cream); border-radius: 12px;
  padding: 12px 16px; box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.brand-text span {
  font-size: .66rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--moss);
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav > a {
  font-size: .95rem; font-weight: 600; color: var(--body);
  position: relative; transition: color .2s;
}
.nav > a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--green); border-radius: 2px; transition: width .25s var(--ease);
}
.nav > a:hover { color: var(--green); }
.nav > a:hover::after, .nav > a.active::after { width: 100%; }
.nav > a.active { color: var(--green); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: var(--ink); }
.nav-phone svg { width: 17px; height: 17px; color: var(--green); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: none; }
.header-cta .btn-primary { display: none; } /* nur mobil sichtbar */

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--paper); position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; transform: translate(-50%,-50%);
  transition: transform .28s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 7px); }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translate(-50%,0) rotate(45deg); }
.nav-toggle.open span::after  { transform: translate(-50%,0) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: clamp(48px, 8vw, 92px) 0 clamp(60px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 88% 8%, rgba(46,107,65,.10), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(180,131,44,.08), transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sand); border: 1px solid var(--line-soft);
  padding: 8px 16px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: var(--green-700);
}
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(46,107,65,.16); }
.hero h1 { margin: 22px 0 20px; }
.hero-sub { font-size: 1.16rem; color: var(--muted); max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--body); }
.hero-trust svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* Hero Media */
.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  background: var(--sand-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30,58,42,.28));
}
.hero-badge {
  position: absolute; left: -22px; bottom: 34px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  background: var(--paper); border-radius: 16px; padding: 15px 20px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line-soft);
  max-width: 264px;
}
.hero-badge .shield {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(150deg, var(--green), var(--green-700));
  display: grid; place-items: center; color: #fff;
}
.hero-badge .shield svg { width: 22px; height: 22px; }
.hero-badge b { display: block; font-family: var(--font-sans); font-size: .9rem; color: var(--ink); font-weight: 800; line-height: 1.2; }
.hero-badge span { font-size: .76rem; color: var(--muted); }
.hero-tag {
  position: absolute; right: -14px; top: 30px; z-index: 2;
  background: var(--forest); color: var(--cream);
  border-radius: 14px; padding: 12px 16px; text-align: center; box-shadow: var(--shadow-md);
}
.hero-tag b { font-family: var(--font-disp); font-size: 1.5rem; font-weight: 600; display: block; line-height: 1; }
.hero-tag span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); }

/* =========================================================
   STAT STRIP
   ========================================================= */
.stats { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 20px; text-align: center; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: none; }
.stat b { font-family: var(--font-disp); font-size: clamp(2.1rem, 2.8vw, 2.8rem); font-weight: 700; color: var(--green); line-height: 1; display: block; white-space: nowrap; }
.stat span { display: block; margin-top: 10px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }

/* =========================================================
   SECTIONS (generic)
   ========================================================= */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h2, .section--forest h3 { color: var(--cream); }
.section--forest .eyebrow { color: var(--gold-soft); }
.section--forest .section-head p { color: rgba(251,246,236,.72); }

/* =========================================================
   LEISTUNGEN — editorial list (sticky head + rows)
   ========================================================= */
.lst { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(30px, 5vw, 68px); align-items: start; }
.lst-head { position: sticky; top: 104px; }
.lst-head h2 { margin: 16px 0 16px; }
.lst-head p { color: var(--muted); margin-bottom: 26px; }

.svc-row {
  display: grid; grid-template-columns: auto auto 1fr; gap: 22px; align-items: start;
  padding: 26px 24px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s, transform .25s var(--ease);
}
.svc-row + .svc-row { border-top: 1px solid var(--line-soft); border-top-left-radius: 0; border-top-right-radius: 0; }
.svc-row:hover { background: var(--paper); border-color: var(--line-soft); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.svc-num { font-family: var(--font-disp); font-size: 1.05rem; color: var(--moss); font-weight: 600; padding-top: 6px; }
.svc-ico {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  background: var(--sand); color: var(--green);
  display: grid; place-items: center; transition: background .25s, color .25s;
}
.svc-row:hover .svc-ico { background: var(--green); color: #fff; }
.svc-ico svg { width: 25px; height: 25px; }
.svc-txt h3 { margin-bottom: 6px; }
.svc-txt p { color: var(--muted); font-size: .98rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.svc-tags span { font-size: .74rem; font-weight: 600; color: var(--green-700); background: var(--sand); padding: 4px 11px; border-radius: 999px; }
.section--sand .svc-ico, .section--sand .svc-tags span { background: var(--cream); }
.section--sand .svc-row:hover { background: var(--cream); }

/* =========================================================
   FEATURE BAND (forest) — Qualität
   ========================================================= */
.feature { position: relative; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.feature-media {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg); background: var(--forest-2);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature h2 { margin: 16px 0 18px; }
.feature-lead { color: rgba(251,246,236,.82); font-size: 1.1rem; margin-bottom: 26px; }
.feature-points { display: grid; gap: 14px; margin-bottom: 30px; }
.feature-points li { list-style: none; display: flex; gap: 13px; align-items: flex-start; }
.feature-points .tick {
  flex: none; width: 26px; height: 26px; border-radius: 8px; margin-top: 2px;
  background: rgba(255,255,255,.10); color: var(--gold-soft); display: grid; place-items: center;
}
.feature-points .tick svg { width: 15px; height: 15px; }
.feature-points b { color: var(--cream); font-weight: 700; }
.feature-points p { color: rgba(251,246,236,.66); font-size: .94rem; }

/* =========================================================
   ÜBER UNS
   ========================================================= */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.about-media { position: relative; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: var(--sand-2); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-quote {
  position: absolute; right: -16px; bottom: -18px; max-width: 220px;
  background: var(--green); color: #fff; padding: 18px 20px; border-radius: 16px; box-shadow: var(--shadow-md);
  font-family: var(--font-disp); text-transform: uppercase; font-weight: 600; font-size: 1.05rem; line-height: 1.2; letter-spacing: .01em;
}
.about h2 { margin: 16px 0 18px; }
.about-body p { color: var(--muted); margin-bottom: 16px; }
.about-points { list-style: none; display: grid; gap: 14px; margin: 24px 0 28px; }
.about-points li { display: flex; gap: 13px; align-items: flex-start; }
.about-points .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--green); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.about-points .tick svg { width: 15px; height: 15px; }
.about-points b { display: block; color: var(--ink); font-weight: 700; }
.about-points .txt span { color: var(--muted); font-size: .94rem; }
.signature { font-family: var(--font-disp); text-transform: uppercase; font-weight: 700; font-size: 1.5rem; letter-spacing: .06em; color: var(--green); }
.signature + .sig-role { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* =========================================================
   FREISTELLUNG / TRUST CALLOUT
   ========================================================= */
.trust-callout {
  background: linear-gradient(135deg, var(--forest), var(--green-700));
  color: var(--cream); border-radius: var(--radius-lg); padding: clamp(30px,4vw,52px);
  display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.trust-callout::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(216,177,103,.18), transparent 70%);
}
.trust-shield { flex: none; width: 72px; height: 72px; border-radius: 18px; background: rgba(255,255,255,.10); display: grid; place-items: center; color: var(--gold-soft); }
.trust-shield svg { width: 38px; height: 38px; }
.trust-callout h3 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.trust-callout p { color: rgba(251,246,236,.78); font-size: .98rem; max-width: 60ch; }
.trust-callout .badge-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.trust-callout .badge-list span { font-size: .76rem; font-weight: 700; background: rgba(255,255,255,.10); padding: 5px 12px; border-radius: 999px; color: var(--cream); }

/* =========================================================
   ABLAUF — vertical timeline
   ========================================================= */
.timeline { max-width: 780px; margin: 46px auto 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--green), var(--sand-2)); }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 34px; position: relative; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
  width: 56px; height: 56px; border-radius: 16px; z-index: 1;
  background: var(--paper); border: 1px solid var(--line); color: var(--green);
  display: grid; place-items: center; font-family: var(--font-disp); font-weight: 600; font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.tl-step.is-active .tl-dot { background: var(--green); color: #fff; border-color: var(--green); }
.tl-body { padding-top: 6px; }
.tl-body h3 { margin-bottom: 5px; }
.tl-body p { color: var(--muted); font-size: .98rem; }
.section--sand .tl-dot { background: var(--cream); }

/* =========================================================
   VERLASS (benefits, ersetzt Testimonials)
   ========================================================= */
.rely-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.rely-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius); padding: 30px 26px; transition: transform .25s var(--ease), background .25s;
}
.rely-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
.rely-ico { width: 50px; height: 50px; border-radius: 13px; background: rgba(216,177,103,.16); color: var(--gold-soft); display: grid; place-items: center; margin-bottom: 18px; }
.rely-ico svg { width: 24px; height: 24px; }
.rely-card h3 { color: #fff; font-size: 1.22rem; margin-bottom: 8px; }
.rely-card p { color: rgba(251,246,236,.68); font-size: .95rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 820px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 24px 44px 24px 0; position: relative;
  font-family: var(--font-disp); font-weight: 600; font-size: 1.18rem; color: var(--ink);
}
.faq-q::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 40px 26px 0; color: var(--muted); }
.faq-a-inner strong { color: var(--green-700); }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px,4vw,52px); align-items: start; }
.contact-info {
  background: var(--forest); color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(30px,4vw,44px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.contact-info::before { content:""; position:absolute; left:-50px; bottom:-50px; width:200px; height:200px; background:radial-gradient(circle, rgba(87,137,106,.30), transparent 70%); }
.contact-info .eyebrow { color: var(--gold-soft); }
.contact-info h2 { color: #fff; margin: 14px 0 12px; font-size: 2rem; }
.contact-info > p { color: rgba(251,246,236,.74); margin-bottom: 28px; }
.contact-list { list-style: none; display: grid; gap: 18px; position: relative; }
.contact-list li { display: flex; gap: 15px; align-items: center; }
.contact-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.09); color: var(--gold-soft); display: grid; place-items: center; }
.contact-ico svg { width: 21px; height: 21px; }
.contact-list b { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--moss); }
.contact-list a, .contact-list .v { color: var(--cream); font-weight: 600; font-size: 1.02rem; }
.contact-list a:hover { color: var(--gold-soft); }
.contact-hours { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; color: rgba(251,246,236,.72); position: relative; }
.contact-hours b { color: var(--cream); }

.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(26px,3.4vw,40px); box-shadow: var(--shadow-md); }
.form-success {
  display: none; background: #eaf5ee; border: 1px solid #bfe0cc; color: #1c5c34;
  border-radius: var(--radius-sm); padding: 15px 18px; margin-bottom: 22px; font-size: .92rem;
}
.form-success.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(46,107,65,.12);
}
.consent { display: flex; gap: 11px; align-items: flex-start; margin: 6px 0 20px; font-size: .82rem; color: var(--muted); line-height: 1.5; }
.consent input { margin-top: 3px; width: 17px; height: 17px; flex: none; accent-color: var(--green); }
.consent a { color: var(--green); text-decoration: underline; }
.form-note { font-size: .76rem; color: var(--muted-2); margin-top: 14px; line-height: 1.5; }

/* Region strip */
.regions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.region-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600;
  color: var(--body); background: var(--paper); border: 1px solid var(--line-soft);
  padding: 9px 15px; border-radius: 999px;
}
.region-chip svg { width: 15px; height: 15px; color: var(--green); }
.section--sand .region-chip { background: var(--cream); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #17281D; color: rgba(251,246,236,.72); padding: 70px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer .brand-text b { color: #fff; }
.footer .brand-text span { color: var(--moss); }
.footer-about { margin-top: 18px; font-size: .94rem; max-width: 38ch; color: rgba(251,246,236,.62); }
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a, .footer-contact li { color: rgba(251,246,236,.66); font-size: .95rem; }
.footer ul a:hover { color: var(--gold-soft); }
.footer-contact { list-style: none; display: grid; gap: 11px; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; font-size: .86rem; color: rgba(251,246,236,.52); }
.footer-bottom a { color: rgba(251,246,236,.66); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal { padding: 60px 0 90px; background: var(--cream); }
.legal .container { max-width: 820px; }
.back { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 700; font-size: .92rem; margin-bottom: 30px; }
.back svg { width: 18px; height: 18px; }
.legal h1 { margin-bottom: 12px; }
.legal .lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--body); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--green); text-decoration: underline; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200;
  max-width: 560px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  transform: translateY(140%); opacity: 0; transition: transform .4s var(--ease), opacity .4s;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-text b { display: block; font-family: var(--font-disp); font-weight: 600; color: var(--ink); margin-bottom: 5px; font-size: 1.05rem; }
.cookie-text { font-size: .86rem; color: var(--muted); margin-bottom: 16px; }
.cookie-text a { color: var(--green); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-mini-ghost { background: transparent; border: 1.5px solid var(--line); color: var(--ink); padding: 11px 18px; border-radius: 999px; font-weight: 700; font-size: .9rem; }
.btn-mini-ghost:hover { border-color: var(--green); color: var(--green); }
.cookie-actions .btn-primary { padding: 11px 20px; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal-on .reveal { opacity: 0; transform: translateY(26px); }
.reveal-on .reveal.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { max-width: 46ch; }
  .hero-media { max-width: 440px; margin: 0 auto; width: 100%; }
  .lst { grid-template-columns: 1fr; }
  .lst-head { position: static; }
  .feature-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-media { max-width: 520px; order: -1; }
  .about-media { max-width: 420px; margin: 0 auto 20px; }
  .trust-callout { grid-template-columns: auto 1fr; }
  .rely-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .header-phone { display: none; }
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: 12px 22px 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .38s var(--ease); z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav > a::after { display: none; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 14px; }
  .nav-cta .btn { width: 100%; }
  .nav-phone { justify-content: center; padding: 10px 0; }
  .nav-toggle { display: block; }
  .header-cta .btn-primary { display: inline-flex; padding: 11px 18px; font-size: .86rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid var(--line-soft); }
  .stat:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero-badge { left: 0; }
  .hero-tag { right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .rely-grid { grid-template-columns: 1fr; }
  .trust-callout { grid-template-columns: 1fr; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-num { display: none; }
  .about-quote { position: static; margin-top: 16px; max-width: none; }
}
