/*
Theme Name: Dagy Glow
Theme URI: https://dagydibartolo.de
Author: Dagy Di Bartolo
Author URI: https://dagydibartolo.de
Description: Premium Personal-Brand-Theme für Dagy Di Bartolo — Mentorin für Frauen 35+ in Peri- und Menopause. Editorial, ruhig, weiblich, conversionstark. Inspiriert vom Stil hochwertiger Mentorinnen-Sites, gebaut mit Brand Identity der Magierin (Wendepunkt, Klarheit, Selbstbestimmung). Voll responsive, DSGVO-konform, ohne Page-Builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dagy-glow
Tags: blog, portfolio, two-columns, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks
*/

/* =========================================================
   DAGY GLOW — BRAND CSS
   Magierin × Rebellin × Heldin
   Voice: ruhig stark · klar · weiblich · würdevoll
   ========================================================= */

/* ---------- 1. CSS RESET (light) ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Brand Colors */
  --color-cream:        #F6F1EA;   /* Hauptfläche, ruhig */
  --color-sand:         #E8DDCB;   /* Akzent warm */
  --color-beige:        #D9C9B0;   /* Mid Tone */
  --color-bone:         #FBF8F3;   /* Sehr helles Off-White */
  --color-white:        #FFFFFF;
  --color-navy:         #1F2A3C;   /* Premium Akzent dunkel */
  --color-ink:          #2A2620;   /* Body Text warm */
  --color-mute:         #6E6557;   /* Sekundär-Text */
  --color-line:         #E2D7C4;   /* Trennlinien */
  --color-gold:         #B89968;   /* Subtile Highlights */
  --color-rose:         #C9A9A0;   /* Soft Accent */

  /* Typography */
  --font-serif:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-script: "Cormorant Garamond", Georgia, serif;

  /* Type Scale (mobile first) */
  --fs-display: clamp(2.4rem, 7vw, 5.6rem);
  --fs-h1:      clamp(2.0rem, 5.4vw, 3.8rem);
  --fs-h2:      clamp(1.7rem, 3.6vw, 2.6rem);
  --fs-h3:      clamp(1.3rem, 2.4vw, 1.7rem);
  --fs-lead:    clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body:    1.0625rem;
  --fs-small:   0.9rem;
  --fs-eyebrow: 0.78rem;

  --lh-tight: 1.08;
  --lh-snug:  1.25;
  --lh-body:  1.7;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container-wide:  1280px;
  --container-base:  1120px;
  --container-text:  720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 40px rgba(31, 42, 60, 0.06);
  --shadow-card: 0 14px 50px rgba(31, 42, 60, 0.08);

  --transition: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 3. BASE TYPOGRAPHY ---------- */
html { font-size: 17px; }
body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bone);
  line-height: var(--lh-body);
  font-weight: 400;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .display, .eyebrow-script {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: -0.005em;
  margin: 0 0 var(--space-5);
  line-height: var(--lh-tight);
}

h1, .display { font-size: var(--fs-display); letter-spacing: -0.02em; }
h2          { font-size: var(--fs-h1); }
h3          { font-size: var(--fs-h2); }
h4          { font-size: var(--fs-h3); }

p { margin: 0 0 var(--space-5); max-width: 60ch; }
.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--color-mute);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: var(--space-4);
}

.eyebrow-script {
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.5rem;
  letter-spacing: 0;
  display: inline-block;
}

a { color: var(--color-navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }

::selection { background: var(--color-sand); color: var(--color-navy); }

hr {
  border: 0;
  border-top: 1px solid var(--color-line);
  margin: var(--space-8) 0;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--color-navy);
  border-left: 2px solid var(--color-gold);
  padding-left: var(--space-5);
  margin: var(--space-7) 0;
  font-style: italic;
}

/* ---------- 4. LAYOUT PRIMITIVES ---------- */
.container       { width: 100%; max-width: var(--container-base); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide  { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.container-text  { width: 100%; max-width: var(--container-text); margin: 0 auto; padding: 0 var(--gutter); }

.section       { padding: var(--space-9) 0; }
.section-sm    { padding: var(--space-7) 0; }
.section-lg    { padding: var(--space-10) 0; }

.bg-cream  { background: var(--color-cream); }
.bg-sand   { background: var(--color-sand); }
.bg-beige  { background: var(--color-beige); }
.bg-navy   { background: var(--color-navy); color: var(--color-cream); }
.bg-bone   { background: var(--color-bone); }
.bg-white  { background: var(--color-white); }

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--color-cream); }
.bg-navy .lead { color: rgba(246, 241, 234, 0.78); }
.bg-navy .eyebrow { color: var(--color-gold); }
.bg-navy a { color: var(--color-cream); }

.text-center { text-align: center; }
.text-mute   { color: var(--color-mute); }
.text-gold   { color: var(--color-gold); }

.divider-line {
  width: 64px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-5) auto;
}
.divider-line.left { margin-left: 0; }

/* Grid helpers */
.grid       { display: grid; gap: var(--space-6); }
.grid-2     { grid-template-columns: 1fr; }
.grid-3     { grid-template-columns: 1fr; }
.grid-4     { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.split-wide-image { grid-template-columns: 6fr 5fr; }
  .split.split-wide-text  { grid-template-columns: 5fr 6fr; }
}
.split.reverse > :first-child { order: 2; }
@media (min-width: 900px) {
  .split.reverse > :first-child { order: 0; }
  .split.reverse > :last-child  { order: -1; }
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-navy);
  background: var(--color-navy);
  color: var(--color-cream);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn:hover {
  background: transparent;
  color: var(--color-navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--color-navy);
}
.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-cream);
}
.btn-gold {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}
.btn-gold:hover {
  background: transparent;
  color: var(--color-gold);
}
.btn-light {
  background: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-navy);
}
.btn-light:hover {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-cream);
}
.btn-ghost {
  background: transparent;
  border: none;
  color: var(--color-navy);
  text-transform: none;
  letter-spacing: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-navy);
  border-radius: 0;
}
.btn-ghost:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: none;
}

/* ---------- 6. HEADER + NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  max-width: var(--container-wide);
  margin: 0 auto;
}
.site-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
}
.site-brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 2px;
  font-weight: 500;
}

.main-nav { display: none; }
@media (min-width: 960px) {
  .main-nav { display: flex; align-items: center; gap: 2.2rem; }
  .main-nav a {
    font-size: 0.92rem;
    color: var(--color-navy);
    position: relative;
    padding: 4px 0;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 1px; background: var(--color-gold);
    transition: right var(--transition);
  }
  .main-nav a:hover::after,
  .main-nav .current_page_item > a::after { right: 0; }
}

.nav-cta { margin-left: 1.5rem; }

/* Mobile menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-navy);
  transition: all var(--transition);
}
@media (min-width: 960px) { .menu-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 200;
  padding: 5rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { margin-bottom: 1.2rem; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-navy);
}
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-navy);
  cursor: pointer;
  width: 44px; height: 44px;
}

body.no-scroll { overflow: hidden; }

/* ---------- 7. HERO ---------- */
.hero {
  min-height: clamp(560px, 85vh, 820px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  padding: var(--space-8) 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--container-wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 7fr 5fr; }
}
.hero__content { max-width: 640px; }
.hero__title {
  font-size: var(--fs-display);
  line-height: 1.04;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}
.hero__lead {
  font-size: var(--fs-lead);
  color: var(--color-mute);
  margin-bottom: var(--space-6);
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--color-sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-beige) 100%);
  color: var(--color-mute);
  font-family: var(--font-serif);
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

/* Hero ornament */
.hero__ornament {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-sand) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

/* ---------- 8. SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: var(--space-4); }

/* ---------- 9. CARDS / BLOCKS ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-navy);
}
.card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-3);
}
.card p {
  font-size: var(--fs-body);
  color: var(--color-mute);
  margin-bottom: var(--space-5);
  flex: 1;
}

.value-card {
  text-align: center;
  padding: var(--space-6) var(--space-5);
}
.value-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-4);
}

/* Pillars (Körper · Kopf · Konto) */
.pillars { gap: var(--space-7); }
.pillar {
  text-align: left;
  padding: var(--space-7) var(--space-6);
  background: var(--color-bone);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
}
.pillar__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.pillar h3 {
  font-size: 1.7rem;
  margin-bottom: var(--space-4);
}
.pillar p {
  font-size: 1rem;
  color: var(--color-mute);
}

/* ---------- 10. STORY BLOCK ---------- */
.story-block { padding: var(--space-9) 0; }
.story-block__media {
  aspect-ratio: 4 / 5;
  background: var(--color-sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.story-block__media .placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-sand) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); color: var(--color-mute); font-style: italic;
  padding: 2rem; text-align: center;
}
.story-block__content h2 { margin-bottom: var(--space-5); }

/* ---------- 11. CTA SECTION ---------- */
.cta-section {
  background: var(--color-navy);
  color: var(--color-cream);
  padding: var(--space-10) 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--color-cream);
  font-size: var(--fs-h1);
  max-width: 720px;
  margin: 0 auto var(--space-5);
}
.cta-section p {
  color: rgba(246, 241, 234, 0.78);
  max-width: 560px;
  margin: 0 auto var(--space-6);
}

/* ---------- 12. TESTIMONIALS ---------- */
.testimonial {
  background: var(--color-cream);
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-navy);
  margin-bottom: var(--space-5);
  font-style: italic;
}
.testimonial__author {
  display: flex; align-items: center; gap: var(--space-4);
  margin-top: auto;
}
.testimonial__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-beige);
  flex-shrink: 0;
}
.testimonial__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-navy);
}
.testimonial__role {
  display: block;
  font-size: 0.82rem;
  color: var(--color-mute);
  margin-top: 2px;
}

/* ---------- 13. NEWSLETTER / FREEBIE BLOCK ---------- */
.freebie {
  background: var(--color-sand);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 800px) {
  .freebie { grid-template-columns: 1fr 1fr; }
}
.freebie h3 { font-size: var(--fs-h2); margin-bottom: var(--space-4); }

.form-row {
  display: flex;
  gap: var(--space-3);
  flex-direction: column;
}
@media (min-width: 520px) {
  .form-row { flex-direction: row; }
}
.input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-navy);
  transition: border-color var(--transition);
}
.input:focus {
  outline: none;
  border-color: var(--color-navy);
}

textarea.input {
  border-radius: var(--radius-md);
  resize: vertical;
  min-height: 140px;
}

.form-consent {
  font-size: 0.82rem;
  color: var(--color-mute);
  margin-top: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  line-height: 1.5;
}
.form-consent input { margin-top: 4px; }

/* ---------- 14. INSTAGRAM TEASER ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 720px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .ig-grid { grid-template-columns: repeat(6, 1fr); } }
.ig-tile {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-beige) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}
.ig-tile:hover { transform: scale(1.03); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 15. FOOTER ---------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(246, 241, 234, 0.78);
  padding: var(--space-9) 0 var(--space-6);
  font-size: var(--fs-small);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
.site-footer h4 {
  color: var(--color-cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-5);
  font-family: var(--font-sans);
  font-weight: 500;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--space-3); }
.site-footer a {
  color: rgba(246, 241, 234, 0.78);
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--color-gold); }
.site-footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-cream);
  margin-bottom: var(--space-3);
}
.site-footer__claim {
  font-style: italic;
  color: rgba(246, 241, 234, 0.65);
  max-width: 320px;
  font-family: var(--font-serif);
}
.site-footer__bottom {
  border-top: 1px solid rgba(246, 241, 234, 0.15);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  color: rgba(246, 241, 234, 0.5);
}
.site-footer__bottom-links {
  display: flex; gap: var(--space-5); flex-wrap: wrap;
}

.social-list { display: flex; gap: var(--space-4); margin-top: var(--space-5); }
.social-list a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(246, 241, 234, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-list a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
}

/* ---------- 16. COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  font-size: 0.92rem;
  line-height: 1.55;
}
.cookie-banner.is-visible { display: block; }
@media (min-width: 600px) {
  .cookie-banner { left: 1.5rem; bottom: 1.5rem; }
}
.cookie-banner h4 {
  font-family: var(--font-serif);
  color: var(--color-cream);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
.cookie-banner p { color: rgba(246, 241, 234, 0.85); margin-bottom: 1rem; max-width: none; }
.cookie-banner a { color: var(--color-gold); text-decoration: underline; }
.cookie-banner__actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.78rem;
}

/* ---------- 17. MANIFESTO / QUOTE ROWS ---------- */
.manifest {
  text-align: center;
  padding: var(--space-9) 0;
}
.manifest p {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.3;
  color: var(--color-navy);
  max-width: 880px;
  margin: 0 auto var(--space-5);
  font-weight: 400;
}
.manifest .signature {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.1rem;
}

/* ---------- 18. BLOG ---------- */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  height: 100%;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.post-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--color-sand), var(--color-beige));
  overflow: hidden;
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: var(--space-5) var(--space-6) var(--space-6); flex: 1; display: flex; flex-direction: column; }
.post-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.post-card h3 { font-size: 1.4rem; margin-bottom: var(--space-3); }
.post-card p { color: var(--color-mute); font-size: 0.95rem; flex: 1; }
.post-card__meta {
  font-size: 0.82rem;
  color: var(--color-mute);
  margin-top: var(--space-4);
}

.entry {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: var(--space-8) var(--gutter);
}
.entry h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: var(--space-5); }
.entry h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: var(--space-7); }
.entry h3 { font-size: 1.5rem; margin-top: var(--space-6); }
.entry p, .entry li { font-size: 1.1rem; line-height: 1.8; }
.entry ul, .entry ol { padding-left: 1.5rem; margin-bottom: var(--space-5); }
.entry img { border-radius: var(--radius-md); margin: var(--space-6) 0; }
.entry__meta {
  font-size: 0.85rem;
  color: var(--color-mute);
  margin-bottom: var(--space-6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- 19. PAGE HEADER ---------- */
.page-hero {
  padding: var(--space-9) 0 var(--space-7);
  background: var(--color-cream);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: var(--space-4);
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-mute);
  font-size: var(--fs-lead);
}

/* ---------- 20. ACCESSIBILITY ---------- */
.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;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- 21. UTILITIES ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-6 { margin-bottom: var(--space-6); }

/* WordPress alignments */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide   { max-width: var(--container-wide); margin-left: auto; margin-right: auto; }
.alignfull   { width: 100vw; margin-left: calc(50% - 50vw); }

/* ---------- 22. ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- 23. PRINT ---------- */
@media print {
  .site-header, .site-footer, .cookie-banner, .menu-toggle, .nav-cta { display: none !important; }
  body { background: white; color: black; }
}
