﻿:root {
  --leaf: #176f43;
  --leaf-dark: #06271a;
  --leaf-soft: #dff3d8;
  --mint: #f0fbf2;
  --paper: #fbfff9;
  --white: #ffffff;
  --ink: #071f16;
  --muted: #4f665c;
  --line: rgba(12, 75, 43, 0.14);
  --clay: #c8643d;
  --sun: #f2c94c;
  --sky: #d8f2ee;
  --shadow: 0 20px 62px rgba(7, 54, 32, 0.14);
  --shadow-soft: 0 12px 32px rgba(7, 54, 32, 0.08);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --max: 1180px;
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

main {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(242, 201, 76, 0.86);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 112px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: clamp(10px, 2vw, 16px);
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2.3vw, 22px);
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(7, 54, 32, 0.14);
  backdrop-filter: blur(18px);
  animation: headerDrop 620ms var(--ease-out) both;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(12, 75, 43, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 52px rgba(7, 54, 32, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 188px;
  height: 62px;
  place-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--leaf);
  color: var(--white);
  font-weight: 800;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.04rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: rgba(23, 33, 27, 0.78);
  font-size: 0.95rem;
  font-weight: 650;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mint);
  color: var(--leaf-dark);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-action,
.button.primary {
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23, 111, 67, 0.24);
}

.header-action.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--leaf-dark);
  box-shadow: none;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--leaf-dark);
}

.hero {
  position: relative;
  min-height: min(840px, 86svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--leaf-dark);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/old-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 39, 26, 0.8), rgba(6, 39, 26, 0.34) 44%, rgba(6, 39, 26, 0.06)),
    linear-gradient(0deg, rgba(6, 39, 26, 0.62), rgba(6, 39, 26, 0.02) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 148px 0 56px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5d584;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 6.1rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.88);
}

.hero-proof strong {
  color: var(--white);
}

.quick-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: -28px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.quick-strip a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 12px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--leaf);
  font-weight: 900;
}

.quick-strip small {
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
}

.quick-strip a:hover,
.quick-strip a:focus-visible {
  background: var(--mint);
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 30px;
  align-items: end;
}

h2 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.25;
}

p {
  line-height: 1.7;
}

.section-heading p,
.intro-copy p,
.faq-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-section {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.trust-grid span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 750;
  box-shadow: var(--shadow-soft);
}


.conversion-band {
  width: min(calc(100% - 32px), var(--max));
  margin: -36px auto 78px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(23, 111, 67, 0.18);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 239, 0.96));
  box-shadow: 0 22px 58px rgba(7, 54, 32, 0.12);
}

.conversion-band strong {
  display: block;
  color: var(--leaf-dark);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.conversion-band span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.request-prep-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.request-prep-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.request-prep-list strong {
  color: var(--white);
}

.services-section,
.process-section {
  background:
    linear-gradient(180deg, rgba(239, 252, 242, 0.98), rgba(250, 255, 248, 0.98)),
    var(--mint);
}

.service-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid rgba(23, 33, 27, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(7, 54, 32, 0.08);
  overflow-x: auto;
  scrollbar-width: thin;
}

.chip {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.chip.is-active {
  border-color: var(--leaf);
  background: linear-gradient(180deg, #1f6b46, var(--leaf));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(23, 111, 67, 0.18);
}

.chip:hover {
  border-color: rgba(23, 111, 67, 0.18);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 292px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(23, 33, 27, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 255, 246, 0.98)),
    var(--white);
  box-shadow: 0 16px 38px rgba(7, 54, 32, 0.08);
  transition: transform 220ms var(--ease-out), opacity 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--sun));
}

.service-card.is-hidden {
  display: none;
}

.service-card:hover {
  border-color: rgba(23, 111, 67, 0.24);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(7, 54, 32, 0.14);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(23, 111, 67, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(219, 247, 220, 0.98), rgba(240, 251, 242, 0.98)),
    var(--leaf-soft);
  color: var(--leaf);
  font-size: 0.92rem;
  font-weight: 900;
}

.service-card h3 {
  max-width: 92%;
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.6vw, 1.38rem);
  line-height: 1.18;
}

.service-card p {
  max-width: 95%;
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 800;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(233, 186, 82, 0.16);
}


.featured-projects {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(210px, 0.82fr);
  grid-auto-rows: minmax(188px, 1fr);
  gap: 14px;
  min-height: clamp(360px, 42vw, 520px);
}

.featured-project-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  padding: 0;
  text-align: left;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.featured-project-card.is-large {
  grid-row: span 2;
}

.featured-project-card img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, opacity 260ms ease;
}

.featured-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(5, 19, 12, 0.78)),
    linear-gradient(90deg, rgba(6, 39, 26, 0.16), transparent 52%);
}

.featured-project-card span {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(6, 39, 26, 0.78);
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.featured-project-card small {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 16px;
  max-width: calc(100% - 32px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.featured-project-card:hover img,
.featured-project-card:focus-visible img {
  transform: scale(1.04);
  opacity: 0.88;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.project-tile {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
  cursor: pointer;
  padding: 0;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.project-tile.wide {
  grid-row: span 2;
}

.project-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, opacity 260ms ease;
}

.project-tile:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}

.project-tile span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(7, 54, 32, 0.78);
  font-weight: 900;
}

.project-tile small {
  position: absolute;
  z-index: 1;
  left: 18px;
  top: 18px;
  max-width: calc(100% - 36px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.references-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fff4 100%),
    var(--paper);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reference-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.reference-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 220px 1fr;
  border: 1px solid rgba(7, 54, 32, 0.12);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 245, 0.94)),
    var(--white);
  box-shadow: 0 22px 58px rgba(7, 54, 32, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.reference-card[data-modal-img] {
  cursor: zoom-in;
}

.reference-card.is-hidden {
  display: none;
}

.reference-card:hover {
  border-color: rgba(23, 111, 67, 0.22);
  box-shadow: 0 30px 72px rgba(7, 54, 32, 0.15);
  transform: translateY(-4px);
}

.reference-card:focus-visible {
  outline: 3px solid rgba(23, 111, 67, 0.36);
  outline-offset: 4px;
}

.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.reference-card[data-modal-img]:hover img,
.reference-card[data-modal-img]:focus-visible img {
  transform: scale(1.035);
}

.reference-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.reference-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(23, 111, 67, 0.09);
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

.reference-card h3 {
  margin: 0;
  color: var(--leaf-dark);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.12;
}

.reference-card small {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.reference-card p {
  margin: 0;
  color: var(--muted);
}

.reference-card strong {
  display: block;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 54, 32, 0.1);
  color: var(--leaf-dark);
  line-height: 1.35;
}

.posts-section {
  position: relative;
  padding: clamp(92px, 10vw, 138px) 0;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(6, 39, 26, 0.94) 0%, rgba(18, 98, 58, 0.86) 46%, rgba(245, 255, 244, 0.97) 46.2%, rgba(255, 255, 255, 0.99) 100%),
    url("assets/old-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.posts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 201, 76, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(6, 39, 26, 0.08), rgba(6, 39, 26, 0.24));
  pointer-events: none;
}

.posts-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.posts-section .section-inner {
  position: relative;
  z-index: 2;
}

.posts-section .section-heading {
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 46px);
}

.posts-section .section-kicker {
  color: var(--sun);
}

.posts-section .section-heading h2 {
  color: var(--white);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.posts-section .section-heading p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.post-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 245, 0.94)),
    var(--white);
  box-shadow: 0 24px 64px rgba(5, 18, 12, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.post-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--leaf), var(--sun));
}

.post-card:hover {
  border-color: rgba(242, 201, 76, 0.62);
  box-shadow: 0 30px 76px rgba(5, 18, 12, 0.3);
  transform: translateY(-3px);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.post-meta span,
.post-meta time,
.post-card > span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(23, 111, 67, 0.09);
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

.post-meta time {
  background: rgba(242, 201, 76, 0.2);
  color: var(--leaf-dark);
}

.post-card h3 {
  margin: 0 0 12px;
  color: var(--leaf-dark);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.post-card p,
.post-content {
  margin: 0;
  color: var(--muted);
}

.post-content {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 54, 32, 0.1);
  white-space: pre-line;
}

.post-card.is-placeholder {
  grid-column: 1 / -1;
  min-height: 180px;
  justify-items: start;
}

.team-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f0fbf2 100%),
    var(--paper);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
}

.team-section-head {
  display: grid;
  max-width: 860px;
  gap: 10px;
  margin: 0 auto;
  text-align: center;
}

.team-section-head h2 {
  margin: 0;
}

.team-section-head p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.team-people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 360px));
  justify-content: center;
  align-items: start;
  gap: 22px;
}

.team-person-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  align-self: start;
  border: 1px solid rgba(7, 54, 32, 0.12);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 242, 0.92));
  box-shadow: 0 20px 48px rgba(7, 54, 32, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-person-card:hover {
  border-color: rgba(23, 111, 67, 0.22);
  box-shadow: 0 28px 62px rgba(7, 54, 32, 0.14);
  transform: translateY(-3px);
}

.team-person-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.35;
  background: var(--leaf-dark);
}

.team-person-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 260ms ease, opacity 260ms ease;
}

.team-person-card:hover .team-person-media img {
  transform: scale(1.03);
  opacity: 0.94;
}

.team-person-body {
  align-self: start;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.team-person-body h3 {
  margin: 0;
  color: var(--leaf-dark);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.08;
}

.team-person-body .team-role {
  margin: 0;
  color: var(--clay) !important;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.team-person-body > p:not(.team-role) {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.team-person-body .team-points {
  gap: 7px;
  margin-top: 4px;
}

.team-person-body .team-points span {
  padding: 7px 9px;
  font-size: 0.78rem;
}

.team-card {
  justify-self: center;
  width: min(100%, 520px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--leaf-dark);
  box-shadow: var(--shadow);
}

.team-card img {
  height: clamp(380px, 42vw, 540px);
  object-fit: cover;
  object-position: center top;
}

.team-copy {
  align-self: center;
  display: grid;
  align-content: center;
}

.team-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.team-role {
  margin: 12px 0 0;
  color: var(--clay) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.team-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.team-points span {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--leaf-dark);
  font-weight: 850;
  line-height: 1.25;
}

.team-member-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 430px));
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.team-member-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(7, 54, 32, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 242, 0.86));
  box-shadow: 0 16px 38px rgba(7, 54, 32, 0.08);
}

.team-member-card img {
  width: 116px;
  height: 128px;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  object-position: center top;
}

.team-member-card h3 {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 1.18rem;
  line-height: 1.15;
}

.team-member-card .team-role {
  margin: 6px 0 10px;
  font-size: 0.78rem;
}

.team-member-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.team-member-card .team-points {
  gap: 6px;
  margin-top: 12px;
}

.team-member-card .team-points span {
  padding: 7px 9px;
  font-size: 0.78rem;
}

.team-extra-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 12px;
  margin-top: 24px;
}

.team-extra-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(7, 54, 32, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 239, 0.74));
  box-shadow: 0 14px 34px rgba(7, 54, 32, 0.08);
}

.team-extra-card img {
  width: 90px;
  height: 104px;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
  object-position: center top;
}

.team-extra-card h3 {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 1.08rem;
  line-height: 1.15;
}

.team-extra-card .team-role {
  margin: 5px 0 8px;
  font-size: 0.74rem;
}

.team-extra-text {
  margin: 0;
  font-size: 0.88rem !important;
  line-height: 1.45;
}

.team-extra-card .team-points {
  gap: 6px;
  margin-top: 10px;
}

.team-extra-card .team-points span {
  padding: 6px 8px;
  font-size: 0.74rem;
}

.reviews-section {
  background: var(--white);
}

.rating-summary {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
}

.reviews-action-panel {
  justify-self: end;
  display: grid;
  width: min(100%, 260px);
  gap: 10px;
}

.rating-summary strong {
  font-size: 2.6rem;
  line-height: 1;
}

.rating-summary span {
  color: var(--sun);
}

.rating-summary small {
  color: rgba(255, 255, 255, 0.72);
}

.review-cta {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid rgba(23, 111, 67, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #1f6b46, var(--leaf));
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(23, 111, 67, 0.2);
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.review-cta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.review-cta:hover,
.review-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(23, 111, 67, 0.26);
}

.reviews-shell {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 14px;
  align-items: center;
}

.round-button,
.modal-close {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--leaf-dark);
  cursor: pointer;
  font-weight: 900;
}

.round-button {
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
}

.reviews-track {
  overflow: hidden;
}

.review-card {
  display: none;
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.review-card.is-active {
  display: block;
  animation: fadeLift 420ms var(--ease-out) both;
}

.review-card p {
  margin: 0 0 18px;
  color: var(--sun);
  font-weight: 900;
}

.review-card blockquote {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 2.05rem;
  line-height: 1.25;
}

.review-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-weight: 900;
}

.process-list p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

summary {
  min-height: 60px;
  padding: 18px 52px 18px 18px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  margin-right: -34px;
  color: var(--leaf);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 20px;
  animation: fadeLift 260ms var(--ease-out) both;
}

.contact-section {
  background: var(--leaf-dark);
  color: var(--white);
}

.review-page {
  min-height: 100svh;
  background:
    linear-gradient(124deg, rgba(7, 54, 32, 0.96) 0%, rgba(7, 54, 32, 0.96) 38%, rgba(251, 255, 249, 0) 38.2%),
    linear-gradient(180deg, var(--paper) 0%, var(--mint) 100%);
}

.review-submit-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
}

.review-submit-card {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  animation: reviewRise 520ms var(--ease-out) both;
}

.review-submit-copy {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: clamp(28px, 5vw, 58px);
  min-height: 620px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(7, 54, 32, 0.88), rgba(7, 54, 32, 0.96)),
    url("assets/old-hero.jpg") center / cover;
  color: var(--white);
}

.review-submit-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 186, 82, 0.18), transparent 42%);
  pointer-events: none;
}

.review-submit-copy > * {
  position: relative;
  z-index: 1;
}

.review-submit-brand {
  justify-self: start;
}

.review-submit-copy .section-kicker {
  color: #f5d584;
}

.review-submit-copy h1 {
  max-width: 9ch;
  margin: 8px 0 16px;
  color: var(--white);
  font-size: clamp(2.65rem, 6vw, 5rem);
  line-height: 0.96;
}

.review-submit-copy p:not(.section-kicker) {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.review-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.review-proof-grid span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.review-proof-grid strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--leaf-dark);
}

.review-submit-form {
  align-content: center;
  min-height: 620px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(238, 247, 239, 0.48), transparent 36%),
    var(--white);
  box-shadow: none;
  animation: fadeLift 620ms var(--ease-out) 110ms both;
}

.review-submit-form .form-row {
  gap: 9px;
}

.review-submit-form input,
.review-submit-form textarea {
  min-height: 52px;
  border-color: rgba(7, 54, 32, 0.17);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.review-submit-form textarea {
  min-height: 158px;
}

.star-rating {
  display: grid;
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  gap: 8px;
}

.star-rating button {
  min-height: 54px;
  border: 1px solid rgba(7, 54, 32, 0.14);
  border-radius: var(--radius);
  background: #f7f8f3;
  color: rgba(7, 54, 32, 0.26);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.star-rating button:hover,
.star-rating button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(233, 186, 82, 0.68);
}

.star-rating button.is-active {
  border-color: rgba(233, 186, 82, 0.56);
  background: #fff4d5;
  color: #c98f1c;
  box-shadow: 0 10px 22px rgba(233, 186, 82, 0.18);
}

.rating-live,
.field-hint {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.review-submit-form .form-note {
  min-height: 22px;
  margin: 0;
  color: var(--leaf-dark);
  font-weight: 850;
}

.review-submit-form .form-note[data-status="success"] {
  padding: 12px 14px;
  border: 1px solid rgba(23, 111, 67, 0.14);
  border-radius: var(--radius);
  background: #edf7ef;
}

@keyframes reviewRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-section .section-kicker {
  color: #f5d584;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-facts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-facts > span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.contact-facts strong {
  display: block;
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(233, 186, 82, 0.5);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  width: 100%;
}

.form-intro {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 111, 67, 0.16);
  border-radius: var(--radius);
  background: var(--mint);
}

.form-intro strong {
  color: var(--leaf-dark);
  font-size: 1.1rem;
}

.form-intro span {
  color: var(--muted);
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 8px;
}

.area-input-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.area-input-line span {
  display: inline-grid;
  min-height: 46px;
  padding: 0 14px;
  place-items: center;
  border: 1px solid rgba(23, 33, 27, 0.14);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--leaf-dark);
  font-weight: 900;
}

label {
  color: var(--leaf-dark);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 33, 27, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:not([type="range"]),
select,
textarea {
  padding: 13px 14px;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(23, 111, 67, 0.64);
  box-shadow: 0 0 0 4px rgba(23, 111, 67, 0.1);
  outline: 0;
}

output {
  color: var(--muted);
  font-weight: 800;
}

.file-drop {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px dashed rgba(23, 111, 67, 0.42);
  border-radius: var(--radius);
  background: var(--mint);
  cursor: pointer;
}

.file-drop:hover,
.file-drop:focus-within {
  border-color: rgba(23, 111, 67, 0.78);
  background: #e6f3e8;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.file-drop span {
  color: var(--leaf-dark);
  font-weight: 900;
}

.file-drop small,
.file-list {
  color: var(--muted);
}

.file-list {
  display: grid;
  gap: 8px;
  min-height: 22px;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.file-list.is-empty {
  display: block;
}

.file-list ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 111, 67, 0.16);
  border-radius: 12px;
  background: rgba(23, 111, 67, 0.07);
}

.file-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.file-name {
  color: var(--ink);
  font-weight: 850;
}

.file-size {
  color: var(--muted);
  font-size: 0.78rem;
}

.file-remove {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.file-remove:hover,
.file-remove:focus-visible {
  background: var(--leaf);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-weight: 750;
}

.form-note:not(:empty) {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 111, 67, 0.18);
  background: var(--mint);
}

.form-note[data-state="success"] {
  color: var(--leaf-dark);
  background: #eef8ee;
}

.form-note[data-state="error"] {
  color: #7f2a24;
  border-color: rgba(127, 42, 36, 0.22);
  background: #fff3ee;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(16px, calc((100vw - var(--max)) / 2));
  background: #0e2419;
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer span {
  display: block;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.legal-hero {
  padding: 154px max(16px, calc((100vw - var(--max)) / 2)) 66px;
  background: var(--leaf-dark);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 4.4rem;
  line-height: 1;
}

.legal-content {
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: 72px 0;
}

.legal-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-card {
  padding: clamp(20px, 3vw, 30px);
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-content h2,
.legal-content h3 {
  margin-top: 34px;
}

.legal-card h2,
.legal-card h3 {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--leaf);
  font-weight: 800;
}

.legal-note {
  padding: 16px 18px;
  margin: 24px 0;
  border-left: 4px solid var(--sun);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--leaf-dark);
  font-weight: 750;
}

.legal-updated {
  margin-top: 28px;
  color: var(--leaf-dark);
  font-weight: 900;
}

.project-modal {
  width: min(920px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.project-modal[open] {
  animation: modalIn 260ms var(--ease-out) both;
}

.project-modal::backdrop {
  background: rgba(14, 36, 25, 0.72);
}

.project-modal img {
  height: min(62vh, 560px);
  object-fit: cover;
}

.project-modal h3 {
  padding: 20px;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -14px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .review-card blockquote {
    font-size: 1.8rem;
  }

  .legal-hero h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 4px;
    padding-top: 8px;
  }

  .site-header.is-open .site-nav a {
    background: var(--mint);
  }

  .quick-strip,
  .two-column,
  .team-layout,
  .contact-layout,
  .section-heading.split {
    grid-template-columns: 1fr;
  }
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .quick-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip a:last-child {
    border-bottom: 0;
  }

  .rating-summary,
  .reviews-action-panel {
    justify-self: start;
  }

  .featured-projects {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .featured-project-card.is-large {
    grid-row: span 1;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .project-tile.wide {
    grid-row: span 1;
  }

  .references-grid {
    grid-template-columns: 1fr 1fr;
  }

  .posts-section {
    background:
      linear-gradient(180deg, rgba(6, 39, 26, 0.94) 0%, rgba(23, 111, 67, 0.9) 42%, rgba(245, 248, 242, 0.98) 42.2%, rgba(255, 255, 255, 0.98) 100%),
      url("assets/old-hero.jpg") center / cover no-repeat;
  }

  .posts-section .section-heading h2,
  .posts-section .section-heading p {
    color: var(--white);
  }

  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .team-card img {
    height: 480px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    min-height: 60px;
    padding: 9px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 160px;
    height: 54px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(calc(100% - 24px), var(--max));
    padding-top: 132px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .hero-proof span {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .trust-grid,
  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .conversion-band {
    margin: -28px auto 56px;
    padding: 18px;
  }

  .section-inner,
  .quick-strip,
  .legal-content {
    width: min(calc(100% - 24px), var(--max));
  }

  h2 {
    font-size: 2.18rem;
    line-height: 1.06;
  }

  h3 {
    font-size: 1.16rem;
  }

  .round-button {
    display: none;
  }

  .service-card {
    min-height: auto;
  }
  .featured-projects {
    height: 280px;
  }

  .featured-projects {
    min-height: 0;
    height: auto;
    grid-auto-rows: 220px;
  }

  .project-grid {
    grid-auto-rows: 230px;
  }

  .references-grid {
    grid-template-columns: 1fr;
  }

  .reference-card {
    grid-template-rows: 210px 1fr;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    min-height: auto;
    padding: 20px;
  }

  .team-card img {
    height: 380px;
  }

  .team-extra-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .team-extra-card img {
    width: 82px;
    height: 96px;
  }

  .team-member-card {
    grid-template-columns: 1fr;
  }

  .team-member-card img {
    width: 100%;
    height: 260px;
  }

  .review-card {
    min-height: auto;
  }

  .review-card blockquote {
    font-size: 1.32rem;
  }

  .contact-facts > span,
  .quote-form {
    padding: 14px;
  }

  .file-item {
    align-items: stretch;
    flex-direction: column;
  }

  .file-remove {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-top: 132px;
    padding-bottom: 54px;
  }

  .legal-hero h1 {
    font-size: 2.6rem;
  }

  .legal-content {
    padding: 56px 0;
  }
}

@media (max-width: 860px) {
  .review-page {
    background:
      linear-gradient(180deg, rgba(7, 54, 32, 0.96) 0%, rgba(7, 54, 32, 0.96) 34%, rgba(251, 255, 249, 0) 34.2%),
      linear-gradient(180deg, var(--paper) 0%, var(--mint) 100%);
  }

  .review-submit-card {
    grid-template-columns: 1fr;
  }

  .review-submit-copy,
  .review-submit-form {
    min-height: auto;
  }

  .review-submit-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 520px) {
  .review-submit-shell {
    align-items: stretch;
    padding: 10px;
  }

  .review-submit-copy,
  .review-submit-form {
    padding: 18px;
  }

  .review-submit-copy h1 {
    font-size: 2.45rem;
  }

  .star-rating {
    gap: 6px;
  }

  .star-rating button {
    min-height: 48px;
    font-size: 1.32rem;
  }
}

@media (max-width: 400px) {
  .brand strong {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 144px;
    height: 50px;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 1.96rem;
  }

  .quick-strip a {
    grid-template-columns: 38px 1fr;
    padding: 15px;
  }

  .service-card,
  .process-list li {
    padding: 20px;
  }
}

/* Komplettes Website-Upgrade */
body {
  background:
    linear-gradient(180deg, var(--paper) 0, var(--paper) 28%, var(--leaf-soft) 100%),
    var(--paper);
}

.site-header {
  border-color: rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 255, 249, 0.82));
  box-shadow:
    0 18px 50px rgba(7, 54, 32, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  background: linear-gradient(180deg, rgba(238, 247, 239, 0.98), rgba(216, 234, 216, 0.74));
  color: var(--leaf-dark);
}

.header-action,
.button.primary {
  background: linear-gradient(180deg, #2a7650, var(--leaf));
  box-shadow: 0 16px 34px rgba(23, 111, 67, 0.26);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.hero {
  min-height: min(880px, 90svh);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(251, 255, 249, 0.98));
  pointer-events: none;
}

.hero-media {
  transform: translateY(var(--hero-shift, 0)) scale(1.035);
  animation: none;
  will-change: auto;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 39, 26, 0.9), rgba(7, 54, 32, 0.54) 44%, rgba(7, 54, 32, 0.12)),
    linear-gradient(0deg, rgba(13, 39, 26, 0.78), rgba(7, 54, 32, 0.05) 54%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px);
}

.hero-content {
  z-index: 2;
  padding-bottom: clamp(58px, 8vw, 88px);
}

.hero .eyebrow {
  display: inline-flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(245, 213, 132, 0.28);
  border-radius: 999px;
  background: rgba(7, 54, 32, 0.42);
  color: #f5d584;
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 960px;
  text-wrap: balance;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-proof span,
.contact-facts > span {
  backdrop-filter: blur(14px);
}

.quick-strip {
  margin-top: -42px;
  border: 1px solid rgba(23, 33, 27, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px rgba(7, 54, 32, 0.16);
  backdrop-filter: blur(18px);
}

.quick-strip a {
  position: relative;
  overflow: hidden;
}

.quick-strip a::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--leaf), var(--sun));
  opacity: 0;
  transition: opacity 180ms ease;
}

.quick-strip a:hover::after,
.quick-strip a:focus-visible::after {
  opacity: 1;
}

.quick-strip span {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(216, 234, 216, 0.96), rgba(238, 247, 239, 0.96));
}

.section {
  position: relative;
  padding: clamp(78px, 8vw, 112px) 0;
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.section-heading h2,
.intro-copy h2,
.team-copy h2,
.contact-copy h2 {
  text-wrap: balance;
}

.section-heading p,
.intro-copy p,
.faq-section p,
.contact-copy p {
  max-width: 70ch;
}

.intro-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(74, 163, 96, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fff4 54%, #ecfaee 100%);
}

.trust-grid span {
  position: relative;
  overflow: hidden;
  border-color: rgba(31, 122, 72, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(239, 250, 236, 0.96) 100%);
  color: #102a1d;
  box-shadow:
    0 18px 42px rgba(18, 78, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.trust-grid span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #2f9e5d, #d9b24c);
}

.trust-grid span::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -28px;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(47, 158, 93, 0.1);
}

.trust-grid span:hover {
  border-color: rgba(47, 158, 93, 0.38);
  transform: translateY(-2px);
  box-shadow:
    0 24px 54px rgba(18, 78, 44, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}


.project-grid {
  grid-auto-rows: 280px;
}

.project-tile {
  border: 1px solid rgba(7, 54, 32, 0.08);
  box-shadow: 0 18px 44px rgba(7, 54, 32, 0.12);
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgba(14, 36, 25, 0.72)),
    linear-gradient(135deg, rgba(233, 186, 82, 0.12), transparent 42%);
  opacity: 0.86;
  transition: opacity 220ms ease;
}

.project-tile span {
  z-index: 1;
  background: rgba(7, 54, 32, 0.72);
  backdrop-filter: blur(12px);
}

.project-tile:hover::after {
  opacity: 1;
}

.team-card {
  position: relative;
  border: 1px solid rgba(7, 54, 32, 0.08);
  background: var(--leaf-dark);
}

.team-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(14, 36, 25, 0.42));
  pointer-events: none;
}

.team-points span {
  border: 1px solid rgba(23, 111, 67, 0.12);
  box-shadow: 0 10px 24px rgba(7, 54, 32, 0.08);
}

.reviews-section {
  background:
    linear-gradient(180deg, #ffffff, #f5fff4);
}

.review-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 255, 249, 0.98));
  box-shadow: 0 18px 44px rgba(7, 54, 32, 0.08);
}

.review-card blockquote {
  text-wrap: balance;
}

.process-list li {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-color: rgba(23, 33, 27, 0.1);
  box-shadow: 0 16px 38px rgba(7, 54, 32, 0.08);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.process-list li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--sun));
}

.process-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(7, 54, 32, 0.13);
}

.faq-section {
  background: linear-gradient(180deg, var(--paper), var(--mint));
}

details {
  border-color: rgba(23, 33, 27, 0.1);
  box-shadow: 0 14px 34px rgba(7, 54, 32, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

details:hover {
  border-color: rgba(23, 111, 67, 0.22);
  box-shadow: 0 20px 44px rgba(7, 54, 32, 0.1);
  transform: translateY(-1px);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 54, 32, 0.98), rgba(8, 29, 18, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px);
}

.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 245, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.form-intro,
.file-drop,
.area-input-line span {
  background:
    linear-gradient(180deg, rgba(238, 247, 239, 0.98), rgba(216, 234, 216, 0.7));
}

input,
select,
textarea {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(23, 111, 67, 0.3);
}

.site-footer {
  background:
    linear-gradient(180deg, #06271a, #031a11);
}

.animate-on-scroll {
  transform: translateY(30px) scale(0.985);
}

.animate-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

@media (max-width: 940px) {
  .hero {
    min-height: 780px;
  }

  .project-grid {
    grid-auto-rows: 270px;
  }
}

@media (max-width: 620px) {
  .quick-strip {
    margin-top: -26px;
  }

  .service-tabs {
    width: 100%;
    border-radius: var(--radius);
  }

  .chip {
    flex: 1 0 auto;
  }

  .project-grid {
    grid-auto-rows: 236px;
  }
}

/* Modernes Kontaktformular */
.contact-layout {
  grid-template-columns: minmax(340px, 0.78fr) minmax(470px, 0.96fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}

.contact-copy {
  max-width: 560px;
}

.contact-facts {
  max-width: 470px;
}

.contact-form-modern {
  position: relative;
  justify-self: end;
  width: min(100%, 650px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 245, 0.98)),
    var(--paper);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-form-modern::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--leaf), var(--sun));
}

.contact-form-modern .form-intro,
.contact-form-modern .form-row:not(.form-half),
.contact-form-modern .file-list,
.contact-form-modern .button,
.contact-form-modern .form-note {
  grid-column: 1 / -1;
}

.contact-form-modern .form-intro {
  position: relative;
  grid-template-columns: 48px 1fr;
  gap: 5px 14px;
  align-items: center;
  padding: 16px;
  border-color: rgba(23, 111, 67, 0.13);
  background:
    linear-gradient(135deg, rgba(23, 111, 67, 0.1), rgba(255, 255, 255, 0.9)),
    var(--mint);
}

.contact-form-modern .form-intro::before {
  content: "@";
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
}

.contact-form-modern .form-intro strong {
  font-size: 1.18rem;
  line-height: 1.15;
}

.contact-form-modern .form-intro span {
  font-size: 0.94rem;
}

.contact-form-modern .form-row {
  gap: 7px;
}

.contact-form-modern label {
  font-size: 0.86rem;
  letter-spacing: 0;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
  min-height: 50px;
  border-color: rgba(7, 54, 32, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 18px rgba(7, 54, 32, 0.035);
}

.contact-form-modern select[data-service-select] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.service-choice-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 0 9px;
  border: 1px solid rgba(7, 54, 32, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 245, 0.98));
  color: var(--leaf-dark);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.service-choice-button::after {
  content: "";
  display: grid;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-left: 7px;
  border: 2px solid rgba(23, 111, 67, 0.22);
  border-radius: 50%;
  background: var(--white);
}

.service-choice-button:hover {
  border-color: rgba(23, 111, 67, 0.32);
  box-shadow: 0 8px 16px rgba(7, 54, 32, 0.07);
  transform: translateY(-1px);
}

.service-choice-button.is-active {
  border-color: rgba(23, 111, 67, 0.42);
  background:
    linear-gradient(180deg, rgba(238, 247, 239, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 0 0 3px rgba(23, 111, 67, 0.09);
}

.service-choice-button.is-active::after {
  border-color: var(--leaf);
  background:
    radial-gradient(circle at center, var(--leaf) 0 42%, transparent 45%),
    var(--white);
}

.contact-form-modern textarea {
  min-height: 142px;
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
  border-color: rgba(23, 111, 67, 0.7);
  background: var(--white);
  box-shadow:
    0 0 0 4px rgba(23, 111, 67, 0.11),
    0 12px 28px rgba(7, 54, 32, 0.08);
}

.contact-form-modern output {
  min-height: 20px;
  font-size: 0.82rem;
}

.contact-form-modern .area-input-line span {
  min-height: 50px;
  border-color: rgba(23, 111, 67, 0.14);
}

.contact-form-modern .file-drop {
  position: relative;
  grid-template-columns: 52px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 18px;
  border-style: solid;
  border-color: rgba(23, 111, 67, 0.18);
  background:
    linear-gradient(135deg, rgba(238, 247, 239, 0.98), rgba(255, 255, 255, 0.95));
}

.contact-form-modern .file-drop::before {
  content: "+";
  grid-row: span 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--sun);
  color: var(--leaf-dark);
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-form-modern .file-drop span,
.contact-form-modern .file-drop small {
  min-width: 0;
}

.contact-form-modern .file-drop:hover,
.contact-form-modern .file-drop:focus-within {
  border-color: rgba(23, 111, 67, 0.38);
  background:
    linear-gradient(135deg, rgba(216, 234, 216, 0.98), rgba(255, 255, 255, 0.98));
  transform: translateY(-1px);
}

.contact-form-modern .file-list:not(.is-empty) {
  padding: 10px;
  border: 1px solid rgba(23, 111, 67, 0.12);
  border-radius: var(--radius);
  background: rgba(238, 247, 239, 0.68);
}

.contact-form-modern .file-item {
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form-modern .button.full {
  min-height: 52px;
  margin-top: 2px;
  font-size: 1rem;
}

.contact-form-modern .form-note:not(:empty) {
  margin-top: 0;
}

@media (max-width: 940px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .contact-facts,
  .contact-form-modern {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  .contact-form-modern {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .contact-form-modern .form-half {
    grid-column: 1 / -1;
  }

  .contact-form-modern .form-intro,
  .contact-form-modern .file-drop {
    grid-template-columns: 42px 1fr;
  }

  .contact-form-modern .form-intro::before,
  .contact-form-modern .file-drop::before {
    width: 42px;
    height: 42px;
  }
}

/* Kontakt 2026 */
.contact-section {
  padding-block: clamp(78px, 9vw, 132px);
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 197, 72, 0.13), transparent 26%),
    radial-gradient(circle at 86% 88%, rgba(79, 161, 112, 0.16), transparent 30%),
    linear-gradient(145deg, #073a25 0%, #052d1d 48%, #041f15 100%);
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::before {
  width: 420px;
  height: 420px;
  top: -260px;
  left: -140px;
}

.contact-section::after {
  width: 580px;
  height: 580px;
  right: -330px;
  bottom: -360px;
}

.contact-layout {
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.12fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 118px;
  max-width: 545px;
  padding-top: 16px;
}

.contact-availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.contact-availability > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fdb9f;
  box-shadow: 0 0 0 5px rgba(143, 219, 159, 0.12);
}

.contact-section .section-kicker {
  margin-bottom: 15px;
  color: #f7c94d;
  letter-spacing: 0.15em;
}

.contact-copy h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.request-prep-list {
  display: grid;
  gap: 0;
  margin: 34px 0 38px;
  border-block: 1px solid rgba(255, 255, 255, 0.11);
}

.request-prep-list > span {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.request-prep-list > span:last-child { border-bottom: 0; }
.request-prep-list > span > span {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}
.request-prep-list i {
  color: #f7c94d;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.request-prep-list strong { color: #fff; }

.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
}

.contact-facts > .contact-fact {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-facts > a.contact-fact,
.contact-facts > span.contact-fact {
  padding: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

.contact-facts a.contact-fact:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 201, 77, 0.38);
  background: rgba(255, 255, 255, 0.11);
}

.contact-fact > i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 11px;
  background: rgba(247, 201, 77, 0.14);
  color: #f7c94d;
  font-style: normal;
  font-weight: 900;
}

.contact-fact > span { min-width: 0; }
.contact-fact strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.78rem;
}
.contact-fact span span {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.contact-social-row {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  min-height: 48px !important;
  padding: 5px 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.contact-social-row {
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
  margin-top: 5px;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.11) !important;
}

.contact-social-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.contact-social-copy strong {
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.contact-social-copy small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.contact-social-row .social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0;
}

.contact-social-row .social-links > a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  gap: 11px;
  min-height: 68px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.contact-social-row .social-links > a:hover,
.contact-social-row .social-links > a:focus-visible {
  border-color: rgba(247, 201, 77, 0.42);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.075));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-social-row .social-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
}

.contact-social-row .social-icon-instagram {
  background: linear-gradient(135deg, #7552c9, #d94b76 58%, #ef9d3d);
}

.contact-social-row .social-icon-tiktok {
  background: #101714;
  box-shadow: inset 3px 0 rgba(37, 244, 238, 0.65), inset -3px 0 rgba(254, 44, 85, 0.6);
}

.contact-social-row .social-icon svg {
  width: 21px;
  height: 21px;
}

.contact-social-row .social-links > a > span:nth-child(2) {
  min-width: 0;
}

.contact-social-row .social-links > a strong,
.contact-social-row .social-links > a small {
  display: block;
}

.contact-social-row .social-links > a strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.78rem;
}

.contact-social-row .social-links > a small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-social-row .social-links > a > i {
  color: #f7c94d;
  font-size: 1rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-social-row .social-links > a:hover > i {
  transform: translateX(3px);
}

.contact-form-modern {
  width: min(100%, 720px);
  gap: 18px 16px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: #fbfcf8;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.3);
}

.contact-form-modern::before {
  display: none;
}

.contact-form-modern .form-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 26px;
  border: 0;
  border-bottom: 1px solid rgba(7, 54, 32, 0.11);
  border-radius: 0;
  background: transparent;
}

.contact-form-modern .form-intro::before { display: none; }
.contact-form-modern .form-intro .form-step {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 4px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(23, 111, 67, 0.09);
  color: var(--leaf);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-form-modern .form-intro > * {
  width: auto;
  max-width: 100%;
}
.contact-form-modern .form-intro strong {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  letter-spacing: -0.035em;
}
.contact-form-modern .form-intro > span:last-child {
  margin-top: 3px;
  color: rgba(7, 54, 32, 0.64);
}

.form-section-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
  color: var(--leaf-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-section-title span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-dark);
  color: #fff;
  font-size: 0.68rem;
}

.contact-form-modern label { color: #183528; font-size: 0.79rem; }
.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
  min-height: 52px;
  border: 1px solid rgba(7, 54, 32, 0.13);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.contact-form-modern textarea { min-height: 126px; }

.service-choice { gap: 8px; }
.service-choice-button {
  min-height: 42px;
  padding: 8px 11px;
  border-radius: 12px;
  background: #fff;
  font-size: 0.75rem;
}
.service-choice-button.is-active {
  border-color: var(--leaf);
  background: rgba(23, 111, 67, 0.07);
  box-shadow: 0 0 0 3px rgba(23, 111, 67, 0.07);
}

.contact-form-modern .file-drop {
  min-height: 92px;
  padding: 16px;
  border: 1px dashed rgba(23, 111, 67, 0.32);
  border-radius: 14px;
  background: rgba(23, 111, 67, 0.035);
}
.contact-form-modern .file-drop::before {
  border-radius: 12px;
  background: #efe6c9;
}

.contact-form-modern .button.full {
  min-height: 58px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(23, 111, 67, 0.2);
}

.form-privacy {
  grid-column: 1 / -1;
  margin: -7px auto 0;
  max-width: 560px;
  color: rgba(7, 54, 32, 0.52);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 940px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }
  .contact-copy {
    position: static;
    min-width: 0;
    padding-top: 0;
  }
  .contact-form-modern {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .contact-section { padding-block: 68px; }
  .contact-layout { width: 100%; }
  .contact-copy h2 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .contact-facts { grid-template-columns: 1fr; }
  .contact-social-row { grid-column: 1; }
  .contact-social-copy { align-items: flex-start; flex-direction: column; gap: 3px; }
  .contact-social-row .social-links { grid-template-columns: 1fr; }
  .contact-form-modern { padding: 22px 16px; border-radius: 20px; }
  .service-choice { grid-template-columns: 1fr; }
  .form-section-title { margin-top: 8px; }
}

/* Moderner Header */
.site-header {
  width: min(calc(100% - 44px), 1420px);
  min-height: 72px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 1.8vw, 18px);
  padding: 8px;
  border-color: rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 241, 0.76)),
    rgba(251, 255, 249, 0.86);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(1.22);
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 245, 0.88)),
    rgba(251, 255, 249, 0.94);
  box-shadow:
    0 22px 70px rgba(7, 54, 32, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.brand {
  border-radius: 16px;
}

.brand-mark {
  width: 198px;
  height: 56px;
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 26px rgba(7, 54, 32, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 14px 32px rgba(7, 54, 32, 0.2);
}

.site-nav {
  justify-self: center;
  min-width: 0;
  max-width: 100%;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(7, 54, 32, 0.08);
  border-radius: 999px;
  background: rgba(23, 111, 67, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(7, 54, 32, 0.74);
  font-size: 0.86rem;
  font-weight: 850;
  transition:
    transform 170ms ease,
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    color 170ms ease;
}

.site-nav a svg,
.header-action svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav a svg {
  opacity: 0.72;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.92);
  color: var(--leaf-dark);
  box-shadow: 0 10px 24px rgba(7, 54, 32, 0.12);
  transform: translateY(-1px);
}

.site-nav a.is-active svg,
.site-nav a:hover svg,
.site-nav a:focus-visible svg {
  color: var(--leaf);
  opacity: 1;
}

.header-action {
  min-height: 48px;
  gap: 9px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, #2a7650, var(--leaf));
  box-shadow:
    0 16px 34px rgba(23, 111, 67, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header-action svg {
  transition: transform 170ms ease;
}

.header-action:hover svg,
.header-action:focus-visible svg {
  transform: translateX(2px);
}

.nav-toggle {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(7, 54, 32, 0.12);
}

@media (max-width: 1080px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max));
    gap: 8px;
  }

  .brand-mark {
    width: 190px;
    height: 52px;
  }

  .site-nav a {
    gap: 5px;
    padding: 0 9px;
    font-size: 0.84rem;
  }

  .header-action {
    padding: 0 14px;
  }
}

@media (max-width: 1240px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-mark {
    width: 178px;
    height: 52px;
  }

  .site-nav a {
    gap: 5px;
    padding: 0 8px;
    font-size: 0.8rem;
  }

  .site-nav a svg {
    display: none;
  }

  .header-action {
    min-height: 46px;
    padding: 0 13px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
  }

  .site-header.is-open .site-nav a {
    justify-content: flex-start;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
  }
}

@media (max-width: 480px) {
  .site-header {
    width: min(calc(100% - 18px), var(--max));
    min-height: 62px;
    padding: 6px;
    border-radius: 16px;
  }

  .brand-mark {
    width: 166px;
    height: 48px;
    border-radius: 13px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
}

/* Ladeansicht und sanfter Seitenstart */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(6, 39, 26, 0.96), rgba(23, 111, 67, 0.94)),
    var(--leaf-dark);
  color: var(--white);
  transition: opacity 360ms ease, visibility 360ms ease;
  animation: loaderAutoHide 760ms ease 1800ms forwards;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.page-loader-card {
  display: grid;
  width: min(100%, 360px);
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  animation: loaderCardIn 460ms var(--ease-out) both;
}

.page-loader-logo {
  display: grid;
  width: 174px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--leaf);
}

.page-loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-loader-kicker {
  color: var(--leaf-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-loader-card strong {
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  line-height: 1.12;
}

.page-loader-card > span:last-of-type {
  color: rgba(255, 255, 255, 0.78);
}

.page-loader-card i {
  position: relative;
  display: block;
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.page-loader-card i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf-soft), var(--white));
  animation: loaderProgress 1180ms ease-in-out infinite;
}

body > :not(.page-loader) {
  animation: pageSoftIn 520ms ease both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

@keyframes loaderCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderProgress {
  0% {
    transform: translateX(-110%);
  }

  55% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(240%);
  }
}

@keyframes loaderAutoHide {
  to {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes pageSoftIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Premium-Kick fuer die Startseite */
.scroll-progress {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--leaf), #2a7650, var(--leaf-soft));
  box-shadow: 0 0 24px rgba(23, 111, 67, 0.26);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.hero-content {
  position: relative;
}

.hero h1 {
  letter-spacing: 0;
  text-shadow:
    0 18px 46px rgba(0, 0, 0, 0.36),
    0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-copy {
  max-width: 760px;
  padding-left: clamp(14px, 2vw, 22px);
  border-left: 3px solid rgba(242, 201, 76, 0.78);
}

.button.primary {
  position: relative;
  overflow: hidden;
}

.button.primary::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-140%) skewX(-18deg);
  transition: transform 520ms ease;
}

.button.primary:hover::before,
.button.primary:focus-visible::before {
  transform: translateX(260%) skewX(-18deg);
}

.quick-strip {
  border-color: rgba(23, 111, 67, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 239, 0.82));
}

.quick-strip a {
  border-radius: var(--radius);
}

.quick-strip a:hover,
.quick-strip a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(23, 111, 67, 0.12);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(23, 111, 67, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 239, 0.72));
  box-shadow: 0 18px 46px rgba(6, 39, 26, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--leaf-soft));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(23, 111, 67, 0.22);
  box-shadow: 0 24px 60px rgba(6, 39, 26, 0.14);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.project-tile {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(6, 39, 26, 0.18);
}

.project-tile span {
  background:
    linear-gradient(180deg, rgba(6, 39, 26, 0), rgba(6, 39, 26, 0.82));
}

.project-tile:hover,
.project-tile:focus-visible {
  box-shadow: 0 28px 70px rgba(6, 39, 26, 0.24);
}

.review-card.is-active {
  border-color: rgba(23, 111, 67, 0.2);
  box-shadow: 0 26px 70px rgba(6, 39, 26, 0.14);
}

/* Bewertungen kompakter und hochwertiger */
.reviews-shell {
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 10px;
}

.reviews-track {
  min-width: 0;
}

.review-card {
  position: relative;
  min-height: auto;
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
}

.review-card.is-active {
  display: grid;
  gap: 10px;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--leaf), var(--leaf-soft));
}

.review-card p {
  width: fit-content;
  margin: 0 0 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.32);
  color: var(--leaf);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.review-card blockquote {
  max-width: 980px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.review-card strong {
  color: var(--leaf-dark);
  font-size: 1rem;
}

.round-button {
  width: 42px;
  height: 42px;
  border-color: rgba(23, 111, 67, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(6, 39, 26, 0.1);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.round-button:hover,
.round-button:focus-visible {
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(23, 111, 67, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .scroll-progress {
    height: 3px;
  }

  .hero-copy {
    padding-left: 14px;
  }

  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .round-button {
    display: none;
  }
}

.cookie-consent {
  position: fixed;
  z-index: 80;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 16px;
  left: max(16px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(23, 111, 67, 0.18);
  border-top: 4px solid var(--leaf);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(238, 247, 239, 0.94), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: 0 24px 70px rgba(6, 39, 26, 0.22);
  backdrop-filter: blur(18px);
}

.cookie-consent[hidden],
.cookie-settings-button[hidden] {
  display: none;
}

.cookie-consent-copy {
  display: grid;
  gap: 4px;
}

.cookie-consent-copy span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent-copy strong {
  color: var(--leaf-dark);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.15;
}

.cookie-consent-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-consent-copy a {
  width: fit-content;
  color: var(--leaf);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button,
.cookie-settings-button {
  min-height: 44px;
  border: 1px solid rgba(23, 111, 67, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--leaf-dark);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(6, 39, 26, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cookie-button {
  padding: 0 18px;
}

.cookie-button.primary {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--white);
}

.cookie-button:hover,
.cookie-button:focus-visible,
.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  border-color: rgba(23, 111, 67, 0.34);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(6, 39, 26, 0.14);
}

.cookie-button.primary:hover,
.cookie-button.primary:focus-visible {
  background: var(--leaf-dark);
}

.cookie-settings-button {
  position: fixed;
  z-index: 79;
  left: 14px;
  bottom: 14px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-button {
    flex: 1 1 180px;
  }
}






/* Referenz-Diashows */
.reference-slider {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #e9f3ea;
}

.reference-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 260ms ease, transform 360ms ease;
}

.reference-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.reference-slide-button,
.modal-nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--leaf-dark);
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(6, 39, 26, 0.18);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.reference-slide-button:hover,
.reference-slide-button:focus-visible,
.modal-nav:hover,
.modal-nav:focus-visible {
  background: var(--leaf);
  color: var(--white);
  transform: translateY(-1px);
}

.reference-slide-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  font-size: 1.3rem;
}

.reference-slide-button:hover,
.reference-slide-button:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.reference-slide-button.is-prev {
  left: 12px;
}

.reference-slide-button.is-next {
  right: 12px;
}

.reference-slide-count,
.modal-count {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 39, 26, 0.82);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.reference-card[data-modal-img] .reference-slider {
  cursor: zoom-in;
}

.project-modal {
  position: relative;
}

.modal-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.modal-nav.is-prev {
  left: 16px;
}

.modal-nav.is-next {
  right: 16px;
}

.modal-count {
  right: 20px;
  bottom: 72px;
}

@media (max-width: 700px) {
  .reference-slider {
    height: 210px;
  }

  .reference-slide-button {
    width: 34px;
    height: 34px;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
  }
}
