/* ── DESIGN SYSTEM ─────────────────────────────── */
:root {
  --brown-deep:   #4b280f;
  --brown-mid:    #8f430b;
  --orange:       #ff914d;
  --peach:        #ffcaa4;
  --slate:        #33343f;
  --white:        #ffffff;
  --peach-light:  #fff5ee;
  --peach-mid:    #ffe8d6;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--peach-light);
  color: var(--slate);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(75,40,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,145,77,0.2);
  transition: padding 0.3s, box-shadow 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em; line-height: 1.4;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem; font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--peach); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px; border-radius: var(--radius);
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: #e67d3a !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--brown-deep);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 25% 65%, rgba(255,145,77,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(143,67,11,0.5) 0%, transparent 65%);
  pointer-events: none;
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,145,77,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,145,77,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 60px 100px 80px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--orange);
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 28px;
}
h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.75;
  max-width: 460px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 16px 36px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: #e67d3a; transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,202,164,0.4);
  color: rgba(255,202,164,0.85);
  padding: 16px 36px; border-radius: var(--radius);
  font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.04em; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  display: inline-block; background: transparent;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-outline.dark {
  border-color: var(--brown-mid);
  color: var(--brown-mid);
}
.btn-outline.dark:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats {
  margin-top: 60px; display: flex; gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--orange); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 60px 80px 40px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,145,77,0.25);
  border-radius: 8px; padding: 40px;
  backdrop-filter: blur(8px);
  max-width: 380px; width: 100%;
  animation: floatUp 0.9s ease both 0.3s;
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--white); margin-bottom: 24px;
}
.service-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.service-item:last-of-type { border-bottom: none; }
.service-icon {
  width: 36px; height: 36px;
  background: rgba(255,145,77,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--orange); font-size: 1rem;
}
.service-name { font-weight: 600; font-size: 0.9rem; color: var(--white); margin-bottom: 3px; }
.service-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; }
.bmd-badge {
  margin-top: 28px;
  background: rgba(255,145,77,0.1);
  border: 1px solid rgba(255,145,77,0.3);
  border-radius: 4px; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
}
.bmd-dot {
  width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%;
  flex-shrink: 0; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.bmd-text { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.bmd-text strong { color: var(--peach); }

/* ── SECTION BASE ────────────────────────────────── */
section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.section-pad { padding: 110px 0; }
.section-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brown-mid); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--brown-mid);
}
.section-label.light { color: var(--peach); }
.section-label.light::before { background: var(--peach); }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--brown-deep);
}
h2.light { color: var(--white); }
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--brown-deep); line-height: 1.3;
}

/* ── PAGE HEADER (for subpages) ──────────────────── */
.page-header {
  background: var(--brown-deep);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 25% 65%, rgba(255,145,77,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(143,67,11,0.4) 0%, transparent 65%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .hero-eyebrow { margin-bottom: 20px; }
.page-header h1 { margin-bottom: 20px; }
.page-header .hero-sub { margin-bottom: 0; }
.breadcrumb {
  font-size: 0.78rem; color: rgba(255,202,164,0.4);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: rgba(255,202,164,0.5);
  text-decoration: none; transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--peach); }
.breadcrumb span { margin: 0 8px; }

/* ── ÜBER UNS ────────────────────────────────────── */
.ueber { background: var(--white); }
.ueber-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.ueber-img-frame {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--brown-mid) 0%, var(--brown-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
.ueber-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.ueber-img-placeholder { text-align: center; color: rgba(255,255,255,0.25); }
.ueber-img-placeholder svg { width: 80px; height: 80px; display: block; margin: 0 auto 16px; }
.ueber-img { position: relative; }
.ueber-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  background: var(--orange); border-radius: 8px;
  z-index: -1; opacity: 0.4;
}
.ueber-accent-2 {
  position: absolute; top: -20px; left: -20px;
  width: 60px; height: 60px;
  border: 2px solid var(--brown-mid); border-radius: 4px;
  z-index: -1; opacity: 0.3;
}
.ueber-text {
  font-size: 1.05rem; font-weight: 300;
  color: var(--slate); line-height: 1.85;
  margin-top: 28px; margin-bottom: 20px;
}
.values-grid {
  margin-top: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.value-item {
  padding: 24px;
  background: var(--peach-light);
  border-radius: 6px;
  border-left: 3px solid var(--orange);
}
.value-title { font-weight: 600; font-size: 0.92rem; color: var(--brown-deep); margin-bottom: 6px; }
.value-desc  { font-size: 0.82rem; color: #7a6050; line-height: 1.6; }

/* ── LEISTUNGEN ──────────────────────────────────── */
.leistungen { background: var(--brown-deep); }
.leistungen-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 70px;
}
.leistungen-intro p {
  color: rgba(255,202,164,0.6);
  font-size: 1rem; line-height: 1.8; font-weight: 300;
}
.leistungen-cards {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.leistung-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,202,164,0.12);
  border-radius: 8px; padding: 36px 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  text-decoration: none;
  display: block;
}
.leistung-card:hover {
  background: rgba(255,145,77,0.08);
  border-color: rgba(255,145,77,0.4);
  transform: translateY(-4px);
}
.leistung-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: rgba(255,145,77,0.2); line-height: 1; margin-bottom: 20px;
}
.leistung-icon {
  width: 48px; height: 48px;
  background: rgba(255,145,77,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.4rem; margin-bottom: 20px;
}
.leistung-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.leistung-desc { font-size: 0.83rem; color: rgba(255,202,164,0.5); line-height: 1.7; }
.leistung-link {
  display: inline-block; margin-top: 16px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--orange); text-decoration: none;
  transition: color 0.2s;
}
.leistung-link:hover { color: var(--peach); }

/* ── WARUM ───────────────────────────────────────── */
.warum { background: var(--peach-light); }
.warum-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; margin-top: 60px;
}
.warum-item {
  padding: 40px 32px;
  background: var(--white); border-radius: 8px;
  box-shadow: 0 4px 30px rgba(75,40,15,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.warum-item:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(75,40,15,0.12); }
.warum-icon {
  width: 56px; height: 56px;
  background: var(--peach-mid); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.warum-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--brown-deep); margin-bottom: 14px;
}
.warum-desc { font-size: 0.88rem; color: var(--slate); line-height: 1.75; }

/* ── PROZESS ─────────────────────────────────────── */
.prozess { background: var(--peach-mid); }
.prozess-header { text-align: center; max-width: 600px; margin: 0 auto 70px; }
.prozess-header .section-label { justify-content: center; }
.prozess-header .section-label::before { display: none; }
.prozess-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.prozess-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  z-index: 0;
}
.prozess-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px;
  background: var(--brown-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 3px solid var(--orange);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--orange);
}
.step-title { font-weight: 600; font-size: 0.95rem; color: var(--brown-deep); margin-bottom: 10px; }
.step-desc   { font-size: 0.82rem; color: var(--slate); line-height: 1.65; }

/* ── KONTAKT ─────────────────────────────────────── */
.kontakt { background: var(--brown-deep); }
.kontakt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.kontakt-info p {
  color: rgba(255,202,164,0.55);
  font-size: 1rem; line-height: 1.8; font-weight: 300;
  margin-top: 24px; margin-bottom: 44px;
}
.kontakt-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.kontakt-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,145,77,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem; flex-shrink: 0;
}
.kontakt-detail-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 4px;
}
.kontakt-detail-value { font-size: 0.92rem; color: rgba(255,202,164,0.7); line-height: 1.5; }
.kontakt-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,202,164,0.15);
  border-radius: 10px; padding: 44px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--white); margin-bottom: 32px;
}
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,202,164,0.5); margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,202,164,0.15);
  border-radius: 4px; padding: 14px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--white); outline: none; -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }
input:focus, select:focus, textarea:focus { border-color: var(--orange); background: rgba(255,255,255,0.09); }
select option { background: var(--brown-deep); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; background: var(--orange); color: var(--white);
  border: none; padding: 16px; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.04em;
  cursor: pointer; transition: background 0.2s, transform 0.2s; margin-top: 8px;
}
.form-submit:hover { background: #e67d3a; transform: translateY(-2px); }

/* ── CONTENT SECTIONS (for subpages) ─────────────── */
.content-section { background: var(--white); }
.content-section.alt { background: var(--peach-light); }
.content-section.dark { background: var(--brown-deep); }
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h3 { margin-bottom: 20px; }
.content-text p {
  font-size: 1rem; line-height: 1.85;
  color: var(--slate); margin-bottom: 16px; font-weight: 300;
}
.content-text p:last-child { margin-bottom: 0; }
.content-text.light p { color: rgba(255,202,164,0.6); }
.content-text.light h3 { color: var(--white); }

/* Feature list */
.feature-list { list-style: none; margin-top: 28px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(75,40,15,0.08);
  font-size: 0.95rem; color: var(--slate); line-height: 1.6;
}
.feature-list li:last-child { border-bottom: none; }
.feature-check {
  width: 24px; height: 24px;
  background: var(--peach-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--orange); font-size: 0.75rem; font-weight: 700;
}

/* CTA Banner */
.cta-banner {
  background: var(--brown-deep);
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner p {
  color: rgba(255,202,164,0.6);
  font-size: 1.05rem; line-height: 1.8; font-weight: 300;
  max-width: 560px; margin: 0 auto 36px;
}
.cta-banner .btn-primary { font-size: 1rem; padding: 18px 44px; }

/* Info box */
.info-box {
  background: var(--peach-light);
  border: 1px solid rgba(255,145,77,0.2);
  border-radius: 8px; padding: 32px;
  margin-top: 36px;
}
.info-box p {
  font-size: 0.9rem; color: var(--slate);
  line-height: 1.7; margin: 0;
}
.info-box strong { color: var(--brown-deep); }

/* Placeholder image for content sections */
.content-img-frame {
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--peach-mid) 0%, var(--peach) 100%);
  display: flex; align-items: center; justify-content: center;
}
.content-img-frame.landscape { aspect-ratio: 3/2; }
.content-img-frame.portrait { aspect-ratio: 3/4; }
.content-img-frame:not(.landscape):not(.portrait) { aspect-ratio: 4/3; }
.content-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
/* Nav logo image */
.nav-logo-img {
  height: 56px; width: auto;
  display: block;
}
.content-img-placeholder {
  text-align: center; color: var(--brown-mid); opacity: 0.4;
  font-size: 0.85rem;
}

/* ── FOOTER ──────────────────────────────────────── */
footer { background: #2b1508; padding: 50px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 16px;
}
.footer-brand span { color: var(--orange); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,202,164,0.3); line-height: 1.7; max-width: 300px; }
.footer-col-title {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,202,164,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,202,164,0.75); }
.footer-bottom {
  border-top: 1px solid rgba(255,202,164,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,202,164,0.22); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,202,164,0.22); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,202,164,0.5); }

/* ── REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo-img { height: 40px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 24px 60px; }
  .hero-right { display: none; }
  h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 32px; }
  .hero-eyebrow { font-size: 0.65rem; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-outline { text-align: center; padding: 14px 28px; width: 100%; }
  .hero-stats { flex-direction: column; gap: 20px; margin-top: 40px; padding-top: 32px; }
  .stat-num { font-size: 1.8rem; }

  /* Sections */
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .page-header { padding: 100px 0 48px; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  /* Über uns */
  .ueber-grid { grid-template-columns: 1fr; gap: 36px; }
  .ueber-img-frame { aspect-ratio: 3/4; max-height: 400px; }
  .ueber-text { font-size: 0.95rem; margin-top: 20px; margin-bottom: 16px; }
  .values-grid { grid-template-columns: 1fr; gap: 12px; }
  .value-item { padding: 18px; }

  /* Leistungen */
  .leistungen-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .leistungen-cards { grid-template-columns: 1fr; gap: 16px; }
  .leistung-card { padding: 28px 24px; }
  .leistung-number { font-size: 2rem; margin-bottom: 14px; }

  /* Warum */
  .warum-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .warum-item { padding: 28px 24px; }

  /* Prozess */
  .prozess-steps { grid-template-columns: 1fr; gap: 32px; }
  .prozess-steps::before { display: none; }
  .prozess-header { margin-bottom: 40px; }
  .step-circle { width: 56px; height: 56px; font-size: 1.1rem; margin-bottom: 16px; }

  /* Content grids (subpages) */
  .content-grid, .kontakt-inner { grid-template-columns: 1fr; gap: 36px; }
  .content-grid.reverse { direction: ltr; }
  .content-text p { font-size: 0.92rem; }
  .content-img-frame { max-height: 350px; }
  .content-img-frame.portrait { aspect-ratio: 3/4; max-height: 400px; }
  .content-img-frame.landscape { aspect-ratio: 3/2; max-height: 300px; }

  /* Feature list */
  .feature-list li { font-size: 0.88rem; padding: 12px 0; }

  /* Info box */
  .info-box { padding: 24px; margin-top: 28px; }

  /* Kontakt */
  .kontakt-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 1.2rem; margin-bottom: 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; }
  .footer-tagline { max-width: 100%; }

  /* CTA Banner */
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.92rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.72rem; }
}

/* ── SMALL MOBILE (< 480px) ─────────────────────── */
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  .hero-left { padding: 90px 16px 48px; }
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }
  .page-header { padding: 88px 0 36px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .stat-num { font-size: 1.5rem; }
  .leistung-card { padding: 24px 20px; }
  .kontakt-form { padding: 20px 16px; }
  .ueber-img-frame { max-height: 320px; }
}
