@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=JetBrains+Mono:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #0a1a0d;
  --bg-light: #f4faf4;
  --card: #ffffff;
  --green: #1b9109;
  --green-dark: #157007;
  --green-light: #edf7ed;
  --text: #0a1a0d;
  --text-soft: #4a7050;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --max: 1280px;
  --gut: clamp(1rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* paper-grain background that warms the off-white sections */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/></svg>");
  mix-blend-mode: multiply;
  opacity: .8;
}

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(2.6rem, 7.5vw, 6.4rem); font-weight: 500; }
h1 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--green); }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.1; }
h4 { font-size: 1.25rem; line-height: 1.2; }

p { font-size: 1.0625rem; line-height: 1.65; color: var(--text-soft); max-width: 60ch; }
p.lede { font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: var(--text); line-height: 1.5; max-width: 50ch; }

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--green);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--green);
}

/* numbered section markers */
.marker {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

/* ============= LAYOUT ============= */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); position: relative; z-index: 1; }
section { padding: clamp(4rem, 10vw, 8rem) 0; position: relative; }
section + section { border-top: 1px solid rgba(10,26,13,.08); }

/* ============= HEADER ============= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 250, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,26,13,.08);
}
.header-inner {
  display: flex; align-items: center;
  padding: 1rem var(--gut);
  max-width: var(--max); margin: 0 auto;
  gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-logo {
  width: 36px; height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}
nav.primary {
  display: flex; gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  margin-left: auto;
}
nav.primary a {
  position: relative; padding: 4px 0;
  color: var(--text);
}
nav.primary a:hover { color: var(--green); }
nav.primary a.active::after {
  content: ''; position: absolute;
  inset: auto 0 0 0; height: 2px; background: var(--green);
}
.header-cta { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.lang-switch {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--text-soft);
  border: 1px solid rgba(10,26,13,.18); border-radius: 5px;
  padding: 3px 7px; line-height: 1.4;
  transition: color .15s, border-color .15s;
}
.lang-switch:hover { color: var(--green); border-color: var(--green); }
.header-phone {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
}
.header-phone-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(27,145,9,.18);
  animation: pulse 1.6s ease-out infinite;
}
.header-phone-dot.dot--orange {
  background: #e07b00;
  box-shadow: 0 0 0 4px rgba(224,123,0,.18);
  animation: pulse-orange 1.6s ease-out infinite;
}
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(224,123,0,.45); }
  70%  { box-shadow: 0 0 0 10px rgba(224,123,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,123,0,0); }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(27,145,9,.45); }
  70%  { box-shadow: 0 0 0 10px rgba(27,145,9,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,145,9,0); }
}

/* mobile nav toggle */
.menu-toggle { display: none; }
.mobile-nav { display: none; }

@media (max-width: 880px) {
  .header-phone .header-phone-num { display: none; }
}

@media (max-width: 1100px) {
  nav.primary { display: none; }

  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(10,26,13,.15);
    border-radius: 8px;
    position: relative;
  }
  .menu-toggle::before,
  .menu-toggle::after {
    content: '';
    position: absolute;
    width: 18px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.22s ease;
  }
  .menu-toggle::before {
    transform: translateY(-5px);
    box-shadow: 0 5px 0 var(--text);
    transition: transform 0.22s ease, box-shadow 0.1s ease 0.1s;
  }
  .menu-toggle::after { transform: translateY(5px); }

  body.menu-open .header { z-index: 300; }
  body.menu-open .menu-toggle { border-color: transparent; }
  body.menu-open .menu-toggle::before {
    transform: rotate(45deg);
    box-shadow: none;
    transition: transform 0.22s ease, box-shadow 0s;
  }
  body.menu-open .menu-toggle::after { transform: rotate(-45deg); }

  body.menu-open .mobile-nav {
    display: flex; flex-direction: column; justify-content: center;
    position: fixed; inset: 0; z-index: 200;
    padding: 3rem var(--gut);
    background: var(--bg-light);
  }
  body.menu-open .mobile-nav a {
    font-family: var(--body);
    font-size: clamp(1.4rem, 5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(10,26,13,.08);
  }
  body.menu-open .mobile-nav a:last-child { border-bottom: none; }
  body.menu-open .mobile-nav a:hover,
  body.menu-open .mobile-nav a.active { color: var(--green); }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--green);
  color: #fff;
  transition: background .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 24px -10px rgba(21,112,7,.45); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(10,26,13,.18);
}
.btn-ghost:hover { background: var(--text); color: var(--bg-light); border-color: var(--text); }
.btn-dark { background: var(--bg-dark); }
.btn-dark:hover { background: #122318; }
.btn svg { width: 18px; height: 18px; }

/* ============= HERO ============= */
.hero {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6.5rem);
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10% -5% 0 -5%;
  background: radial-gradient(ellipse at 30% 30%, rgba(27,145,9,.25), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero .hero-grid { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero h1 em { color: var(--green); }
.hero p { color: rgba(255,255,255,.7); }
.hero .hero-status { background: rgba(27,145,9,.18); color: #fff; }
.hero .hero-phone { border-color: rgba(255,255,255,.15); }
.hero .hero-phone .label { color: rgba(255,255,255,.5); }
.hero .hero-phone .number { color: #fff; }
.hero .hero-phone .number:hover { color: var(--green); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-status {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0.45rem 0.95rem;
  background: var(--green-light);
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.hero-status .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 1.6s ease-out infinite;
}
.hero-status .dot.dot--orange {
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245,158,11,.4);
}
.hero h1 { margin-bottom: 1.4rem; }
.hero p.lede { margin-bottom: 2.2rem; }

.hero-phone {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid rgba(10,26,13,.12);
  border-bottom: 1px solid rgba(10,26,13,.12);
  margin-bottom: 1.5rem;
}
.hero-phone .label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}
.hero-phone .number {
  font-family: var(--mono);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.hero-phone .number:hover { color: var(--green); }
.hero-phone .number svg {
  width: 28px; height: 28px;
  color: var(--green);
}

.hero-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}

/* the visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}
.hero-visual .keyframe {
  position: absolute; inset: 0;
  background: var(--bg-dark);
  border-radius: 24px;
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: 0 30px 80px -30px rgba(10,26,13,.4);
}
.hero-visual svg.bigkey {
  width: 75%;
  color: var(--green);
}
.hero-visual .meta {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.5);
  z-index: 1;
}
.hero-visual .meta strong { color: #fff; font-weight: 500; display:block; font-size: 0.78rem; margin-top: 4px; }
.hero-visual .glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle at center, rgba(27,145,9,.4), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.hero-visual .ticker {
  position: absolute; top: 1.2rem; left: 1.2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  z-index: 1;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.hero-visual .ticker .dot { width:6px; height:6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 12px var(--green); }

/* ============= TRUST STRIP ============= */
.trust {
  background: var(--bg-dark);
  color: #fff;
  padding: 1.5rem 0;
}
.trust .row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 880px) { .trust .row { grid-template-columns: repeat(2,1fr); gap: 1.5rem; } }
.trust-item {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.92rem;
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 1.5rem;
  line-height: 1.3;
}
.trust-item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 880px) {
  .trust-item:nth-child(odd) { border-left: 0; padding-left: 0; }
}
.trust-item .num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}
.trust-item small {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

/* ============= SECTION HEADERS ============= */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.section-head .marker { white-space: nowrap; }
.section-head h2 { max-width: 18ch; }
.section-head .right { text-align: right; max-width: 32ch; margin-left: auto; }
@media (max-width: 740px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .section-head .right { text-align: left; }
}

/* ============= SERVICES ============= */
.services {
  display: flex; flex-direction: column;
}
.service-row {
  display: grid; grid-template-columns: 80px 1fr 1.4fr 48px;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(10,26,13,.12);
  align-items: start;
  position: relative;
  transition: padding .25s;
}
.service-row:last-child { border-bottom: 1px solid rgba(10,26,13,.12); }
.service-row:hover { padding-left: 1rem; }
.service-row:hover h3 { color: var(--green); }
.service-row .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.service-row h3 { transition: color .2s; }
.service-row .desc { font-size: 1rem; }
.service-row .arrow {
  width: 48px; height: 48px;
  align-self: center;
  background: var(--green-light);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green);
  transition: all .25s;
}
.service-row:hover .arrow { background: var(--green); color: #fff; transform: translateX(4px); }
@media (max-width: 880px) {
  .service-row { grid-template-columns: 60px 1fr; padding-right: 60px; }
  .service-row .desc { grid-column: 1 / -1; padding-left: 0; }
  .service-row .arrow { width: 40px; height: 40px; }
}

/* ── article cards ──────────────────────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10,26,13,.1);
  border-left: 3px solid transparent;
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.article-card:hover {
  box-shadow: 0 10px 36px rgba(10,26,13,.12);
  transform: translateY(-3px);
  border-left-color: var(--green);
}
.article-card-num {
  position: absolute;
  top: 0.85rem;
  right: 1.25rem;
  font-family: var(--mono);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(10,26,13,.06);
  user-select: none;
  pointer-events: none;
}
.article-grid .article-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 560px;
}
.article-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.article-card h3 {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  transition: color .2s;
}
.article-card:hover h3 { color: var(--green); }
.article-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-soft);
  flex: 1;
  margin: 0 0 1.25rem;
}
.article-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .01em;
}
@media (max-width: 680px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-grid .article-card:last-child:nth-child(odd) { max-width: none; }
}

/* ============= STEPS ============= */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--card);
  padding: 2rem;
  border-radius: 18px;
  position: relative;
  border: 1px solid rgba(10,26,13,.06);
}
.step::before {
  content: ''; position: absolute;
  top: -1px; left: 32px; right: 32px;
  height: 2px; background: var(--green);
}
.step .step-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex; justify-content: space-between; align-items: center;
}
.step .step-num em {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-soft);
}
.step h4 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.95rem; }

/* ============= TESTIMONIALS ============= */
.testimonials { background: var(--green-light); }
.t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 980px) { .t-grid { grid-template-columns: 1fr; } }
.tcard {
  background: var(--card);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid rgba(10,26,13,.06);
  display: flex; flex-direction: column;
  position: relative;
}
.tcard::before {
  content: '“';
  position: absolute; top: 0.4rem; right: 1.6rem;
  font-family: var(--display);
  font-size: 6rem;
  color: var(--green);
  opacity: 0.3;
  line-height: 1;
}
.tcard p {
  font-family: var(--body);
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.tcard .who {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: end;
  border-top: 1px solid rgba(10,26,13,.1);
  padding-top: 1rem;
  font-size: 0.9rem;
}
.tcard .who strong { font-weight: 500; color: var(--text); display: block; }
.tcard .who small {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}
.stars { color: var(--green); letter-spacing: 1px; font-size: 0.95rem; }

/* ============= MAP ============= */
.map-wrap {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(10,26,13,.08);
}
@media (max-width: 880px) { .map-wrap { grid-template-columns: 1fr; } }
.map-frame {
  aspect-ratio: 4 / 3;
  border: 0; width: 100%; height: 100%; min-height: 360px;
  filter: hue-rotate(60deg) saturate(0.8);
}
.map-side {
  padding: 2rem;
  display: flex; flex-direction: column;
}
.map-side h3 { margin-bottom: 1rem; }
.map-side p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.city-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  font-size: 0.92rem;
  list-style: none;
}
.city-list li {
  font-family: var(--mono);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(10,26,13,.06);
  color: var(--text-soft);
  display: flex; justify-content: space-between;
}
.city-list li::after { content: '•'; color: var(--green); }

/* ============= FAQ ============= */
.faq-list {
  margin-top: 2.5rem;
  max-width: 850px;
}
.faq-item {
  border-top: 1px solid rgba(10,26,13,.12);
  padding: 1.4rem 0;
  position: relative;
}
.faq-item:last-child { border-bottom: 1px solid rgba(10,26,13,.12); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--mono);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--green);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding-top: 1rem; max-width: 65ch; }

/* ============= CONTACT ============= */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 880px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-side h3 { margin-bottom: 1rem; max-width: 14ch; }
.contact-side p { margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}
.contact-info dd {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}
.contact-info dd a:hover { color: var(--green); }
.contact-info dd.big {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 600;
}

form.contact-form {
  background: var(--card);
  padding: 2.2rem;
  border-radius: 24px;
  border: 1px solid rgba(10,26,13,.08);
  display: flex; flex-direction: column; gap: 1.2rem;
  box-shadow: 0 10px 40px -20px rgba(10,26,13,.15);
}
form.contact-form label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
form.contact-form input,
form.contact-form textarea {
  font: inherit;
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--bg-light);
  border: 1px solid rgba(10,26,13,.1);
  border-radius: 10px;
  color: var(--text);
  transition: border-color .15s, background .15s;
  text-transform: none;
  letter-spacing: 0;
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: 0;
  border-color: var(--green);
  background: #fff;
}
form.contact-form textarea { resize: vertical; min-height: 120px; }
form.contact-form .submit-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-soft);
}
form.contact-form .privacy { font-family: var(--body); text-transform: none; letter-spacing: 0; }

/* ============= CTA BIG ============= */
.cta-big {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-big::before {
  content: '';
  position: absolute;
  inset: -50% -10% 30% -10%;
  background: radial-gradient(ellipse at center, rgba(27,145,9,.35), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.cta-big .container { position: relative; z-index: 1; }
.cta-big .marker { color: rgba(255,255,255,.6); }
.cta-big h2 { color: #fff; margin: 1rem 0 1.5rem; }
.cta-big h2 em { color: var(--green); font-style: italic; }
.cta-big .number {
  font-family: var(--mono);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin: 1rem 0 2.2rem;
  color: #fff;
}
.cta-big .number svg { color: var(--green); }
.cta-big .number:hover { color: var(--green); }
.cta-big .row { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
.cta-big .row .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.cta-big .row .btn-ghost:hover { background: #fff; color: var(--bg-dark); border-color: #fff; }

/* ============= FOOTER ============= */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.93rem; }
.footer ul a:hover { color: var(--green); }
.footer .brand { color: #fff; font-size: 1.25rem; }
.footer .brand small { color: rgba(255,255,255,.5); }
.footer-tag { color: #fff; max-width: 30ch; font-size: 0.95rem; margin-top: 1.2rem; line-height: 1.5; }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}

/* ============= FLOATING WHATSAPP ============= */
.fab-whatsapp {
  position: fixed; bottom: 1.4rem; right: 1.4rem;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,.5);
  z-index: 50;
  transition: transform .2s;
}
.fab-whatsapp:hover { transform: scale(1.06) rotate(-4deg); }
.fab-whatsapp svg { width: 28px; height: 28px; color: #fff; }
.fab-label {
  position: absolute; right: 100%; margin-right: 12px;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.fab-whatsapp:hover .fab-label { opacity: 1; transform: translateX(0); }

/* ============= EMERGENCY BANNER (sticky bottom on Spoedhulp/Buitengesloten) ============= */
.urgency-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.85rem var(--gut);
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  z-index: 40;
  border-top: 2px solid var(--green);
  font-size: 0.93rem;
}
.urgency-bar strong { font-family: var(--display); font-style: italic; font-weight: 500; }
.urgency-bar a { color: var(--green); font-family: var(--mono); font-weight: 600; letter-spacing: -0.01em; }

/* ============= INNER PAGE HEROES (smaller) ============= */
.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: -10% -5% 0 -5%;
  background: radial-gradient(ellipse at 30% 30%, rgba(27,145,9,.25), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 18ch;
  margin: 0.8rem 0 1rem;
  color: #fff;
}
.page-hero h1 em { color: var(--green); }
.page-hero p { max-width: 56ch; color: rgba(255,255,255,.7); }
.page-hero .eyebrow { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.15); }

/* breadcrumbs */
.crumbs {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex; gap: 0.5rem;
}
.crumbs a:hover { color: var(--green); }
.crumbs span { color: rgba(10,26,13,.3); }
.page-hero .crumbs { color: rgba(255,255,255,.5); }
.page-hero .crumbs a { color: rgba(255,255,255,.7); }
.page-hero .crumbs span { color: rgba(255,255,255,.35); }
.page-hero .hero-phone { border-color: rgba(255,255,255,.15); }
.page-hero .hero-phone .label { color: rgba(255,255,255,.5); }
.page-hero .hero-phone .number { color: #fff; }
.page-hero .hero-phone .number:hover { color: var(--green); }
.page-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }

/* generic 2-col content */
.two-col {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }
.two-col p { margin-bottom: 1rem; }

.callout {
  background: var(--green-light);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid var(--green);
}
.callout p { color: var(--text); margin-bottom: 0; font-size: 1rem; }
.callout .label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.4rem;
  display: block;
  font-weight: 500;
}

.bullets { list-style: none; margin: 1.2rem 0; }
.bullets li {
  padding: 0.7rem 0 0.7rem 2rem;
  border-bottom: 1px solid rgba(10,26,13,.08);
  position: relative;
  font-size: 0.98rem;
  color: var(--text);
}
.bullets li::before {
  content: ''; position: absolute;
  left: 0; top: 1.05rem;
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--green-light);
}

.price-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 740px) { .price-row { grid-template-columns: 1fr; } }
.price-card {
  background: var(--card);
  padding: 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(10,26,13,.08);
}
.price-card .label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.price-card .value {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 0.4rem 0;
  line-height: 1;
}
.price-card small { font-size: 0.85rem; color: var(--text-soft); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* large emergency hero (spoedhulp / buitengesloten) */
.emergency-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(3rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 0;
}
.emergency-hero::before {
  content: '';
  position: absolute;
  inset: -10% -5% 0 -5%;
  background: radial-gradient(ellipse at 30% 30%, rgba(27,145,9,.25), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.emergency-hero .container { position: relative; z-index: 1; }
.emergency-hero h1 { color: #fff; max-width: 16ch; }
.emergency-hero h1 em { color: var(--green); }
.emergency-hero p { color: rgba(255,255,255,.7); }
.emergency-hero .hero-phone { border-color: rgba(255,255,255,.15); }
.emergency-hero .hero-phone .number { color: #fff; }
.emergency-hero .hero-phone .label { color: rgba(255,255,255,.5); }
.emergency-hero .hero-status { background: rgba(27,145,9,.18); color: #fff; }
.emergency-hero .marker { color: rgba(255,255,255,.5); }
