/* Fabrizio Gabrieli Gipsergeschäft — Redesign Studie
   Design: Lehm-Editorial. Naturputz, Kalk, Handwerk.
   © digital M. (Vorschlag, kein Auftrag) */

:root {
  --lehm: #C8854A;
  --lehm-tief: #A04A28;
  --kalk: #F4EFE6;
  --sand: #E8DCC4;
  --sand-hell: #EDE3CE;
  --espresso: #2A1E16;
  --espresso-soft: #4A3528;
  --linie: rgba(42, 30, 22, 0.12);
  --linie-stark: rgba(42, 30, 22, 0.25);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 11vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--kalk);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--espresso);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover { color: var(--lehm-tief); }

/* ─── Layout ─── */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-y) 0;
}

/* ─── Typografie ─── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--espresso);
}

h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 350;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
}

h4 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}

p { max-width: 62ch; }

.lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--espresso-soft);
  font-style: italic;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lehm-tief);
  margin-bottom: 24px;
  display: inline-block;
}

.eyebrow::before {
  content: '— ';
  margin-right: 6px;
}

/* ─── Header / Nav ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linie);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo span {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-top: 4px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0.02em;
}

.nav-menu .nav-cta {
  background: var(--espresso);
  color: var(--kalk);
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.nav-menu .nav-cta:hover {
  background: var(--lehm-tief);
  color: var(--kalk);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--espresso);
}

/* ─── Hero ─── */

.hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}

.hero h1 {
  margin-bottom: 36px;
}

.hero h1 em {
  font-style: italic;
  color: var(--lehm-tief);
  font-weight: 300;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--linie);
}

.hero-meta div {
  font-size: 13px;
  letter-spacing: 0.05em;
}

.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lehm-tief);
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

/* Material-Block (statt Stockfoto) */
.material-block {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #d9b388 0%, #c8854a 38%, #a86939 70%, #7a4924 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 60px 80px -50px rgba(42, 30, 22, 0.55);
}

.material-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(42, 30, 22, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 240, 220, 0.08) 0%, transparent 60%);
}

.material-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(127deg, transparent 0px, transparent 3px, rgba(42, 30, 22, 0.04) 3px, rgba(42, 30, 22, 0.04) 4px),
    repeating-linear-gradient(43deg, transparent 0px, transparent 5px, rgba(255, 240, 220, 0.05) 5px, rgba(255, 240, 220, 0.05) 6px);
  mix-blend-mode: overlay;
}

.material-block .badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: var(--kalk);
  z-index: 2;
}

.material-block .badge small {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.78;
  display: block;
  margin-bottom: 8px;
}

.material-block .badge span {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  display: block;
  line-height: 1.2;
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--espresso);
  color: var(--kalk);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--espresso);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--lehm-tief);
  color: var(--kalk);
  border-color: var(--lehm-tief);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
}

.btn-ghost:hover {
  background: var(--espresso);
  color: var(--kalk);
}

.btn::after {
  content: '→';
  font-size: 16px;
}

/* ─── USP-Strip ─── */

.usp {
  background: var(--espresso);
  color: var(--kalk);
  padding: clamp(60px, 8vw, 110px) 0;
}

.usp h2 {
  color: var(--kalk);
  max-width: 18ch;
  margin-bottom: 60px;
}

.usp .eyebrow {
  color: var(--lehm);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.15);
  border: 1px solid rgba(244, 239, 230, 0.15);
}

.usp-cell {
  padding: 44px 32px;
  background: var(--espresso);
}

.usp-cell .num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--lehm);
  display: block;
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.usp-cell h4 {
  color: var(--kalk);
  margin-bottom: 12px;
}

.usp-cell p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.7);
}

/* ─── Leistungen-Liste (index) ─── */

.leistungen-list {
  border-top: 1px solid var(--linie-stark);
}

.leistungen-list .row {
  display: grid;
  grid-template-columns: 80px 2.5fr 1.5fr 60px;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--linie);
  transition: padding 0.3s ease;
}

.leistungen-list .row:hover {
  padding-left: 16px;
}

.leistungen-list .num {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--lehm-tief);
  font-weight: 400;
}

.leistungen-list h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 350;
}

.leistungen-list p {
  font-size: 15px;
  color: var(--espresso-soft);
}

.leistungen-list .arrow {
  font-family: var(--serif);
  font-size: 28px;
  text-align: right;
  color: var(--lehm-tief);
}

/* ─── Split Module ─── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.split-text h2 { margin-bottom: 28px; }

.split-text p + p { margin-top: 18px; }

.material-stripe {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #f0e1c8 0%, #e8dcc4 30%, #d4b89a 60%, #b4885a 100%);
  box-shadow: 0 50px 80px -40px rgba(42, 30, 22, 0.4);
}

.material-stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(122, 73, 36, 0.3), transparent 50%);
}

.material-stripe::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(105deg, transparent 0px, transparent 8px, rgba(42, 30, 22, 0.06) 8px, rgba(42, 30, 22, 0.06) 9px);
  mix-blend-mode: multiply;
}

/* ─── Quote ─── */

.quote {
  background: var(--sand-hell);
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto 36px;
}

.quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

/* ─── Projekte Teaser ─── */

.projekte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.projekt-card {
  background: var(--sand-hell);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.projekt-card:hover { transform: translateY(-6px); }

.projekt-visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.projekt-visual.mood-1 { background: linear-gradient(160deg, #e8dcc4 0%, #c8854a 100%); }
.projekt-visual.mood-2 { background: linear-gradient(160deg, #d4b89a 0%, #7a4924 100%); }
.projekt-visual.mood-3 { background: linear-gradient(160deg, #f0e1c8 0%, #a04a28 100%); }
.projekt-visual.mood-4 { background: linear-gradient(160deg, #b4885a 0%, #2a1e16 100%); }
.projekt-visual.mood-5 { background: linear-gradient(160deg, #ede3ce 0%, #b4885a 100%); }
.projekt-visual.mood-6 { background: linear-gradient(160deg, #c8854a 0%, #4a3528 100%); }

.projekt-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, transparent, transparent 4px, rgba(42, 30, 22, 0.05) 4px, rgba(42, 30, 22, 0.05) 5px);
}

.projekt-card .body {
  padding: 32px;
}

.projekt-card .body small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lehm-tief);
  display: block;
  margin-bottom: 10px;
}

.projekt-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.projekt-card p {
  font-size: 14px;
  color: var(--espresso-soft);
}

/* ─── Footer ─── */

.site-footer {
  background: var(--espresso);
  color: var(--sand);
  padding: clamp(60px, 8vw, 100px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-grid h4 {
  color: var(--kalk);
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid a {
  color: var(--sand);
  display: block;
  padding: 4px 0;
  font-size: 14px;
}

.footer-grid a:hover { color: var(--lehm); }

.footer-brand .logo {
  color: var(--kalk);
  margin-bottom: 16px;
}

.footer-brand .logo span { color: var(--sand); }

.footer-brand p {
  font-size: 14px;
  color: var(--sand);
  opacity: 0.75;
  max-width: 32ch;
  margin-top: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 230, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Page Hero (Unterseiten) ─── */

.page-hero {
  padding: clamp(80px, 11vw, 140px) 0 clamp(50px, 7vw, 90px);
  border-bottom: 1px solid var(--linie);
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 24px;
  max-width: 14ch;
}

.page-hero .lead { max-width: 50ch; }

/* ─── Inhalt Long Form ─── */

.prose h2 { margin: 64px 0 24px; }
.prose h3 { margin: 40px 0 14px; font-size: clamp(20px, 2vw, 26px); }
.prose p { margin-bottom: 18px; max-width: 64ch; }
.prose ul { margin: 16px 0 24px 22px; }
.prose ul li { margin-bottom: 8px; max-width: 60ch; }
.prose strong { color: var(--lehm-tief); font-weight: 600; }

.two-col-text {
  columns: 2;
  column-gap: 56px;
}

.two-col-text p { max-width: 100%; }

/* ─── Service-Karten Detail ─── */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(80px, 10vw, 140px);
}

.service-detail.flip { direction: rtl; }
.service-detail.flip > * { direction: ltr; }

.service-detail h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 18px;
  font-weight: 350;
}

.service-detail .eyebrow { margin-bottom: 16px; }

.service-detail ul {
  list-style: none;
  margin-top: 28px;
  border-top: 1px solid var(--linie);
}

.service-detail ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--linie);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-detail ul li::before {
  content: '+';
  color: var(--lehm-tief);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  margin-right: 14px;
}

.service-detail ul li span {
  flex: 1;
}

/* ─── Process Steps ─── */

.process {
  background: var(--sand-hell);
  padding: var(--section-y) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.process-step {
  border-top: 1px solid var(--espresso);
  padding-top: 24px;
}

.process-step .num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--lehm-tief);
  display: block;
  margin-bottom: 18px;
}

.process-step h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--espresso-soft);
}

/* ─── Referenzliste ─── */

.referenz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--linie);
}

.referenz-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--linie);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.referenz-item:nth-child(odd) {
  border-right: 1px solid var(--linie);
}

.referenz-item .ort {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

/* ─── Projekt Galerie ─── */

.projekt-galerie {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.projekt-galerie article {
  background: var(--sand-hell);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.projekt-galerie article:hover { transform: translateY(-4px); }

.projekt-galerie .visual {
  position: relative;
  overflow: hidden;
}

.projekt-galerie .visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, transparent, transparent 4px, rgba(42, 30, 22, 0.05) 4px, rgba(42, 30, 22, 0.05) 5px);
}

.projekt-galerie .body {
  padding: 22px 26px 28px;
}

.projekt-galerie h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.projekt-galerie small {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lehm-tief);
  display: block;
  margin-bottom: 8px;
}

.projekt-galerie p {
  font-size: 13px;
  color: var(--espresso-soft);
}

/* Span-Helper */
.col-7 { grid-column: span 7; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-8 { grid-column: span 8; }
.col-4 { grid-column: span 4; }
.col-12 { grid-column: span 12; }

.col-7 .visual { aspect-ratio: 16/10; }
.col-5 .visual { aspect-ratio: 4/5; }
.col-6 .visual { aspect-ratio: 3/2; }
.col-8 .visual { aspect-ratio: 16/9; }
.col-4 .visual { aspect-ratio: 4/5; }

/* ─── Kontakt ─── */

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: 60px;
}

.form {
  background: var(--sand-hell);
  padding: clamp(32px, 4vw, 56px);
  border-radius: 6px;
}

.form .field {
  margin-bottom: 22px;
}

.form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  background: var(--kalk);
  border: 1px solid var(--linie);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--espresso);
  border-radius: 4px;
  transition: border 0.2s ease;
}

.form textarea { min-height: 130px; resize: vertical; }

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--lehm-tief);
}

.form .btn {
  width: 100%;
  justify-content: center;
}

.kontakt-info h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 28px;
}

.kontakt-info dl {
  border-top: 1px solid var(--linie);
}

.kontakt-info dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--linie);
  font-size: 15px;
}

.kontakt-info dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  font-weight: 500;
  padding-top: 4px;
}

.kontakt-info dd a {
  border-bottom: 1px solid var(--linie-stark);
}

/* ─── Card Bands ─── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linie);
  border: 1px solid var(--linie);
  margin-top: 60px;
}

.value {
  background: var(--kalk);
  padding: 44px 36px;
}

.value .num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--lehm-tief);
  display: block;
  margin-bottom: 24px;
}

.value h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
}

.value p {
  font-size: 14px;
  color: var(--espresso-soft);
}

/* ─── CTA Strip ─── */

.cta-strip {
  background: var(--lehm);
  color: var(--espresso);
  padding: clamp(60px, 8vw, 100px) 0;
}

.cta-strip .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-strip h2 {
  font-size: clamp(32px, 4vw, 56px);
  max-width: 18ch;
}

.cta-strip .btn {
  background: var(--espresso);
  border-color: var(--espresso);
  justify-self: end;
}

/* ─── Demo-Banner ─── */

.demo-banner {
  background: var(--espresso);
  color: var(--kalk);
  text-align: center;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.demo-banner strong { color: var(--lehm); }

/* ─── Responsive ─── */

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--kalk);
    flex-direction: column;
    padding: 32px var(--gutter);
    gap: 22px;
    border-bottom: 1px solid var(--linie);
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-cta { width: 100%; text-align: center; }

  .hero-grid { grid-template-columns: 1fr; }
  .split,
  .service-detail,
  .kontakt-grid,
  .cta-strip .wrap { grid-template-columns: 1fr; }
  .service-detail.flip { direction: ltr; }

  .leistungen-list .row {
    grid-template-columns: 50px 1fr 30px;
  }
  .leistungen-list .row p { display: none; }

  .projekte-grid,
  .footer-grid,
  .referenz-grid { grid-template-columns: 1fr; }
  .referenz-item:nth-child(odd) { border-right: none; }

  .two-col-text { columns: 1; }

  .projekt-galerie { grid-template-columns: 1fr; gap: 20px; }
  .projekt-galerie > article { grid-column: span 1 !important; }
  .projekt-galerie .visual { aspect-ratio: 4/3 !important; }

  .cta-strip .btn { justify-self: start; }
}
