:root {
  --primary: #1E6B3E;
  --primary-dark: #164F2E;
  --primary-800: #12421F;
  --accent: #7EB53A;
  --accent-bright: #96CC44;
  --accent-soft: #E9F3D7;
  --ink: #14181A;
  --ink-70: #4B5250;
  --stone-500: #6B6F6D;
  --stone-300: #C9CCC8;
  --stone-100: #ECEEE9;
  --stone-50:  #F6F7F3;
  --paper: #FFFFFF;
  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --wrap: 1240px;
  --wrap-narrow: 880px;
  --ease: cubic-bezier(.2,.7,.2,1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.kicker::before {
  content: "";
  width: 1.8rem; height: 2px;
  background: var(--accent);
}
.section--dark .kicker { color: var(--accent-bright); }
.section--dark .kicker::before { background: var(--accent-bright); }

.lead {
  font-size: 1.15rem;
  color: var(--ink-70);
  max-width: 60ch;
  margin-bottom: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 2rem;
}
.wrap-narrow {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6.5rem 0; }
.section--dark { background: var(--primary-dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--stone { background: var(--stone-50); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2 { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(30,107,62,0.5);
}
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--stone-300); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--light { background: #fff; color: var(--primary-dark); border-color: #fff; }
.btn--light:hover { background: var(--accent-soft); }
.btn__arrow { display: inline-block; transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-100);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--wrap);
  margin: 0 auto;
  gap: 2rem;
}
.brand { display: flex; align-items: center; }
.brand img { height: 84px; width: auto; }
.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
}
.nav a:hover { color: var(--primary); }
.nav a.active { color: var(--primary); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
}
.nav-cta { margin-left: 1rem; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 0.4rem; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 5.5rem 0 7rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, var(--stone-50) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(30,107,62,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30,107,62,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,0.4), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,0.4), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.hero__title { margin-bottom: 1.5rem; }
.hero__title .accent-word {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero__title .accent-word::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: var(--accent);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
}
.hero__ctas { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero__meta {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-100);
}
.hero__meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero__meta-item span {
  font-size: 0.82rem;
  color: var(--ink-70);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 500;
}
.hero__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero__image-inner {
  width: 100%; height: 100%;
  background: var(--stone-100);
  border: 1px solid var(--primary);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero__image-inner img { width: 100%; height: 100%; object-fit: cover; }
.hero__image::before {
  content: "";
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 2px solid var(--accent);
  z-index: 1;
}
.hero__image-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 3;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Section-Header ---------- */
.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }

/* ---------- PROZESS (Prozess mit Zeitleiste) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 100%);
  opacity: 0.4;
  z-index: 0;
}
.process-step {
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  counter-increment: step;
}
.process-step__marker {
  width: 64px; height: 64px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  transition: all .3s var(--ease);
}
.process-step__marker::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.process-step:hover .process-step__marker {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.process-step:hover .process-step__marker::before { opacity: 1; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--ink-70); font-size: 0.95rem; margin: 0; }
.section--dark .process::before { opacity: 0.35; }
.section--dark .process-step__marker {
  background: var(--primary-dark);
  border-color: var(--accent);
  color: #fff;
}
.section--dark .process-step p { color: rgba(255,255,255,0.75); }

/* ---------- Werte ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value {
  border-top: 3px solid var(--primary);
  padding-top: 1.5rem;
  position: relative;
}
.value::before {
  content: "";
  position: absolute;
  top: -3px; left: 0;
  width: 40%; height: 3px;
  background: var(--accent);
}
.value__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.value h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value p { font-size: 0.95rem; color: var(--ink-70); margin: 0; }

/* ---------- Services Grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--stone-100);
  padding: 2.2rem;
  transition: all .3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(30,107,62,0.28);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 0.7rem; font-size: 1.2rem; }
.service-card p {
  color: var(--ink-70);
  font-size: 0.95rem;
  margin: 0 0 1.3rem;
  flex-grow: 1;
}
.service-card__more {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-card__more::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.service-card:hover .service-card__more::after { transform: translateX(3px); }

/* ---------- Kennzahlen-Band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.stat { text-align: left; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Projekte ---------- */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--stone-100);
  cursor: pointer;
}
.project img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.project:hover img { transform: scale(1.06); }
.project__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.8rem 1.5rem;
  background: linear-gradient(to top, rgba(18,66,31,0.94) 0%, rgba(18,66,31,0.7) 60%, transparent 100%);
  color: #fff;
}
.project__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  display: block;
  margin-bottom: 0.4rem;
}
.project__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

/* ---------- About-Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split__image {
  aspect-ratio: 5/6;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--primary);
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}
.split__quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-70);
}

/* ---------- CTA Band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-band__contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.cta-band__phone {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cta-band__phone:hover { color: var(--accent-bright); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-800);
  color: rgba(255,255,255,0.82);
  padding: 4.5rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 0.55rem; }
.footer-grid a { color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--accent-bright); }
.footer-brand img {
  height: 96px;
  width: auto;
  margin-bottom: 1.2rem;
  background: #fff;
  padding: 0.7rem;
  border-radius: 4px;
}
.footer-brand p { color: rgba(255,255,255,0.72); margin-bottom: 0.3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- Preview-Banner ---------- */
.preview-banner {
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.preview-banner strong { color: var(--accent-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .section { padding: 4.5rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__image { aspect-ratio: 4/3; max-height: 460px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .projects { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--stone-100);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
  }
}
@media (max-width: 620px) {
  .services, .projects, .values, .stats, .process, .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .hero__meta { flex-wrap: wrap; gap: 1.8rem; }
}


/* ---------- Sub-Page-Hero ---------- */
.page-hero {
  padding: 4rem 0 3rem;
  background: var(--stone-50);
  border-bottom: 1px solid var(--stone-100);
}
.page-hero__crumbs {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--ink-70);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.page-hero__crumbs a { color: var(--ink-70); }
.page-hero__crumbs a:hover { color: var(--primary); }
.page-hero h1 { margin-bottom: 0.6rem; }

/* ---------- Leistungen-Detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--stone-100);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail--reverse .service-detail__media { order: 2; }
.service-detail__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--primary);
  position: relative;
}
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.16em;
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.service-detail h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.service-detail ul li {
  padding: 0.35rem 0 0.35rem 1.7rem;
  position: relative;
  color: var(--ink-70);
}
.service-detail ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.9rem;
  width: 10px; height: 2px;
  background: var(--accent);
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.team-card {
  background: #fff;
  padding: 2.5rem;
  border-top: 3px solid var(--primary);
  border: 1px solid var(--stone-100);
  border-top-width: 3px;
  border-top-color: var(--primary);
  transition: all .3s var(--ease);
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(30,107,62,0.2); }
.team-card__photo {
  width: 120px; height: 120px;
  background: var(--stone-100);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  border: 2px solid var(--primary);
}
.team-card h3 { margin-bottom: 0.2rem; }
.team-card .role {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: block;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}
.contact-info {
  background: var(--stone-50);
  padding: 2.5rem;
  border-top: 3px solid var(--primary);
}
.contact-info h3 {
  font-size: 0.8rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-info h3:first-of-type { margin-top: 0; }
.contact-info p { margin: 0 0 0.3rem; color: var(--ink-70); }
.contact-info a { color: var(--ink); font-weight: 500; }
.contact-info a:hover { color: var(--primary); }

.contact-form { display: grid; gap: 1.2rem; }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--stone-300);
  background: #fff;
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,107,62,0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.contact-form .actions { display: flex; gap: 1rem; margin-top: 0.5rem; }
.checkbox-field {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--ink-70);
}
.checkbox-field input { width: auto; margin-top: 0.25rem; }

/* ---------- Prose ---------- */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.4rem; margin-top: 3rem; margin-bottom: 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 2rem; margin-bottom: 0.6rem; }
.prose p, .prose ul { color: var(--ink-70); font-size: 0.98rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.35rem; }
.prose .placeholder {
  background: var(--accent-soft);
  padding: 0.15rem 0.5rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--primary-dark);
  border-radius: 3px;
}

@media (max-width: 1000px) {
  .service-detail { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .service-detail--reverse .service-detail__media { order: -1; }
  .team { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 620px) {
  .contact-form .row { grid-template-columns: 1fr; }
}
