/* =========================================================
   VILLA BLOOM & CO. – MASTER-TEMPLATE
   Alles zwischen Header und Footer ist der Seiten-Inhalt.
   Header, Menü, Footer und Farben bleiben auf jeder Seite gleich.
   ========================================================= */

:root {
  /* Markenfarben aus deinem Logo-Kit */
  --bg: #F1E9D5;
  --bg-warm: #ECE2CB;
  --bg-soft: #F6F0DF;
  --surface: #FBF7EC;
  --sage: #8B9A75;
  --sage-medium: #B4C29A;
  --sage-light: #D5DCC4;
  --beige: #DCC3A8;
  --pink: #E5BFC0;
  --text: #4A4536;
  --text-soft: #7A715E;
  --text-muted: #A89E87;
  --border: #C9BC9C;
  --border-soft: #DDD0B2;
  /* Schriften */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Dancing Script', cursive;
  --sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ===== Ankündigungsleiste (optional – darf gelöscht werden) ===== */
.announcement {
  background: var(--sage);
  color: #FBF7EC;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.announcement a {
  text-decoration: none;
  border-bottom: 0.5px solid rgba(251,247,236,0.5);
  padding-bottom: 2px;
  margin-left: 10px;
}

/* ===== Header / Logo ===== */
.site-header {
  text-align: center;
  padding: 56px 20px 32px;
  background: var(--bg);
}
.logo-wreath-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}
.logo-sprig { width: 90px; height: 26px; color: var(--sage); }
.logo-heart { width: 14px; height: 14px; color: var(--sage); display: inline-block; }
.logo-main {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  line-height: 1.05;
}
.logo-script {
  font-family: var(--script);
  font-size: 36px;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
  margin-top: 4px;
}
.logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  max-width: 380px;
}
.logo-divider::before, .logo-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--sage);
  opacity: 0.45;
}
.logo-tagline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}

/* ===== Menü ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  padding: 16px 36px;
  box-shadow: 0 2px 6px rgba(60, 50, 30, 0.04);
}
.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 7px;
  transition: opacity 0.4s ease;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo-script { font-family: var(--script); font-size: 18px; color: var(--sage); }
.nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  font-family: var(--sans);
  text-decoration: none;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--sage); color: var(--sage); }

/* ===== Seiten-Inhalt (Artikel) ===== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 32px 90px;
}
.article-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 16px;
}
.article-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 8px;
}
.article-title-script {
  font-family: var(--script);
  color: var(--sage);
  font-size: 38px;
  display: block;
  font-weight: 500;
}
.article-lead {
  font-style: italic;
  font-size: 21px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 22px 0 36px;
}
.article p { margin-bottom: 22px; line-height: 1.85; }
.article h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin: 44px 0 14px;
}
.article h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  margin: 32px 0 10px;
}
.article ul, .article ol { margin: 0 0 22px 26px; }
.article li { margin-bottom: 8px; line-height: 1.8; }
.article a {
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage-medium);
}
.article a:hover { color: var(--text); }
.article blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: var(--sage);
  line-height: 1.55;
  border-left: 2px solid var(--sage-medium);
  padding: 6px 0 6px 28px;
  margin: 34px 0;
}
/* Bild im Artikel */
.article-figure { margin: 34px 0; }
.article-figure img { width: 100%; }
.article-figure figcaption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}
/* Bild-Platzhalter – ersetze ihn durch ein <img> (siehe unten) */
.img-placeholder {
  background: var(--surface);
  border: 0.5px dashed var(--border);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--text);
  color: var(--bg-soft);
  padding: 80px 40px 30px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 32px;
  color: white;
  margin-bottom: 4px;
  font-weight: 500;
  line-height: 1.1;
}
.footer-brand-script { font-family: var(--script); font-size: 26px; color: var(--sage-medium); }
.footer-text {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.8;
  max-width: 320px;
  margin-top: 18px;
  font-style: italic;
}
.footer-heading {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-medium);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-family: var(--serif);
  color: var(--bg-soft);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}
.footer-links a:hover { opacity: 1; color: white; }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-family: var(--sans);
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Mobil ===== */
@media (max-width: 768px) {
  .logo-main { font-size: 38px; }
  .logo-script { font-size: 26px; }
  .site-nav { padding: 12px 18px; gap: 14px; }
  .nav-logo { font-size: 18px; gap: 5px; }
  .nav-logo-script { font-size: 15px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 2px; }
  .article { padding: 48px 20px 64px; }
  .article-title { font-size: 33px; }
  .article-title-script { font-size: 29px; }
  .article-lead { font-size: 19px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Inhalte aus der Vorschau ===== */
:root {
  /* Brand colors – aus deinem Logo-Kit */
  --bg: #F1E9D5;
  --bg-warm: #ECE2CB;
  --bg-soft: #F6F0DF;
  --surface: #FBF7EC;
  --sage: #8B9A75;
  --sage-medium: #B4C29A;
  --sage-light: #D5DCC4;
  --sage-pale: #E5E9D8;
  --beige: #DCC3A8;
  --beige-soft: #E8D9BF;
  --pink: #E5BFC0;
  --pink-soft: #F2D8D5;
  --text: #4A4536;
  --text-soft: #7A715E;
  --text-muted: #A89E87;
  --border: #C9BC9C;
  --border-soft: #DDD0B2;
  /* Fonts */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Dancing Script', cursive;
  --sans: 'Montserrat', sans-serif;
}
/* ============ Categories ============ */
.categories {
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.section-title-script {
  font-family: var(--script);
  font-size: 46px;
  color: var(--sage);
  font-weight: 500;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 0;
  max-width: 180px;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--sage);
  opacity: 0.45;
}
.heart-icon-mini {
  width: 12px;
  height: 12px;
  color: var(--sage);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--surface);
  padding: 42px 22px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s ease;
  display: block;
  border: 0.5px solid var(--border-soft);
}
.category-card:hover {
  background: var(--bg-warm);
  transform: translateY(-5px);
  border-color: var(--sage);
}
.category-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  color: var(--sage);
  display: block;
  stroke-width: 1;
}
.category-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.category-count {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============ Posts Grid ============ */
.posts {
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 40px;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 36px;
}
.post-card {
  text-decoration: none;
  color: var(--text);
  display: block;
}
.post-image {
  aspect-ratio: 4/3;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.post-card:hover .post-image img { transform: scale(1.05); }
.post-meta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  font-weight: 500;
}
.post-title {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}
.post-excerpt {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
}
.post-readmore {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  border-bottom: 0.5px solid var(--sage);
  padding-bottom: 2px;
}

/* ============ Living Feature ============ */
.living-feature {
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 40px;
}
.living-header {
  text-align: center;
  margin-bottom: 60px;
}
.living-lead {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text-soft);
  line-height: 1.85;
  font-style: italic;
  max-width: 720px;
  margin: 36px auto 0;
}
.living-block { margin-bottom: 80px; }
.living-image-full {
  max-width: 550px;
  margin: 0 auto;
}
.living-image-wide {
  max-width: 700px;
  margin: 0 auto;
}
.living-image-full img,
.living-image-wide img {
  width: 100%;
  height: auto;
  display: block;
  border: 0.5px solid var(--border-soft);
}
.living-image {
  position: relative;
  overflow: hidden;
}
.living-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0.5px solid var(--border-soft);
}
.living-grid-2 .living-image,
.living-grid-3 .living-image { aspect-ratio: 4/3; }
.living-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.3px;
}
.living-text {
  max-width: 700px;
  margin: 36px auto 0;
  text-align: center;
}
.living-text p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.85;
}
.living-text-block {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.living-subtitle {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.2;
}
.living-subtitle-script {
  font-family: var(--script);
  font-size: 32px;
  color: var(--sage);
  font-weight: 500;
}
.living-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.living-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}
.living-grid-detail {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.living-pull-quote {
  max-width: 820px;
  margin: 80px auto;
  text-align: center;
  padding: 56px 30px;
  border-top: 0.5px solid var(--border-soft);
  border-bottom: 0.5px solid var(--border-soft);
}
.living-pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--sage);
  line-height: 1.5;
  font-weight: 400;
}
.living-tip {
  background: var(--sage-pale);
  padding: 55px 50px;
  margin: 90px auto;
  max-width: 800px;
  text-align: center;
  border: 0.5px solid var(--border-soft);
  position: relative;
}
.living-tip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 22px;
}
.living-tip p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 400;
}
.living-closing {
  text-align: center;
  max-width: 720px;
  margin: 80px auto 0;
}
.living-closing p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* ============ Living Detail Box ============ */
.living-detail-box {
  max-width: 820px;
  margin: 40px auto 0;
  background: var(--surface);
  padding: 44px 50px;
  border: 0.5px solid var(--border-soft);
}
.living-detail-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.living-detail-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--text);
  text-align: center;
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.3;
}
.living-detail-story {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 30px;
  text-align: center;
}
.living-detail-items {
  border-top: 0.5px solid var(--border-soft);
  padding-top: 26px;
}
.living-detail-items-title {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
  margin-bottom: 22px;
  font-weight: 500;
}
.living-detail-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 36px;
}
.living-detail-list li {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.living-detail-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--sage);
  font-size: 22px;
  line-height: 1;
  top: 0;
  font-weight: 700;
}
.living-detail-list strong {
  font-weight: 500;
  color: var(--text);
}
.living-detail-list span {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
}
.living-detail-tip {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 0.5px solid var(--border-soft);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--sage);
  line-height: 1.8;
}
@media (max-width: 700px) {
  .living-detail-box { padding: 32px 24px; }
  .living-detail-list { grid-template-columns: 1fr; gap: 10px; }
  .living-detail-title { font-size: 22px; }
}

/* ============ Brand Story ============ */
.brand-story {
  background: var(--bg-warm);
  padding: 90px 40px;
  margin: 100px 0;
}
.brand-story-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.brand-story-content {
  padding: 20px 0;
}
.brand-story-image img {
  width: 100%;
  height: auto;
  border: 0.5px solid var(--border-soft);
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brand-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .logo-main { font-size: 38px; }
  .logo-script { font-size: 26px; }
  .hero { padding: 0 20px; margin: 30px auto 0; }
  .hero-overlay-card { padding: 30px 24px; width: 88%; }
  .hero-title { font-size: 28px; }
  .hero-title-script { font-size: 26px; }
  .site-nav { padding: 12px 18px; gap: 14px; }
  .nav-logo { font-size: 18px; gap: 5px; }
  .nav-logo-script { font-size: 15px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 2px; }
  .posts-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .section-title { font-size: 32px; }
  .section-title-script { font-size: 34px; }
  .welcome-title { font-size: 30px; }
  .welcome-title-script { font-size: 32px; }
  .newsletter { padding: 60px 20px; }
  .newsletter-form { flex-direction: column; }
  .living-grid-2, .living-grid-3 { grid-template-columns: 1fr; }
  .living-grid-detail { grid-template-columns: 1fr; gap: 30px; }
  .living-pull-quote p { font-size: 20px; }
  .living-tip { padding: 36px 24px; }
  .living-subtitle { font-size: 24px; }
  .living-subtitle-script { font-size: 26px; }
  .living-feature { padding: 0 20px; }
}

.fade-in { animation: fadeIn 1.2s ease-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.living-section-intro { text-align: center; margin-bottom: 56px; }

/* ===== Sprachumschalter ===== */
.lang-switch { display: flex; gap: 9px; align-items: center; }
.lang-switch a { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; color: var(--text-muted); font-weight: 500; padding-bottom: 3px; border-bottom: 1px solid transparent; transition: all 0.4s ease; }
.lang-switch a:hover { color: var(--sage); }
.lang-switch a.active { color: var(--sage); border-bottom-color: var(--sage); }

/* ===== Scroll-Header ===== */
.site-nav { transition: padding 0.4s ease, box-shadow 0.4s ease, background 0.4s ease; }
.site-nav.scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(241, 233, 213, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 22px rgba(60, 50, 30, 0.1);
}

/* ===== Zutaten – schmaler, zentrierter Editorial-Block ===== */
.ingredients-block { max-width: 360px; margin: 0 auto; }
.ingredients-subhead {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
  font-weight: 600;
  margin: 30px 0 4px;
}
.ingredients-list { list-style: none; margin: 0; padding: 0; }
.ingredients-list li {
  display: flex;
  gap: 16px;
  padding: 10px 2px;
  border-bottom: 0.5px solid var(--border);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}
.ingredients-list li:last-child { border-bottom: none; }
.ingredient-amount {
  flex-shrink: 0;
  min-width: 72px;
  color: var(--sage);
  font-style: italic;
}
.ingredient-name { flex: 1; }
