/* ============================================================
   AKEO — Le Journal du Design Intérieur
   Main Stylesheet — Editorial Warmth Design System
   ============================================================ */

/* ── 1. TOKENS & RESET ─────────────────────────────────────── */
:root {
  --color-primary:        #1a1a1a;
  --color-secondary:      #6b5b4f;
  --color-accent:         #3d5a80;
  --color-accent-dark:    #2c4461;
  --color-accent-warm:    #c4956a;
  --color-accent-warm-dk: #b38459;
  --color-bg:             #ffffff;
  --color-bg-warm:        #f7f5f2;
  --color-bg-muted:       #eae6e1;
  --color-border:         #e0dbd5;
  --color-text:           #1a1a1a;
  --color-text-secondary: #6b5b4f;
  --color-text-muted:     #9a9189;
  --color-error:          #c0392b;
  --color-success:        #27ae60;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-heading:  'DM Sans', Helvetica, Arial, sans-serif;
  --font-body:     'Source Serif 4', Georgia, serif;
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --max-width:      1200px;
  --content-width:  780px;
  --sidebar-width:  320px;
  --nav-height:     64px;
  --transition:     0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast:0.2s ease;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border-radius: 0;
}
select { appearance: none; -webkit-appearance: none; }
table { border-collapse: collapse; width: 100%; }

/* ── 2. BASE TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}
h1 { font-size: 48px; font-weight: 800; line-height: 1.1; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 17px; font-family: var(--font-heading); font-weight: 600; }

.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  display: block;
}

.section-label--with-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.section-label--with-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.section-label--copper {
  color: var(--color-accent-warm);
}

p { margin-bottom: 0; }

/* ── 3. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 40px;
}

.container--narrow {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 60px;
  align-items: start;
}

.section-pad {
  padding-block: var(--space-xl);
}

.section-pad--sm {
  padding-block: var(--space-lg);
}

.bg-warm   { background: var(--color-bg-warm); }
.bg-muted  { background: var(--color-bg-muted); }
.bg-dark   { background: var(--color-primary); }
.text-center { text-align: center; }

/* Data reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── 4. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 1.5px solid var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 2px 12px rgba(61,90,128,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-warm {
  background: var(--color-accent-warm);
  color: #fff;
  border: 1.5px solid var(--color-accent-warm);
}
.btn-warm:hover {
  background: var(--color-accent-warm-dk);
  border-color: var(--color-accent-warm-dk);
}

.btn-text {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast), text-underline-offset var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-text:hover {
  color: var(--color-accent-warm);
  text-decoration-color: currentColor;
  text-underline-offset: 2px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text);
  transition: color var(--transition-fast);
  flex-shrink: 0;
}
.btn-icon:hover { color: var(--color-accent); }
.btn-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-lg);
}
.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: none;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.page-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.page-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.page-btn--text {
  width: auto;
  padding-inline: 16px;
  gap: 6px;
}
.page-btn svg { width: 16px; height: 16px; stroke-width: 1.5; }

/* ── 5. NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.nav-logo .logo-a { color: var(--color-accent-warm); }
.nav-logo .logo-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  display: block;
  letter-spacing: 0;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.nav-links a:hover {
  color: var(--color-accent);
}
.nav-links a[aria-current="page"] {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent-warm);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-lang {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  padding: 4px 8px;
}
.nav-lang span { color: var(--color-primary); font-weight: 600; }

.nav-hamburger { display: none; }

/* ── 6. SEARCH OVERLAY ─────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.search-form-wrap {
  width: 100%;
  max-width: 700px;
  padding: 0 40px;
  position: relative;
}
.search-form {
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.3s ease;
}
.search-form:focus-within {
  border-bottom-color: var(--color-accent-warm);
}
.search-form input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  padding: 16px 60px 16px 0;
}
.search-form input::placeholder { color: rgba(255,255,255,0.3); }
.search-form button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  padding: 8px;
}
.search-form button svg { width: 24px; height: 24px; stroke-width: 1.5; }
.search-close {
  position: absolute;
  top: 32px;
  right: 40px;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  transition: color 0.2s;
}
.search-close:hover { color: #fff; }
.search-close svg { width: 24px; height: 24px; stroke-width: 1.5; }
.search-hint {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  margin-top: 16px;
  text-transform: uppercase;
}

/* ── 7. MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
}
.mobile-menu-close svg { width: 24px; height: 24px; stroke-width: 1.5; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-menu.open .mobile-nav-links a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open .mobile-nav-links a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-nav-links a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-nav-links a:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.open .mobile-nav-links a:nth-child(4) { transition-delay: 0.32s; }
.mobile-menu.open .mobile-nav-links a:nth-child(5) { transition-delay: 0.40s; }
.mobile-menu.open .mobile-nav-links a:nth-child(6) { transition-delay: 0.48s; }
.mobile-nav-links a:hover { color: var(--color-accent-warm); }
.mobile-menu-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}
.mobile-menu.open .mobile-menu-footer { opacity: 1; }
.mobile-menu-footer a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.mobile-menu-footer a:hover { color: #fff; }
.mobile-menu-footer svg { width: 20px; height: 20px; stroke-width: 1.5; }

/* ── 8. HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--color-bg-warm);
  min-height: 75vh;
  min-height: 560px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 60px 64px 40px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow .section-label {
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent-warm);
  padding-left: 12px;
}
.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-meta {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta svg { width: 14px; height: 14px; stroke-width: 1.5; vertical-align: middle; }
.hero-meta .sep { color: var(--color-border); }

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s ease-out;
}
.hero-image-wrap.loaded img { transform: scale(1); }

/* ── 9. CATEGORY FILTER BAR ────────────────────────────────── */
.category-bar {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
}
.category-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-bar-inner::-webkit-scrollbar { display: none; }

.filter-tab {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 18px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  color: var(--color-text-secondary);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.filter-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.filter-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ── 10. ARTICLE CARD ──────────────────────────────────────── */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-warm);
  transform: translateY(-4px);
}

.card-image-wrap {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.card:hover .card-image-wrap img { transform: scale(1.04); }

.card-category-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26,26,26,0.85);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  z-index: 1;
}

.card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-category {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.card-title a:hover { color: var(--color-accent); }
.card-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}
.card-meta svg { width: 13px; height: 13px; stroke-width: 1.5; flex-shrink: 0; }
.card-meta .sep { color: var(--color-border); }
.card-meta .author-name { color: var(--color-text-secondary); font-weight: 500; }

.card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  overflow: hidden;
}

/* Card — vertical (image top) */
.card--vertical .card-image-wrap {
  height: 220px;
}

/* Card — horizontal (image left, text right) */
.card--horizontal {
  flex-direction: row;
  align-items: stretch;
}
.card--horizontal .card-image-wrap {
  width: 50%;
  height: auto;
  min-height: 280px;
}
.card--horizontal .card-body {
  width: 50%;
  padding: 32px;
}
.card--horizontal .card-title { font-size: 22px; }
.card--horizontal .card-excerpt { -webkit-line-clamp: 3; }

/* Card — featured (full width with strip image) */
.card--strip .card-image-wrap {
  height: 200px;
  width: 100%;
}
.card--strip .card-title { font-size: 22px; }

/* Cards grid layout on homepage */
.articles-main-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.articles-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.articles-pair .card--vertical .card-image-wrap { height: 220px; }

/* ── 11. SIDEBAR ───────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-widget {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent-warm);
  display: inline-block;
}

/* Sidebar search */
.sidebar-search {
  position: relative;
}
.sidebar-search input {
  width: 100%;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  padding: 10px 40px 10px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-fast);
}
.sidebar-search input::placeholder { color: var(--color-text-muted); }
.sidebar-search input:focus { border-color: var(--color-accent); }
.sidebar-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  padding: 4px;
}
.sidebar-search button svg { width: 16px; height: 16px; stroke-width: 1.5; }

/* Sidebar trending/popular list */
.sidebar-article-list {
  display: flex;
  flex-direction: column;
}
.sidebar-article-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.sidebar-article-item:first-child { padding-top: 0; }
.sidebar-article-item:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-rank {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-bg-muted);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.sidebar-article-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar-article-info { flex: 1; min-width: 0; }
.sidebar-article-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  transition: color var(--transition-fast);
}
.sidebar-article-item a:hover .sidebar-article-title { color: var(--color-accent); }
.sidebar-article-meta {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.sidebar-article-meta svg { width: 12px; height: 12px; stroke-width: 1.5; }
.sidebar-article-item a { text-decoration: none; }

/* Sidebar newsletter */
.sidebar-newsletter {
  background: var(--color-primary);
  padding: 28px;
  margin-top: 32px;
}
.sidebar-newsletter-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.sidebar-newsletter-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.sidebar-newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.sidebar-newsletter-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-secondary);
  padding: 10px 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast);
}
.sidebar-newsletter-form input::placeholder { color: var(--color-secondary); }
.sidebar-newsletter-form input:focus { border-bottom-color: var(--color-accent-warm); }
.sidebar-newsletter-form button {
  background: var(--color-accent-warm);
  color: #fff;
  border: none;
  padding: 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.sidebar-newsletter-form button:hover { background: var(--color-accent-warm-dk); }

/* Sidebar tag cloud */
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  padding: 5px 12px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.sidebar-tag:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Sidebar ad */
.sidebar-ad {
  width: 300px;
  height: 250px;
  background: var(--color-bg-warm);
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 100%;
}

/* Sidebar TOC (article page) */
.sidebar-toc { }
.sidebar-toc-list { display: flex; flex-direction: column; gap: 0; }
.sidebar-toc-item a {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-left: 2px solid var(--color-border);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  line-height: 1.4;
}
.sidebar-toc-item a:hover,
.sidebar-toc-item.active a {
  color: var(--color-accent);
  border-left-color: var(--color-accent-warm);
  background: var(--color-bg-warm);
}

/* Sidebar author */
.sidebar-author {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.sidebar-author-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.sidebar-author-role {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sidebar-author-bio {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ── 12. ARTICLE FULL PAGE ─────────────────────────────────── */
.article-header {
  background: var(--color-bg-warm);
  padding-block: 48px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-text-muted); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb svg { width: 14px; height: 14px; stroke-width: 1.5; }

.article-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.article-eyebrow .section-label {
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent-warm);
  padding-left: 12px;
}
.article-title-full {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.article-lead {
  font-family: var(--font-body);
  font-size: 19px;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.article-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-author-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.article-author-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.article-meta-items {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
}
.article-meta-items svg { width: 14px; height: 14px; stroke-width: 1.5; vertical-align: middle; margin-right: 4px; }

.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.article-share-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.share-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: border-color var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
  background: none;
}
.share-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.share-btn svg { width: 16px; height: 16px; stroke-width: 1.5; }

.article-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}
.article-cover-caption {
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  color: var(--color-text-muted);
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
}

/* Article body text */
.article-body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--color-text);
}
.article-body p { margin-bottom: 24px; }
.article-body p:last-child { margin-bottom: 0; }

.article-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--color-primary);
}
.article-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--transition-fast);
}
.article-body a:hover { color: var(--color-accent-warm); }

.article-body blockquote {
  background: var(--color-bg-warm);
  padding: 28px 32px;
  border-left: 3px solid var(--color-accent-warm);
  margin: 36px 0;
  font-size: 17px;
  color: var(--color-text-secondary);
}
.article-body blockquote cite {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-style: normal;
  color: var(--color-text-muted);
  margin-top: 12px;
}

.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent-warm);
  padding-left: 24px;
  margin: 40px 0;
}

.article-body figure {
  margin: 36px 0;
}
.article-body figure img {
  width: 100%;
  display: block;
}
.article-body figcaption {
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.article-body ul, .article-body ol {
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body ul li, .article-body ol li {
  padding-left: 20px;
  position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-accent-warm);
}

.article-images-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.article-images-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0;
}
.article-images-pair img,
.article-images-trio img { width: 100%; height: 220px; object-fit: cover; }

.practical-box {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  padding: 32px;
  margin-top: 40px;
}
.practical-box h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.practical-box ul { margin: 0; }
.practical-box ul li { font-size: 15px; }

.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.article-tags-label {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.article-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  padding: 5px 14px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.article-tag:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Prev/Next */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-border);
  margin-top: 48px;
}
.article-nav-item {
  padding: 28px 32px;
  text-decoration: none;
  transition: background var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-nav-item:hover { background: var(--color-bg-warm); }
.article-nav-item:first-child { border-right: 1px solid var(--color-border); }
.article-nav-item:last-child { text-align: right; }
.article-nav-dir {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-nav-item:last-child .article-nav-dir { justify-content: flex-end; }
.article-nav-dir svg { width: 14px; height: 14px; stroke-width: 1.5; }
.article-nav-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
}

/* ── 13. INSPIRATION GRID / MASONRY ────────────────────────── */
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.masonry-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.75);
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  pointer-events: none;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay-text {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.masonry-overlay-link {
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.masonry-overlay-link svg { width: 12px; height: 12px; stroke-width: 1.5; }

.masonry-item--hidden { display: none; }

/* Inspiration page header */
.page-header {
  background: var(--color-bg-warm);
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}
.page-header-inner { max-width: var(--max-width); margin: 0 auto; padding-inline: 40px; }
.page-header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 12px;
}
.page-header-desc {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 680px;
  line-height: 1.65;
}

/* Filter bar for inspirations */
.inspi-filter-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
}
.inspi-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.inspi-filter-left {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.inspi-filter-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.view-toggle-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  cursor: pointer;
  background: none;
  transition: var(--transition);
}
.view-toggle-btn.active, .view-toggle-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.view-toggle-btn svg { width: 16px; height: 16px; stroke-width: 1.5; }

.sort-select-wrap {
  position: relative;
}
.sort-select {
  font-family: var(--font-heading);
  font-size: 12px;
  border: 1px solid var(--color-border);
  padding: 6px 32px 6px 12px;
  color: var(--color-text-secondary);
  background: transparent;
  outline: none;
  cursor: pointer;
}
.sort-select-wrap::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-top-color: var(--color-text-muted);
  pointer-events: none;
}

/* ── 14. LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-caption {
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.lightbox-close svg { width: 20px; height: 20px; stroke-width: 1.5; }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); color: #fff; }
.lightbox-nav--prev { left: 24px; }
.lightbox-nav--next { right: 24px; }
.lightbox-nav svg { width: 20px; height: 20px; stroke-width: 1.5; }

/* ── 15. GUIDES ────────────────────────────────────────────── */
.guide-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.guide-cat-card {
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  background: var(--color-bg);
}
.guide-cat-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.guide-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  color: var(--color-accent);
}
.guide-cat-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.guide-cat-card:hover .guide-cat-icon {
  background: var(--color-accent);
  color: #fff;
}
.guide-cat-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}
.guide-cat-count {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
}

.guide-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  margin-bottom: 12px;
  transition: var(--transition);
  text-decoration: none;
}
.guide-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent-warm);
  transform: translateX(4px);
}
.guide-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-bg-muted);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.guide-icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: background var(--transition-fast);
}
.guide-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.guide-card:hover .guide-icon { background: var(--color-accent); color: #fff; }
.guide-body { flex: 1; }
.guide-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.guide-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.guide-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.guide-level {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 2px;
}
.guide-level--debutant  { background: #e8f5e9; color: #2e7d32; }
.guide-level--inter     { background: #fff8e1; color: #f57f17; }
.guide-level--avance    { background: #fbe9e7; color: #bf360c; }
.guide-time {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.guide-time svg { width: 13px; height: 13px; stroke-width: 1.5; }
.guide-arrow { margin-left: auto; color: var(--color-text-muted); }
.guide-arrow svg { width: 18px; height: 18px; stroke-width: 1.5; }

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition-fast);
}
.accordion-trigger:hover { color: var(--color-accent); }
.accordion-question {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  line-height: 1.45;
}
.accordion-icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition);
}
.accordion-icon svg { width: 18px; height: 18px; stroke-width: 1.5; display: block; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-panel-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

/* ── 16. TENDANCES PAGE ────────────────────────────────────── */
.tendances-hero {
  background: var(--color-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.tendances-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,149,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tendances-hero-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent-warm);
  margin-bottom: 20px;
}
.tendances-hero h1 {
  font-size: 42px;
  color: #fff;
  max-width: 700px;
  margin-bottom: 20px;
}
.tendances-hero-desc {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.trend-featured-card {
  display: grid;
  grid-template-columns: 55fr 45fr;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 48px;
}
.trend-featured-image { overflow: hidden; }
.trend-featured-image img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.trend-featured-content {
  background: var(--color-bg-warm);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trend-featured-content .section-label {
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent-warm);
  padding-left: 12px;
  margin-bottom: 20px;
}
.trend-featured-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
.trend-featured-excerpt {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 16px;
}

.stats-band {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 48px;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Trend timeline */
.trend-timeline {
  position: relative;
  padding: 32px 0;
}
.trend-timeline-track {
  display: flex;
  gap: 0;
  align-items: center;
  position: relative;
}
.trend-timeline-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-border);
  transform: translateY(-50%);
  z-index: 0;
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-border);
  border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-border);
  transition: var(--transition);
  margin-bottom: 16px;
}
.timeline-node.active .timeline-dot,
.timeline-node:hover .timeline-dot {
  background: var(--color-accent-warm);
  box-shadow: 0 0 0 2px var(--color-accent-warm);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.timeline-name {
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-align: center;
}
.timeline-node.active .timeline-year { color: var(--color-accent-warm); }
.timeline-node.active .timeline-name { color: var(--color-primary); font-weight: 600; }

/* Color swatches */
.color-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.color-swatch {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.swatch-dot {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-border);
}
.swatch-name {
  font-family: var(--font-heading);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* ── 17. ABOUT PAGE ────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
  padding-block: var(--space-xl);
}
.about-story-text h2 {
  font-size: 32px;
  margin-bottom: 24px;
}
.about-story-text p {
  margin-bottom: 20px;
  color: var(--color-text-secondary);
  line-height: 1.78;
}
.about-story-image { position: relative; }
.about-story-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-story-image::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--color-accent-warm);
  opacity: 0.2;
  z-index: -1;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-block: var(--space-xl);
}
.mission-pillar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.mission-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: rgba(255,255,255,0.6);
}
.mission-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.mission-pillar-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent-warm);
}
.mission-pillar-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-member { }
.team-member-photo-wrap {
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.team-member-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(25%);
  transition: filter 0.5s ease, transform 0.5s ease;
  display: block;
}
.team-member-photo-wrap:hover .team-member-photo {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.team-member-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-member-role {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.team-member-bio {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.key-figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding-block: var(--space-xl);
}
.key-figure-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.key-figure-label {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.value-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
.value-item:nth-child(2) { border-top: 1px solid var(--color-border); }
.value-item--reverse .value-text { order: 2; }
.value-item--reverse .value-image-wrap { order: 1; }
.value-text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.value-text h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.value-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
}
.value-image-wrap { overflow: hidden; }
.value-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── 18. CONTACT & FORMS ───────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 0;
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-bottom: 64px;
}
.contact-form-wrap {
  padding: 48px;
  border-right: 1px solid var(--color-border);
}
.contact-info-wrap {
  background: var(--color-primary);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-warm);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  color: var(--color-accent-warm);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-text {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #fff;
  line-height: 1.55;
}
.contact-info-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}
.contact-press-label {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.contact-press-email {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-accent-warm);
  text-decoration: none;
}

.map-placeholder {
  height: 400px;
  background: var(--color-bg-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--color-border);
}
.map-placeholder svg {
  width: 40px;
  height: 40px;
  stroke-width: 1;
  color: var(--color-text-muted);
}
.map-placeholder-text {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}
.map-placeholder-addr {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: center;
}

/* Form fields */
.form-group { margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}
.form-label .optional {
  color: var(--color-text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  margin-left: 6px;
}
.form-control {
  width: 100%;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  border-radius: 0;
}
.form-control::placeholder { color: var(--color-text-muted); font-style: italic; }
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(61,90,128,0.1);
  background: var(--color-bg);
}
.form-control.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; line-height: 1.65; }
select.form-control { cursor: pointer; }

.form-error-msg {
  display: none;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-error);
  margin-top: 6px;
}
.form-error-msg.visible { display: block; }

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.form-checkbox-wrap label {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-secondary);
  cursor: pointer;
  line-height: 1.55;
}
.form-checkbox-wrap a { color: var(--color-accent); text-decoration: underline; }

.form-note {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 16px;
}
.form-success {
  display: none;
  background: var(--color-bg-warm);
  border-left: 3px solid var(--color-success);
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-primary);
  line-height: 1.55;
}
.form-success.visible { display: block; }
.form-error-global {
  display: none;
  background: #fbe9e7;
  border-left: 3px solid var(--color-error);
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-error);
}
.form-error-global.visible { display: block; }

/* ── 19. LEGAL PAGES ───────────────────────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 40px;
}
.legal-content h1 {
  font-size: 36px;
  margin-bottom: 12px;
}
.legal-update {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.legal-content p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
.legal-content ul {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-content ul li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent-warm);
}
.legal-content strong { color: var(--color-primary); font-weight: 600; }
.legal-content a { color: var(--color-accent); text-decoration: underline; }

/* ── 20. PAGINATION ────────────────────────────────────────── */
/* (defined in section 4 / BUTTONS) */

/* ── 21. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--color-primary);
  padding-top: 0;
  padding-bottom: 0;
}

.footer-newsletter-band {
  background: var(--color-accent-warm);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-newsletter-text p {
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 480px;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.footer-newsletter-form .btn {
  background: rgba(0,0,0,0.2);
  border: none;
  border-left: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 12px 20px;
  flex-shrink: 0;
  font-size: 12px;
  border-radius: 0;
  transition: background 0.2s;
}
.footer-newsletter-form .btn:hover { background: rgba(0,0,0,0.35); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  display: inline-block;
}
.footer-logo .logo-a { color: var(--color-accent-warm); }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--color-secondary);
  margin-bottom: 16px;
  display: block;
}
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 240px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
  margin-bottom: 20px;
  display: block;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-col-links a:hover { color: var(--color-accent-warm); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  display: flex;
}
.footer-social a:hover { color: var(--color-accent-warm); }
.footer-social svg { width: 18px; height: 18px; stroke-width: 1.5; }
.footer-lang {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  gap: 12px;
}
.footer-lang a { color: var(--color-text-muted); transition: color var(--transition-fast); }
.footer-lang a:hover, .footer-lang a.active { color: #fff; }

/* ── 22. UTILITIES ─────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  z-index: 999;
}
.skip-link:focus { top: 0; }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

/* ── 23. HOME PAGE SPECIFIC ────────────────────────────────── */
.inspiration-gallery-teaser {
  padding-block: var(--space-xl);
}
.inspiration-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 8px;
  margin-bottom: 32px;
}
.inspiration-teaser-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.inspiration-teaser-item:first-child {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.inspiration-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.inspiration-teaser-item:hover img { transform: scale(1.05); }

.guides-highlight-grid { gap: 20px; }
.guide-highlight-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-decoration: none;
}
.guide-highlight-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent-warm);
}
.guide-highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: background var(--transition-fast);
}
.guide-highlight-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.guide-highlight-card:hover .guide-highlight-icon { background: var(--color-accent); color: #fff; }
.guide-highlight-body { flex: 1; }
.guide-highlight-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.35;
}
.guide-highlight-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.guide-highlight-link {
  margin-top: 12px;
}

.testimonials-section {
  background: var(--color-primary);
  padding-block: var(--space-xl);
}
.testimonials-grid { gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px 28px;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.7;
  color: var(--color-accent-warm);
  opacity: 0.3;
  position: absolute;
  top: 24px;
  left: 24px;
  pointer-events: none;
  user-select: none;
}
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.testimonial-role {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-secondary);
}

/* Newsletter band */
.newsletter-band {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: 64px;
}
.newsletter-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding-inline: 40px;
}
.newsletter-band h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.newsletter-band p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  line-height: 1.65;
}
.newsletter-inline-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--color-border);
}
.newsletter-inline-form input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-bg);
  outline: none;
  color: var(--color-text);
}
.newsletter-inline-form input::placeholder { color: var(--color-text-muted); font-style: italic; }
.newsletter-inline-form button {
  border-radius: 0;
  flex-shrink: 0;
}

/* Comments */
.comments-section {
  background: var(--color-bg-warm);
  padding-block: var(--space-lg);
  margin-top: 48px;
}
.comment {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 24px;
  margin-bottom: 16px;
}
.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}
.comment-author {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}
.comment-date {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
  margin-left: auto;
}
.comment-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}
.comment-reply-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}
.comment-reply-btn:hover { color: var(--color-accent-warm); }
.comment-nested {
  margin-top: 16px;
  margin-left: 40px;
  border-left: 2px solid var(--color-border);
  padding-left: 16px;
}

/* About CTA */
.about-cta {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 64px 0;
  text-align: center;
}
.about-cta h2 { font-size: 28px; margin-bottom: 12px; }
.about-cta p { color: var(--color-text-secondary); margin-bottom: 28px; font-size: 16px; }
.about-cta .btn { margin: 0 8px; }
