/* ===========================
   PERMANENT AKZENTE – STYLES
   =========================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EDE7;
  --bg-dark: #1C1410;
  --text: #1C1410;
  --text-muted: #6B5B50;
  --brand: #9E7B65;
  --brand-dark: #7D5E4A;
  --accent: #C4956A;
  --white: #FFFFFF;
  --border: #E8DED6;

  --h1: clamp(2.4rem, 5.5vw, 4rem);
  --h2: clamp(1.75rem, 3.5vw, 2.75rem);
  --h3: clamp(1.25rem, 2.5vw, 1.6rem);
  --body: 1rem;
  --small: 0.875rem;

  --lh-heading: 1.1;
  --lh-body: 1.65;
  --ls-heading: -0.025em;
  --ls-caps: 0.1em;

  --radius: 4px;
  --shadow: 0 8px 32px rgba(28, 20, 16, 0.1);
  --shadow-sm: 0 2px 8px rgba(28, 20, 16, 0.08);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: var(--body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--text);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

p { color: var(--text-muted); }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--brand-dark); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  margin-top: 1.5rem;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  .btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
  .btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; }
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-sub {
  max-width: 560px;
  margin: 1rem auto 0;
}

.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section-sub {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.3s;
}

.site-header.scrolled .logo-main {
  color: var(--text);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.site-header.scrolled .logo-sub {
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.site-header.scrolled .main-nav a {
  color: var(--text-muted);
}

.main-nav a:hover {
  color: var(--white);
}

.site-header.scrolled .main-nav a:hover {
  color: var(--brand);
}

.header-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

.site-header.scrolled .header-phone {
  color: var(--brand);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

.site-header.scrolled .hamburger span {
  background: var(--text);
}

.mobile-nav {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(28, 20, 16, 0.08);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  max-height: 400px;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-phone {
  font-weight: 600;
  color: var(--brand) !important;
  margin-top: 0.5rem;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  height: 110vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 20, 16, 0.25) 0%,
    rgba(28, 20, 16, 0.15) 40%,
    rgba(28, 20, 16, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 620px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ===========================
   INTRO STRIP
   =========================== */
.intro-strip {
  background: var(--brand);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.intro-strip .container {
  text-align: center;
}

.intro-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 0.75rem;
  line-height: 1.5;
}

.intro-author {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}

/* ===========================
   LEISTUNGEN
   =========================== */
.leistungen {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.leistung-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(5rem, 8vw, 8rem);
}

.leistung-block:last-child {
  margin-bottom: 0;
}

.leistung-block--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.leistung-block--reverse .leistung-image {
  order: 2;
}

.leistung-block--reverse .leistung-text {
  order: 1;
}

.leistung-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.leistung-image img {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.6s ease;
}

.leistung-image:hover img {
  transform: scale(1.03);
}

.leistung-image--tall img {
  height: clamp(360px, 50vw, 580px);
}

.floating-img {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  border: 4px solid var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.floating-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.number-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: var(--ls-caps);
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.leistung-text h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.leistung-text p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.leistung-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.leistung-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.leistung-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 300;
}

.leistung-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--text);
  font-weight: 600;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================
   GALERIE
   =========================== */
.galerie {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-dark);
}

.galerie .section-header { color: var(--white); }
.galerie .label-tag { color: var(--accent); }
.galerie h2 { color: var(--white); }
.galerie .section-sub { color: rgba(255,255,255,0.6); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
}

.galerie-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.galerie-item:hover img {
  transform: scale(1.06);
}

.galerie-item--wide {
  grid-column: span 2;
}

.galerie-item--wide img {
  height: 240px;
}

.galerie-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===========================
   ÜBER MICH
   =========================== */
.ueber-mich {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-alt);
}

.ueber-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.ueber-image-wrap {
  position: relative;
}

.ueber-image-wrap > img {
  width: 100%;
  height: clamp(400px, 55vw, 620px);
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
}

.ueber-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--brand);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow);
}

.ueber-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1;
}

.ueber-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.ueber-text h2 {
  margin-bottom: 1rem;
}

.ueber-lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.ueber-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.ueber-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cred-item {
  text-align: center;
}

.cred-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.cred-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===========================
   PREISE
   =========================== */
.preise {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.preise-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.preis-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.preis-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand), var(--shadow);
}

.preis-card-header {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.preis-card-header h3 {
  font-size: 1.15rem;
  color: var(--text);
}

.preis-card--featured .preis-card-header {
  background: var(--brand);
}

.preis-card--featured .preis-card-header h3 {
  color: var(--white);
}

.preis-list {
  padding: 1.25rem 1.5rem;
}

.preis-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.preis-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.preis-row span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.preis-row em {
  font-style: normal;
  font-size: 0.78rem;
  display: block;
  color: var(--brand);
}

.preis-row strong {
  white-space: nowrap;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.preise-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-top: 0.5rem;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-alt);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 5rem;
}

.faq-header h2 {
  margin-top: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  user-select: none;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--brand);
  text-decoration: underline;
}

/* ===========================
   KONTAKT
   =========================== */
.kontakt {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.kontakt-text h2 {
  margin-bottom: 1rem;
}

.kontakt-text > p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.kontakt-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.kontakt-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.kontakt-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.kontakt-item strong {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
}

.kontakt-item span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.kontakt-item small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.kontakt-item a {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: block;
}

.kontakt-anfahrt {
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.kontakt-anfahrt p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.kontakt-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.kontakt-map iframe {
  display: block;
  border-radius: var(--radius);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--bg-dark);
  padding: clamp(3rem, 5vw, 4rem) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-main {
  color: var(--white);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 1.25rem 0;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

/* ===========================
   STICKY WHATSAPP
   =========================== */
.whatsapp-sticky {
  display: none;
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  right: 1.25rem;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-sticky:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ===========================
   NAV ACTIVE
   =========================== */
.main-nav a.nav-active {
  color: var(--brand) !important;
}

.site-header.scrolled .main-nav a.nav-active {
  color: var(--brand) !important;
}

.mobile-nav a.nav-active {
  color: var(--brand);
  font-weight: 600;
}

/* ===========================
   BLOG PAGE
   =========================== */
/* Body padding pushes all content below fixed nav — standard pattern */
.blog-body {
  padding-top: calc(72px + env(safe-area-inset-top, 0px));
}

/* Blog nav always solid — no transparent/white-text state */
.blog-body .site-header {
  background: rgba(250, 248, 245, 0.97) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border) !important;
}

.blog-body .site-header .logo-main {
  color: var(--text) !important;
}

.blog-body .site-header .logo-sub {
  color: var(--text-muted) !important;
}

.blog-body .site-header .main-nav a {
  color: var(--text-muted) !important;
}

.blog-body .site-header .main-nav a:hover {
  color: var(--brand) !important;
}

.blog-body .site-header .main-nav a.nav-active {
  color: var(--brand) !important;
}

.blog-body .site-header .header-phone {
  color: var(--brand) !important;
}

.blog-body .site-header .hamburger span {
  background: var(--text) !important;
}

.blog-page-header {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.blog-main {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  min-height: 60vh;
}

/* List view */
.blog-headline {
  font-family: 'Playfair Display', serif;
  font-size: var(--h2);
  color: var(--text);
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  margin-bottom: 0.75rem;
}

.blog-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  line-height: var(--lh-body);
}

.blog-list {
  display: flex;
  flex-direction: column;
}

.blog-post-preview {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--border);
}

.blog-post-preview:first-child {
  border-top: 1px solid var(--border);
}

.blog-meta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.blog-post-preview h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: var(--ls-heading);
  line-height: 1.25;
}

.blog-post-preview h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-post-preview h3 a:hover {
  color: var(--brand);
}

.blog-teaser {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: var(--lh-body);
  max-width: 680px;
  margin-bottom: 1.1rem;
}

.btn-read {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s, gap 0.2s;
}

.btn-read:hover {
  color: var(--brand-dark);
}

/* Post view */
.post-back {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.post-back:hover {
  color: var(--brand-dark);
}

.post-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--text);
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.post-teaser-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

.post-content {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: var(--h3);
  color: var(--text);
  letter-spacing: var(--ls-heading);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.post-content li {
  margin-bottom: 0.4rem;
}

.post-content a {
  color: var(--brand);
  text-decoration: underline;
}

.post-content strong {
  color: var(--text);
  font-weight: 600;
}

/* Not found */
#not-found {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

#not-found p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablet: 768px */
@media (max-width: 1024px) {
  .leistung-block,
  .leistung-block--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leistung-block--reverse .leistung-image,
  .leistung-block--reverse .leistung-text {
    order: unset;
  }

  .leistung-image img {
    height: 380px;
  }

  .floating-img {
    right: 1rem;
    bottom: -1rem;
    width: 35%;
  }

  .ueber-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ueber-image-wrap > img {
    height: 420px;
  }

  .ueber-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .preise-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-header {
    position: static;
  }

  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
  }

  .galerie-item--wide {
    grid-column: span 2;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  .main-nav,
  .header-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }

  .hero-trust {
    gap: 0.75rem;
  }

  .ueber-creds {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.25rem;
  }

  .cred-item {
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .cred-item strong { flex-shrink: 0; }

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .galerie-item img {
    height: 160px;
  }

  .galerie-item--wide img {
    height: 160px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  /* Show sticky WhatsApp on mobile */
  .whatsapp-sticky {
    display: flex;
  }

  /* Add bottom padding for sticky WhatsApp */
  .site-footer {
    padding-bottom: 5rem;
  }
}

/* ===========================
   LIGHTBOX
   =========================== */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

#lightbox.active {
  display: flex;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 8, 0.92);
}

.lb-img-wrap {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 960px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  display: block;
}

.lb-caption {
  color: #A89080;
  font-size: var(--small);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}

.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.lb-close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-prev,
  .lb-next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* ===========================
   PARTNER HINT
   =========================== */
.partner-hint {
  background: var(--bg-alt);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.partner-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.partner-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: var(--h3);
  color: var(--text);
  line-height: var(--lh-heading);
}

.partner-text p {
  color: var(--text-muted);
  max-width: 42ch;
}

.btn-outline-dark {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid var(--text);
  color: var(--text);
  text-decoration: none;
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--bg);
}

@media (max-width: 768px) {
  .partner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-outline-dark {
    align-self: stretch;
    text-align: center;
  }
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
  background: var(--bg-dark);
  padding: 3rem 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 2.5rem;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: var(--small);
  color: #A89080;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.12);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 96px 0 112px;
  background: var(--bg-alt);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.testi-card--accent {
  background: var(--bg-dark);
  border-color: var(--brand-dark);
}

.testi-card--accent .testi-text {
  color: #C8B8AE;
}

.testi-card--accent .testi-name {
  color: var(--white);
}

.testi-card--accent .testi-service {
  color: var(--accent);
}

.testi-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.testi-text {
  font-size: var(--body);
  line-height: var(--lh-body);
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  gap: 0.5rem;
}

.testi-card--accent .testi-author {
  border-top-color: rgba(255,255,255,0.1);
}

.testi-name {
  font-weight: 700;
  font-size: var(--small);
  color: var(--text);
}

.testi-service {
  font-size: var(--small);
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
}

.testi-source {
  text-align: center;
  margin-top: 2rem;
  font-size: var(--small);
  color: var(--text-muted);
  opacity: 0.7;
}

/* ===========================
   TRUST MINI (Kontakt)
   =========================== */
.trust-mini {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.trust-mini span {
  font-size: var(--small);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===========================
   RESPONSIVE – TRUST
   =========================== */
@media (max-width: 768px) {
  .stats-inner {
    gap: 0;
  }

  .stat-item {
    padding: 1rem 1.5rem;
    flex: 1 1 40%;
  }

  .stat-divider {
    display: none;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-card--accent {
    order: -1;
  }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .leistung-image img {
    height: 280px;
  }

  .floating-img {
    display: none;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .galerie-item--wide {
    grid-column: span 1;
  }

  .galerie-item img,
  .galerie-item--wide img {
    height: 220px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.4rem;
  }
}
