/* =====================================================
   Iris is hier — Design Tokens + Global CSS
   ===================================================== */

:root {
  --cream:          #F8F2E8;
  --warm-white:     #FDFAF5;
  --section-alt:    #F2EAD8;
  --dark:           #2A2018;
  --mid:            #5C4F3A;
  --muted:          #9A8A72;
  --rose:           #D9B8B8;
  --rose-pale:      #EDD8D8;
  --rose-deep:      #B07878;
  --rose-shadow:    #8C5A5A;
  --terracotta:     #C4714A;
  --sage:           #7A8C6E;
  --sage-light:     #C8D4BE;
  --forest:         #2D3D2A;
  --sand:           #D4C4A8;
  --sand-light:     #EDE5D4;
  --white:          #FFFFFF;

  --accent:         var(--rose-deep);
  --accent-deep:    var(--rose-shadow);
  --accent-soft:    var(--rose-pale);

  --font-display:   'Black Mango', 'Cormorant Garamond', Georgia, serif;
  --font-body:      'Rubik', system-ui, -apple-system, sans-serif;

  --MAXW:           1140px;
  --px:             clamp(20px, 5vw, 48px);
  --section-py:     clamp(56px, 8vw, 104px);

  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-pill:    99px;

  --shadow-card:    0 2px 14px rgba(42,32,24,.07);
  --shadow-raised:  0 8px 30px rgba(42,32,24,.12);
  --shadow-image:   0 18px 50px rgba(42,32,24,.14);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--accent); text-underline-offset: 3px; transition: opacity .2s; }
a:hover { opacity: .75; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; color: var(--dark); }

h1 { font-size: clamp(42px, 7vw, 92px); font-weight: 300; letter-spacing: -.02em; line-height: 1.04; }
h2 { font-size: clamp(28px, 4.4vw, 46px); font-weight: 400; }
h3 { font-size: clamp(22px, 2.8vw, 26px); font-weight: 400; }
h4 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 500; }

h1 em, h2 em { font-style: italic; color: var(--accent); }

p { color: var(--mid); line-height: 1.8; }

/* ── Container ── */
.container {
  max-width: var(--MAXW);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ── Text helpers ── */
.text-center { text-align: center; }
.color-muted  { color: var(--muted); }

/* ── Eyebrow ── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--light  { color: var(--rose-pale); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  line-height: 1;
}
.btn:hover { opacity: 1; }
.btn--lg { font-size: 13px; padding: 16px 34px; }
.btn--sm { font-size: 11px; padding: 10px 20px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }

.btn--ghost { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--ghost:hover { background: var(--dark); color: var(--cream); }

.btn--ghost-accent { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--ghost-accent:hover { background: var(--accent-soft); }

.btn--light { background: #fff; color: var(--dark); border-color: #fff; }
.btn--light:hover { background: var(--cream); }

.btn--dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn--dark:hover { background: #1a140e; }

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

/* ── Link underline ── */
.link-underline {
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
}
.link-underline:hover { opacity: .75; }

/* ── Section helpers ── */
.section-alt { background: var(--section-alt); }

.section-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 52px;
}

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-top: 6px; }

/* ── Section divider motif ── */
.section-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.section-divider img {
  height: 18px;
  width: auto;
  filter: none;
  opacity: .9;
}

/* ── Motifs (decorative) ── */
.motif {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}
.motif img { display: block; }

@media (prefers-reduced-motion: no-preference) {
  .rise {
    animation: rise .7s cubic-bezier(.2,.7,.3,1) both;
  }
  @keyframes rise {
    from { transform: translateY(16px); }
    to   { transform: translateY(0); }
  }
}

/* ═══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  background: rgba(248,242,232,.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-light);
}
.site-header__inner {
  max-width: var(--MAXW);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo { display: flex; align-items: center; text-decoration: none; }
.site-header__logo img { height: 46px; width: auto; }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header__nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-header__nav-link:hover { color: var(--accent); opacity: 1; }
.site-header__nav-link.is-active { color: var(--accent); font-weight: 600; border-bottom-color: var(--accent); }

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

@media (max-width: 720px) {
  .site-header__toggle { display: flex; }
  .site-header__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand-light);
    flex-direction: column;
    padding: 20px var(--px) 28px;
    gap: 18px;
    align-items: flex-start;
  }
  .site-header__nav.is-open { display: flex; }
}

/* ═══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__inner {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

/* Statement */
.hero--statement .hero__inner--centered { text-align: center; }
.hero--statement h1 { max-width: 860px; margin-inline: auto; margin-bottom: 28px; }
.hero__intro { font-size: clamp(16px, 2vw, 19px); font-weight: 300; line-height: 1.8; max-width: 600px; }
.hero__intro--centered { margin-inline: auto; margin-top: 24px; margin-bottom: 38px; }

/* Motifs in hero statement */
.motif--hero-top {
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 260px; opacity: .16;
}
.motif--hero-top img { width: 260px; }
.motif--hero-bottom {
  bottom: 30px; right: 40px;
  width: 160px; opacity: .12;
}
.motif--hero-bottom img { width: 160px; }

/* Split */
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(60px, 7vw, 96px);
  padding-bottom: clamp(60px, 7vw, 96px);
}
.hero--split h1 { font-size: clamp(44px, 6vw, 72px); margin-bottom: 26px; }
.hero__image-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-image); }
.hero__img--portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero__image-wrap--placeholder { width: 100%; aspect-ratio: 4/5; background: var(--sand-light); border-radius: var(--radius-md); }

/* Portret */
.hero--portret {
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: var(--forest);
}
.hero--portret .hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,.78) 0%, rgba(20,16,12,.18) 55%, rgba(20,16,12,.32) 100%);
}
.hero--portret .hero__inner { position: relative; z-index: 1; width: 100%; }
.h1--light { color: #fff; }
.h1--light em { color: var(--rose-pale); }
.hero__intro--light { color: rgba(255,255,255,.9); }

/* Landing hero (slightly less padding) */
.hero--landing .hero__inner { padding-top: clamp(64px, 8vw, 104px); padding-bottom: clamp(48px, 6vw, 72px); }

@media (max-width: 680px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; }
  .hero__image-wrap { order: -1; }
}

/* ═══════════════════════════════════
   REELS
══════════════════════════════════ */
.reels { background: var(--cream); padding: 72px 0; }
.reels__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.reels__header h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 0; }
.reels__insta-link { font-size: 13px; color: var(--mid); text-decoration: none; border-bottom: 1px solid var(--sand); padding-bottom: 2px; }
.reels__insta-link:hover { opacity: .75; }

.reels__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(168px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.reel-card {}
.reel-card__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(42,32,24,.12);
}
.reel-card__media img, .reel-card__placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.reel-card__placeholder { background: var(--sand-light); display: block; }
.reel-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(253,250,245,.85);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(42,32,24,.25);
}
.reel-card__duration {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px; font-weight: 500;
  color: #fff;
  background: rgba(42,32,24,.55);
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.reel-card__caption { font-size: 13px; color: var(--mid); margin-top: 10px; font-weight: 500; line-height: 1.4; }

/* ═══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services { padding: var(--section-py) 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.service-card__icon { margin-bottom: 16px; }
.service-card h3 { font-size: 23px; margin-bottom: 10px; }
.service-card p { font-size: 13.5px; line-height: 1.75; flex-grow: 1; margin-bottom: 18px; }
.service-card__link {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
}
.service-card__link:hover { opacity: .75; }

/* ═══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews { background: var(--cream); padding: var(--section-py) 0; }
.reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.reviews__featured {
  background: var(--rose);
  border-radius: 12px;
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.motif--reviews-bg { position: absolute; bottom: -30px; right: -30px; width: 180px; opacity: .14; }
.motif--reviews-bg img { width: 180px; }
.reviews__featured-inner { position: relative; z-index: 1; }
.reviews__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: .4;
  color: #fff;
  opacity: .4;
  margin-bottom: 20px;
}
.reviews__featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 26px;
}
.reviews__name { font-size: 14px; font-weight: 600; color: #fff; letter-spacing: .03em; }
.reviews__context { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 3px; }

.reviews__secondary { display: grid; gap: 22px; }
.review-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card p { font-size: 14px; line-height: 1.7; color: var(--dark); margin-bottom: 14px; }
.review-card__attr { font-size: 13px; font-weight: 600; color: var(--accent); }
.review-card__context { color: var(--muted); font-weight: 400; }

@media (max-width: 680px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   BLOG TEASER / GRID
══════════════════════════════════ */
.blog-teaser, .blog-grid { padding: var(--section-py) 0; }
.blog-teaser__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-teaser__header h2 { margin: 0; }
.blog-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-raised); transform: translateY(-2px); opacity: 1; }
.blog-card__image {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.blog-card__image img,
.blog-card__image picture { width: 100%; height: 100%; display: block; }
.blog-card__image picture img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  background: rgba(253,250,245,.9);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card__body h2,
.blog-card__body h3 { font-size: 21px; font-weight: 400; color: var(--dark); margin-bottom: 8px; line-height: 1.3; letter-spacing: normal; }
.blog-card__body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex-grow: 1; margin-bottom: 14px; }
.blog-card__read { font-size: 11.5px; color: var(--accent); font-weight: 600; letter-spacing: .04em; }

/* ═══════════════════════════════════
   CLOSING CTA
══════════════════════════════════ */
.closing-cta {
  background: var(--forest);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta__inner { position: relative; z-index: 1; max-width: 640px; }
.closing-cta h2 { font-size: clamp(34px, 5vw, 52px); font-weight: 300; color: var(--cream); margin-bottom: 18px; line-height: 1.08; }
.closing-cta h2 em { color: var(--rose-pale); }
.closing-cta p { font-size: 16px; color: var(--sage-light); margin-bottom: 36px; font-weight: 300; }

.motif--cta-left  { left: -40px;  top: 50%; transform: translateY(-50%); width: 200px; opacity: .22; }
.motif--cta-right { right: -40px; top: 50%; transform: translateY(-50%); width: 200px; opacity: .18; }
.motif--cta-left img, .motif--cta-right img { width: 200px; }

/* ═══════════════════════════════════
   PAGE HERO (blog index etc.)
══════════════════════════════════ */
.page-hero {
  background: var(--cream);
  padding: clamp(64px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
}
.page-hero h1 { margin-top: 6px; margin-bottom: 20px; }

/* ═══════════════════════════════════
   LANDING: JOURNEY
══════════════════════════════════ */
.journey { background: var(--warm-white); padding: var(--section-py) 0; }
.journey__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.journey-step { border-top: 2px solid var(--accent); padding-top: 20px; }
.journey-step__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  opacity: .9;
}
.journey-step h3 { font-size: 22px; margin-bottom: 10px; }
.journey-step p { font-size: 14px; line-height: 1.7; }

/* ═══════════════════════════════════
   LANDING: VOOR WIE
══════════════════════════════════ */
.for-who { background: var(--cream); padding: var(--section-py) 0; }
.for-who__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.for-who__image-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 14px 44px rgba(42,32,24,.14); }
.for-who__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.for-who__image-wrap--placeholder { width: 100%; aspect-ratio: 1/1; background: var(--sand-light); border-radius: var(--radius-md); }
.for-who__text h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 22px; line-height: 1.15; }
.for-who__text p { font-size: 16px; line-height: 1.85; }
.for-who__text p + p { margin-top: 18px; }
@media (max-width: 680px) {
  .for-who__inner { grid-template-columns: 1fr; }
  .for-who__image-wrap { order: -1; }
}

/* ═══════════════════════════════════
   LANDING: REVIEW-BAND
══════════════════════════════════ */
.review-band {
  background: var(--rose);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.review-band__inner { position: relative; z-index: 1; max-width: 720px; }
.review-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 36px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 24px;
}
.review-band cite { font-size: 14px; font-weight: 600; color: #fff; letter-spacing: .04em; font-style: normal; }
.motif--review-band-left { top: -20px; left: -20px; width: 200px; opacity: .12; }
.motif--review-band-left img { width: 200px; }

/* ═══════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════ */
.faq { background: var(--warm-white); padding: var(--section-py) 0; }
.faq__list { max-width: 720px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}
.faq__question span:first-child { font-size: 16.5px; font-weight: 500; color: var(--dark); }
.faq__icon {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding-bottom: 22px; }
.faq__answer p { font-size: 15px; line-height: 1.8; max-width: 600px; }

/* ═══════════════════════════════════
   SIGNUP STAPS
══════════════════════════════════ */
.signup { padding: var(--section-py) 0; }
.signup-staps { max-width: 600px; margin-inline: auto; }

.signup-staps__progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.signup-staps__step-bar { flex: 1; text-align: center; }
.signup-staps__bar {
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--sand);
  margin-bottom: 8px;
  transition: background .3s;
}
.signup-staps__step-bar.is-active .signup-staps__bar,
.signup-staps__step-bar.is-done .signup-staps__bar { background: var(--accent); }
.signup-staps__step-bar span {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .03em;
}
.signup-staps__step-bar.is-active span,
.signup-staps__step-bar.is-done span { color: var(--accent-deep); font-weight: 600; }

.signup-staps__card {
  background: var(--warm-white);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(42,32,24,.08);
  padding: clamp(28px, 4vw, 40px);
  min-height: 300px;
}
.signup-staps__card h3 { font-size: 25px; margin-bottom: 12px; }
.signup-staps__card > form > .signup-staps__panel > p { font-size: 14.5px; line-height: 1.7; margin-bottom: 22px; }

.signup-staps__options { display: grid; gap: 10px; }
.signup-staps__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--dark);
  transition: border-color .2s;
}
.signup-staps__option:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.signup-staps__option input { accent-color: var(--accent); }

.signup-staps__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.signup-staps__nav .btn--primary { margin-left: auto; }

.signup-thanks { text-align: center; padding: 12px 0; }
.signup-thanks__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.signup-thanks h3 { font-size: 26px; margin-bottom: 10px; }
.signup-thanks p { font-size: 15px; line-height: 1.7; }

/* Signup card (contact form page) */
.signup-card { max-width: 640px; margin-inline: auto; }
.signup-card--thanks { background: var(--warm-white); border-radius: 12px; box-shadow: var(--shadow-raised); padding: 40px; }

/* ═══════════════════════════════════
   FORM FIELDS
══════════════════════════════════ */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
  font-weight: 500;
}
.form-field__optional { font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--sand);
  border-radius: 5px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field__error { font-size: 13px; color: #c0392b; margin-top: 6px; }

/* ═══════════════════════════════════
   ARTICLE LAYOUT
══════════════════════════════════ */
.article-hero {
  background: var(--cream);
  padding-top: clamp(40px, 5vw, 64px);
}
.article-hero__inner { max-width: 760px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); opacity: 1; }
.breadcrumb__current { color: var(--accent); }

.article-hero__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.article-hero h1 { font-size: clamp(34px, 5.2vw, 58px); margin-bottom: 24px; line-height: 1.08; }
.article-hero__lead { font-size: clamp(17px, 2.1vw, 20px); font-weight: 300; line-height: 1.7; margin-bottom: 30px; }

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--sand);
}
.article-hero__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.article-hero__avatar--placeholder { background: var(--sand-light); }
.article-hero__author { font-size: 14px; font-weight: 600; color: var(--dark); }
.article-hero__date { font-size: 12.5px; color: var(--muted); }
.article-hero__share { display: flex; gap: 8px; margin-left: auto; }
.share-btn {
  font-size: 12px;
  color: var(--mid);
  border: 1px solid var(--sand);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  transition: border-color .2s;
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

.article-hero__image-wrap { padding-top: 36px; }
.article-hero__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-image); display: block; }

/* Article layout grid */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: 64px;
}

.article-body { max-width: 680px; }
.article-body .richtext p { font-size: 17.5px; line-height: 1.85; color: var(--dark); margin-bottom: 22px; font-weight: 300; }
.article-body .richtext h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 48px 0 18px;
  scroll-margin-top: 90px;
}
.article-body .richtext h3 { margin: 32px 0 14px; }
.article-body .richtext ul, .article-body .richtext ol { margin: 0 0 22px 24px; }
.article-body .richtext li { font-size: 16px; line-height: 1.8; color: var(--dark); margin-bottom: 6px; }
.article-body .richtext a { color: var(--accent); }

/* Iframes in richtext (YouTube, Spotify via raw HTML) */
.article-body .richtext iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
  margin-block: 1.5rem;
  border-radius: 8px;
}

/* Embed-block (Spotify / YouTube via EmbedBlock) */
.article-embed {
  margin-block: 1.5rem;
}
.article-embed iframe {
  width: 100%;
  border: none;
  display: block;
  border-radius: 12px;
}

.pull-quote {
  margin: 34px 0;
  padding: 6px 0 6px 28px;
  border-left: 3px solid var(--accent);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--dark);
}

.article-figure { margin: 32px 0; }
.article-figure img { border-radius: var(--radius-sm); width: 100%; }
.article-figure figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; }

.article-body__share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-body__share span { font-size: 13px; color: var(--muted); }
.article-body__share a,
.article-body__share button {
  font-size: 12.5px;
  color: var(--accent);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
}
.article-body__share a:hover, .article-body__share button:hover { opacity: .75; }

/* TOC */
.article-toc { position: sticky; top: 90px; }
.article-toc__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.article-toc__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.article-toc__link {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mid);
  font-weight: 400;
  border-left: 2px solid var(--sand);
  padding-left: 12px;
  display: block;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.article-toc__link.is-active { color: var(--accent); font-weight: 600; border-left-color: var(--accent); }
.article-toc__link:hover { color: var(--accent); opacity: 1; }

@media (max-width: 760px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; order: -1; }
}

/* ═══════════════════════════════════
   NEWSLETTER
══════════════════════════════════ */
.newsletter-section { background: var(--cream); padding: 0 0 var(--section-py); }
.newsletter {
  background: var(--rose);
  border-radius: var(--radius-md);
  padding: 44px clamp(24px, 4vw, 56px);
}
.newsletter__inner { max-width: 560px; }
.newsletter h3 { font-family: var(--font-display); font-size: 30px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.newsletter p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 22px; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__input {
  flex: 1 1 220px;
  padding: 13px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  background: rgba(255,255,255,.92);
  color: var(--dark);
  outline: none;
}
.newsletter__thanks { font-size: 14px; color: #fff; font-weight: 500; }

/* Related */
.related { padding: var(--section-py) 0; }
.related h2 { margin-bottom: 36px; }

/* ═══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--forest);
  padding: 56px 0 32px;
}
.site-footer__inner {
  max-width: var(--MAXW);
  margin-inline: auto;
  padding-inline: var(--px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
  align-items: start;
}
.site-footer__brand img { height: 60px; margin-bottom: 18px; }
.site-footer__brand p { font-size: 14px; color: rgba(212,196,168,.85); line-height: 1.7; max-width: 280px; }
.site-footer__col-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer__col a,
.site-footer__col div:not(.site-footer__col-label) {
  display: block;
  font-size: 14px;
  color: #D4C4A8;
  margin-bottom: 11px;
  text-decoration: none;
  transition: opacity .2s;
}
.site-footer__col a:hover { opacity: .75; }

.site-footer__bottom {
  border-top: 1px solid rgba(200,212,190,.18);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom > span { font-size: 12px; color: rgba(212,196,168,.7); }
.site-footer__social { display: flex; gap: 20px; }
.site-footer__social a { font-size: 12px; color: var(--sage-light); text-decoration: none; }
.site-footer__social a:hover { opacity: .75; }

@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
