@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: #f3eee6;
  --ink: #16120d;
  --ink-soft: #6b6459;
  --accent: #a5622d;
  --accent-deep: #8a4e20;
  --accent-soft: #f3e4d3;
  --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.08; letter-spacing: -0.035em; text-wrap: balance; }
h1 { font-size: clamp(38px, 5vw, 64px); }
h1 em, h2 em, .brand em { font-style: normal; color: var(--accent); }
h2 { font-size: clamp(27px, 3.2vw, 42px); }
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: #d99b63; }

.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, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }
.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; flex-shrink: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, .9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 26px; height: 78px; }
.brand {
  color: var(--ink); text-decoration: none; margin-right: auto; white-space: nowrap;
  display: flex; align-items: center; gap: 13px;
}
.brand-logo { height: 46px; width: auto; display: block; }
.brand-text {
  font-family: 'Sora', sans-serif; font-size: 17.5px; font-weight: 700; letter-spacing: -0.02em;
  display: flex; flex-direction: column; line-height: 1.2; padding-top: 4px;
}
.brand small { font-family: 'Manrope', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links > a, .nav-drop > button {
  color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 600;
  background: none; border: 0; cursor: pointer; font-family: 'Manrope', sans-serif;
  display: inline-flex; align-items: center; gap: 5px; padding: 6px 0;
}
.nav-links > a:hover, .nav-drop > button:hover, .nav-links > a.active { color: var(--ink); }
.nav-drop { position: relative; }
.nav-drop > button svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.nav-drop:hover > button svg, .nav-drop:focus-within > button svg { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px) scale(.97);
  transform-origin: top center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 24px 60px rgba(22, 18, 13, .16);
  padding: 10px; min-width: 250px;
  opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1);
}
.drop-menu a {
  display: block; padding: 10px 14px; border-radius: 11px;
  color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 600;
}
.drop-menu a:hover { background: var(--accent-soft); color: var(--accent-deep); }
.drop-menu a.active { color: var(--accent-deep); }
.btn-tel { background: var(--accent); color: #fff; padding: 12px 20px; font-size: 14.5px; }
.btn-tel:hover { background: var(--accent-deep); }
.btn-book { background: var(--ink); color: #fff; padding: 12px 20px; font-size: 14.5px; }
.btn-book:hover { background: #000; }
.burger { display: none; }

/* ---------- Hero (Home) ---------- */
.hero { overflow: hidden; position: relative; }
.hero-inner {
  display: grid; grid-template-columns: 1.06fr .94fr; align-items: center;
  gap: clamp(40px, 6vw, 84px); padding: clamp(52px, 6.5vw, 92px) 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), #e9d5bd);
  border-radius: calc(var(--radius) + 8px); z-index: 0;
}
.hero-photo img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 4.3; object-fit: cover;
  border-radius: var(--radius);
}
.hero-badge {
  position: absolute; z-index: 2; left: -28px; bottom: 34px;
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 18px; padding: 15px 24px 15px 16px;
  box-shadow: 0 22px 54px rgba(22, 18, 13, .18);
}
.hero-badge .year {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -0.03em;
  color: var(--accent); line-height: 1;
}
.hero-badge b { display: block; font-size: 14.5px; line-height: 1.3; font-weight: 800; }
.hero-badge small { color: var(--ink-soft); font-size: 13px; font-weight: 500; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { border-bottom: 1px solid var(--line); }
.page-hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 84px); align-items: center; padding: clamp(46px, 5.5vw, 80px) 0; }
.page-hero-inner.no-photo { grid-template-columns: 1fr; }
.page-hero .lead { margin-top: 22px; max-width: 620px; font-size: 18px; line-height: 1.7; color: var(--ink-soft); }
.page-hero-photo img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; border-radius: var(--radius); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.crumb { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 16px; }
.crumb a { color: var(--accent); text-decoration: none; }
.crumb a:hover { color: var(--accent-deep); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-deep { background: var(--paper-deep); }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head .lead, .section .lead { margin-top: 16px; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split-photo img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: var(--radius); }
.split-photo .split-photo-extra { aspect-ratio: auto; margin-top: 20px; border-radius: var(--radius-sm); }
.split-photo figcaption { margin-top: 12px; color: var(--ink-soft); font-size: 14px; }
.split-photo.landscape img { aspect-ratio: 4 / 3.1; }
.split-copy p + p { margin-top: 16px; }
.split-copy p { color: var(--ink-soft); }
.split-copy p.strong { color: var(--ink); font-weight: 600; }
.split-copy h2 + p, .split-copy h3 + p { margin-top: 16px; }
.split-note { margin-top: 24px; color: var(--ink-soft); }

.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); }
.prose p + p, .prose ul + p, .prose p + ul { margin-top: 16px; }
.prose h2 { margin-bottom: 18px; }

blockquote p {
  font-size: clamp(18px, 1.9vw, 21.5px); line-height: 1.6; font-weight: 500; color: var(--ink);
}
blockquote cite { display: block; margin-top: 18px; font-style: normal; font-weight: 800; font-size: 15.5px; }
blockquote cite::before { content: '– '; color: var(--accent); }

/* check list */
.check-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 40px; margin-top: 34px; }
.check-list.single { grid-template-columns: 1fr; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 16px; font-weight: 600; }
.check-list svg {
  width: 24px; height: 24px; flex-shrink: 0; padding: 5px; border-radius: 9px; margin-top: 2px;
  background: var(--accent-soft); stroke: var(--accent); stroke-width: 2.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.check-list li span { color: var(--ink-soft); font-weight: 500; display: block; font-size: 15px; }

/* feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
  text-decoration: none; color: var(--ink); display: block;
}
.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: 22px 24px 26px; }
.feature-body p { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }
.feature-body .more { display: inline-block; margin-top: 14px; color: var(--accent); font-weight: 700; font-size: 14.5px; }
.feature:hover .more { color: var(--accent-deep); }

/* Gründe (3 reasons) */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.reasons article { border-top: 3px solid var(--accent); padding-top: 22px; }
.reasons .num { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: var(--accent); letter-spacing: .06em; }
.reasons h3 { margin-top: 8px; }
.reasons p { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; }

/* Ablauf steps */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 44px; counter-reset: step; }
.steps article { position: relative; padding-left: 74px; }
.steps article::before {
  counter-increment: step; content: '0' counter(step);
  position: absolute; left: 0; top: 2px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 30px; letter-spacing: -0.03em;
  color: var(--accent);
}
.steps article::after {
  content: ''; position: absolute; left: 52px; top: 8px; bottom: 8px; width: 1px; background: var(--line);
}
.steps p { margin-top: 10px; color: var(--ink-soft); font-size: 15.5px; }

/* Timeline (signature: seit 1956) */
.timeline { position: relative; margin-top: 10px; }
.timeline::before {
  content: ''; position: absolute; left: 64px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-soft));
  border-radius: 2px;
}
.timeline article { position: relative; padding: 0 0 34px 124px; }
.timeline article:last-child { padding-bottom: 0; }
.timeline .year {
  position: absolute; left: 0; top: 0; width: 88px; text-align: left;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  color: var(--accent); background: transparent;
}
.timeline article::before {
  content: ''; position: absolute; left: 59px; top: 7px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--accent);
}
.section-deep .timeline article::before { background: var(--paper-deep); }
.timeline h3 { font-size: 18px; }
.timeline p { margin-top: 6px; color: var(--ink-soft); font-size: 15.5px; max-width: 560px; }

/* Team */
.team-photo { max-width: 880px; margin: 0 auto 44px; }
.team-photo img { width: 100%; border-radius: var(--radius); }
.team-photo figcaption { margin-top: 14px; text-align: center; color: var(--ink-soft); font-size: 14.5px; }

/* Kundenstimme / Video */
.section-video { background: var(--ink); }
.section-video .section-head h2 { color: var(--paper); }
.section-video .section-head .eyebrow { color: #d9a878; }
.section-video .section-head .lead { color: rgba(251, 250, 247, 0.72); }
.video-frame { max-width: 880px; margin: 0 auto; }
.video-frame video { width: 100%; display: block; border-radius: var(--radius); background: #000; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; }
.team-card img {
  width: 100%; aspect-ratio: 3 / 3.6; object-fit: cover; object-position: center 18%;
  border-radius: var(--radius-sm);
}
.team-card figcaption { padding: 15px 4px 0; }
.team-card b { font-size: 16.5px; font-weight: 800; }
.team-card span { display: block; color: var(--ink-soft); font-size: 14px; margin-top: 3px; }

/* Galleries */
.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; }

.wig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.wig-grid figure { border-radius: var(--radius-sm); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.wig-grid img { width: 100%; aspect-ratio: 3 / 3.7; object-fit: cover; object-position: center top; transition: transform .3s ease; }
.wig-grid figure:hover img { transform: scale(1.04); }

.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.duo-grid figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; }
.duo-grid img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.duo-grid figcaption {
  position: absolute; left: 14px; bottom: 14px; background: rgba(22, 18, 13, .82); color: #fff;
  font-size: 13.5px; font-weight: 700; padding: 7px 14px; border-radius: 999px;
}

/* Certificates */
.cert-split { display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: 22px; align-items: stretch; }
.cert-split .cert-row { grid-template-columns: 1fr; }
.cert-photo { position: relative; border-radius: var(--radius-sm); overflow: hidden; margin: 0; }
.cert-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.cert-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 48px 20px 18px;
  color: #fff; font-size: 14.5px; font-weight: 600;
  background: linear-gradient(to top, rgba(22, 18, 13, .78), rgba(22, 18, 13, 0));
}
.cert-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.cert-row figure {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.cert-row img { max-height: 120px; width: auto; max-width: 100%; object-fit: contain; }
.cert-row figcaption { font-size: 14.5px; color: var(--ink-soft); font-weight: 600; margin-top: auto; }

/* Price note */
.price-note {
  border-left: 3px solid var(--accent); background: #fff; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px; margin-top: 34px; max-width: 640px;
  box-shadow: 0 10px 30px rgba(22, 18, 13, .05);
}
.price-note b { font-size: 17px; }
.price-note p { margin-top: 6px; color: var(--ink-soft); font-size: 15.5px; }

/* CTA band (dark) */
.cta-band { background: var(--ink); color: var(--paper); padding: clamp(58px, 7vw, 96px) 0; }
.cta-band h2 { color: #fff; max-width: 640px; }
.cta-band p { margin-top: 16px; color: #b5ac9f; max-width: 560px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn-copper { background: var(--accent); color: #fff; }
.btn-copper:hover { background: var(--accent-deep); box-shadow: 0 14px 30px rgba(0, 0, 0, .35); }

/* Kontakt */
.kontakt { background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 112px) 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: #d99b63; 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: 44px 0 30px; color: #b5ac9f; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; padding-bottom: 30px; }
.footer-logo { height: 46px; width: auto; margin-bottom: 16px; }
.footer p { font-size: 14.5px; max-width: 300px; }
.footer h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer ul a { color: #b5ac9f; text-decoration: none; font-size: 14.5px; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(251, 250, 247, .12); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 14px; flex-wrap: wrap;
}
.footer-bottom a { color: #d99b63; text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; z-index: 90; left: 20px; right: 20px; bottom: 20px;
  max-width: 480px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 30px 80px rgba(22, 18, 13, .28);
  padding: 24px 26px;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.show { opacity: 1; transform: none; pointer-events: auto; }
.cookie-banner b { font-size: 16px; }
.cookie-banner p { font-size: 14px; color: var(--ink-soft); margin-top: 8px; }
.cookie-banner p a { color: var(--accent); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 20px; font-size: 14px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(0.23, 1, 0.32, 1), transform .6s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wig-grid figure:hover img { transform: none; }
  .btn:hover { transform: none; }
}

:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .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; align-items: stretch;
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links > a { padding: 12px 0; font-size: 17px; }
  .nav-drop > button {
    display: block; pointer-events: none; padding: 16px 0 4px; font-size: 12px;
    font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-deep);
  }
  .nav-drop > button svg { display: none; }
  .drop-menu {
    position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; border: 0; background: transparent; padding: 0; min-width: 0;
    transition: none;
  }
  .nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { transform: none; opacity: 1; }
  .drop-menu a:hover { background: transparent; color: var(--accent-deep); }
  .drop-menu a { padding: 12px 0 12px 16px; font-size: 17px; color: var(--ink-soft); border-left: 2px solid var(--line); border-radius: 0; }
  .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-book { display: none; }

  .hero-inner { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-photo { max-width: 520px; }
  .hero-photo img { aspect-ratio: 4 / 3.2; }
  .hero-badge { left: 10px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-photo { max-width: 560px; }
  .split, .kontakt-inner { grid-template-columns: 1fr; }
  .split.rev .split-photo { order: 2; }
  .split-photo img { aspect-ratio: 4 / 3.2; }
  .feature-grid, .feature-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .wig-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-split { grid-template-columns: 1fr; }
  .cert-photo img { aspect-ratio: 4 / 4.6; }
  .cert-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 40px); }
  .team-photo { margin-bottom: 32px; }
  .team-photo img, .video-frame video { border-radius: var(--radius-sm); }
  h1 { font-size: 34px; hyphens: auto; overflow-wrap: break-word; }
  .hero-inner > *, .page-hero-inner > * { min-width: 0; }
  .brand { gap: 10px; }
  .brand-logo { height: 36px; }
  .brand-text { font-size: 14.5px; }
  .brand small { font-size: 9px; letter-spacing: .18em; }
  .hero { background: var(--ink); }
  .hero-inner { display: flex; flex-direction: column-reverse; padding: 0 0 40px; gap: 0; }
  .hero-photo { width: calc(100% + 40px); max-width: none; margin: 0 -20px; }
  .hero-photo::before { display: none; }
  .hero-photo img { border-radius: 0; aspect-ratio: 4 / 3.15; }
  .hero-photo::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 110px; z-index: 1;
    background: linear-gradient(to bottom, rgba(22, 18, 13, 0), var(--ink));
  }
  .hero-badge { left: 20px; right: auto; bottom: -14px; z-index: 3; padding: 11px 18px 11px 14px; border-radius: 14px; box-shadow: 0 16px 40px rgba(0, 0, 0, .45); }
  .hero-badge .year { font-size: 20px; }
  .hero-badge b { font-size: 13px; }
  .hero-badge small { font-size: 11.5px; }
  .hero-copy { padding-top: 42px; }
  .hero-copy .eyebrow { color: #d9a878; }
  .hero-copy h1 { color: #fff; }
  .hero .lead { color: rgba(255, 255, 255, .8); font-size: 16px; margin-top: 16px; }
  .hero-actions { margin-top: 24px; }
  .hero .btn-primary { background: var(--accent); }
  .hero .btn-primary:hover { background: var(--accent-deep); }
  .hero .btn-ghost { border-color: rgba(255, 255, 255, .35); color: #fff; }
  .hero .btn-ghost svg { fill: #fff; }
  .hero-facts { margin-top: 28px; gap: 12px 20px; }
  .hero-facts li { color: rgba(255, 255, 255, .85); }
  .btn-tel span { display: none; }
  .btn-tel { padding: 12px 14px; }
  .hero-actions .btn, .page-hero-actions .btn, .cta-band .actions .btn { width: 100%; justify-content: center; }
  .feature-grid, .feature-grid.cols-3 { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-grid img { grid-column: span 1 !important; aspect-ratio: 4 / 3 !important; }
  .wig-grid { grid-template-columns: 1fr 1fr; }
  .duo-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 5px; }
  .timeline article { padding-left: 34px; }
  .timeline .year { position: static; display: block; margin-bottom: 4px; }
  .timeline article::before { left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
