/* ============================================================
   Feder Coaching — Website Relaunch 2026
   Shared Stylesheet
   Tokens: Sage #b8c9a3 · Gold #c4955e · Cream #f0ebe3
   Fonts: Cormorant Garamond (Display) · Source Sans 3 (Text)
   ============================================================ */

:root {
  --sage: #b8c9a3;
  --sage-deep: #8fa380;
  --sage-soft: #d6e0c8;
  --gold: #c4955e;
  --gold-deep: #a77a44;
  --cream: #f0ebe3;
  --cream-soft: #faf7f2;
  --ink: #2a2a28;
  --ink-soft: #55534e;
  --ink-mute: #807d76;
  --line: #e3ddd2;
  --line-soft: #efe9dd;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Source Sans 3", system-ui, -apple-system, Segoe UI, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 2px rgba(42, 42, 40, .04), 0 8px 24px -8px rgba(42, 42, 40, .08);
  --shadow-lg: 0 2px 6px rgba(42, 42, 40, .06), 0 24px 48px -16px rgba(42, 42, 40, .12);
  --ease: cubic-bezier(.2, .7, .3, 1);
  --transition: .2s var(--ease);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream); padding: .75rem 1rem;
  z-index: 999; font-weight: 500;
}
.skip-link:focus { left: 1rem; top: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.65rem); }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
p { text-wrap: pretty; margin: 0 0 1em; }
em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
blockquote {
  margin: 2rem 0;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.4;
}
blockquote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .85rem;
  color: var(--ink-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .6rem;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
  display: inline-block;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: clamp(3.5rem, 8vw, 7rem) 0; }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream-soft) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1.5rem; max-width: 1180px; margin: 0 auto;
  gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--ink);
}
.brand img { height: 38px; width: auto; }
.nav-list {
  display: flex; gap: 1.8rem; list-style: none; margin: 0; padding: 0;
  align-items: center;
}
.nav-list a {
  color: var(--ink); font-size: .94rem; font-weight: 400;
  position: relative; padding: .25rem 0;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] { color: var(--gold-deep); }
.nav-list a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}
.nav-toggle {
  display: none; background: transparent; border: 0; font-size: 1.5rem;
  cursor: pointer; color: var(--ink); padding: .4rem;
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav { position: relative; }
  .nav > nav[aria-label] { position: static; }
  .nav-list {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream-soft); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 1rem 1.5rem;
    transform: translateY(-150%); transition: transform .25s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-list[data-open="true"] { transform: translateY(0); }
  .nav-list li { width: 100%; padding: .5rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav-list li:last-child { border-bottom: 0; margin-top: .5rem; }
  .nav-list li a.btn { width: 100%; }
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem;
  font-family: var(--sans); font-size: .96rem; font-weight: 500;
  border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform .15s var(--ease);
  touch-action: manipulation;
  text-decoration: none;
  line-height: 1.2;
}
.btn-sm { padding: .55rem 1.3rem; font-size: .9rem; letter-spacing: .02em; }
.btn-primary {
  background: var(--ink);
  color: var(--cream-soft);
  font-weight: 500;
  letter-spacing: .02em;
  border: 1px solid var(--ink);
  box-shadow: 0 1px 2px rgba(42, 42, 40, .08);
}
.btn-primary:hover {
  background: var(--gold-deep);
  color: #fff;
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(167, 122, 68, .35);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(42, 42, 40, .08); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream-soft); }
.btn-gold {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
  font-weight: 500;
}
.btn-gold:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  padding: .5rem 0; border-bottom: 1px solid var(--ink); border-radius: 0;
}
.btn-ghost:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* Calendly buttons — clean text-only (no pseudo-elements that could hide text) */
.btn.js-calendly::before,
.btn.js-calendly::after { content: none !important; }

/* ============================================================ HERO */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.hero-sub {
  font-size: 1.18rem; color: var(--ink-soft);
  max-width: 42ch; margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-trust {
  font-size: .9rem; color: var(--ink-soft);
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
}
.hero-trust strong { font-weight: 500; color: var(--ink); }
.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: auto; display: block; aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual img { aspect-ratio: 4/3; }
}

/* Hero compact variant (subpages) */
.hero-compact { padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.hero-compact h1 { margin-bottom: .4em; }
.hero-compact .hero-sub { margin-bottom: 1rem; }

/* ============================================================ QUOTE BAR */
.quote-bar {
  background: var(--sage); color: var(--ink); text-align: center;
  padding: 2.5rem 1.5rem;
}
.quote-bar q {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  quotes: "„" "\"" "\‚" "\'";
  display: block; max-width: 54ch; margin: 0 auto .6rem;
  line-height: 1.35;
}
.quote-bar cite {
  font-style: normal; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ============================================================ CARDS */
.card-grid { display: grid; gap: 2rem; margin-top: 3rem; }
.card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
.card h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: .7rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.card .card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-soft); color: var(--gold-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.35rem; margin-bottom: 1.2rem;
}
.card .card-icon svg { display: block; }

/* ============================================================ PASSUNG (Kontakt) */
.passung { background: var(--cream); }
.passung .card ul {
  list-style: none; padding: 0; margin: 1.2rem 0 0;
  color: var(--ink-soft); line-height: 1.65;
}
.passung .card li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .85rem;
}
.passung .card li::before {
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}
.passung-ja  li::before { content: "✓"; color: var(--sage-deep, #7d9367); }
.passung-nein li::before { content: "✕"; color: var(--gold-deep); }
.passung .card h3 { padding-bottom: .9rem; border-bottom: 1px solid rgb(0 0 0 / .08); }

/* ============================================================ ADLER-PORTRAIT */
.adler-portrait {
  float: right;
  width: 200px; /* native Aufloesung der historischen Aufnahme, nicht hochskalieren */
  max-width: 40%;
  margin: .35rem 0 1.4rem 2rem;
}
.adler-portrait img {
  width: 100%; height: auto; display: block;
  border-radius: 3px;
  filter: grayscale(1) contrast(1.04);
  box-shadow: 0 10px 30px rgb(0 0 0 / .14);
}
.adler-portrait figcaption {
  margin-top: .7rem;
  font-size: .78rem; line-height: 1.5;
  color: var(--ink-soft);
}
@media (max-width: 640px) {
  .adler-portrait { float: none; width: 100%; max-width: 320px; margin: 0 auto 1.8rem; }
}

/* ============================================================ TWO-COL LAYOUT */
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.05fr .95fr; }
.split.reverse > :first-child { order: 2; }
.split.reverse > :last-child { order: 1; }
.split-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.split-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Portrait-aware cropping — face stays safe */
.hero-visual img,
.about-photo img,
.article-tile-img img,
img.portrait {
  object-fit: cover;
  object-position: center top;
}
/* Landscape hero (wide images like the eagle) — no forced portrait aspect */
.hero-visual-landscape {
  aspect-ratio: 16/10;
  background: var(--cream);
}
.hero-visual-landscape img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Utility overrides */
.portrait-top { object-position: center top !important; }
.portrait-center { object-position: center !important; }

/* ============================================================ CV TIMELINE */
.cv-timeline {
  list-style: none; padding: 0; margin: 2.5rem auto 0;
  display: grid; gap: 0;
  max-width: 720px;
}
.cv-timeline li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--cream-soft) 15%, transparent);
  align-items: baseline;
}
.cv-timeline li:last-child { border-bottom: 0; }
.cv-timeline .cv-year {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}
.cv-timeline .cv-content h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--cream-soft); margin: 0 0 .3rem;
}
.cv-timeline .cv-content p {
  color: color-mix(in srgb, var(--cream-soft) 72%, transparent);
  font-size: .96rem; margin: 0;
  line-height: 1.55;
}
/* Light variant (on cream/white backgrounds) */
.section-light .cv-timeline li { border-bottom-color: var(--line); }
.section-light .cv-timeline .cv-content h3 { color: var(--ink); }
.section-light .cv-timeline .cv-content p { color: var(--ink-soft); }
@media (max-width: 640px) {
  .cv-timeline li { grid-template-columns: 1fr; gap: .3rem; padding: 1rem 0; }
  .cv-timeline .cv-year { font-size: 1rem; }
}
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse > :first-child { order: 0; }
  .split.reverse > :last-child { order: 0; }
  .split-visual img { aspect-ratio: 4/3; }
}

/* ============================================================ ANGEBOTE */
.angebot-card {
  padding: 2.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.angebot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.angebot-tag {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
  background: var(--sage); color: var(--ink); font-weight: 500;
}
.angebot-tag.gold { background: var(--gold); color: #fff; }
.angebot-card h3 { font-size: 1.8rem; margin-bottom: .3rem; }
.angebot-card .lead { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.5rem; }
.angebot-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .55rem; }
.angebot-list li { padding-left: 1.6rem; position: relative; font-size: .97rem; }
.angebot-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
}
.angebot-price {
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink-soft);
  margin-bottom: 1.2rem; font-variant-numeric: tabular-nums;
}
.angebot-price strong { color: var(--ink); font-weight: 500; }
.angebot-card .btn { margin-top: auto; }

/* ============================================================ PROZESS */
.section-dark { background: var(--ink); color: var(--cream-soft); }
.section-dark h2, .section-dark h3 { color: var(--cream-soft); }
.section-dark .eyebrow { color: var(--sage); }
.prozess-step { position: relative; padding-top: 3.4rem; }
.prozess-step .num {
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 2.8rem; font-style: italic;
  color: var(--gold); line-height: 1;
}
.prozess-step h3 { color: var(--cream-soft); font-size: 1.2rem; margin-bottom: .4rem; }
.prozess-step p {
  color: color-mix(in srgb, var(--cream-soft) 75%, transparent);
  font-size: .94rem;
}

/* ============================================================ TESTIMONIALS */
.section-cream { background: var(--cream); }
.testimonial {
  background: #fff; padding: 2rem;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.testimonial q {
  font-family: var(--serif); font-style: italic;
  font-size: 1.12rem;
  quotes: "„" "\"" "\‚" "\'";
  color: var(--ink); margin-bottom: 1.5rem; flex-grow: 1; line-height: 1.5;
}
.testimonial-author { font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.testimonial-context { font-size: .82rem; color: var(--ink-mute); }
.stars { color: var(--gold); letter-spacing: .2em; font-size: .9rem; margin-bottom: 1rem; }

/* ============================================================ FAQ */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
details {
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
}
details summary {
  list-style: none; cursor: pointer;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--ink);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+"; font-family: var(--sans); font-weight: 300;
  font-size: 1.5rem; color: var(--gold-deep);
  transition: transform var(--transition); line-height: 1;
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 1rem 0 0; color: var(--ink-soft); font-size: 1rem; }

/* ============================================================ ABOUT / CREDENTIALS */
.credentials { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: .5rem; font-size: .96rem; }
.credentials li { padding-left: 1.2rem; position: relative; }
.credentials li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 500;
}
.signature {
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; color: var(--gold-deep); margin-top: 1.5rem;
}

/* ============================================================ PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-variant-numeric: tabular-nums;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}
.pricing-table th, .pricing-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: .96rem;
}
.pricing-table th { background: var(--cream); font-family: var(--serif); font-weight: 500; font-size: 1.05rem; color: var(--ink); }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table td strong { font-weight: 600; color: var(--ink); font-family: var(--serif); font-size: 1.1rem; }
.pricing-table .format-name { font-weight: 500; font-family: var(--serif); font-size: 1.05rem; }
.pricing-table .format-meta { display: block; font-size: .85rem; color: var(--ink-mute); margin-top: .2rem; }
@media (max-width: 720px) {
  .pricing-table thead { display: none; }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td { display: block; width: 100%; }
  .pricing-table tr { border-bottom: 1px solid var(--line); padding: 1rem 0; }
  .pricing-table td { padding: .35rem 1.25rem; border: 0; }
  .pricing-table td:before {
    content: attr(data-label); display: block;
    font-size: .8rem; color: var(--ink-mute); letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: .1rem;
  }
}

/* ============================================================ KONTAKT */
.kontakt {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--ink);
}
.kontakt h2 { color: var(--ink); }
.kontakt .eyebrow { color: var(--ink); }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.kontakt .lead {
  font-size: 1.12rem; max-width: 42ch; margin-bottom: 2rem;
}
.kontakt-booking {
  background: var(--cream-soft); padding: 2rem;
  border-radius: var(--radius-lg); color: var(--ink);
}
.kontakt-booking h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: .5rem; }
.kontakt-booking > p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.5rem; }
.calendly-inline-widget {
  min-width: 100%; height: 700px;
  border-radius: var(--radius); overflow: hidden;
  background: #fff;
}
.kontakt-direct { font-size: .95rem; margin-top: 1rem; }
.kontakt-direct a { color: var(--ink); border-bottom: 1px solid currentColor; }
@media (max-width: 880px) { .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================ BREADCRUMBS */
.breadcrumbs {
  padding: 1rem 0;
  font-size: .88rem; color: var(--ink-mute);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: .4rem; color: var(--ink-mute); }
.breadcrumbs a { color: var(--ink-mute); }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs [aria-current] { color: var(--ink); }

/* ============================================================ ARTICLE / BLOG */
.article-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: .88rem; color: var(--ink-mute);
  margin-bottom: 1.5rem; align-items: center;
}
.article-meta time { color: var(--ink-soft); }
.article-category {
  display: inline-block; padding: .25rem .7rem;
  background: var(--sage-soft); color: var(--gold-deep);
  border-radius: 999px; font-size: .78rem;
  font-weight: 500; letter-spacing: .04em;
}
.article-category.life { background: color-mix(in srgb, var(--gold) 20%, var(--cream)); }

.article-body { max-width: 720px; margin: 0 auto; font-size: 1.08rem; }
.article-body h2 { margin-top: 2.5rem; font-size: 1.85rem; }
.article-body h3 { margin-top: 2rem; font-size: 1.4rem; color: var(--ink); font-family: var(--serif); font-weight: 500; }
.article-body p { color: var(--ink); line-height: 1.75; }
.article-body ul, .article-body ol { padding-left: 1.5rem; color: var(--ink); }
.article-body li { margin-bottom: .5rem; }
.article-body hr {
  border: 0; border-top: 1px solid var(--line); margin: 3rem 0;
}

.article-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--cream);
}
.article-hero h1 { max-width: 24ch; margin-bottom: 1rem; }
.article-hero p { max-width: 58ch; color: var(--ink-soft); font-size: 1.15rem; }

.article-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-tile-img { aspect-ratio: 16/10; background: var(--sage-soft); }
.article-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.article-tile-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.article-tile h3 {
  font-size: 1.25rem; margin: .4rem 0 .5rem; line-height: 1.3;
}
.article-tile h3 a { color: var(--ink); }
.article-tile h3 a:hover { color: var(--gold-deep); }
.article-tile p { font-size: .95rem; color: var(--ink-soft); flex-grow: 1; margin-bottom: 1rem; }
.article-tile .btn-ghost { font-size: .9rem; align-self: flex-start; }

/* ============================================================ FOOTER */
footer.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--cream-soft) 75%, transparent);
  padding: 4rem 0 2rem; font-size: .9rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer h4 {
  color: var(--cream-soft); font-family: var(--serif);
  font-size: 1.05rem; font-weight: 500; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { color: color-mix(in srgb, var(--cream-soft) 80%, transparent); }
.site-footer a:hover { color: var(--gold); }
.site-footer .brand { color: var(--cream-soft); margin-bottom: 1rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--cream-soft) 15%, transparent);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; color: color-mix(in srgb, var(--cream-soft) 55%, transparent);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================ UTILS */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.lead-large { font-size: 1.15rem; color: var(--ink-soft); max-width: 58ch; }

/* ============================================================ COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px -4px rgba(42, 42, 40, .25), 0 2px 8px rgba(42, 42, 40, .08);
  padding: 1.6rem 1.5rem 1.4rem;
  z-index: 9999;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--ink-soft);
  transform: translateY(calc(100% + 3rem));
  opacity: 0;
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
.cookie-banner[data-visible="true"] {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 .5rem;
  color: var(--ink);
}
.cookie-banner p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}
.cookie-banner p a {
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
}
.cookie-banner-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.cookie-banner-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
  padding: .7rem 1rem;
  font-size: .9rem;
}
.cookie-banner-actions .btn-text {
  background: transparent;
  color: var(--ink-soft);
  padding: .7rem .6rem;
  font-size: .88rem;
  min-width: auto;
  flex: 0 0 auto;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner-actions .btn-text:hover { color: var(--ink); }

/* Cookie settings modal (detailed) */
.cookie-modal {
  position: fixed; inset: 0;
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  display: none;
  align-items: center; justify-content: center;
  z-index: 10000;
  padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cookie-modal[data-visible="true"] { display: flex; }
.cookie-modal-inner {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-inner h2 {
  font-family: var(--serif); font-size: 1.7rem; margin: 0 0 .5rem; color: var(--ink);
}
.cookie-modal-inner > p { color: var(--ink-soft); margin: 0 0 1.5rem; }
.cookie-category {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem 1.25rem;
  align-items: start;
}
.cookie-category:last-of-type { border-bottom: 0; }
.cookie-category h3 {
  font-family: var(--serif); font-size: 1.1rem; margin: 0 0 .2rem;
  color: var(--ink);
}
.cookie-category p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .88rem;
  color: var(--ink-soft);
}
.cookie-category .required-badge {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}

/* Custom toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  background: var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color var(--transition);
  flex-shrink: 0;
}
.cookie-toggle input {
  position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; margin: 0;
}
.cookie-toggle::after {
  content: "";
  position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.cookie-toggle:has(input:checked) {
  background: var(--gold);
}
.cookie-toggle:has(input:checked)::after { transform: translateX(20px); }
.cookie-toggle:has(input:disabled) { opacity: .7; cursor: not-allowed; background: var(--sage); }
.cookie-toggle:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 3px; }

.cookie-modal-footer {
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.cookie-modal-footer .btn { flex: 1 1 auto; min-width: 140px; }

.cookie-reopen {
  background: transparent; border: 0; padding: 0;
  font: inherit; color: inherit; cursor: pointer;
  text-align: inherit;
}

/* Consent placeholder for gated content (Calendly widget) */
.consent-placeholder {
  min-height: 360px;
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.consent-placeholder-inner { max-width: 340px; }
.consent-placeholder h3 {
  font-family: var(--serif); font-size: 1.2rem; margin: 0 0 .5rem;
  color: var(--ink);
}
.consent-placeholder p { font-size: .92rem; color: var(--ink-soft); margin: 0 0 1rem; }
.consent-placeholder .btn { padding: .65rem 1.2rem; font-size: .9rem; }

@media (max-width: 540px) {
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; padding: 1.3rem 1.2rem; }
  .cookie-modal-inner { padding: 1.5rem; }
  .cookie-banner-actions .btn, .cookie-modal-footer .btn { min-width: 100%; }
}

/* ============================================================ MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
