@font-face {
  font-family: 'Sora';
  src: url('fonts/sora-var.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-var.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --paper: #fbfaf7;
  --paper-deep: #f3efe8;
  --ink: #16120d;
  --ink-soft: #6b6459;
  --accent: #b3541e;
  --accent-deep: #93430f;
  --accent-soft: #f6e7da;
  --line: rgba(22, 18, 13, .11);
  --radius: 24px;
  --radius-sm: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

h1, h2, h3 { font-family: 'Sora', system-ui, sans-serif; font-weight: 600; line-height: 1.06; letter-spacing: -0.035em; }
h1 { font-size: clamp(40px, 5.4vw, 70px); }
h1 em, .brand em { font-style: normal; color: var(--accent); }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: 20px; letter-spacing: -0.02em; }

.eyebrow {
  font-size: 12.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow-light { color: #e5a171; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px;
  font-family: 'Manrope', sans-serif; font-size: 15.5px; font-weight: 700;
  text-decoration: none; transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; box-shadow: 0 14px 30px rgba(22, 18, 13, .22); }
.btn-ghost { color: var(--ink); border: 1.5px solid var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--accent-soft); }
.btn svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, .88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 34px; height: 78px; }
.brand {
  font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink); text-decoration: none; margin-right: auto; white-space: nowrap;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 15.5px; font-weight: 600; }
.nav-links a:hover { color: var(--ink); }
.btn-tel { background: var(--accent); color: #fff; padding: 12px 22px; font-size: 15px; }
.btn-tel:hover { background: var(--accent-deep); }
.burger { display: none; }

/* ---------- Hero ---------- */
.hero { overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.06fr .94fr; align-items: center;
  gap: clamp(40px, 6vw, 84px); padding: clamp(52px, 6.5vw, 96px) 0 clamp(60px, 7vw, 100px);
}
.hero .lead { margin: 24px 0 0; max-width: 540px; font-size: 18.5px; line-height: 1.7; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 34px; }
.hero-facts li {
  position: relative; padding-left: 24px; font-size: 15px; font-weight: 600; color: var(--ink-soft);
}
.hero-facts li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent);
}
.hero-photo { position: relative; }
.hero-photo::before {
  content: ''; position: absolute; inset: 30px -30px -30px 30px;
  background: linear-gradient(135deg, var(--accent-soft), #ecdcc9);
  border-radius: calc(var(--radius) + 8px); z-index: 0;
}
.hero-photo img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover;
  border-radius: var(--radius);
}
.hero-card {
  position: absolute; z-index: 2; left: -28px; bottom: 34px;
  display: flex; align-items: center; gap: 13px;
  background: #fff; border-radius: 18px; padding: 15px 22px 15px 15px;
  box-shadow: 0 22px 54px rgba(22, 18, 13, .18);
}
.hero-card-icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
  background: var(--accent-soft); flex-shrink: 0;
}
.hero-card-icon svg { width: 20px; height: 20px; fill: var(--accent); }
.hero-card b { display: block; font-size: 15px; line-height: 1.3; font-weight: 800; }
.hero-card small { color: var(--ink-soft); font-size: 13.5px; font-weight: 500; }

/* ---------- Split sections ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split-photo { position: relative; }
.split-photo img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; border-radius: var(--radius); }
.philosophie { background: var(--paper-deep); padding: clamp(68px, 8.5vw, 120px) 0; }
.philosophie blockquote p {
  font-size: clamp(18px, 1.9vw, 21.5px); line-height: 1.6; font-weight: 500;
  color: var(--ink); margin-top: 22px;
}
.philosophie cite {
  display: block; margin-top: 20px; font-style: normal; font-weight: 800; font-size: 15.5px;
}
.philosophie cite::before { content: '— '; color: var(--accent); }
.split-note { margin-top: 24px; color: var(--ink-soft); }

/* ---------- Leistungen ---------- */
.leistungen { padding: clamp(68px, 8.5vw, 120px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(38px, 4vw, 60px); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: 0 26px 54px rgba(22, 18, 13, .12); }
.feature img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-body { padding: 24px 26px 28px; }
.feature-body p { margin-top: 9px; color: var(--ink-soft); font-size: 15.5px; }
.service-list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 44px; margin-top: 42px;
}
.service-list li { display: flex; align-items: center; gap: 13px; font-size: 16px; font-weight: 600; }
.service-list svg {
  width: 24px; height: 24px; flex-shrink: 0; padding: 5px; border-radius: 9px;
  background: var(--accent-soft); stroke: var(--accent); stroke-width: 2.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Service-Band (dunkel) ---------- */
.service-band { background: var(--ink); color: var(--paper); padding: clamp(68px, 8.5vw, 120px) 0; }
.service-band h2 { color: #fff; }
.service-band .split-photo img { aspect-ratio: 4 / 4.2; }
.band-list { list-style: none; margin: 30px 0 36px; display: grid; gap: 24px; }
.band-list b { display: block; font-size: 18px; font-weight: 800; margin-bottom: 5px; }
.band-list span { color: #b5ac9f; font-size: 15.5px; }
.band-list li { padding-left: 22px; border-left: 3px solid var(--accent); }

/* ---------- Galerie ---------- */
.galerie { padding: clamp(68px, 8.5vw, 120px) 0; background: var(--paper-deep); }
.galerie-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.galerie-grid img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
}
.galerie-grid img:nth-child(1) { grid-column: span 3; aspect-ratio: 16 / 10; }
.galerie-grid img:nth-child(2) { grid-column: span 3; aspect-ratio: 16 / 10; }
.galerie-grid img:nth-child(3) { grid-column: span 2; aspect-ratio: 3 / 3.4; }
.galerie-grid img:nth-child(4) { grid-column: span 2; aspect-ratio: 3 / 3.4; }
.galerie-grid img:nth-child(5) { grid-column: span 2; aspect-ratio: 3 / 3.4; }

/* ---------- Team ---------- */
.team { padding: clamp(68px, 8.5vw, 120px) 0; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); gap: 26px; }
.team-card img {
  width: 100%; aspect-ratio: 3 / 3.6; object-fit: cover; object-position: center 20%;
  border-radius: var(--radius);
}
.team-card figcaption { padding: 18px 6px 0; }
.team-card b { font-size: 17.5px; font-weight: 800; }
.team-card span { display: block; color: var(--ink-soft); font-size: 15px; }

/* ---------- Kontakt ---------- */
.kontakt { background: var(--ink); color: var(--paper); padding: clamp(68px, 8.5vw, 120px) 0; }
.kontakt-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.kontakt h2 { color: #fff; }
.kontakt address { font-style: normal; font-size: 18.5px; line-height: 1.6; margin: 24px 0; }
.kontakt-links { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }
.link-light { color: #e5a171; text-decoration: none; font-size: 16px; font-weight: 600; }
.link-light:hover { color: #fff; }
.hours { border-collapse: collapse; width: 100%; max-width: 440px; }
.hours td { padding: 12px 0; border-bottom: 1px solid rgba(251, 250, 247, .16); font-size: 16px; }
.hours td:last-child { text-align: right; color: #b5ac9f; }
.kontakt-note { margin-top: 24px; color: #b5ac9f; font-size: 15.5px; max-width: 470px; }
.kontakt-photo img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--radius); }
.kontakt-photo figcaption { margin-top: 12px; font-size: 14px; color: #b5ac9f; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid rgba(251, 250, 247, .14); padding: 28px 0; color: #b5ac9f; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 14.5px; }
.footer a { color: #e5a171; text-decoration: none; font-weight: 600; }
.footer a:hover { color: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav-links {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 10px 24px 18px;
  }
  .nav-links a { padding: 13px 0; font-size: 18px; }
  .nav-open .nav-links { display: flex; }
  .burger {
    display: grid; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer;
  }
  .burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
  .btn-tel { padding: 11px 18px; }

  .hero-inner { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-photo { max-width: 500px; }
  .hero-photo img { aspect-ratio: 4 / 3.4; }
  .hero-card { left: 10px; }

  .split, .kontakt-inner { grid-template-columns: 1fr; }
  .philosophie .split-photo { order: 2; }
  .split-photo img { aspect-ratio: 4 / 3.2; }
  .service-band .split-photo img { aspect-ratio: 4 / 3.2; }

  .feature-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-grid img { grid-column: span 1 !important; aspect-ratio: 4 / 3 !important; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 40px); }
  .brand { font-size: 19px; }
  .btn-tel { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-card { left: 8px; bottom: 16px; padding: 12px 16px 12px 12px; }
}
