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

:root {
  --black: #080808;
  --dark: #111111;
  --cream: #f0e8df;
  --cream-light: #f7f2ec;
  --blush: #c4a088;
  --blush-light: #d4b8a5;
  --text-dark: #1a1a1a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Public Sans', 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 ── */
.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: rgba(8,8,8,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196,160,136,0.08);
  transition: all 0.5s var(--ease);
}
.nav-logo { line-height: 0; display: inline-block; }
.nav-logo img { height: 48px; width: auto; display: block; }
.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: 18px; font-weight: 300; letter-spacing: 0.05em; color: var(--cream); position: relative; padding: 4px 0; transition: color 0.3s; }
.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-light); }
.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-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ── HERO ── */
.hero { position: relative; width: 100%; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--black); overflow: hidden; }
.hero-image-col { position: relative; height: 100vh; overflow: hidden; }
.hero-portrait-wrap { position: relative; width: 100%; height: 100%; }
.hero-portrait-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; }
.hero-portrait-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to top, var(--black) 0%, transparent 100%); }
.hero-portrait-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--black) 100%); z-index: 1; }
.hero-text-col { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,6vw,100px) clamp(40px,6vw,100px) clamp(40px,6vw,100px) 0; text-align: center; }
.hero-title { font-family: var(--font-display); font-size: clamp(56px,8vw,110px); font-weight: 400; letter-spacing: 0.06em; line-height: 1; color: var(--cream); text-transform: uppercase; margin-bottom: 0.3em; }
.hero-subtitle { font-family: 'enchanted', cursive; font-style: normal; font-weight: 400; font-size: clamp(28px,4vw,52px); color: var(--cream); letter-spacing: 0.02em; opacity: 0.9; line-height: 1.4; }

/* ── INTRO ── */
.intro-section { background: var(--cream-light); padding: clamp(60px,8vw,120px) clamp(40px,10vw,200px); text-align: center; display: flex; flex-direction: column; align-items: center; }
.intro-line-top { width: 1px; height: 60px; background: rgba(26,26,26,0.18); margin: 0 auto 48px; }
.intro-text { font-family: var(--font-body); font-size: clamp(15px,1.6vw,19px); font-weight: 300; line-height: 1.85; color: rgba(30,26,23,0.72); max-width: 620px; margin: 0 auto; letter-spacing: 0.01em; }
.intro-line-bottom { width: 40px; height: 1px; background: rgba(26,26,26,0.18); margin: 48px auto 0; }

/* ── ABOUT ── */
.about-section { position: relative; width: 100%; min-height: 80vh; overflow: hidden; }
.about-bg { position: absolute; inset: 0; background-color: #1a1a1a; background-size: cover; background-position: center 65%; background-repeat: no-repeat; }
.about-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,0.65) 0%, rgba(8,8,8,0.40) 50%, rgba(8,8,8,0.15) 100%); }
.about-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.about-content { position: relative; z-index: 2; max-width: 600px; padding: clamp(60px,8vw,120px) clamp(40px,8vw,100px); }
.about-eyebrow { font-family: var(--font-body); font-size: 14px; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blush); margin-bottom: 20px; display: block; }
.about-heading { font-family: var(--font-display); font-size: clamp(38px,5vw,64px); font-weight: 400; line-height: 1.15; color: var(--cream); margin-bottom: 28px; overflow-wrap: break-word; }
.about-heading em { font-style: italic; }
.about-body { font-family: var(--font-body); font-size: clamp(15px,1.6vw,18px); font-weight: 300; line-height: 1.8; color: rgba(240,232,223,0.82); margin-bottom: 40px; max-width: 480px; }
.cta-btn { display: inline-block; padding: 14px 36px; border: 1px solid var(--blush); font-family: var(--font-body); font-size: 14px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); background: transparent; transition: all 0.4s var(--ease); }
.cta-btn:hover { background: var(--blush); color: var(--black); border-color: var(--blush); }

/* ── BLOG PREVIEW ── */
.blog-section { background: var(--cream-light); padding: clamp(60px,8vw,100px) clamp(40px,8vw,100px); }
.blog-heading { font-family: var(--font-display); font-size: clamp(38px,5vw,64px); font-weight: 400; text-align: center; color: var(--text-dark); margin-bottom: clamp(40px,5vw,70px); letter-spacing: 0.02em; }
.blog-heading em { font-style: italic; }
.blog-card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; max-width: 900px; margin: 0 auto; }
.blog-card-image { aspect-ratio: 4/5; overflow: hidden; background: #2a2a2a; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); display: block; transition: transform 0.6s var(--ease); }
.blog-card-image:hover img { transform: scale(1.04); }
.blog-card-meta { display: flex; flex-direction: column; gap: 16px; }
.blog-category { font-family: var(--font-body); font-size: 13px; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); }
.blog-title { font-family: var(--font-display); font-size: clamp(24px,3vw,38px); font-weight: 400; line-height: 1.25; color: var(--text-dark); }
.blog-excerpt { font-family: var(--font-body); font-size: clamp(14px,1.5vw,17px); font-weight: 300; line-height: 1.75; color: rgba(26,26,26,0.75); }
.blog-read-more { display: inline-block; font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--blush); border-bottom: 1px solid var(--blush-light); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; }
.blog-read-more:hover { color: var(--text-dark); border-color: var(--text-dark); }
.blog-all-link { text-align: center; margin-top: clamp(40px,5vw,60px); }
.blog-all-link a { font-family: var(--font-body); font-size: 15px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); border-bottom: 1px solid rgba(26,26,26,0.3); padding-bottom: 2px; transition: opacity 0.3s; }
.blog-all-link a:hover { opacity: 0.5; }

/* ── BLOG ÜBERSICHT ── */
.blog-overview { background: var(--cream-light); padding: clamp(100px,12vw,160px) clamp(40px,8vw,100px) clamp(60px,8vw,100px); }
.blog-overview-title { font-family: var(--font-display); font-size: clamp(42px,6vw,72px); font-weight: 400; color: var(--text-dark); margin-bottom: clamp(50px,7vw,80px); letter-spacing: 0.02em; }
.blog-overview-title em { font-style: italic; }
.blog-posts { display: flex; flex-direction: column; gap: clamp(50px,7vw,90px); }
.blog-post { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; padding-bottom: clamp(50px,7vw,90px); border-bottom: 1px solid rgba(26,26,23,0.08); }
.blog-post:last-child { border-bottom: none; padding-bottom: 0; }
.blog-post.reverse { direction: rtl; }
.blog-post.reverse > * { direction: ltr; }
.blog-post-image { width: 100%; aspect-ratio: 4/5; background: #d0c5bc; 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: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--blush); font-weight: 300; margin-bottom: 14px; display: block; }
.blog-post-title { font-family: var(--font-display); font-size: clamp(26px,3vw,40px); font-weight: 400; line-height: 1.2; color: var(--text-dark); margin-bottom: 18px; }
.blog-post-excerpt { font-family: var(--font-body); font-size: clamp(14px,1.5vw,16px); font-weight: 300; line-height: 1.8; color: rgba(26,26,23,0.7); margin-bottom: 24px; }
.blog-post-link { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--blush); border-bottom: 1px solid rgba(196,160,136,0.4); padding-bottom: 2px; display: inline-block; transition: color 0.3s; }
.blog-post-link:hover { color: var(--text-dark); }

/* ── 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(240,232,223,0.8); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(240,232,223,0.1); }
.article-content p { font-family: var(--font-body); font-size: clamp(15px,1.6vw,17px); font-weight: 300; line-height: 1.9; color: rgba(240,232,223,0.75); margin-bottom: 24px; }
.article-content h2 { font-family: var(--font-display); font-size: clamp(22px,2.5vw,32px); 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(240,232,223,0.08); }
.sidebar-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center top; }
.sidebar-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,232,223,0.4); font-weight: 300; display: block; margin-bottom: 4px; }
.sidebar-value { font-family: var(--font-display); font-size: 16px; 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(240,232,223,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(240,232,223,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(240,232,223,0.65); margin-bottom: 12px; }
.legal-section a { color: var(--blush-light); border-bottom: 1px solid rgba(212,184,165,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(240,232,223,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(30,26,23,0.45); display: flex; align-items: center; }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; margin: 0 10px; color: rgba(30,26,23,0.25); font-size: 13px; }
.breadcrumb-item a { color: rgba(30,26,23,0.45); display: flex; align-items: center; transition: color 0.25s; }
.breadcrumb-item a:hover { color: var(--blush); }
.breadcrumb-item.active { color: rgba(30,26,23,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: 13px; font-weight: 400; letter-spacing: 0.08em; color: var(--cream); }
.footer-email { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--blush-light); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(196,160,136,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(240,232,223,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-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-link { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: rgba(240,232,223,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(240,232,223,0.06); }
.footer-copy { font-family: var(--font-body); font-size: 12px; font-weight: 300; color: rgba(240,232,223,0.3); letter-spacing: 0.05em; }

/* ── MOBILE ── */
@media (max-width: 860px) {
  .nav { padding: 16px 24px; backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--black); }
  .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 { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-image-col { height: 55vh; }
  .hero-text-col { padding: 30px 30px 50px; }
  .about-content { padding: 50px 30px; }
  .blog-card { grid-template-columns: 1fr; max-width: 480px; }
  .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-right { align-items: center; }
}
/* NOTE: an unscoped duplicate .hero/.hero-overlay/.hero-content/.hero-sub
   block used to sit here — a leftover copy of the "Über mich" page's inline
   hero styles. Loaded sitewide via main.css, it silently overrode the
   homepage's grid-based hero (.hero-image-col / .hero-text-col), including
   the mobile @media rule, which is why the headline overflowed off-screen
   on phones. Removed. page-ueber-mich.php is unaffected since it re-declares
   those same classes in its own <style> tag scoped to that page. */
/* ── 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(30,26,23,0.36);
  font-weight: 300; margin-bottom: 16px;
}
.section--black h2 { color: var(--cream); }
.divider-h {
  width: 44px; height: 1px;
  background: rgba(196,160,136,0.5); margin: 26px 0;
}
p.body {
  font-size: 16px; font-weight: 300; line-height: 2.0;
  color: rgba(30,26,23,0.65); margin-bottom: 18px;
}
.section--black p.body { color: rgba(240,232,223,0.48); }
/* ── IMAGE ── */
.img-frame { position: relative; }
.img-ph {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, #d8cec4, #c9bfb5);
  display: flex; align-items: center; justify-content: center;
}
.img-ph span {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(30,26,23,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(240,232,223,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(240,232,223,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(240,232,223,0.07);
}
.sig-item:first-child { border-top: 1px solid rgba(240,232,223,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(240,232,223,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: 10px; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(30,26,23,0.36);
  font-weight: 300; margin-bottom: 18px;
}
.contact-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 14px; line-height: 1.25;
}
.contact-section h2 em { font-style: italic; }
.contact-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(30,26,23,0.5); margin-bottom: 52px; line-height: 1.8;
}
.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: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 300; color: rgba(30,26,23,0.45);
}
.form-group input, .form-group textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(30,26,23,0.2);
  padding: 12px 0; font-family: var(--font-body);
  font-size: 15px; 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(30,26,23,0.25); }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--blush); }
.form-group textarea { resize: none; height: 120px; line-height: 1.8; }
.form-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 52px;
  border: 1px solid rgba(30,26,23,0.25);
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 300; 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); }
/* Contact Form 7 output styling — matches the .form-btn / feedback look */
.wpcf7-form .wpcf7-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 52px;
  border: 1px solid rgba(30,26,23,0.25);
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 300; color: var(--text-dark);
  cursor: pointer; background: transparent;
  transition: border-color 0.3s, color 0.3s; margin-top: 12px;
}
.wpcf7-form .wpcf7-submit:hover { border-color: var(--blush); color: var(--blush); }
.wpcf7-form .wpcf7-not-valid-tip { color: #a83c3c; font-size: 12px; font-weight: 300; margin-top: 6px; }
.wpcf7-form .wpcf7-response-output {
  max-width: 580px; margin: 0 auto 28px; padding: 14px 20px;
  font-size: 14px; font-weight: 300; text-align: left; border-radius: 2px;
  border: 1px solid rgba(196,160,136,0.4); color: var(--text-dark);
}
.wpcf7-form.sent .wpcf7-response-output { background: rgba(196,160,136,0.12); }
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
  background: rgba(200,60,60,0.06); border-color: rgba(200,60,60,0.3);
}
.wpcf7-spinner { display: none; }
.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(30,26,23,0.75); }
.article-title { color: var(--text-dark); }
.article-lead { color: rgba(30,26,23,0.6); border-bottom-color: rgba(30,26,23,0.1); }
.back-link { color: rgba(30,26,23,0.5); }
.back-link:hover { color: var(--blush); }
.sidebar-value { color: var(--text-dark) !important; }
.sidebar-label { color: rgba(30,26,23,0.4) !important; }
.sidebar-author { border-bottom-color: rgba(30,26,23,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(240,232,223,0.5);
  margin-top: 20px;
}
.article-hero-meta .meta-divider {
  width: 40px;
  height: 1px;
  background: rgba(240,232,223,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(196,160,136,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(30,26,23,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: 11px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,232,223,0.4);
  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: clamp(13px,1.4vw,15px); font-weight: 300;
  color: rgba(240,232,223,0.45);
  letter-spacing: 0.06em;
}

/* ── 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: 12px;
  font-weight: 300; color: rgba(30,26,23,0.45);
  letter-spacing: 0.06em;
}
.blog-post-meta .meta-line {
  width: 30px; height: 1px;
  background: rgba(30,26,23,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(30,26,23,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, #d0c5bc, #c0b5ab);
  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: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--blush); font-weight: 300; margin-bottom: 14px; display: block;
}
.blog-post-title {
  font-family: var(--font-display); font-size: clamp(22px,2.5vw,34px);
  font-weight: 400; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3;
}
.blog-post-title a { color: var(--text-dark); }
.blog-post-excerpt {
  font-size: 15px; font-weight: 300; color: rgba(30,26,23,0.6);
  line-height: 1.8; margin-bottom: 24px;
}
.blog-post-link {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dark); border-bottom: 1px solid rgba(30,26,23,0.25);
  padding-bottom: 2px; transition: border-color 0.3s, color 0.3s; display: inline-block;
}
.blog-post-link:hover { border-color: var(--blush); color: var(--blush); }
