/* Self-hosted fonts (previously loaded from fonts.googleapis.com).
   Loading fonts directly from Google's servers sends every visitor's IP
   address to Google before consent — German courts (e.g. LG München I,
   Az. 3 O 17493/20) have held this to be a GDPR violation. Hosting the
   files ourselves removes that third-party request entirely. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/sora-500.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/sora-600.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/sora-700.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/sora-800.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/jetbrains-mono-500.woff2") format("woff2");
}

:root {
  --ink: #1a2027;
  --ink-soft: #3c4550;
  --leaf: #3f7a2a;
  --leaf-dark: #2c5a1d;
  --leaf-light: #6fa83d;
  --mist: #f4f6f1;
  --sand: #ecefe7;
  --paper: #ffffff;
  --line: #dde3d6;
  --shadow: 0 20px 50px -25px rgba(26, 32, 39, 0.35);
  --radius: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
h1,
h2,
h3,
h4 {
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1em;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .wrap {
    padding: 0 18px;
  }
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf-dark);
  background: #e7f0df;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
section {
  padding: 88px 0;
}
@media (max-width: 720px) {
  section {
    padding: 60px 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(63, 122, 42, 0.55);
}
.btn-primary:hover {
  background: var(--leaf-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #fff;
  color: var(--leaf-dark);
  border-color: var(--leaf-light);
}
.btn-whatsapp:hover {
  background: var(--mist);
  transform: translateY(-2px);
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2.5px solid var(--leaf-dark);
  outline-offset: 3px;
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
/* The frosted-glass background lives on a ::before layer (instead of
   directly on <header>) so that header stays free of backdrop-filter —
   that property creates a new containing block for fixed-position
   descendants, which would otherwise trap the fullscreen mobile nav
   overlay inside the header's own (much smaller) box. */
header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(160%) blur(10px);
  pointer-events: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}
.brand img {
  height: auto;
  width: auto;
  max-height: 38px;
  max-width: 42vw;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14.5px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--leaf-dark);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.nav-actions .btn {
  white-space: nowrap;
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex: none;
  z-index: 60;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav {
  flex-wrap: nowrap;
  gap: 10px;
}

/* Tablet: collapse the inline link list behind the toggle, keep primary CTA visible */
@media (max-width: 1080px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 60px);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 6px 24px;
    gap: 0;
    overflow-y: auto;
    transform-origin: top;
    transform: scaleY(0.96) translateY(-4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.2s var(--ease),
      opacity 0.2s var(--ease),
      visibility 0.2s;
    z-index: 55;
  }
  .nav-links.open {
    transform: scaleY(1) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    border-top: 1px solid var(--line);
  }
  .nav-links li:first-child {
    border-top: none;
  }
  .nav-links a {
    display: block;
    padding: 16px 2px;
    color: var(--ink);
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .nav-links a:hover {
    color: var(--leaf-dark);
  }
  .burger {
    display: block;
  }
}

/* Mobile: header CTA is redundant with the sticky bottom bar, so it's dropped
   to keep the header to logo + burger only, and free up tap room. */
@media (max-width: 720px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand img {
    max-height: 32px;
  }
  .nav {
    padding: 12px 16px;
  }
}

/* ===== Hero ===== */
.hero {
  padding: 64px 0 90px;
  background:
    radial-gradient(
      1100px 480px at 85% -10%,
      rgba(111, 168, 61, 0.14),
      transparent 60%
    ),
    var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.hero-grid > * {
  min-width: 0;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
}
.hero h1 .accent {
  color: var(--leaf);
  position: relative;
}
.hero-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}
.hero-microtrust {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}
.hero-flags {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-flag svg {
  width: 17px;
  height: 17px;
  color: var(--leaf);
  flex: none;
}

.sparkle {
  position: absolute;
  color: var(--leaf-light);
  animation: twinkle 2.6s ease-in-out infinite;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(8deg);
  }
}
.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3.1;
  background: #0e130f;
}
.hero-visual .base-img,
.hero-visual .clean-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .base-img {
  filter: blur(6px) saturate(0.35) brightness(0.75);
  transform: scale(1.04);
}
.hero-visual .clean-img {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.4s var(--ease);
}
.hero-visual.wiped .clean-img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.wipe-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #fff, var(--leaf-light));
  box-shadow: 0 0 22px 4px rgba(255, 255, 255, 0.8);
  left: 0%;
  transition: left 1.4s var(--ease);
  pointer-events: none;
}
.hero-visual.wiped .wipe-edge {
  left: 100%;
}
.hero-visual-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(20, 26, 20, 0.42);
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual .clean-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    transition: none;
  }
  .wipe-edge {
    display: none;
  }
  .sparkle {
    animation: none;
  }
}

/* ===== Trust bar ===== */
.trustbar {
  background: var(--ink);
  color: #fff;
  padding: 26px 0;
}
.trustbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .trustbar .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #edefea;
}
.trust-item svg {
  width: 19px;
  height: 19px;
  color: var(--leaf-light);
  flex: none;
}

/* ===== Section headers ===== */
.sec-head {
  max-width: 640px;
  margin: 0 0 46px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* ===== Services ===== */
.services {
  background: var(--mist);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leaf-dark);
  background: #e7f0df;
  padding: 4px 9px;
  border-radius: 999px;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--leaf);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Advantages ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 800px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
}
.adv-card {
  background: var(--paper);
  padding: 30px 26px;
}
.adv-card svg {
  width: 26px;
  height: 26px;
  color: var(--leaf);
  margin-bottom: 14px;
}
.adv-card h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}
.adv-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Ablauf (process) ===== */
.process {
  background: var(--ink);
  color: #fff;
}
.process .sec-head p {
  color: #b9c2ae;
}
.process .sec-head h2 {
  color: #fff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding-left: 56px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.step h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 6px;
}
.step p {
  font-size: 14.5px;
  color: #c7cfbc;
  margin: 0;
}

/* ===== About ===== */
.about {
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-tag {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--leaf-dark);
  border-left: 2px solid var(--leaf);
  padding-left: 12px;
}

/* ===== Area ===== */
.area {
  background: var(--sand);
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 800px) {
  .area-inner {
    grid-template-columns: 1fr;
  }
}
.area-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--line);
}
.area-card h3 {
  font-size: 20px;
}
.map-swirl {
  width: 100%;
  height: auto;
  color: var(--leaf);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  background: rgba(20, 26, 20, 0.5);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ===== FAQ ===== */
.faq {
  background: var(--mist);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-answer {
  padding-bottom: 18px;
}
.faq-answer p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}

/* ===== Contact ===== */
.contact {
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
}
.contact-card h3 {
  color: #fff;
  font-size: 19px;
}
.contact-card p {
  color: #c7cfbc;
  font-size: 14.5px;
}
.contact-list {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
}
.contact-list svg {
  width: 19px;
  height: 19px;
  color: var(--leaf-light);
  flex: none;
  margin-top: 2px;
}
.contact-list a {
  text-decoration: none;
  color: #fff;
}
.contact-list a:hover {
  color: var(--leaf-light);
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}
.social-row a:hover {
  background: var(--leaf);
  border-color: var(--leaf);
}
.social-row svg {
  width: 17px;
  height: 17px;
}

form.request-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
@media (max-width: 480px) {
  form.request-form,
  .contact-card,
  .area-card {
    padding: 22px;
  }
  .area-card .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* Safety net: on very narrow screens, let any button's label wrap onto a
   second line instead of silently overflowing its box (white-space:nowrap
   is fine everywhere content is short enough, but a long label + icon in a
   button that isn't part of a width:100% stack — e.g. the WhatsApp button
   inside .area-card — has no other way to shrink). */
@media (max-width: 400px) {
  .btn {
    white-space: normal;
  }
}
/* Honeypot: kept in normal layout flow (not display:none) so simple bots
   that skip hidden fields still fill it in, but positioned off-screen so
   no human ever sees or tabs into it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
}
.field .opt {
  font-weight: 400;
  color: var(--ink-soft);
  font-family: "Inter", sans-serif;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leaf);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field.file-field {
  border: 1.5px dashed var(--line);
  border-radius: 9px;
  padding: 16px;
  background: var(--mist);
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: -6px;
  margin-bottom: 20px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 16px;
}
.form-status {
  margin-top: 14px;
  font-size: 14.5px;
}
.form-status:empty {
  display: none;
}
.form-status--success,
.form-status--error {
  padding: 14px 16px;
  border-radius: 10px;
  line-height: 1.5;
}
.form-status--success {
  background: #e7f0df;
  color: var(--leaf-dark);
}
.form-status--error {
  background: #fbe9e3;
  color: #9a3412;
}
.form-status--error a {
  text-decoration: underline;
}

/* Progressive disclosure: only the required fields show by default */
.form-more {
  margin: 4px 0 20px;
}
.form-more summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--leaf-dark);
  padding: 6px 0;
}
.form-more summary::-webkit-details-marker {
  display: none;
}
.form-more summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mist);
  font-size: 14px;
  transition: transform 0.2s var(--ease);
}
.form-more[open] summary::before {
  content: "–";
}
.form-more-inner {
  padding-top: 14px;
}

/* ===== Mobile sticky CTA bar ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 30px -18px rgba(26, 32, 39, 0.35);
}
.mobile-cta-bar .btn {
  flex: 1;
  min-width: 0;
  padding: 12px 10px;
  font-size: 14.5px;
  white-space: nowrap;
}
.mobile-cta-bar .btn .short {
  display: none;
}
@media (max-width: 360px) {
  .mobile-cta-bar {
    padding-left: 10px;
    padding-right: 10px;
    gap: 6px;
  }
  .mobile-cta-bar .btn {
    padding: 11px 8px;
    font-size: 13px;
  }
  .mobile-cta-bar .btn .full {
    display: none;
  }
  .mobile-cta-bar .btn .short {
    display: inline;
  }
}
@media (max-width: 720px) {
  .mobile-cta-bar {
    display: flex;
  }
  body {
    padding-bottom: 66px;
  }
}

/* ===== Footer ===== */
footer {
  background: var(--ink);
  color: #b9c2ae;
  padding: 52px 0 26px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 560px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  height: auto;
  width: auto;
  max-height: 34px;
  max-width: 60vw;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  color: #b9c2ae;
  text-decoration: none;
  font-size: 14px;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 12.5px;
  color: #7e8877;
}
.footer-bottom a {
  color: #7e8877;
  text-decoration: underline;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ===== Legal modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 19, 15, 0.55);
  backdrop-filter: blur(3px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  padding: 5vh 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: #fff;
  max-width: 720px;
  width: 100%;
  border-radius: 16px;
  padding: 38px 40px 40px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 480px) {
  .modal {
    padding: 50px 20px 26px;
    border-radius: 12px;
  }
}
.modal h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.modal h3 {
  font-size: 16px;
  margin: 22px 0 8px;
}
.modal p,
.modal li {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.modal ul {
  margin: 0 0 1em;
  padding-left: 22px;
}
.modal li {
  margin-bottom: 4px;
}
.modal .placeholder {
  background: #fcefd9;
  color: #8a5a1b;
  padding: 1px 6px;
  border-radius: 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--mist);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
}

::selection {
  background: var(--leaf-light);
  color: #fff;
}

/* ===== Skip link (keyboard/screen-reader users only, until focused) ===== */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: var(--leaf-dark);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 200;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus-visible {
  transform: translateY(0);
}
