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

:root {
  --black: #080808;
  --dark: #111111;
  --cream: #f4f4f1;
  --cream-light: #f4f4f1;
  --blush: #847a72;
  --blush-light: #9c9289;
  --greige: #ccc6c1;
  --text-dark: #151111;
  --font-display: 'Ivy Ora', 'Cormorant Garamond', Georgia, serif;
  --font-display-medium: 'Ivy Ora Display', 'Bodoni Moda', Georgia, serif;
  --font-body: 'Ivy Ora Body', 'Jost', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body { background: var(--black); font-family: var(--font-body); color: var(--cream); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ── NAV ──
   Startet transparent mit heller Schrift (über dem dunklen Hero).
   Nach dem Scrollen (.is-scrolled) erscheint der helle, blurry Balken
   mit dunkler Schrift. */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(244,244,241,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(21,17,17,0.06);
}
.nav-logo { line-height: 0; display: inline-block; }
.nav-logo img { height: 60px; width: auto; display: block; transition: filter 0.4s var(--ease); }
.nav.is-scrolled .nav-logo img { filter: brightness(0); opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 48px; list-style: none; padding-right: clamp(20px,4vw,60px); }
.nav-link { font-family: var(--font-body); font-size: 22px; font-weight: 300; letter-spacing: 0.05em; color: var(--cream); position: relative; padding: 4px 0; transition: color 0.3s; }
.nav.is-scrolled .nav-link { color: var(--text-dark); }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--blush); transition: width 0.5s var(--ease); }
.nav-link:hover { color: var(--blush); }
.nav-link:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 8px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 28px; height: 1px; background: var(--cream); transition: all 0.4s var(--ease); }
.nav.is-scrolled .nav-toggle span { background: var(--text-dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); background: var(--cream); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); background: var(--cream); }


/* ── HERO (Startseite) ── */
.hero { position: relative; height: 100vh; max-height: 100vh; display: flex; flex-direction: column; color: #fff; overflow: hidden; background: var(--black); }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 68%; transform: scale(1.06); will-change: transform; }
.hero-dark-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,7,7,0.5) 0%, rgba(8,7,7,0.32) 24%, rgba(8,7,7,0.4) 55%, rgba(8,7,7,0.72) 100%); }
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 105px 26px 70px; min-height: 0; }
.hero-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em; font-size: clamp(35px, 5.4vw, 80px); line-height: 1.05; color: var(--cream); }
.hero-subtitle { font-family: var(--font-display); font-weight: 100; font-style: italic; text-transform: uppercase; font-size: clamp(35px, 5.7vw, 75px); line-height: 1.15; margin-top: 0.3em; color: var(--cream); }
.hero-sub-line { margin-top: 32px; font-family: var(--font-body); font-weight: 500; font-size: clamp(15px, 1.3vw, 17px); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,244,241,0.92); }
.hero-scroll { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 0 auto 46px; flex-shrink: 0; color: rgba(244,244,241,0.85); }
.hero-scroll-line { width: 1px; height: 46px; background: currentColor; opacity: 0.6; animation: tfScrollLine 2.2s ease-in-out infinite; transform-origin: top; }
.hero-scroll-label { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; }
.hero-cursor { display: inline-block; margin-left: 0.05em; transition: opacity 0.15s linear; }
@keyframes tfScrollLine { 0%{ transform: scaleY(0); opacity:0; } 35%{ transform: scaleY(1); opacity:0.6; } 70%{ transform: scaleY(1); opacity:0.6; } 100%{ transform: scaleY(0); opacity:0; transform-origin: bottom; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── INTRO (Zitat/Willkommen) ── */
.intro-section { background: var(--cream-light); padding: clamp(79px, 10vw, 140px) 26px; text-align: center; }
.intro-quote { max-width: 900px; margin: 0 auto; font-family: var(--font-display); font-weight: 400; font-size: clamp(25px, 3.4vw, 40px); line-height: 1.35; color: var(--text-dark); }
.intro-text { margin: 39px auto 0; max-width: 620px; font-family: var(--font-body); font-weight: 300; font-size: 20px; line-height: 1.75; color: rgba(21,17,17,0.68); }

/* ── ABOUT-TEASER ── */
.about-section { background: var(--greige); padding: clamp(88px, 10vw, 140px) clamp(26px, 6vw, 88px); }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(44px, 6vw, 96px); align-items: center; }
.about-img-wrap { box-shadow: 0 30px 60px -20px rgba(21,17,17,0.35); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); display: block; transition: transform 0.7s var(--ease); }
.about-img-wrap:hover img { transform: scale(1.045); }
.about-eyebrow { font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dark); opacity: 0.75; margin-bottom: 25px; display: block; }
.about-heading { font-family: var(--font-display); font-weight: 400; font-size: clamp(33px, 4vw, 51px); line-height: 1.2; color: var(--text-dark); margin-bottom: 28px; }
.about-heading em { font-style: italic; }
.about-body { font-family: var(--font-body); font-weight: 300; font-size: 20px; line-height: 1.75; color: #3a3430; max-width: 46ch; margin-bottom: 42px; }
.cta-btn { display: inline-flex; align-items: center; gap: 16px; font-family: var(--font-body); font-weight: 600; font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); border-bottom: 1.5px solid var(--text-dark); padding-bottom: 5px; background: none; transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease; }
.cta-btn:hover { background: none; color: var(--blush); border-color: var(--blush); gap: 23px; }

/* ── BLOG-TEASER ── */
.blog-section { background: var(--cream-light); padding: clamp(105px, 12vw, 158px) clamp(26px, 6vw, 88px) clamp(123px, 12vw, 158px); }
.blog-heading { font-family: var(--font-display-medium); font-style: italic; font-weight: 500; font-size: clamp(60px, 8.5vw, 114px); text-align: center; color: var(--text-dark); position: relative; z-index: 2; max-width: 1200px; margin: 0 auto clamp(-79px, -5vw, -53px); pointer-events: none; }
.blog-heading em { font-style: italic; }
.blog-cards { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; }
.blog-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; margin-bottom: clamp(158px, 17vw, 245px); }
.blog-cards > .blog-card:first-child { margin-top: clamp(24px, 3vw, 40px); }
.blog-cards > .blog-card:last-child { margin-bottom: 0; }
.blog-card.reverse .blog-card-image { order: 2; }
.blog-card.reverse .blog-card-meta { order: 1; }
.blog-card-meta { flex: 0 1 clamp(240px, 22vw, 320px); }
.blog-card-image { position: relative; min-height: 320px; }
.blog-card-image .img-main { width: 100%; max-width: 460px; aspect-ratio: 4/5; box-shadow: 0 25px 50px -18px rgba(21,17,17,0.3); overflow: hidden; display: block; transition: transform 0.7s var(--ease); }
.blog-card-image .img-main img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); display: block; }
.blog-card-image:hover .img-main img { transform: scale(1.03); }
.blog-card-image .img-detail { width: 42%; aspect-ratio: 3/4; position: absolute; left: -11%; bottom: -12%; box-shadow: 0 20px 40px -15px rgba(21,17,17,0.35); overflow: hidden; display: block; }
.blog-card.reverse .img-detail { left: auto; right: -11%; }
.blog-card-image .img-detail img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); display: block; }
.blog-category { font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush); margin-bottom: 16px; display: block; }
.blog-title { font-family: var(--font-display); font-size: clamp(30px, 3vw, 40px); font-weight: 400; line-height: 1.25; color: var(--text-dark); margin-bottom: 19px; transition: color 0.4s ease; }
.blog-card:hover .blog-title { color: var(--blush); }
.blog-excerpt { font-family: var(--font-body); font-weight: 300; font-size: 19px; line-height: 1.7; color: rgba(21,17,17,0.72); margin-bottom: 28px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 16px; font-family: var(--font-body); font-weight: 600; font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); border-bottom: 1.5px solid var(--text-dark); padding-bottom: 5px; transition: color 0.3s, border-color 0.3s; }
.blog-read-more:hover { color: var(--blush); border-color: var(--blush); gap: 23px; }
.blog-all-link { text-align: center; margin-top: clamp(88px, 9vw, 123px); }
.blog-all-link a { font-family: var(--font-body); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blush); border-bottom: 1px solid var(--blush); padding-bottom: 5px; transition: opacity 0.25s ease; }
.blog-all-link a:hover { opacity: 0.65; }

@media (max-width: 860px) {
  .blog-heading { margin-bottom: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card.reverse .blog-card-image { order: initial; }
  .blog-card.reverse .blog-card-meta { order: initial; }
  .blog-card-meta { flex-basis: auto; width: 100%; }
  .blog-card-image { margin-bottom: 64px; }
  .blog-card-image .img-main { margin: 0 auto !important; }
  .blog-card-image .img-detail { left: 4% !important; right: auto !important; }
}

/* ── BLOG ÜBERSICHT ──
   (Hinweis: Die eigentlich aktiven Regeln für .blog-post-cat/-title/
   -excerpt/-link/-meta stehen weiter unten unter "BLOG POST CORRECT
   LAYOUT" — dort ist auch die Grid/Mobile-Logik korrekt. Ein doppelter,
   überschriebener Block wurde hier entfernt.) */

/* ── ARTIKEL ── */
.article-wrap { display: grid; grid-template-columns: 1fr 340px; gap: clamp(40px,5vw,80px); max-width: 1100px; margin: 0 auto; padding: clamp(100px,12vw,160px) clamp(24px,5vw,60px) clamp(60px,8vw,100px); }
.article-body { min-width: 0; }
.article-cat { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush); font-weight: 300; margin-bottom: 16px; display: block; }
.article-title { font-family: var(--font-display); font-size: clamp(32px,5vw,56px); font-weight: 400; line-height: 1.15; color: var(--cream); margin-bottom: 32px; }.article-lead { font-family: var(--font-display); font-style: italic; font-size: clamp(18px,2vw,24px); font-weight: 400; line-height: 1.6; color: rgba(244,244,241,0.8); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(244,244,241,0.1); }
.article-content p { font-family: var(--font-body); font-size: 19px; font-weight: 300; line-height: 1.85; color: rgba(244,244,241,0.75); margin-bottom: 24px; }
.article-content h2 { font-family: var(--font-display); font-size: clamp(24px,2.8vw,34px); font-weight: 400; color: var(--cream); margin: 40px 0 16px; }
.article-sidebar { padding-top: 8px; }
.sidebar-author { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(244,244,241,0.08); }
.sidebar-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center top; }
.sidebar-label { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,244,241,0.45); font-weight: 500; display: block; margin-bottom: 6px; }
.sidebar-value { font-family: var(--font-display); font-size: 18px; color: var(--cream); }
.sidebar-meta { margin-bottom: 24px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 13px; font-weight: 300; letter-spacing: 0.08em; color: rgba(244,244,241,0.5); margin-top: 40px; transition: color 0.3s; }
.back-link:hover { color: var(--blush-light); }

/* ── LEGAL PAGES ── */
.page-wrap { max-width: 800px; margin: 0 auto; padding: clamp(120px,14vw,180px) clamp(24px,6vw,60px) clamp(80px,10vw,120px); }
.page-label { font-family: var(--font-body); font-size: 12px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); margin-bottom: 20px; display: block; }
.page-title { font-family: var(--font-display); font-size: clamp(36px,5vw,64px); font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: clamp(40px,6vw,70px); }
.page-divider { width: 40px; height: 1px; background: rgba(244,244,241,0.2); margin-bottom: clamp(40px,6vw,70px); }
.legal-section { margin-bottom: 48px; }
.legal-section h2 { font-family: var(--font-display); font-size: clamp(18px,2vw,24px); font-weight: 400; color: var(--cream); margin-bottom: 16px; }
.legal-section p { font-family: var(--font-body); font-size: clamp(14px,1.5vw,16px); font-weight: 300; line-height: 1.85; color: rgba(244,244,241,0.65); margin-bottom: 12px; }
.legal-section a { color: var(--blush-light); border-bottom: 1px solid rgba(156,146,137,0.3); transition: border-color 0.3s; }
.legal-section a:hover { border-color: var(--blush); }
.legal-section ul { list-style: none; margin: 12px 0 16px 0; }
.legal-section ul li { font-family: var(--font-body); font-size: clamp(14px,1.5vw,16px); font-weight: 300; line-height: 1.85; color: rgba(244,244,241,0.65); padding-left: 16px; position: relative; margin-bottom: 6px; }
.legal-section ul li::before { content: '–'; position: absolute; left: 0; color: var(--blush); }

/* ── BREADCRUMB ── */
.breadcrumb-wrap { background: var(--cream-light); padding: 16px clamp(24px,5vw,60px); width: 100%; margin-top: 80px; }
.breadcrumb { display: flex; align-items: center; gap: 0; list-style: none; }
.breadcrumb-item { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 300; color: rgba(21,17,17,0.45); display: flex; align-items: center; }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; margin: 0 10px; color: rgba(21,17,17,0.25); font-size: 13px; }
.breadcrumb-item a { color: rgba(21,17,17,0.45); display: flex; align-items: center; transition: color 0.25s; }
.breadcrumb-item a:hover { color: var(--blush); }
.breadcrumb-item.active { color: rgba(21,17,17,0.7); }
.breadcrumb-home { width: 14px; height: 14px; }

/* ── FOOTER ── */
.footer { background: var(--black); padding: clamp(60px,8vw,100px) 48px clamp(40px,4vw,60px); position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 10%, var(--blush) 50%, transparent 90%); opacity: 0.2; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; align-items: start; max-width: 1200px; margin: 0 auto; }
.footer-left { display: flex; flex-direction: column; gap: 16px; }
.footer-label { font-family: var(--font-body); font-size: 16px; font-weight: 400; letter-spacing: 0.08em; color: var(--cream); }
.footer-email { font-family: var(--font-body); font-size: 17px; font-weight: 300; color: var(--blush-light); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(132,122,114,0.3); transition: text-decoration-color 0.3s; }
.footer-email:hover { text-decoration-color: var(--blush); }
.footer-social { display: flex; gap: 16px; margin-top: 8px; }
.footer-social-icon { width: 36px; height: 36px; border: 1px solid rgba(244,244,241,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream); transition: all 0.4s var(--ease); }
.footer-social-icon:hover { border-color: var(--blush); background: var(--blush); color: var(--black); transform: translateY(-2px); }
.footer-brand { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); line-height: 1.2; text-align: center; }
.footer-logo-img { height: 64px; width: auto; display: block; margin: 0 auto; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-link { font-family: var(--font-body); font-size: 17px; font-weight: 300; color: rgba(244,244,241,0.7); transition: color 0.3s; }
.footer-link:hover { color: var(--blush-light); }
.footer-bottom { text-align: center; margin-top: clamp(40px,6vw,80px); padding-top: 24px; border-top: 1px solid rgba(244,244,241,0.06); }
.footer-copy { font-family: var(--font-body); font-size: 15px; font-weight: 300; color: rgba(244,244,241,0.3); letter-spacing: 0.05em; }

/* ── MOBILE ── */
@media (max-width: 860px) {
  .nav { padding: 16px 24px; background: transparent; }
  .nav-links { display: none; position: fixed; inset: 0; background: var(--black); background-color: var(--black); opacity: 1; backdrop-filter: none; -webkit-backdrop-filter: none; flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 24px; }
  .nav-toggle { display: flex; z-index: 201; }
  .hero-inner { padding: 105px 26px 53px; }
  .about-section { padding: 61px 26px; }
  .blog-card-meta { text-align: left; }
  .blog-post { grid-template-columns: 1fr; }
  .blog-post.reverse { direction: ltr; }
  .article-wrap { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-left { align-items: center; }
  .footer-right { align-items: center; }
}
/* NOTE: page-ueber-mich.php defines its own .hero / .hero-bg / .hero-overlay
   rules in a local <style> tag scoped to that page, so it is unaffected by
   the sitewide .hero rules above (front page hero). Kept intentionally
   separate since that page's hero uses a different layout (centered, no
   scroll indicator, no parallax). */
/* ── SPLIT SECTIONS ── */
.section { padding: clamp(80px, 9vw, 120px) clamp(36px, 7vw, 100px); }
.section--cream { background: var(--cream-light); }
.section--black { background: #080808; }
.split-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 8vw, 120px); align-items: center;
}
.split-inner.reversed { direction: rtl; }
.split-inner.reversed > * { direction: ltr; }
.label {
  display: block; font-size: 10px; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(21,17,17,0.36);
  font-weight: 300; margin-bottom: 16px;
}
.section--black h2 { color: var(--cream); }
.divider-h {
  width: 44px; height: 1px;
  background: rgba(132,122,114,0.5); margin: 26px 0;
}
p.body {
  font-size: 16px; font-weight: 300; line-height: 2.0;
  color: rgba(21,17,17,0.65); margin-bottom: 18px;
}
.section--black p.body { color: rgba(244,244,241,0.48); }
/* ── IMAGE ── */
.img-frame { position: relative; }
.img-ph {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, #ccc6c1, #b8b0a6);
  display: flex; align-items: center; justify-content: center;
}
.img-ph span {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(21,17,17,0.2);
}
/* ── CLOSING (Heimkehr) ── */
.closing-section {
  background: #080808;
  padding: clamp(80px, 10vw, 130px) clamp(36px, 10vw, 180px);
  text-align: center;
}
.closing-label {
  font-size: 10px; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(244,244,241,0.3);
  font-weight: 300; margin-bottom: 20px;
}
.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px); font-weight: 400;
  color: var(--cream); line-height: 1.3;
  max-width: 700px; margin: 0 auto;
}
.closing-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(244,244,241,0.44); line-height: 1.9;
  max-width: 540px; margin: 28px auto 52px;
}
.sig-list { max-width: 480px; margin: 0 auto 64px; text-align: left; }
.sig-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(244,244,241,0.07);
}
.sig-item:first-child { border-top: 1px solid rgba(244,244,241,0.07); }
.sig-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--blush); flex-shrink: 0; margin-top: 10px;
}
h3.sig-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 400;
  color: var(--cream); display: block; margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.sig-desc {
  font-size: 14px; font-weight: 300;
  color: rgba(244,244,241,0.4); line-height: 1.7;
}
/* ── CONTACT ── */
.contact-section {
  background: var(--cream-light);
  padding: clamp(80px, 10vw, 120px) clamp(36px, 10vw, 180px);
  text-align: center;
}
.contact-label {
  font-size: 14px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-dark); opacity: 0.75;
  font-weight: 500; margin-bottom: 20px;
}
.contact-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  font-size: clamp(33px, 4vw, 51px);
  margin-bottom: 20px; line-height: 1.25;
}
.contact-section h2 em { font-style: italic; }
.contact-sub {
  font-size: 20px; font-weight: 300;
  color: #3a3430; margin-bottom: 52px; line-height: 1.75;
}
.contact-form { max-width: 580px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; color: rgba(21,17,17,0.55);
}
.form-group input, .form-group textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(21,17,17,0.2);
  padding: 12px 0; font-family: var(--font-body);
  font-size: 18px; font-weight: 300; color: var(--text-dark);
  outline: none; transition: border-color 0.25s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(21,17,17,0.3); }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--blush); }
.form-group textarea { resize: none; height: 120px; line-height: 1.7; }
.form-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 52px;
  border: 1.5px solid var(--text-dark);
  font-family: var(--font-body); font-size: 15px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--text-dark);
  cursor: pointer; background: transparent;
  transition: border-color 0.3s, color 0.3s; margin-top: 12px;
}
.form-btn:hover { border-color: var(--blush); color: var(--blush); }
.form-feedback {
  max-width: 580px; margin: 0 auto 24px; padding: 14px 20px;
  font-size: 15px; font-weight: 400; text-align: left; border-radius: 2px;
  border: 1px solid rgba(132,122,114,0.4); color: var(--text-dark);
}
.form-feedback.success { background: rgba(132,122,114,0.12); }
.form-feedback.error { background: rgba(200,60,60,0.06); border-color: rgba(200,60,60,0.3); }

/* ── Contact Form 7 output — im gleichen Look wie die restlichen Felder ── */
.contact-form .wpcf7-form { max-width: 580px; margin: 0 auto; text-align: left; }
.contact-form .wpcf7-form p { margin-bottom: 20px; }
.contact-form .wpcf7-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; color: rgba(21,17,17,0.55);
}
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(21,17,17,0.2);
  padding: 12px 0; font-family: var(--font-body);
  font-size: 18px; font-weight: 300; color: var(--text-dark);
  outline: none; transition: border-color 0.25s; width: 100%;
  text-transform: none; letter-spacing: normal;
}
.contact-form .wpcf7-form input::placeholder,
.contact-form .wpcf7-form textarea::placeholder { color: rgba(21,17,17,0.3); }
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus { border-bottom-color: var(--blush); }
.contact-form .wpcf7-form textarea { resize: none; height: 120px; line-height: 1.7; }
.contact-form .wpcf7-form .wpcf7-submit {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 52px;
  border: 1.5px solid var(--text-dark);
  font-family: var(--font-body); font-size: 15px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--text-dark);
  cursor: pointer; background: transparent;
  transition: border-color 0.3s, color 0.3s; margin-top: 12px;
}
.contact-form .wpcf7-form .wpcf7-submit::after { content: '→'; margin-left: 4px; }
.contact-form .wpcf7-form .wpcf7-submit:hover { border-color: var(--blush); color: var(--blush); }
.contact-form .wpcf7-form .wpcf7-not-valid-tip { color: #a83c3c; font-size: 13px; font-weight: 400; margin-top: 6px; }
.contact-form .wpcf7-form .wpcf7-response-output {
  max-width: 580px; margin: 0 auto 24px; padding: 14px 20px;
  font-size: 15px; font-weight: 400; text-align: left; border-radius: 2px;
  border: 1px solid rgba(132,122,114,0.4); color: var(--text-dark);
}
.contact-form .wpcf7-form.sent .wpcf7-response-output { background: rgba(132,122,114,0.12); }
.contact-form .wpcf7-form.invalid .wpcf7-response-output,
.contact-form .wpcf7-form.failed .wpcf7-response-output,
.contact-form .wpcf7-form.aborted .wpcf7-response-output {
  background: rgba(200,60,60,0.06); border-color: rgba(200,60,60,0.3);
}
.contact-form .wpcf7-spinner { display: none; }
@media (max-width: 860px) {
  .hero { min-height: 70vh; }
  .split-inner { grid-template-columns: 1fr; gap: 44px; }
  .split-inner.reversed { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .closing-section, .contact-section { padding: 72px 28px; }
}
/* ── ARTICLE HERO ── */
.article-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.3) 60%, transparent 100%);
}
.article-hero-content {
  position: relative; z-index: 2;
  padding: clamp(40px,6vw,80px) clamp(24px,5vw,60px);
  max-width: 800px;
}
.article-hero .article-cat {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blush); font-weight: 300; margin-bottom: 16px; display: block;
}
.article-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px,5vw,64px);
  font-weight: 400; line-height: 1.1;
  color: var(--cream);
}

/* ── SINGLE POST ── */
.single-post body,
body.single-post { background: var(--cream-light); }
.article-wrap { background: var(--cream-light); }
.article-content p { color: rgba(21,17,17,0.75); }
.article-title { color: var(--text-dark); }
.article-lead { color: rgba(21,17,17,0.6); border-bottom-color: rgba(21,17,17,0.1); }
.back-link { color: rgba(21,17,17,0.5); }
.back-link:hover { color: var(--blush); }
.sidebar-value { color: var(--text-dark) !important; }
.sidebar-label { color: rgba(21,17,17,0.4) !important; }
.sidebar-author { border-bottom-color: rgba(21,17,17,0.08) !important; }

/* ── ARTICLE HERO FIXES ── */
.article-hero-content { text-align: center; width: 100%; max-width: 100%; padding: clamp(40px,6vw,80px) clamp(24px,5vw,60px); }
.article-hero-title { text-align: center; }
.article-hero .article-cat { text-align: center; }
.breadcrumb-wrap { margin-top: 0 !important; padding: 12px clamp(24px,5vw,60px); }
.article-wrap { padding-top: clamp(40px,4vw,60px); }

/* ── ARTICLE HERO CENTER FIX ── */
.article-hero {
  min-height: 80vh !important;
  align-items: center !important;
  justify-content: center !important;
}
.article-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(244,244,241,0.5);
  margin-top: 20px;
}
.article-hero-meta .meta-divider {
  width: 40px;
  height: 1px;
  background: rgba(244,244,241,0.25);
}

/* ── ARTICLE HERO SIZE FIX ── */
.article-hero {
  min-height: 50vh !important;
}


/* ── GUTENBERG EDITOR BACKGROUND ── */
.editor-styles-wrapper {
  background: var(--cream-light) !important;
  color: var(--text-dark) !important;
}
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper p {
  color: var(--text-dark) !important;
}

/* ── QUOTE STYLING ── */
.article-content blockquote,
.wp-block-quote {
  margin: 24px 0 !important;
  padding: 0 clamp(24px,4vw,48px) !important;
  border-left: none !important;
  text-align: center;
}
.article-content blockquote::before,
.wp-block-quote::before { display: none !important; }
.article-content blockquote p,
.wp-block-quote p {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: clamp(18px,2vw,22px) !important;
  line-height: 1.6 !important;
  color: var(--text-dark) !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.article-content blockquote cite,
.wp-block-quote cite,
.wp-block-quote .wp-block-quote__citation {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--blush);
  margin-top: 10px;
  text-transform: uppercase;
}

/* ── CUSTOM ZITAT SHORTCODE ── */
.tf-zitat {
  margin: 32px 0;
  padding: 8px 0 8px 24px;
  border-left: 1px solid rgba(132,122,114,0.5);
  text-align: left;
}
.tf-zitat p {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: clamp(15px,1.6vw,18px) !important;
  line-height: 1.7 !important;
  color: rgba(21,17,17,0.55) !important;
  margin: 0 !important;
}

/* ── BLOG HERO ── */
.blog-hero {
  background: var(--black);
  padding: clamp(80px,12vw,140px) clamp(24px,6vw,80px) clamp(60px,8vw,100px);
  text-align: center;
}
.blog-hero-label {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,244,241,0.45);
  display: block; margin-bottom: 20px;
}
.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px,10vw,120px);
  font-weight: 400; line-height: 1;
  color: var(--cream); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 20px;
}
.blog-hero-title em { font-style: italic; }
.blog-hero-sub {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 300;
  color: rgba(244,244,241,0.5);
  letter-spacing: 0.03em;
}

/* ── BLOG OVERVIEW ── */
.blog-overview {
  background: var(--cream-light);
  padding: clamp(60px,8vw,100px) clamp(40px,8vw,100px);
}
.blog-post-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-body); font-size: 14px;
  font-weight: 300; color: rgba(21,17,17,0.5);
  letter-spacing: 0.03em;
}
.blog-post-meta .meta-line {
  width: 30px; height: 1px;
  background: rgba(21,17,17,0.2);
  display: inline-block;
}
.blog-post-image img {
  width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(100%);
  display: block;
}

/* ── BLOG POST CORRECT LAYOUT ── */
.blog-post {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1100px; margin: 0 auto 80px;
  padding-bottom: 80px; border-bottom: 1px solid rgba(21,17,17,0.08);
}
.blog-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.blog-post.reverse { direction: rtl; }
.blog-post.reverse > * { direction: ltr; }
/* This 1fr/1fr rule is unconditional (not inside a media query), so on
   mobile it was overriding the earlier @media (max-width:860px) rule that
   stacks .blog-post to a single column — that's why the thumbnail looked
   squeezed next to the text on phones. Re-stacking it here for phones: */
@media (max-width: 860px) {
  .blog-post { grid-template-columns: 1fr; gap: 24px; }
  .blog-post.reverse { direction: ltr; }
}
.blog-post-image {
  width: 100%; aspect-ratio: 4/5 !important;
  max-height: none !important;
  background: linear-gradient(135deg, #ccc6c1, #b8b0a6);
  overflow: hidden;
}
.blog-post-image img {
  width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(100%); display: block;
  transition: transform 0.6s var(--ease);
}
.blog-post-image:hover img { transform: scale(1.04); }
.blog-post-cat {
  font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blush); font-weight: 500; margin-bottom: 16px; display: block;
}
.blog-post-title {
  font-family: var(--font-display); font-size: clamp(28px,3vw,38px);
  font-weight: 400; color: var(--text-dark); margin-bottom: 16px; line-height: 1.25;
}
.blog-post-title a { color: var(--text-dark); }
.blog-post-excerpt {
  font-size: 19px; font-weight: 300; color: rgba(21,17,17,0.65);
  line-height: 1.7; margin-bottom: 24px;
}
.blog-post-link {
  font-family: var(--font-body); font-weight: 600;
  font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dark); border-bottom: 1.5px solid rgba(21,17,17,0.35);
  padding-bottom: 4px; transition: border-color 0.3s, color 0.3s; display: inline-block;
}
.blog-post-link:hover { border-color: var(--blush); color: var(--blush); }
