/*
Theme Name: Daniela Hölzl
Theme URI: https://naturheilpraxis.eu
Author: Daniela Hölzl
Author URI: https://naturheilpraxis.eu
Description: Minimales Custom Theme für Daniela Hölzl – Heilpraktikerin & Ernährungsberaterin
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: daniela-hoelzl
*/

/* ============================================================
   FONTS via Bunny Fonts (DSGVO-konform, kein Google-Server)
   Eingebunden über functions.php – hier kein @import nötig
   ============================================================ */

/* ============================================================
   CSS VARIABLEN
   ============================================================ */
:root {
  --cream: #f7f2eb;
  --sand: #e8dcc8;
  --terracotta: #c17b5c;
  --sage: #8fa68d;
  --sage-light: #b5c8b3;
  --dusty-rose: #d4a5a0;
  --dusty-rose-light: #e8c8c4;
  --warm-brown: #6b4f3a;
  --dark: #2c2016;
  --mid: #5a4535;
  --text: #3d2d1e;
  --text-light: #7a6555;
}

/* ============================================================
   RESET & BASIS
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }
body {
  font-family: 'DM Sans', Georgia, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); }

/* ============================================================
   WORDPRESS CORE KLASSEN (Pflicht)
   ============================================================ */
.wp-block-image { margin: 2em 0; }
.alignleft { float: left; margin: 0 2em 1em 0; }
.alignright { float: right; margin: 0 0 1em 2em; }
.aligncenter { margin: 0 auto; text-align: center; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(247,242,235,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193,123,92,0.15);
}
.site-branding a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--warm-brown);
  line-height: 1.2;
  text-decoration: none;
}
.site-branding .tagline {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-top: 2px;
}
.main-navigation ul {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.main-navigation ul li a {
  text-decoration: none;
  font-size: 13px;
  color: var(--mid);
  transition: color 0.2s;
}
.main-navigation ul li a:hover { color: var(--terracotta); }
.main-navigation ul li.nav-cta a {
  background: var(--terracotta);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
}
.main-navigation ul li.nav-cta a:hover { background: var(--warm-brown); }

/* Hamburger Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-brown);
  transition: all 0.3s;
}

/* ============================================================
   HAUPTINHALT
   ============================================================ */
.site-content { padding-top: 72px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .wp-block-button__link {
  background: var(--terracotta);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover, .wp-block-button__link:hover {
  background: var(--warm-brown);
  color: #fff;
  transform: translateY(-1px);
}
.btn-secondary {
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--terracotta); color: #fff; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 20px; }
h2 { font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 12px; }
h4 { font-size: clamp(17px, 2vw, 22px); margin-bottom: 10px; }
p { margin-bottom: 16px; line-height: 1.85; color: var(--text-light); font-weight: 300; }
p strong { color: var(--text); font-weight: 500; }
em { font-style: italic; color: var(--terracotta); }

/* ============================================================
   BLOG: ARCHIV (Übersicht aller Artikel)
   ============================================================ */
.blog-header {
  background: linear-gradient(135deg, var(--sand), var(--cream));
  padding: 80px 72px 60px;
  text-align: center;
}
.blog-header .stag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: block;
}
.blog-header h1 { margin-bottom: 12px; }
.blog-header p { max-width: 560px; margin: 0 auto; font-size: 15px; }

.posts-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 72px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(193,123,92,0.12);
  box-shadow: 0 4px 24px rgba(107,79,58,0.05);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,79,58,0.1);
}
.post-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dusty-rose-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--terracotta);
  opacity: 0.4;
}
.post-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.post-card-category {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
}
.post-card-body h2 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.post-card-body h2 a {
  text-decoration: none;
  color: var(--dark);
  transition: color 0.2s;
}
.post-card-body h2 a:hover { color: var(--terracotta); }
.post-card-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}
.post-card-meta {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(193,123,92,0.1);
  padding-top: 14px;
  margin-top: auto;
}
.post-card-readmore {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
}
.post-card-readmore::after { content: ' →'; }

/* Pagination */
.pagination {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px 80px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination a, .pagination span {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(193,123,92,0.2);
  color: var(--text-light);
  transition: all 0.2s;
}
.pagination a:hover, .pagination .current {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

/* ============================================================
   BLOG: EINZELNER ARTIKEL
   ============================================================ */
.single-header {
  background: linear-gradient(135deg, var(--sand), var(--cream));
  padding: 80px 72px 60px;
  max-width: 860px;
  margin: 0 auto;
}
.single-header .stag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: block;
}
.single-header h1 { margin-bottom: 16px; }
.single-header .post-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.single-featured-image {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 72px;
}
.single-featured-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(107,79,58,0.1);
}
.single-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 72px 80px;
}
.single-content p { font-size: 16px; line-height: 1.9; margin-bottom: 20px; }
.single-content h2 {
  font-size: 30px;
  margin: 40px 0 16px;
  color: var(--dark);
}
.single-content h3 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--warm-brown);
}
.single-content ul, .single-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.single-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 8px;
}
.single-content blockquote {
  background: linear-gradient(135deg, rgba(193,123,92,0.07), rgba(143,166,141,0.07));
  border-left: 3px solid var(--terracotta);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--warm-brown);
  line-height: 1.6;
}
.single-content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-content img {
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 8px 28px rgba(107,79,58,0.08);
}

/* Artikel CTA Box */
.article-cta {
  background: linear-gradient(135deg, var(--dusty-rose-light), var(--sand));
  border-radius: 20px;
  padding: 36px 40px;
  margin: 48px 0;
  text-align: center;
}
.article-cta h3 { font-size: 24px; margin-bottom: 12px; }
.article-cta p { font-size: 14px; margin-bottom: 24px; }

/* Related Posts */
.related-posts {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 72px 80px;
}
.related-posts h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--dark);
  border-top: 1px solid rgba(193,123,92,0.15);
  padding-top: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(193,123,92,0.12);
  padding: 20px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}
.related-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,79,58,0.08);
}
.related-card .cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
  display: block;
}
.related-card h4 {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.3;
}

/* ============================================================
   STATISCHE SEITE (page.php)
   ============================================================ */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 72px 80px;
}
.page-content p { font-size: 15px; line-height: 1.9; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 72px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.2;
  margin-bottom: 12px;
}
.footer-logo span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  margin-top: 2px;
}
.footer-brand p { font-size: 12px; line-height: 1.8; max-width: 230px; color: rgba(255,255,255,0.7); }
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 13px;
  font-family: 'DM Sans', sans-serif;
}
.footer-col a, .footer-col ul li a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col ul { list-style: none; }
.footer-col a:hover, .footer-col ul li a:hover { color: #fff; }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); padding: 48px 36px 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 14px 20px; }
  .main-navigation { display: none; }
  .main-navigation.active { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 20px; border-bottom: 1px solid rgba(193,123,92,0.15); }
  .main-navigation.active ul { flex-direction: column; gap: 12px; }
  .menu-toggle { display: flex; }

  .blog-header { padding: 60px 20px 40px; }
  .posts-grid { grid-template-columns: 1fr; padding: 32px 20px 48px; gap: 20px; }
  .single-header { padding: 60px 20px 40px; }
  .single-featured-image { padding: 0 20px; }
  .single-content { padding: 36px 20px 60px; }
  .related-posts { padding: 0 20px 60px; }
  .related-grid { grid-template-columns: 1fr; }
  .page-content { padding: 40px 20px 60px; }
  .site-footer { padding: 44px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pagination { padding: 0 20px 60px; }
}

/* ============================================================
   STARTSEITE (front-page.php)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 72px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(193,123,92,0.1);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-pill::before { content: '♥'; font-size: 10px; }
.hero h1 {
  font-size: clamp(36px,4.2vw,60px);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 38px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(193,123,92,0.2);
}
.snum {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 33px;
  font-weight: 300;
  color: var(--terracotta);
  display: block;
  line-height: 1;
}
.slbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.hero-r {
  background: linear-gradient(140deg, var(--sand) 0%, var(--dusty-rose-light) 55%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-r-inner { position: relative; z-index: 1; padding: 80px 48px; text-align: center; }
.portrait {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  border: 5px solid rgba(255,255,255,0.75);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 56px rgba(107,79,58,0.18);
  overflow: hidden;
}
.portrait-ph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--terracotta);
  opacity: 0.3;
  font-style: italic;
}
.hquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--warm-brown);
  line-height: 1.55;
  max-width: 300px;
  margin: 0 auto 10px;
}
.hquote-name { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }

.tbar {
  background: var(--warm-brown);
  padding: 18px 72px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.titem { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.75); font-size: 12px; }

.stag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; display: block; }
.stitle { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(26px,3.8vw,48px); font-weight: 400; line-height: 1.15; color: var(--dark); margin-bottom: 18px; }
.stitle em { font-style: italic; color: var(--terracotta); }

.prob {
  padding: 96px 72px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.prob-text p { font-size: 15px; line-height: 1.9; color: var(--text-light); margin-bottom: 16px; font-weight: 300; }
.prob-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 8px; }
.prob-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 14px; line-height: 1.7; color: var(--text-light); }
.prob-list li::before { content: '→'; color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.prob-cards { display: flex; flex-direction: column; gap: 16px; }
.pcard { background: #fff; border: 1px solid rgba(193,123,92,0.13); border-radius: 18px; padding: 26px 28px; box-shadow: 0 4px 20px rgba(107,79,58,0.05); }
.pcard-icon { font-size: 26px; margin-bottom: 10px; }
.pcard h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--warm-brown); margin-bottom: 7px; }
.pcard p { font-size: 13px; line-height: 1.75; color: var(--text-light); font-weight: 300; }

.latest-posts-section { padding: 80px 72px; max-width: 1280px; margin: 0 auto; }
.latest-posts-inner { width: 100%; }

.cta {
  background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--sand) 50%, var(--sage-light) 100%);
  padding: 96px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-in { max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,48px); line-height: 1.15; color: var(--dark); margin-bottom: 16px; }
.cta p { font-size: 15px; line-height: 1.8; color: var(--text-light); margin-bottom: 34px; font-weight: 300; }

/* Startseite Mobile */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-l { padding: 52px 20px 36px; }
  .hero-r { min-height: 320px; }
  .hero-stats { gap: 20px; }
  .tbar { padding: 14px 20px; gap: 16px; }
  .prob { grid-template-columns: 1fr; gap: 36px; padding: 56px 20px; }
  .latest-posts-section { padding: 56px 20px; }
  .cta { padding: 56px 20px; }
}

/* Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-l > * { animation: fadeUp 0.65s ease both; }
.hero-l > *:nth-child(1) { animation-delay: 0.1s; }
.hero-l > *:nth-child(2) { animation-delay: 0.2s; }
.hero-l > *:nth-child(3) { animation-delay: 0.3s; }
.hero-l > *:nth-child(4) { animation-delay: 0.4s; }
.hero-l > *:nth-child(5) { animation-delay: 0.52s; }

/* ── PAIN LIST MIT ICONS ── */
.prob-list li { display:flex; align-items:flex-start; gap:12px; }
.prob-icon { font-size:18px; flex-shrink:0; margin-top:1px; }


/* ── ÜBER MICH NEU ── */
.about-bar {
  background: var(--warm-brown);
  padding: 18px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-bar span {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.about-cards-wrap {
  padding: 60px 72px;
  max-width: 1280px;
  margin: 0 auto;
}
.about-intro-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 860px;
}
.about-quote {
  background: linear-gradient(135deg,rgba(193,123,92,0.07),rgba(143,166,141,0.07));
  border-left: 3px solid var(--terracotta);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--warm-brown);
  line-height: 1.6;
  max-width: 860px;
}
.about-inner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-card {
  background: #fff;
  border: 1px solid rgba(193,123,92,0.13);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 4px 20px rgba(107,79,58,0.05);
}
.about-card .acard-icon { font-size: 26px; margin-bottom: 12px; }
.about-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--warm-brown);
  margin-bottom: 10px;
}
.about-card p { font-size: 13px; line-height: 1.75; color: var(--text-light); font-weight: 300; margin: 0; }
.about-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.about-creds .cred { background: rgba(193,123,92,0.09); border: 1px solid rgba(193,123,92,0.2); color: var(--warm-brown); padding: 5px 14px; border-radius: 40px; font-size: 11px; }

/* ── MOBILE FIXES ── */
@media (max-width: 768px) {
  .about-bar { padding: 18px 24px; }
  .about-cards-wrap { padding: 40px 24px; }
  .about-inner-cards { grid-template-columns: 1fr; }
  .offers { padding: 56px 24px !important; }
  .off-grid { grid-template-columns: 1fr !important; }
  .process { padding: 56px 24px !important; }
  .proc-steps { grid-template-columns: 1fr !important; }
  .proc-steps::before { display: none !important; }
  .testi { padding: 56px 24px !important; }
  .testi-grid { grid-template-columns: 1fr !important; }
  .latest-posts-section { padding: 56px 24px !important; }
  .cta { padding: 56px 24px !important; }
  footer { padding: 44px 24px 24px !important; }
  .footer-top { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* ── ÜBER MICH FOTO + TEXT ── */
.about-photo-text {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(107,79,58,0.13);
  background: linear-gradient(135deg, var(--dusty-rose-light), var(--sage-light));
  position: relative;
}
.about-ph-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dusty-rose-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-ph-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  color: var(--terracotta);
  opacity: 0.2;
  font-style: italic;
}

/* ── ANGEBOTE NEU ── */
.angebote-wrap {
  padding: 60px 72px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.angebote-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.angebot-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  border: 1px solid rgba(193,123,92,0.12);
  box-shadow: 0 4px 24px rgba(107,79,58,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.angebot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terracotta);
}
.angebot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,79,58,0.1);
}
.angebot-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.angebot-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.angebot-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  flex: 1;
  margin-bottom: 20px;
}
.angebot-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  margin-top: auto;
}
.angebot-link:hover { color: var(--warm-brown); }

/* ── MOBILE ANGEBOTE & ÜBER MICH ── */
@media (max-width: 768px) {
  .about-photo-text { grid-template-columns: 1fr; gap: 32px; }
  .about-cards-wrap { padding: 40px 24px; }
  .angebote-wrap { padding: 40px 24px 60px; }
  .angebote-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .angebote-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS NEU ── */
.testi-wrap {
  padding: 60px 72px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.testi-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard-new {
  background: #fff;
  border: 1px solid rgba(193,123,92,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(107,79,58,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tcard-new::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 0.8;
  color: rgba(193,123,92,0.1);
  position: absolute;
  top: 16px;
  left: 20px;
}
.tcard-stars {
  color: var(--terracotta);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.tcard-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-light);
  font-style: italic;
  font-weight: 300;
  flex: 1;
  margin-bottom: 24px;
  padding-top: 8px;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(193,123,92,0.1);
  padding-top: 18px;
}
.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dusty-rose-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--warm-brown);
  flex-shrink: 0;
  font-weight: 500;
}
.tcard-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.tcard-meta {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testi-wrap { padding: 40px 24px 60px; }
  .testi-grid-new { grid-template-columns: 1fr; }
}

/* ── TESTIMONIAL SLIDER ── */
.slider-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.slider-viewport {
  flex: 1;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slider-item {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(193,123,92,0.3);
  background: #fff;
  color: var(--terracotta);
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(107,79,58,0.08);
}
.slider-btn:hover {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(193,123,92,0.25);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.slider-dot.active {
  background: var(--terracotta);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .slider-item {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .testi-wrap { padding: 40px 24px 60px; }
  .slider-item {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .slider-btn { width: 36px; height: 36px; font-size: 14px; }
}
