/* ============================================================
   Houten vloer of PVC — Design System v5
   Fonts: Cormorant Garamond (headings) + Inter (body)
   Colors: cream / wood / olive / sand / ink
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --cream:        #fdfcf9;
  --cream-dark:   #f5f1e8;
  --wood:         #5a4a3a;
  --wood-dark:    #3a2d20;
  --wood-light:   #7a6a5a;
  --olive:        #5a5a40;
  --olive-light:  rgba(90,90,64,0.08);
  --olive-mid:    rgba(90,90,64,0.15);
  --sand:         #e6e2d3;
  --sand-light:   rgba(230,226,211,0.35);
  --ink:          #1a1a1a;
  --ink-muted:    rgba(26,26,26,0.55);
  --ink-soft:     rgba(26,26,26,0.38);
  --white:        #ffffff;

  --radius-sm:    0.75rem;
  --radius-card:  1.5rem;
  --radius-large: 3rem;
  --radius-xl:    4rem;

  --shadow-soft:   0 4px 24px rgba(0,0,0,0.06);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-strong: 0 16px 64px rgba(0,0,0,0.14);

  --transition:      all 0.3s ease;
  --transition-fast: all 0.18s ease;

  --header-h: 72px;
  --max-w:    1280px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--wood);
}

h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
}

p { line-height: 1.75; }
em { font-style: italic; }
strong { font-weight: 700; }

/* ── Utilities ─────────────────────────────────────────────── */
.sg-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sg-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ── Badges ─────────────────────────────────────────────────── */
.sg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: var(--olive-light);
  color: var(--olive);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--olive-mid);
}

/* ── Buttons ────────────────────────────────────────────────── */
.sg-btn-primary,
.sg-btn-secondary,
.sg-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
}

.sg-btn-primary {
  background: var(--wood);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(90,74,58,0.25);
}
.sg-btn-primary:hover {
  background: var(--wood-dark);
  box-shadow: 0 6px 24px rgba(90,74,58,0.35);
  transform: translateY(-1px);
  color: var(--cream);
}

.sg-btn-secondary {
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(90,90,64,0.20);
}
.sg-btn-secondary:hover {
  background: var(--wood);
  transform: translateY(-1px);
  color: var(--cream);
}

.sg-btn-outline {
  background: transparent;
  color: var(--wood);
  border: 2px solid var(--wood);
}
.sg-btn-outline:hover {
  background: var(--wood);
  color: var(--cream);
  transform: translateY(-1px);
}

.sg-btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
  min-height: 42px;
}

/* ── Header ─────────────────────────────────────────────────── */
.sg-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sg-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sg-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wood);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  letter-spacing: -0.01em;
}
.sg-logo em { color: var(--olive); font-style: italic; }

.sg-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  margin-left: 1.5rem;
}

.sg-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wood);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.sg-nav-link:hover, .sg-nav-link.active {
  background: var(--olive-light);
  color: var(--olive);
}

/* Dropdown */
.sg-nav-dropdown {
  position: relative;
}

.sg-nav-meer-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wood);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
}
.sg-nav-meer-btn:hover, .sg-nav-dropdown.dd-open .sg-nav-meer-btn {
  background: var(--olive-light);
  color: var(--olive);
}

.sg-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.sg-nav-dropdown.dd-open .sg-chevron {
  transform: rotate(-135deg) translateY(1px);
}

.sg-nav-dd {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
  padding: 0.5rem;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition-fast);
  z-index: 200;
}
.sg-nav-dropdown.dd-open .sg-nav-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sg-nav-dd a {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wood);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  min-height: 44px;
  text-decoration: none;
}
.sg-nav-dd a:hover {
  background: var(--olive-light);
  color: var(--olive);
}

.sg-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.sg-badge-header { font-size: 0.63rem; }

/* Hamburger */
.sg-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.sg-hamburger:hover { background: var(--olive-light); }

.sg-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wood);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.sg-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sg-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sg-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.sg-mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--cream);
  z-index: 999;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: var(--transition);
}
.sg-mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.sg-mobile-nav a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--wood);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--sand);
  display: block;
  text-decoration: none;
  transition: var(--transition-fast);
}
.sg-mobile-nav a:hover, .sg-mobile-nav a.active {
  color: var(--olive);
  padding-left: 0.75rem;
}
.sg-mobile-nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  padding: 1.5rem 0 0.5rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.sg-footer {
  background: var(--wood-dark);
  color: var(--cream);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
  margin-top: 5rem;
  padding: 4rem 0 0;
}

.sg-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.sg-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sg-footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.sg-footer-logo em { color: var(--sand); font-style: italic; }

.sg-footer-brand-col p {
  color: rgba(253,252,249,0.55);
  font-size: 0.875rem;
  line-height: 1.7;
}

.sg-footer h5 { color: rgba(253,252,249,0.4); margin-bottom: 1.25rem; }

.sg-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sg-footer-links a {
  color: rgba(253,252,249,0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-fast);
  line-height: 1.4;
}
.sg-footer-links a:hover { color: var(--sand); }

.sg-footer-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sg-footer-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.14);
}
.sg-footer-author strong {
  display: block;
  color: var(--cream);
  font-size: 0.9rem;
}
.sg-footer-author span {
  color: rgba(253,252,249,0.5);
  font-size: 0.8rem;
}

.sg-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 1.5rem;
  gap: 1rem;
}
.sg-footer-bottom p,
.sg-footer-bottom a {
  color: rgba(253,252,249,0.38);
  font-size: 0.8rem;
}
.sg-footer-bottom a { text-decoration: none; transition: var(--transition-fast); }
.sg-footer-bottom a:hover { color: var(--sand); }

/* ── Hero ───────────────────────────────────────────────────── */
.sg-hero {
  min-height: calc(88vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.sg-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.sg-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  color: var(--wood);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.sg-hero-title em { color: var(--olive); font-style: italic; }
.sg-hero-title span {
  display: block;
  font-size: 0.58em;
  font-weight: 400;
  color: var(--olive);
  margin-top: 0.35em;
  font-style: italic;
}

.sg-hero-text {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 480px;
}

.sg-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sg-hero-img-col { position: relative; }

.sg-hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4/5;
  max-height: 640px;
}
.sg-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.sg-hero-img-wrap:hover img { transform: scale(1.03); }

.sg-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-medium);
  max-width: 260px;
  z-index: 10;
}
.sg-float-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.sg-float-card strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--wood);
  margin-bottom: 0.4rem;
}
.sg-float-card p { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.5; }

/* ── Trust bar ──────────────────────────────────────────────── */
.sg-trust-bar {
  background: var(--sand-light);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 2.5rem 2rem;
  text-align: center;
}
.sg-trust-label {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.sg-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0.38;
  filter: grayscale(100%);
}
.sg-trust-logos span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wood);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Featured categories ────────────────────────────────────── */
.sg-featured-section {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.sg-section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.sg-section-head h2 { margin-top: 0.75rem; }

.sg-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sg-cat-card {
  background: var(--white);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.sg-cat-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}
.sg-cat-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.sg-cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sg-cat-card:hover .sg-cat-card-img img { transform: scale(1.06); }

.sg-cat-card-body {
  padding: 1.5rem;
  flex: 1;
}
.sg-cat-card-body .sg-label { display: block; margin-bottom: 0.5rem; }
.sg-cat-card-body h3 {
  font-size: 1.4rem;
  color: var(--wood);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.sg-cat-card-body p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.sg-cat-card-foot {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Why section ────────────────────────────────────────────── */
.sg-why-section {
  padding: 5rem 2rem;
  background: var(--cream-dark);
}
.sg-why-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.sg-why-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.sg-why-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.sg-why-inner h2 em {
  color: var(--olive);
  display: block;
  font-size: 0.72em;
  margin-top: 0.25em;
}
.sg-why-inner p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

/* ── All cats grid ──────────────────────────────────────────── */
.sg-all-cats {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.sg-all-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.sg-all-cat-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid transparent;
}
.sg-all-cat-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
  border-color: var(--sand);
}
.sg-all-cat-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sg-all-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sg-all-cat-card:hover .sg-all-cat-img img { transform: scale(1.05); }
.sg-all-cat-body { padding: 1.25rem; flex: 1; }
.sg-all-cat-body h3 {
  font-size: 1.15rem;
  color: var(--wood);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.sg-all-cat-body p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ── Femke section ──────────────────────────────────────────── */
.sg-femke-section {
  background: var(--olive-light);
  border-radius: var(--radius-large);
  margin: 0 2rem 5rem;
  overflow: hidden;
  border: 1px solid var(--olive-mid);
}
.sg-femke-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.sg-femke-img-col { position: relative; }
.sg-femke-img {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transform: rotate(-1.5deg);
  aspect-ratio: 1;
}
.sg-femke-img img { width: 100%; height: 100%; object-fit: cover; }
.sg-femke-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -0.5rem;
  background: var(--wood);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  letter-spacing: 0.05em;
}
.sg-femke-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sg-femke-text-col h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
}
.sg-femke-text-col p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--olive);
  padding-left: 1.25rem;
}
.sg-femke-credentials { display: flex; flex-direction: column; gap: 0.75rem; }
.sg-femke-credentials > div { display: flex; flex-direction: column; }
.sg-femke-credentials strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--wood);
}
.sg-femke-credentials > div > span { font-size: 0.78rem; color: var(--ink-muted); }
.sg-femke-credentials ul { display: flex; gap: 1rem; flex-wrap: wrap; }
.sg-femke-credentials ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--olive);
}

/* ── Overview / Category page ───────────────────────────────── */
.sg-cat-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.sg-cat-hero-img-wrap {
  position: absolute;
  inset: 0;
}
.sg-cat-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sg-cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,8,0,0.12) 0%,
    rgba(20,8,0,0.52) 55%,
    rgba(20,8,0,0.88) 100%
  );
}
.sg-cat-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem 3.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.sg-cat-hero-content h1 {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0.75rem 0;
  line-height: 1.05;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28);
}
.sg-cat-hero-content p {
  color: rgba(253,252,249,0.78);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 0.5rem;
}

/* Breadcrumb */
.sg-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.sg-breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}
.sg-breadcrumb a:hover { color: var(--olive); }
.sg-breadcrumb-sep { color: var(--ink-soft); }

.sg-cat-hero .sg-breadcrumb { color: rgba(253,252,249,0.6); }
.sg-cat-hero .sg-breadcrumb a { color: rgba(253,252,249,0.6); }
.sg-cat-hero .sg-breadcrumb a:hover { color: var(--cream); }
.sg-cat-hero .sg-breadcrumb-sep { color: rgba(253,252,249,0.38); }

/* Articles section */
.sg-articles-section {
  padding: 3.5rem 2rem 5rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Style articles generated by $body */
.sg-articles-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}

.sg-articles-section ul li a,
.sg-articles-section a.article-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.15rem 1.5rem;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--wood);
  transition: var(--transition);
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}
.sg-articles-section ul li a:hover,
.sg-articles-section a.article-link:hover {
  box-shadow: var(--shadow-medium);
  transform: translateX(4px);
  border-color: var(--sand);
}

.sg-articles-section h1,
.sg-articles-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--wood);
}

.sg-articles-section h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.sg-articles-section p {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

/* Silo nav */
.sg-silo-nav {
  background: var(--cream-dark);
  border-top: 1px solid var(--sand);
  padding: 2rem;
}
.sg-silo-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.sg-silo-nav-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  white-space: nowrap;
  margin-right: 0.35rem;
}
.sg-silo-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wood);
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
}
.sg-silo-pill:hover, .sg-silo-pill.active {
  background: var(--wood);
  color: var(--cream);
  border-color: var(--wood);
}

/* ── Article page ───────────────────────────────────────────── */
.sg-article-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
}

.sg-article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.sg-article-main { min-width: 0; }

.sg-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.sg-dot { color: var(--ink-soft); }

.sg-article-cat-tag {
  background: var(--olive-light);
  color: var(--olive);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sg-article-cat-tag:hover {
  background: var(--olive);
  color: var(--cream);
}

/* Article content styles */
.sg-article-content {
  font-family: 'Inter', sans-serif;
  overflow: hidden; /* collapse margin bleed */
}

.sg-article-content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--wood);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  font-weight: 700;
}
.sg-article-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--wood);
  margin: 2.5rem 0 1rem;
  line-height: 1.15;
  font-weight: 600;
}
.sg-article-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--wood);
  margin: 2rem 0 0.75rem;
  font-weight: 600;
}
.sg-article-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--wood);
  margin: 1.5rem 0 0.5rem;
}
.sg-article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(26,26,26,0.87);
  margin-bottom: 1.25rem;
}
.sg-article-content ul,
.sg-article-content ol {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sg-article-content ul li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(26,26,26,0.84);
  list-style: none;
}
.sg-article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: var(--olive);
  border-radius: 50%;
}
.sg-article-content ol { counter-reset: ol-counter; }
.sg-article-content ol li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.7;
  counter-increment: ol-counter;
  list-style: none;
}
.sg-article-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  top: 0.02em;
  font-weight: 700;
  color: var(--olive);
  font-size: 0.9rem;
}
.sg-article-content a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}
.sg-article-content a:hover { color: var(--wood); }

.sg-article-content blockquote {
  border-left: 4px solid var(--sand);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--cream-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.sg-article-content blockquote p {
  font-style: italic;
  color: var(--wood-light);
  margin: 0;
}

.sg-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.sg-article-content th {
  background: var(--wood);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}
.sg-article-content td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--sand);
  line-height: 1.5;
}
.sg-article-content tr:nth-child(even) td { background: var(--cream-dark); }

/* Article footer author */
.sg-article-footer-author {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--olive-light);
  border-radius: var(--radius-card);
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid var(--olive-mid);
}
.sg-article-footer-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.sg-article-footer-author strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--wood);
  margin-bottom: 0.4rem;
}
.sg-article-footer-author p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

/* Sidebar */
.sg-article-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sg-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--sand);
}

.sg-author-card {
  background: var(--olive-light);
  border-color: var(--olive-mid);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sg-author-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.sg-author-card > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.sg-author-card strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--wood);
}
.sg-author-card > div > span {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-style: italic;
}
.sg-author-card > p {
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.sg-cat-link-card {
  padding: 0;
  overflow: hidden;
}
.sg-cat-link-img {
  aspect-ratio: 16/8;
  overflow: hidden;
}
.sg-cat-link-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sg-cat-link-card:hover .sg-cat-link-img img { transform: scale(1.05); }
.sg-cat-link-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sg-cat-link-body h4 {
  font-size: 1.1rem;
  color: var(--wood);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}
.sg-cat-link-body p {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
.sg-cat-link-body .sg-label { font-size: 0.65rem; }

.sg-cta-card {
  background: var(--olive);
  border-color: transparent;
}
.sg-cta-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.sg-cta-card p {
  font-size: 0.85rem;
  color: rgba(253,252,249,0.72);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.sg-cta-card .sg-btn-primary {
  background: var(--cream);
  color: var(--olive);
  box-shadow: none;
  width: 100%;
  justify-content: center;
}
.sg-cta-card .sg-btn-primary:hover {
  background: var(--white);
  color: var(--wood);
  transform: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sg-hero { gap: 2.5rem; }
  .sg-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .sg-femke-inner { gap: 2.5rem; padding: 3rem 2rem; }
  .sg-all-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .sg-featured-grid { gap: 1.25rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .sg-nav { display: none; }
  .sg-badge-header { display: none; }
  .sg-hamburger { display: flex; }

  /* Hero */
  .sg-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 1.25rem 3rem;
    gap: 2rem;
  }
  .sg-hero-img-col { order: -1; }
  .sg-hero-img-wrap {
    max-height: 360px;
    border-radius: 2rem;
  }
  .sg-float-card {
    left: 0.75rem;
    bottom: -0.75rem;
    max-width: 210px;
    padding: 0.9rem 1.1rem;
  }
  .sg-float-card p { display: none; }
  .sg-hero-title { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .sg-hero-btns { flex-direction: column; width: 100%; }
  .sg-hero-btns .sg-btn-primary,
  .sg-hero-btns .sg-btn-outline { width: 100%; justify-content: center; }

  /* Featured */
  .sg-featured-grid { grid-template-columns: 1fr; }
  .sg-featured-section { padding: 3.5rem 1.25rem; }
  .sg-all-cats { padding: 3.5rem 1.25rem; }
  .sg-all-cats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .sg-all-cat-body h3 { font-size: 1rem; }

  /* Femke */
  .sg-femke-section { margin: 0 1rem 3rem; border-radius: 2rem; }
  .sg-femke-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem; }
  .sg-femke-img-col { max-width: 260px; margin: 0 auto; }

  /* Why */
  .sg-why-section { padding: 3.5rem 1.25rem; }

  /* Footer */
  .sg-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sg-footer-brand-col { grid-column: 1 / -1; }
  .sg-footer { border-radius: 2rem 2rem 0 0; margin-top: 3rem; }

  /* Overview */
  .sg-cat-hero { min-height: 38vh; }
  .sg-cat-hero-content { padding: 1.75rem 1.25rem 2.5rem; }
  .sg-cat-hero-content h1 { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .sg-articles-section { padding: 2rem 1.25rem 3rem; }

  /* Article */
  .sg-article-layout { grid-template-columns: 1fr; gap: 2rem; }
  .sg-article-sidebar { position: static; order: -1; }
  .sg-article-wrap { padding: 1.5rem 1.25rem 3rem; }
  .sg-article-footer-author { grid-template-columns: 60px 1fr; gap: 1rem; }
  .sg-article-footer-author img { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
  .sg-all-cats-grid { grid-template-columns: 1fr; }
  .sg-footer-grid { grid-template-columns: 1fr; }
  .sg-footer-brand-col { grid-column: auto; }
  .sg-femke-credentials ul { flex-direction: column; gap: 0.4rem; }
  .sg-trust-logos { gap: 1.5rem; }
  .sg-float-card { display: none; }
  .sg-article-footer-author {
    grid-template-columns: 1fr;
  }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .sg-header, .sg-footer, .sg-article-sidebar, .sg-silo-nav { display: none; }
  .sg-article-layout { grid-template-columns: 1fr; }
  body { background: #fff; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   CATEGORY PAGE — $body native classes
   These come from the built content/ca/*.html files
   ============================================================ */

/* Outer wrapper set in overview.php */
.sg-category-page {
  min-height: 60vh;
}

/* ── Category hero banner ─────────────────────────────────── */
.category-niche-banner {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--wood-dark);
}
.category-niche-banner.has-hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Dark gradient overlay so text is always readable */
.category-niche-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,10,0,0.18) 0%,
    rgba(20,10,0,0.55) 50%,
    rgba(20,10,0,0.88) 100%
  );
  z-index: 1;
}
.category-niche-banner .content-wrap {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem 3.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
/* Breadcrumb inside banner */
.category-niche-banner .breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(253,252,249,0.55);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.category-niche-banner .breadcrumb a {
  color: rgba(253,252,249,0.55);
  text-decoration: none;
  transition: color 0.18s;
}
.category-niche-banner .breadcrumb a:hover { color: var(--cream); }
/* H1 inside banner */
.category-niche-banner h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
/* Description text inside banner */
.category-niche-banner .cat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(253,252,249,0.75);
  max-width: 600px;
  line-height: 1.65;
}

/* ── Featured pillar article ("Begin hier") ──────────────── */
.featured {
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-dark) 100%);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}
.featured-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(253,252,249,0.6);
  margin-bottom: 0.75rem;
}
.featured-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.featured-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  padding: 0.25rem 0;
}
.fc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.fc-go {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(253,252,249,0.75);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.featured-card:hover .fc-title { color: #fff; }
.featured-card:hover .fc-go { color: var(--cream); }

/* ── Article listing area ─────────────────────────────────── */
.cat-articles-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
}

/* Each sub-section (e.g. "Uitleg en achtergrond") */
.cat-section {
  margin-bottom: 3rem;
}
.cat-section-head {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--wood);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.cat-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 1rem;
}
.s-line-sm {
  height: 2px;
  width: 3rem;
  background: var(--sand);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

/* Article list rows */
.cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--wood);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.cat-list li a:hover {
  box-shadow: var(--shadow-medium);
  transform: translateX(4px);
  border-color: var(--sand);
  color: var(--olive);
}
.cl-title {
  flex: 1;
}
.cl-arr {
  flex-shrink: 0;
  color: var(--olive);
  font-size: 1.1rem;
  opacity: 0.5;
  transition: var(--transition-fast);
}
.cat-list li a:hover .cl-arr {
  opacity: 1;
  transform: translateX(3px);
}

/* ── Editorial text block (below article list) ─────────────── */
.cat-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  background: var(--cream-dark);
  border-top: 1px solid var(--sand);
}
.cat-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--wood);
  margin: 2rem 0 0.75rem;
  line-height: 1.2;
}
.cat-body h2:first-child { margin-top: 0; }
.cat-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
  max-width: 760px;
}

/* ── content-wrap generic (used in $body) ─────────────────── */
.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ── Mobile overrides ─────────────────────────────────────── */
@media (max-width: 768px) {
  .category-niche-banner {
    min-height: 52vw;
  }
  .category-niche-banner .content-wrap {
    padding: 2rem 1.25rem 2.5rem;
  }
  .category-niche-banner h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
  .cat-articles-wrap {
    padding: 2rem 1.25rem 0.5rem;
  }
  .cat-section-head { font-size: 1.35rem; }
  .cat-list li a { padding: 0.9rem 1rem; font-size: 0.88rem; }
  .cat-body { padding: 1.5rem 1.25rem 3rem; }
  .content-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ============================================================
   ARTICLE PAGE — $body native classes
   (from content/**/*.html — breadcrumb, author, meta, toc)
   ============================================================ */

/* The article $body starts with .content-wrap wrapping everything */
.sg-article-content .content-wrap {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Breadcrumb inside article $body */
.sg-article-content .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
}
.sg-article-content .breadcrumb a {
  color: var(--olive);
  text-decoration: none;
}
.sg-article-content .breadcrumb a:hover { text-decoration: underline; }

/* Article inner layout (the $body has its own .article-layout) */
.sg-article-content .article-layout {
  display: block;
}
.sg-article-content .article-main {
  display: block;
}
.sg-article-content article {
  display: block;
}

/* H1 in article */
.sg-article-content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--wood);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* Author block */
.sg-article-content .author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}
.sg-article-content .author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.sg-article-content .author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.sg-article-content .author-info strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wood);
}
.sg-article-content .author-info span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

/* Meta line (date · reading time) */
.sg-article-content .meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* Affiliate disclosure */
.sg-article-content .affiliate-disclosure {
  background: var(--cream-dark);
  border-left: 3px solid var(--sand);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

/* Table of Contents */
.sg-article-content .toc {
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.sg-article-content .toc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wood);
  margin-bottom: 0.75rem;
}
.sg-article-content .toc ol,
.sg-article-content .toc ul {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sg-article-content .toc li {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.sg-article-content .toc a {
  color: var(--olive);
  text-decoration: none;
}
.sg-article-content .toc a:hover { text-decoration: underline; }

/* Article body headings + text */
.sg-article-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--wood);
  margin: 2.25rem 0 0.75rem;
  line-height: 1.15;
}
.sg-article-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--wood-light);
  margin: 1.75rem 0 0.6rem;
}
.sg-article-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}
.sg-article-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.sg-article-content ul,
.sg-article-content ol {
  list-style: revert;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sg-article-content li {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink);
}
.sg-article-content strong { font-weight: 600; }
.sg-article-content em { font-style: italic; }
.sg-article-content a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sg-article-content a:hover { color: var(--wood); }

/* Product comparison tables */
.sg-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}
.sg-article-content th {
  background: var(--wood);
  color: var(--cream);
  padding: 0.65rem 0.85rem;
  text-align: left;
  font-weight: 600;
}
.sg-article-content td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--sand);
  color: var(--ink);
}
.sg-article-content tr:nth-child(even) td { background: var(--cream-dark); }

/* Internal links in article (styled anchor) */
.sg-article-content .internal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--olive-light);
  border: 1px solid var(--olive-mid);
  border-radius: 0.35rem;
  padding: 0.15rem 0.5rem;
  color: var(--olive);
  text-decoration: none;
  font-size: 0.9em;
}
.sg-article-content .internal-link:hover {
  background: var(--olive-mid);
  color: var(--wood);
}

/* ============================================================
   ARTICLE $body — hide duplicates, style footer elements
   ============================================================ */

/* Hide $body elements that duplicate template elements */
.sg-article-content .author,
.sg-article-content .author-bio,
.sg-article-content .section-divider,
.sg-article-content .article-sidebar,
.sg-article-content .sidebar-author,
.sg-article-content .sidebar-nl,
.sg-article-content .pdf-sticky,
.sg-article-content .modal-overlay { display: none !important; }

/* ── Next-step CTA ────────────────────────────────────────── */
.sg-article-content .next-step {
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sg-article-content .ns-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
}
.sg-article-content .ns-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--wood);
  line-height: 1.2;
}
.sg-article-content .next-step a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--wood);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.25rem;
  transition: var(--transition-fast);
  width: fit-content;
}
.sg-article-content .next-step a:hover {
  background: var(--wood-dark);
  color: var(--cream);
}

/* ── Newsletter form ──────────────────────────────────────── */
.sg-article-content .newsletter {
  background: var(--olive);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem;
  margin: 2rem 0;
  color: var(--cream);
}
.sg-article-content .nl-head {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.sg-article-content .nl-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(253,252,249,0.75);
  margin-bottom: 1rem;
}
.sg-article-content .newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sg-article-content .newsletter input[type="email"],
.sg-article-content .newsletter input[type="number"] {
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  outline: none;
}
.sg-article-content .newsletter input::placeholder { color: rgba(253,252,249,0.55); }
.sg-article-content .captcha-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(253,252,249,0.75);
}
.sg-article-content .captcha-input { width: 80px; }
.sg-article-content .newsletter button[type="submit"] {
  background: var(--cream);
  color: var(--wood);
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: var(--transition-fast);
}
.sg-article-content .newsletter button:hover { background: var(--cream-dark); }
.sg-article-content .nl-privacy {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(253,252,249,0.5);
}

/* ── Related articles ─────────────────────────────────────── */
.sg-article-content .related {
  margin: 2.5rem 0 2.5rem;
  border-top: 2px solid var(--sand);
  padding-top: 1.75rem;
}
.sg-article-content .related h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wood);
  margin-bottom: 1rem;
  margin-top: 0;
}
.sg-article-content .related ul {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sg-article-content .related li {
  list-style: none !important;
  list-style-type: none !important;
}
.sg-article-content .related li::marker { display: none; content: ''; }
.sg-article-content .related li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--wood);
  text-decoration: none;
  transition: var(--transition-fast);
}
.sg-article-content .related li a::before {
  content: '→';
  color: var(--olive);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.sg-article-content .related li a:hover {
  background: var(--sand);
  color: var(--wood-dark);
}
