/* X-Point Kappers — Scalp Massager Gids — Organic Spa/Wellness Design */
/* Google Fonts: Cormorant Garamond + Inter */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Design tokens per spec */
  --p: #1A1C1E;                     /* body text / headings */
  --a: #D4A373;                     /* clay accent — CTA, links hover */
  --l: #5A6B5D;                     /* sage — primary links */
  --m: #6B7280;                     /* muted text */

  /* Extended brand palette */
  --color-brand-cream: #FDFCF7;
  --color-brand-sage: #5A6B5D;
  --color-brand-sage-light: #E8EDE9;
  --color-brand-clay: #D4A373;
  --color-brand-ink: #1A1C1E;

  /* Aliases kept for generated-content compatibility */
  --cream: var(--color-brand-cream);
  --ink: var(--color-brand-ink);
  --sage-light: var(--color-brand-sage-light);
  --border: rgba(0,0,0,0.07);
  --card-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.78;
  color: var(--p);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--l);
  text-decoration: none;
}

a:hover {
  color: var(--a);
  text-decoration: underline;
}

/* ─── ACCENT BAR ─── */
.accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--p), var(--a));
}

/* ─── WRAP ─── */
.wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */
header {
  background: var(--cream);
  border-bottom: 1px solid rgba(90,107,93,0.12);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  color: var(--p);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

header .logo span {
  color: var(--a);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ─── LOGO OVERRIDE (fixes logo.css 153px) ─── */
.site-logo {
  height: 40px !important;
  width: auto !important;
  max-height: 40px !important;
  display: block;
}

/* ─── NAV ─── */
nav.site-nav {
  background: var(--p);
  padding: 0;
  border-bottom: 2px solid var(--a);
  display: flex;
  align-items: center;
}

nav.site-nav .nav-inner {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 4px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
}

nav.site-nav .nav-link {
  color: rgba(255,255,255,0.88);
  padding: 9px 12px;
  font-size: 0.85em;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  border-radius: 6px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

nav.site-nav .nav-link:hover {
  background: rgba(212,163,115,0.2);
  color: #fff;
  text-decoration: none;
}

nav.site-nav .nav-link.active {
  color: #fff;
  font-weight: 600;
  background: rgba(212,163,115,0.3);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.nav-top {
  color: rgba(255,255,255,0.88);
  padding: 9px 12px;
  font-size: 0.85em;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.15s;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.nav-item:hover .nav-top,
.nav-item.dd-open .nav-top {
  background: rgba(212,163,115,0.2);
  color: #fff;
}

.nav-item.active .nav-top {
  color: #fff;
  font-weight: 600;
  background: rgba(212,163,115,0.3);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--cream);
  border: 1px solid rgba(90,107,93,0.15);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 240px;
  z-index: 200;
  overflow: hidden;
}

.nav-item:hover .nav-dropdown,
.nav-item.dd-open .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85em;
  color: var(--l);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.nav-dropdown a:hover {
  background: var(--sage-light);
  color: var(--p);
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  margin: 5px 0;
  transition: transform 0.2s;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(155deg, var(--cream) 0%, var(--sage-light) 50%, #F5EEE0 100%);
  color: var(--ink);
  padding: 80px 0 72px;
  border-bottom: 1px solid rgba(90,107,93,0.1);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--a), transparent);
  opacity: 0.5;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero .hero-intro {
  font-size: 0.78em;
  color: var(--p);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3em;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 680px;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--p);
}

.hero .subtitle {
  font-size: 1.05em;
  color: #5a5a5a;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin: 16px 0 28px;
  flex-wrap: wrap;
}

.hero-stats span {
  font-size: 0.9em;
  color: #6b6b6b;
  font-family: 'Inter', sans-serif;
}

.hero-stats strong {
  color: var(--p);
  font-size: 1.05em;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92em;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.hero-cta a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-w {
  background: var(--p);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(90,107,93,0.3);
}

.btn-w:hover {
  background: var(--l);
  box-shadow: 0 6px 24px rgba(90,107,93,0.4);
}

.btn-g {
  background: transparent;
  color: var(--p);
  border: 2px solid var(--p);
}

.btn-g:hover {
  background: var(--sage-light);
  border-color: var(--l);
  color: var(--l);
}

/* ─── SECTIONS ─── */
.s {
  padding: 56px 0 0;
}

.s-head {
  margin-bottom: 8px;
}

.s-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8em;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.s-head p {
  color: var(--m);
  font-size: 0.98em;
  margin-top: 6px;
  line-height: 1.6;
  max-width: 560px;
  font-family: 'Inter', sans-serif;
}

.s-line {
  width: 48px;
  height: 3px;
  background: var(--a);
  border-radius: 2px;
  margin: 14px 0 28px;
}

/* ─── ENTRY CARDS ─── */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.entry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: block;
  color: var(--ink);
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--card-shadow);
}

.entry-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  text-decoration: none;
}

.entry-card .icon {
  color: var(--p);
  margin-bottom: 14px;
}

.entry-card h3 {
  font-size: 1em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
  font-family: 'Inter', sans-serif;
}

.entry-card p {
  font-size: 0.86em;
  color: var(--m);
  line-height: 1.6;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.entry-card .go {
  display: inline-block;
  font-size: 0.84em;
  font-weight: 600;
  color: var(--p);
  font-family: 'Inter', sans-serif;
}

.entry-card:hover .go {
  text-decoration: underline;
}

/* ─── SILO GRID ─── */
.silo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}

.silo {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  color: var(--ink);
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--card-shadow);
}

.silo:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.silo .silo-icon {
  color: var(--p);
  margin-bottom: 10px;
}

.silo h3 {
  font-size: 0.95em;
  color: var(--l);
  margin-bottom: 4px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.silo p {
  font-size: 0.82em;
  color: var(--m);
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.silo .cnt {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.76em;
  color: var(--p);
  font-weight: 600;
  background: var(--sage-light);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}

.silo .quick-links {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.silo .quick-links a {
  display: block;
  font-size: 0.8em;
  color: #888;
  padding: 3px 0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.silo .quick-links a:hover {
  color: var(--l);
}

/* ─── POPULAR / POP CARDS ─── */
.popular-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.pop-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: var(--card-shadow);
}

.pop-card:hover {
  border-color: var(--a);
  box-shadow: 0 6px 20px rgba(212,163,115,0.15);
  text-decoration: none;
}

.pop-card h4 {
  font-size: 0.92em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.pop-card .pop-meta {
  font-size: 0.76em;
  color: var(--m);
  font-family: 'Inter', sans-serif;
}

.rec-type {
  font-size: 0.72em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--a);
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
}

/* ─── TRUST SECTION ─── */
.trust {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--card-shadow);
}

.trust .trust-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--a));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.3em;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}

.trust .trust-name {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
}

.trust .trust-role {
  font-size: 0.84em;
  color: var(--m);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.trust p {
  font-size: 0.9em;
  color: #5a5a5a;
  line-height: 1.68;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badge {
  font-size: 0.75em;
  background: var(--sage-light);
  color: var(--p);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(90,107,93,0.15);
  font-family: 'Inter', sans-serif;
}

/* ─── FAQ ─── */
.faq-list {
  margin-bottom: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2em;
  color: var(--a);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  font-size: 0.9em;
  color: #5a5a5a;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.faq-item .faq-answer a {
  color: var(--l);
}

/* ─── ARTICLE LAYOUT ─── */
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

nav.breadcrumb {
  font-size: 0.82em;
  color: var(--m);
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}

nav.breadcrumb a {
  color: var(--p);
  text-decoration: none;
}

nav.breadcrumb a:hover {
  text-decoration: underline;
}

article {
  max-width: 720px;
}

article h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4em;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--a));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
}

/* Inline author avatar (article pages use div with inline style) */
.author > div:first-child {
  background: linear-gradient(135deg, var(--p), var(--a)) !important;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.92em;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

.author-role {
  font-size: 0.8em;
  color: var(--m);
  font-family: 'Inter', sans-serif;
}

.meta {
  font-size: 0.82em;
  color: var(--m);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.affiliate-disclosure {
  background: var(--sage-light);
  border: 1px solid rgba(90,107,93,0.15);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.82em;
  color: #5a5a5a;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* ─── ARTICLE TYPOGRAPHY ─── */
article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75em;
  font-weight: 600;
  color: var(--ink);
  margin: 44px 0 14px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  padding-left: 16px;
  border-left: 3px solid var(--a);
}

article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  font-weight: 600;
  color: #3A3E40;
  margin: 30px 0 10px;
  line-height: 1.3;
  font-style: italic;
}

article p {
  font-size: 1em;
  line-height: 1.82;
  color: #3a3a3a;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

article ul,
article ol {
  margin: 0 0 18px 1.4em;
  font-family: 'Inter', sans-serif;
}

article ul li,
article ol li {
  margin-bottom: 6px;
  line-height: 1.75;
  color: #3a3a3a;
  font-size: 0.98em;
}

article a {
  color: #7A8C7D;
  text-decoration: none;
  border-bottom: 1px solid rgba(122,140,125,0.28);
  transition: color 0.15s, border-color 0.15s;
}

article a:hover {
  color: #5A6B5D;
  border-bottom-color: rgba(90,107,93,0.55);
}

article blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15em;
  color: var(--p);
  border-left: 3px solid var(--a);
  margin: 28px 0;
  padding: 12px 0 12px 24px;
  line-height: 1.7;
}

article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9em;
  font-family: 'Inter', sans-serif;
}

article table th {
  background: var(--sage-light);
  color: var(--ink);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(90,107,93,0.15);
}

article table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: #3a3a3a;
}

article table tr:hover td {
  background: rgba(232,237,233,0.4);
}

/* ─── TOC ─── */
.toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 28px 0;
  box-shadow: var(--card-shadow);
}

.toc-title,
.toc > div:first-child {
  font-weight: 600;
  font-size: 0.88em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--p);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.toc ol {
  margin: 0;
  padding-left: 1.2em;
}

.toc ol li {
  margin-bottom: 6px;
}

.toc ol li a {
  font-size: 0.9em;
  color: var(--l);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.toc ol li a:hover {
  text-decoration: underline;
  color: var(--p);
}

.inline-link {
  color: var(--l);
  font-weight: 500;
}

/* ─── RELATED ─── */
.related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.related h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related ul li {
  margin-bottom: 8px;
}

.related ul li a {
  color: var(--l);
  font-size: 0.92em;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.related ul li a::before {
  content: '→';
  color: var(--a);
  font-size: 0.9em;
}

.related ul li a:hover {
  text-decoration: underline;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.next-step {
  background: var(--sage-light);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: 'Inter', sans-serif;
}

/* ─── NEWSLETTER ─── */
.newsletter {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  box-shadow: var(--card-shadow);
}

.nl-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.nl-sub {
  font-size: 0.9em;
  color: var(--m);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid rgba(90,107,93,0.2);
  border-radius: 8px;
  font-size: 0.95em;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}

.newsletter form input[type="email"]:focus {
  border-color: var(--p);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88em;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

.captcha-input {
  width: 80px;
  padding: 10px 12px;
  border: 1px solid rgba(90,107,93,0.2);
  border-radius: 8px;
  font-size: 0.95em;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  outline: none;
}

.captcha-input:focus {
  border-color: var(--p);
}

.newsletter form button[type="submit"] {
  padding: 13px 24px;
  background: var(--p);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95em;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.newsletter form button[type="submit"]:hover {
  background: var(--l);
  transform: translateY(-1px);
}

.nl-privacy {
  font-size: 0.78em;
  color: var(--m);
  font-family: 'Inter', sans-serif;
}

/* ─── AUTHOR BIO ─── */
.author-bio {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 40px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--card-shadow);
  font-family: 'Inter', sans-serif;
}

/* ─── PDF STICKY BUTTON ─── */
.pdf-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--cream);
  border: 1.5px solid rgba(90,107,93,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.82em;
  font-weight: 600;
  color: var(--p);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.2s;
  z-index: 90;
}

.pdf-sticky svg {
  width: 16px;
  height: 16px;
  stroke: var(--p);
  stroke-width: 2;
  fill: none;
}

.pdf-sticky:hover {
  background: var(--sage-light);
  border-color: var(--p);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ─── PDF MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 500;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.modal p {
  font-size: 0.9em;
  color: #5a5a5a;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.modal .close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4em;
  cursor: pointer;
  color: var(--m);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
}

.modal .close:hover {
  color: var(--ink);
  background: var(--sage-light);
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid rgba(90,107,93,0.2);
  border-radius: 8px;
  font-size: 0.95em;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.modal form input[type="email"]:focus {
  border-color: var(--p);
}

.modal form button[type="submit"] {
  padding: 13px 24px;
  background: var(--p);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95em;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.modal form button[type="submit"]:hover {
  background: var(--l);
}

/* ─── TOAST ─── */
#fg-toast,
.fg-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88em;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

#fg-toast.show,
.fg-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.fg-toast-icon {
  background: #4CAF50;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── CATEGORY PAGES ─── */
.category-header {
  padding: 40px 0 20px;
}

.category-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cat-intro {
  font-size: 0.88em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--p);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.cat-desc {
  font-size: 1em;
  color: #5a5a5a;
  line-height: 1.7;
  max-width: 640px;
  font-family: 'Inter', sans-serif;
}

.cat-stats {
  font-size: 0.84em;
  color: var(--m);
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}

.featured {
  margin-bottom: 40px;
}

.featured-label {
  font-size: 0.78em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--a);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.featured-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: block;
  color: var(--ink);
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--card-shadow);
  text-decoration: none;
}

.featured-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-2px);
  text-decoration: none;
}

.fc-title {
  font-weight: 600;
  font-size: 0.92em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.fc-go {
  font-size: 0.82em;
  font-weight: 600;
  color: var(--p);
  font-family: 'Inter', sans-serif;
}

.featured-card:hover .fc-go {
  text-decoration: underline;
}

.cat-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--card-shadow);
}

.cat-section-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.cat-section-sub {
  font-size: 0.82em;
  color: var(--m);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.s-line-sm {
  width: 32px;
  height: 2px;
  background: var(--a);
  border-radius: 2px;
  margin-bottom: 14px;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  border-bottom: 1px solid var(--border);
}

.cat-list li:last-child {
  border-bottom: none;
}

.cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  text-decoration: none;
  transition: background 0.12s;
  border-radius: 6px;
}

.cat-list li a:hover {
  background: var(--sage-light);
  padding-left: 10px;
  text-decoration: none;
}

.cl-title {
  font-size: 0.9em;
  color: var(--l);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

.cl-arr {
  color: var(--a);
  font-size: 0.9em;
  flex-shrink: 0;
  margin-left: 8px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 48px 0 32px;
  color: #9a9a9a;
  font-size: 0.82em;
  margin-top: 64px;
}

footer .wrap {
  max-width: 800px;
}

.footer-silo-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 20px;
  margin-bottom: 32px;
}

.footer-silo-links a {
  display: block;
  font-size: 0.88em;
  color: #7a8a7c;
  padding: 3px 0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.15s;
}

.footer-silo-links a:hover {
  color: var(--a);
  text-decoration: none;
}

.footer-brand {
  color: #7a7a7a;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.footer-author {
  font-size: 0.86em;
  color: #5a5a5a;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  max-width: 560px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: #7a8a7c;
  font-size: 0.88em;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
  color: var(--a);
}

.footer-inner {
  color: #5a5a5a;
  font-family: 'Inter', sans-serif;
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 700px) {
  .hero h1 {
    font-size: 2.2em;
  }

  .hero {
    padding: 52px 0 48px;
  }

  nav.site-nav {
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  nav.site-nav .nav-inner {
    flex-basis: 100%;
    order: 2;
    flex-direction: column;
    display: none;
    padding: 0 16px 12px;
    gap: 0;
  }

  nav.site-nav .nav-inner.open {
    display: flex;
  }

  .nav-link, .nav-top {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    border-radius: 0;
    justify-content: flex-start;
  }

  .nav-item {
    flex-direction: column;
    width: 100%;
    flex-shrink: unset;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    display: none;
    background: rgba(0,0,0,0.15);
  }

  .nav-item.mob-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
    background: transparent;
  }

  .nav-dropdown a:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.95);
  }

  .entry-grid {
    grid-template-columns: 1fr;
  }

  .popular-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .footer-silo-links {
    grid-template-columns: 1fr 1fr;
  }

  .trust {
    flex-direction: column;
    padding: 22px 20px;
  }

  .hero-stats {
    gap: 14px;
  }

  .content-wrap {
    padding: 24px 20px 48px;
  }

  article h1 {
    font-size: 1.9em;
  }

  .modal {
    padding: 28px 22px;
  }
}

/* ─── PRINT ─── */
@media print {
  nav.site-nav,
  header,
  #fg-toast,
  .fg-toast,
  .pdf-sticky,
  .modal-overlay,
  footer,
  .newsletter,
  .related,
  nav.breadcrumb,
  .hamburger {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .content-wrap {
    padding: 0;
    max-width: 100%;
  }

  article a {
    color: #000;
    text-decoration: underline;
  }

  article h2, article h3 {
    page-break-after: avoid;
  }

  article p, article ul, article ol {
    page-break-inside: avoid;
  }
}

/* =============================================================
   sm-nav — NEW sticky navigation (replaces old site-nav/header)
   ============================================================= */

/* Hide old header/nav — replaced by sm-nav */
header.old-header,
header + nav.site-nav { /* keep old styles intact as fallback but they get hidden by body extraction */ }

.sm-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,252,247,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90,107,93,0.12);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

/* scrolled state */
.sm-nav.scrolled {
  background: rgba(253,252,247,0.96);
}

.sm-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sm-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1A1C1E;
  flex-shrink: 0;
}

.sm-nav__logo:hover { text-decoration: none; color: #1A1C1E; }

.sm-nav__logo-icon {
  width: 42px;
  height: 42px;
  background: #5A6B5D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  padding: 8px;
}

.sm-nav__logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sm-nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1A1C1E;
  letter-spacing: -0.01em;
}

.sm-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-nav__links a {
  color: #1A1C1E;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.sm-nav__links a:hover,
.sm-nav__links a.active {
  background: rgba(90,107,93,0.1);
  color: #D4A373;
  text-decoration: none;
}

/* Meer dropdown */
.sm-nav__dropdown {
  position: relative;
}

.sm-nav__dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #1A1C1E;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.sm-nav__dropdown-btn:hover { background: rgba(90,107,93,0.1); color: #D4A373; }

.sm-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 8px;
  min-width: 270px;
  z-index: 200;
}

.sm-nav__dropdown.open .sm-nav__dropdown-menu { display: block; }

.sm-nav__dropdown-menu a {
  display: block;
  padding: 9px 14px;
  color: #1A1C1E;
  font-size: 0.84rem;
  border-radius: 8px;
  transition: background 0.12s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.sm-nav__dropdown-menu a:hover { background: #E8EDE9; color: #5A6B5D; text-decoration: none; }

/* Hamburger */
.sm-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.sm-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1C1E;
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav panel */
.sm-nav__mobile {
  display: none;
  background: #FDFCF7;
  border-top: 1px solid rgba(90,107,93,0.12);
  padding: 8px 16px 20px;
}

.sm-nav__mobile.open { display: block; }

.sm-nav__mobile a {
  display: block;
  color: #1A1C1E;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.15s;
}

.sm-nav__mobile a:last-child { border-bottom: none; }
.sm-nav__mobile a:hover { color: #D4A373; text-decoration: none; }

/* =============================================================
   HOMEPAGE SECTIONS (sm- prefix)
   ============================================================= */

/* --- Hero --- */
.sm-hero {
  background: linear-gradient(135deg, #FDFCF7 0%, #E8EDE9 55%, #f5efe6 100%);
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}

.sm-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,163,115,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.sm-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8EDE9;
  color: #5A6B5D;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.sm-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: #1A1C1E;
  margin-bottom: 20px;
}

.sm-hero h1 em {
  font-style: italic;
  color: #D4A373;
}

.sm-hero__sub {
  font-size: 1.08rem;
  color: rgba(26,28,30,0.66);
  max-width: 620px;
  margin-bottom: 32px;
  line-height: 1.72;
  font-family: 'Inter', sans-serif;
}

.sm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.sm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5A6B5D;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(90,107,93,0.28);
  font-family: 'Inter', sans-serif;
}

.sm-btn-primary:hover { background: #4a5a4d; color: #fff; transform: translateY(-1px); text-decoration: none; }

.sm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1A1C1E;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.1);
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.sm-btn-secondary:hover { background: #E8EDE9; color: #5A6B5D; text-decoration: none; }

.sm-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.875rem;
  color: rgba(26,28,30,0.5);
  font-family: 'Inter', sans-serif;
}

.sm-hero__stats strong { color: #1A1C1E; font-weight: 700; margin-right: 4px; }
.sm-hero__stats-check { color: #5A6B5D; font-weight: 600; }

/* --- Quickstart --- */
.sm-quickstart {
  background: #fff;
  padding: 72px 24px;
}

.sm-quickstart__inner { max-width: 1100px; margin: 0 auto; }

.sm-section-head { margin-bottom: 40px; }

.sm-section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 6px;
  color: #1A1C1E;
}

.sm-section-head p { color: rgba(26,28,30,0.55); font-size: 1rem; font-family: 'Inter', sans-serif; }

.sm-quickstart__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sm-entry-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: #FDFCF7;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  color: #1A1C1E;
  transition: box-shadow 0.2s, transform 0.2s;
}

.sm-entry-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); color: #1A1C1E; text-decoration: none; }

.sm-entry-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  flex-shrink: 0;
  color: #5A6B5D;
}

.sm-entry-card__icon.clay { color: #D4A373; }
.sm-entry-card__icon svg { width: 26px; height: 26px; }

.sm-entry-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #1A1C1E;
}

.sm-entry-card p { font-size: 0.875rem; color: rgba(26,28,30,0.6); margin-bottom: 10px; line-height: 1.5; font-family: 'Inter', sans-serif; }

.sm-entry-card__go {
  font-size: 0.82rem;
  font-weight: 600;
  color: #D4A373;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
}

/* --- Categories --- */
.sm-categories {
  background: #FDFCF7;
  padding: 72px 24px;
}

.sm-categories__inner { max-width: 1280px; margin: 0 auto; }

.sm-categories__head { text-align: center; margin-bottom: 48px; }

.sm-categories__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 8px;
}

.sm-categories__head p { color: rgba(26,28,30,0.55); font-family: 'Inter', sans-serif; }

.sm-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.sm-cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  color: #1A1C1E;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sm-cat-card:hover {
  border-color: #5A6B5D;
  box-shadow: 0 4px 20px rgba(90,107,93,0.1);
  transform: translateY(-2px);
  color: #5A6B5D;
  text-decoration: none;
}

.sm-cat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #E8EDE9;
  color: #5A6B5D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.sm-cat-card__icon svg { width: 18px; height: 18px; }

.sm-cat-card:hover .sm-cat-card__icon { background: #5A6B5D; color: #fff; }

.sm-cat-card__info { flex: 1; min-width: 0; }

.sm-cat-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.3;
  color: #1A1C1E;
  transition: color 0.2s;
}

.sm-cat-card:hover h3 { color: #D4A373; }

.sm-cat-card p { font-size: 0.74rem; color: rgba(26,28,30,0.38); font-family: 'Inter', sans-serif; margin: 0; }

.sm-cat-card__arrow { color: rgba(26,28,30,0.2); font-size: 0.75rem; transition: color 0.2s; }
.sm-cat-card:hover .sm-cat-card__arrow { color: #D4A373; }

/* --- Articles section --- */
.sm-articles { background: #fff; padding: 72px 24px; }

.sm-articles__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.sm-articles__col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: #1A1C1E;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sm-articles__col h2 svg { width: 22px; height: 22px; color: #D4A373; flex-shrink: 0; }

.sm-pop-list { list-style: none; margin: 0; padding: 0; }

.sm-pop-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.sm-pop-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.sm-pop-item a { text-decoration: none; color: #1A1C1E; display: block; }
.sm-pop-item a:hover { text-decoration: none; }

.sm-pop-meta {
  font-size: 0.74rem;
  font-weight: 600;
  color: #5A6B5D;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.sm-pop-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.3;
  transition: color 0.15s;
}

.sm-pop-item a:hover h4 { color: #D4A373; }

.sm-rec-grid { display: grid; gap: 14px; }

.sm-rec-card {
  display: block;
  padding: 20px 22px;
  background: rgba(232,237,233,0.3);
  border: 1px solid rgba(90,107,93,0.1);
  border-radius: 14px;
  text-decoration: none;
  color: #1A1C1E;
  transition: border-color 0.2s, background 0.2s;
}

.sm-rec-card:hover { border-color: rgba(90,107,93,0.3); background: rgba(232,237,233,0.55); color: #1A1C1E; text-decoration: none; }

.sm-rec-tag {
  display: inline-block;
  background: #5A6B5D;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.sm-rec-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.sm-rec-cat {
  font-size: 0.74rem;
  font-weight: 600;
  color: #5A6B5D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

/* --- Expert section --- */
.sm-expert {
  background: #5A6B5D;
  color: #fff;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.sm-expert::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.sm-expert__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.sm-expert__avatar-wrap { position: relative; flex-shrink: 0; }

.sm-expert__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A373, #e8b988);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.sm-expert__badge-icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 44px;
  height: 44px;
  background: #D4A373;
  border-radius: 50%;
  border: 3px solid #5A6B5D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.sm-expert__content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 4px;
}

.sm-expert__role {
  color: rgba(255,255,255,0.7);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.sm-expert__bio {
  color: rgba(255,255,255,0.88);
  line-height: 1.72;
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.sm-expert__badges { display: flex; flex-wrap: wrap; gap: 20px; }

.sm-expert__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
}

.sm-expert__badge::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #D4A373;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Footer (sm-) --- */
.sm-footer {
  background: #1A1C1E;
  color: rgba(255,255,255,0.55);
  padding: 64px 24px 32px;
}

.sm-footer__inner { max-width: 1280px; margin: 0 auto; }

.sm-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}

.sm-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
  text-decoration: none;
}

.sm-footer__brand-logo:hover { text-decoration: none; }

.sm-footer__brand-icon {
  width: 32px;
  height: 32px;
  background: #5A6B5D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.sm-footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.sm-footer__tagline { font-size: 0.875rem; line-height: 1.65; max-width: 280px; font-family: 'Inter', sans-serif; }

.sm-footer__col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
}

.sm-footer__col ul { list-style: none; margin: 0; padding: 0; }
.sm-footer__col li { margin-bottom: 10px; }

.sm-footer__col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.15s;
  font-family: 'Inter', sans-serif;
}

.sm-footer__col a:hover { color: #D4A373; text-decoration: none; }

.sm-footer__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sm-footer__cats li { margin-bottom: 0; }

.sm-footer__cats a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  display: block;
}

.sm-footer__cats a:hover { color: #D4A373; }

/* Footer Nina author card */
.sm-footer__author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A373, #5A6B5D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.sm-footer__author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.sm-footer__author-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  font-style: italic;
}

.sm-footer__author-bio {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* Footer newsletter mini */
.sm-footer__nl-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sm-footer__nl-form input[type="email"] {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 0.83rem;
  font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.07);
  color: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.sm-footer__nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.sm-footer__nl-form input[type="email"]:focus { border-color: #D4A373; }

.sm-footer__nl-form button {
  padding: 10px 16px;
  background: #D4A373;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  align-self: flex-start;
}

.sm-footer__nl-form button:hover { background: #c49060; }

.sm-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
}

.sm-footer__social { display: flex; gap: 20px; }
.sm-footer__social a { color: rgba(255,255,255,0.35); transition: color 0.15s; font-size: 0.8rem; text-decoration: none; font-family: 'Inter', sans-serif; }
.sm-footer__social a:hover { color: #fff; }

/* =============================================================
   ARTICLE 2-COLUMN LAYOUT WITH SIDEBAR
   ============================================================= */
.sm-art-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.sm-art-main { min-width: 0; }

.sm-art-sidebar {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sidebar author card */
.sm-sidebar-author {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.sm-sidebar-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A373, #5A6B5D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.sm-sidebar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #1A1C1E;
}

.sm-sidebar-role {
  font-size: 0.77rem;
  color: #5A6B5D;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.sm-sidebar-bio {
  font-size: 0.82rem;
  color: rgba(26,28,30,0.62);
  line-height: 1.6;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.sm-sidebar-badge {
  display: inline-block;
  background: #E8EDE9;
  color: #5A6B5D;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
}

/* Sidebar newsletter */
.sm-sidebar-nl {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.sm-sidebar-nl-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1A1C1E;
}

.sm-sidebar-nl-sub {
  font-size: 0.81rem;
  color: rgba(26,28,30,0.52);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.sm-sidebar-nl form { display: flex; flex-direction: column; gap: 10px; }

.sm-sidebar-nl input[type="email"],
.sm-sidebar-nl input[type="number"] {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  background: #FDFCF7;
  color: #1A1C1E;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.sm-sidebar-nl input:focus { outline: none; border-color: #5A6B5D; }

.sm-sidebar-nl .captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-family: 'Inter', sans-serif;
}

.sm-sidebar-nl .captcha-row label { white-space: nowrap; color: rgba(26,28,30,0.58); }
.sm-sidebar-nl .captcha-input { width: 68px !important; }

.sm-sidebar-nl button[type="submit"] {
  background: #5A6B5D;
  color: #fff;
  border: none;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.sm-sidebar-nl button[type="submit"]:hover { background: #4a5a4d; }

/* =============================================================
   CATEGORY BANNER (sm-)
   ============================================================= */
.sm-cat-banner {
  background: linear-gradient(135deg, #FDFCF7 0%, #EEF2EF 50%, #f8f2eb 100%);
  border-bottom: 1px solid rgba(90,107,93,0.14);
  padding: 48px 24px 44px;
  position: relative;
  overflow: hidden;
}

/* decorative radial glow */
.sm-cat-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,163,115,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* decorative scalp-massager dot-ring motif */
.sm-cat-banner::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 80px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 20px solid rgba(90,107,93,0.06);
  pointer-events: none;
}

.sm-cat-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* keep backward compat alias */
.sm-cat-banner-inner { max-width: 900px; margin: 0 auto; }

.sm-cat-breadcrumb {
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.sm-cat-breadcrumb a {
  color: #5A6B5D;
  text-decoration: none;
}

.sm-cat-breadcrumb a:hover { color: #D4A373; }

/* niche badge above h1 */
.sm-cat-niche-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(90,107,93,0.10);
  color: #5A6B5D;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(90,107,93,0.18);
}

.sm-cat-niche-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4A373;
  flex-shrink: 0;
}

.sm-cat-tag {
  display: inline-block;
  background: #5A6B5D;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.sm-cat-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: #1A1C1E;
  margin-bottom: 12px;
  line-height: 1.18;
}

.sm-cat-stats {
  font-size: 0.82rem;
  color: rgba(26,28,30,0.45);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sm-cat-stats::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #D4A373;
}

.sm-cat-desc {
  font-size: 1rem;
  color: rgba(26,28,30,0.6);
  max-width: 600px;
  line-height: 1.68;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}

/* Hide duplicate h1 from generated body HTML on category pages */
.sm-cat-body .category-header { display: none; }

.sm-cat-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* =============================================================
   HIDE OLD SITE-NAV/HEADER (replaced by sm-nav)
   ============================================================= */
.site-nav { display: none !important; }

/* =============================================================
   MOBILE — sm- additions
   ============================================================= */
@media (max-width: 1024px) {
  .sm-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .sm-art-layout {
    grid-template-columns: 1fr;
    padding: 24px 16px 60px;
  }

  .sm-art-sidebar {
    position: static;
    order: 2;
  }

  .sm-articles__inner { grid-template-columns: 1fr; gap: 40px; }

  .sm-expert__inner { flex-direction: column; text-align: center; gap: 32px; }
  .sm-expert__badges { justify-content: center; }
}

@media (max-width: 700px) {
  .sm-nav__links { display: none; }
  .sm-nav__hamburger { display: flex; }

  .sm-hero { padding: 48px 20px 56px; }
  .sm-hero__cta { flex-direction: column; }
  .sm-btn-primary, .sm-btn-secondary { width: 100%; justify-content: center; }

  .sm-quickstart, .sm-categories, .sm-articles, .sm-expert, .sm-footer { padding: 48px 20px; }
  .sm-footer { padding-bottom: 24px; }

  .sm-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .sm-cat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sm-nav__inner { padding: 0 16px; }
  .sm-nav__logo-text { font-size: 1rem; }
  .sm-hero h1 { font-size: 1.9rem; }
}

@media print {
  .sm-nav, .sm-art-sidebar, .sm-footer, .pdf-sticky { display: none !important; }
  .sm-art-layout { display: block; }
}
