/* ==========================================================================
   effervesciences.fr — Design System "Effervescence Scientifique"
   ==========================================================================
   Concept : Carnet de laboratoire de luxe — la précision d'un catalogue
   d'histoire naturelle du XIXe siècle, la chaleur d'un magazine premium.

   Fonts : Playfair Display (display/titres) · Source Serif 4 (corps éditorial)
           DM Mono (kickers, labels, données techniques)
   Palette : Émeraude #2D6A4F · Menthe #52B788 · Or #E9C46A
             Crème #F8F6F0 · Gris doux #EEF0EC · Anthracite #1C2826
   ========================================================================== */

/* ============================================================
   1. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Palette Effervescence Scientifique --- */
  --emerald:       #2D6A4F;
  --emerald-dark:  #1F4D39;
  --emerald-deep:  #142E22;
  --emerald-light: #3D8A68;
  --emerald-muted: rgba(45, 106, 79, .08);
  --emerald-glow:  rgba(45, 106, 79, .18);

  --mint:          #52B788;
  --mint-light:    #74C9A0;
  --mint-muted:    rgba(82, 183, 136, .12);

  --gold:          #E9C46A;
  --gold-dark:     #C9A040;
  --gold-deeper:   #A07820;
  --gold-muted:    rgba(233, 196, 106, .15);
  --gold-glow:     rgba(233, 196, 106, .30);

  --cream:         #F8F6F0;
  --cream-warm:    #F2EFE7;
  --cream-deep:    #EAE5D8;

  --bg-alt:        #EEF0EC;
  --bg-dark:       #1C2826;
  --bg-dark-2:     #243028;
  --bg-card:       #FFFFFF;

  --ink:           #1C2826;
  --ink-sec:       #3D4F47;
  --ink-muted:     #6B7F77;
  --ink-light:     #9AADA5;
  --ink-white:     #F8F6F0;

  /* --- Category badge colors --- */
  --cat-biosciences:    #2D6A4F;
  --cat-sante:          #52B788;
  --cat-animaux:        #E9C46A;
  --cat-alimentation:   #8B6914;
  --cat-physique:       #2F6EA5;

  /* --- Borders --- */
  --border:        #DDD8CC;
  --border-soft:   #E8E3D8;
  --border-em:     rgba(45, 106, 79, .22);

  /* --- Shadows — layered for depth --- */
  --shadow-xs:     0 1px 2px rgba(28,40,38,.04);
  --shadow-sm:     0 2px 6px rgba(28,40,38,.06), 0 1px 2px rgba(28,40,38,.04);
  --shadow-md:     0 4px 16px rgba(28,40,38,.07), 0 1px 4px rgba(28,40,38,.05);
  --shadow-lg:     0 8px 32px rgba(28,40,38,.09), 0 2px 8px rgba(28,40,38,.06);
  --shadow-card:   0 2px 12px rgba(28,40,38,.05), 0 0 0 1px rgba(28,40,38,.04);
  --shadow-gold:   0 4px 24px rgba(233,196,106,.20);
  --shadow-em:     0 6px 24px rgba(45,106,79,.15);

  /* --- Spacing scale --- */
  --sp-2xs: .25rem;
  --sp-xs:  .5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  /* --- Radius --- */
  --r-sm:   3px;
  --r-md:   6px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-full: 9999px;

  /* --- Animation --- */
  --ease:        cubic-bezier(.4, 0, .2, 1);
  --ease-out:    cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.175, .885, .32, 1.275);
  --dur-fast:    .15s;
  --dur:         .25s;
  --dur-slow:    .45s;
  --dur-enter:   .65s;

  /* --- Layout --- */
  --max-w:       1160px;
  --max-w-prose: 720px;
  --nav-h:       68px;
}

/* ============================================================
   3. TYPOGRAPHY FOUNDATION
   ============================================================ */
body {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-size: 1.0625rem;
  line-height: 1.80;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'kern' 1, 'liga' 1, 'onum' 1;
}

/* --- Type scale --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.15rem; letter-spacing: 0; }
h5 { font-size: 1rem; font-weight: 600; }

p { max-width: 68ch; }

a:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

strong { font-weight: 600; color: var(--emerald-dark); }
em { font-style: italic; }

/* --- Kicker utility (DM Mono) --- */
.kicker {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
}

/* ============================================================
   4. LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--prose {
  max-width: var(--max-w-prose);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--ink-white);
}

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(248, 246, 240, .96);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
}

.site-header__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

/* --- Logo --- */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: -.02em;
  line-height: 1;
}

.site-logo__tagline {
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  line-height: 1;
}

/* --- Primary navigation --- */
.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}

.site-nav__link {
  font-family: 'Source Serif 4', serif;
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink-sec);
  padding: .4rem .75rem;
  border-radius: var(--r-md);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .75rem;
  right: .75rem;
  height: 1.5px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.site-nav__link:hover {
  color: var(--emerald);
  background: var(--emerald-muted);
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
  transform: scaleX(1);
}

.site-nav__link.active {
  color: var(--emerald);
  font-weight: 500;
}

/* --- Nav CTA --- */
.site-header__cta {
  margin-left: auto;
  font-family: 'DM Mono', monospace;
  font-size: .75rem;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
  padding: .45rem 1rem;
  border-radius: var(--r-full);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}

.site-header__cta:hover {
  background: var(--emerald);
  color: var(--cream);
}

/* --- Mobile burger --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--ink);
  margin-left: auto;
}

.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   6. HERO — HOMEPAGE (Plein écran avec overlay émeraude)
   ============================================================ */
.hero-home {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  min-height: clamp(520px, 85vh, 860px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

/* Gradient overlay : vert profond en bas, semi-transparent en haut */
.hero-home__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(20, 46, 34, .72) 0%,
      rgba(28, 40, 38, .55) 40%,
      rgba(45, 106, 79, .80) 100%
    );
  z-index: 1;
}

/* Particules SVG "effervescence" en arrière-plan */
.hero-home__bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-home__bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(233, 196, 106, .12);
  animation: bubble-rise linear infinite;
}

.hero-home__bubbles span:nth-child(1)  { width: 8px;  height: 8px;  left: 15%; animation-duration: 8s;  animation-delay: 0s;   bottom: -20px; }
.hero-home__bubbles span:nth-child(2)  { width: 5px;  height: 5px;  left: 28%; animation-duration: 11s; animation-delay: 1.5s; bottom: -20px; }
.hero-home__bubbles span:nth-child(3)  { width: 12px; height: 12px; left: 42%; animation-duration: 9s;  animation-delay: .8s;  bottom: -20px; }
.hero-home__bubbles span:nth-child(4)  { width: 6px;  height: 6px;  left: 58%; animation-duration: 13s; animation-delay: 3s;   bottom: -20px; }
.hero-home__bubbles span:nth-child(5)  { width: 10px; height: 10px; left: 71%; animation-duration: 7s;  animation-delay: .3s;  bottom: -20px; }
.hero-home__bubbles span:nth-child(6)  { width: 4px;  height: 4px;  left: 83%; animation-duration: 10s; animation-delay: 2s;   bottom: -20px; }
.hero-home__bubbles span:nth-child(7)  { width: 7px;  height: 7px;  left: 8%;  animation-duration: 12s; animation-delay: 5s;   bottom: -20px; }
.hero-home__bubbles span:nth-child(8)  { width: 9px;  height: 9px;  left: 64%; animation-duration: 8.5s;animation-delay: 4s;   bottom: -20px; }

@keyframes bubble-rise {
  0%   { transform: translateY(0) scale(1);    opacity: 0; }
  10%  { opacity: .7; }
  90%  { opacity: .2; }
  100% { transform: translateY(-100vh) scale(1.4); opacity: 0; }
}

.hero-home__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: var(--sp-xl);
  width: 100%;
}

.hero-home__kicker {
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
  opacity: 0;
  animation: fade-up var(--dur-enter) var(--ease-out) .1s forwards;
}

.hero-home__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -.025em;
  max-width: 14ch;
  margin-bottom: var(--sp-md);
  opacity: 0;
  animation: fade-up var(--dur-enter) var(--ease-out) .25s forwards;
}

.hero-home__title em {
  font-style: italic;
  color: var(--gold);
}

.hero-home__subtitle {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(248, 246, 240, .80);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: var(--sp-lg);
  opacity: 0;
  animation: fade-up var(--dur-enter) var(--ease-out) .4s forwards;
}

.hero-home__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up var(--dur-enter) var(--ease-out) .55s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   7. HERO — ARTICLES & GUIDES (pages intérieures)
   ============================================================ */
.hero-article {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-article__img {
  width: 100%;
  height: clamp(260px, 40vw, 500px);
  object-fit: cover;
  opacity: .55;
}

.hero-article__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-lg) 1.5rem var(--sp-md);
  background: linear-gradient(to top, rgba(28,40,38,.92) 0%, rgba(28,40,38,.40) 70%, transparent 100%);
  max-width: var(--max-w);
  margin-inline: auto;
}

.hero-article__kicker { margin-bottom: .5rem; }

.hero-article__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--cream);
  line-height: 1.12;
  max-width: 22ch;
}

/* ============================================================
   8. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'DM Mono', monospace;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .7rem 1.5rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Solid primary */
.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

/* Outlined light (for dark backgrounds) */
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248,246,240,.55);
}
.btn--outline-light:hover {
  background: rgba(248,246,240,.12);
  border-color: var(--cream);
}

/* Outlined emerald */
.btn--outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn--outline:hover {
  background: var(--emerald);
  color: var(--cream);
}

/* Text link style */
.btn--text {
  padding: .4rem .2rem;
  border-radius: 0;
  font-size: .82rem;
  color: var(--emerald);
  border: none;
  letter-spacing: .04em;
  gap: .3rem;
}
.btn--text:hover { color: var(--emerald-dark); transform: none; }
.btn--text .arrow { transition: transform var(--dur) var(--ease); }
.btn--text:hover .arrow { transform: translateX(4px); }

/* ============================================================
   9. H2 FILETS ANIMÉS (signature visuelle)
   ============================================================ */
.section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: .6rem;
  margin-bottom: var(--sp-md);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--mint) 60%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}

.section-heading.visible::after,
h2.visible::after {
  transform: scaleX(1);
}

/* Auto-apply to article h2 */
.article-body h2 {
  position: relative;
  padding-bottom: .55rem;
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-md);
}
.article-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--mint) 55%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.article-body h2.visible::after { transform: scaleX(1); }

/* ============================================================
   10. BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-md);
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Coin or — signature visuelle */
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 22px 0 0;
  border-color: var(--gold) transparent transparent transparent;
  z-index: 1;
  transition: border-width var(--dur) var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card:hover::before {
  border-width: 28px 28px 0 0;
}

.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }

.blog-card__body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.blog-card__date {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  color: var(--ink-muted);
  letter-spacing: .06em;
}

.blog-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.blog-card:hover .blog-card__title { color: var(--emerald); }

.blog-card__excerpt {
  font-size: .9rem;
  color: var(--ink-sec);
  line-height: 1.65;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border-soft);
}

.blog-card__read {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald);
  transition: gap var(--dur) var(--ease);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.blog-card:hover .blog-card__read { gap: .55rem; }

/* ============================================================
   11. GUIDE CARDS (piliers thématiques)
   ============================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-md);
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

/* Numéro de fond */
.guide-card::before {
  content: attr(data-n);
  position: absolute;
  top: -.1em;
  right: .2em;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 700;
  color: var(--gold-muted);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color var(--dur-slow) var(--ease);
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-em);
  border-color: var(--emerald);
}
.guide-card:hover::before { color: rgba(233,196,106,.25); }

.guide-card__icon {
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.guide-card__kicker {
  position: relative;
  z-index: 1;
}

.guide-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
  position: relative;
  z-index: 1;
}
.guide-card:hover .guide-card__title { color: var(--emerald); }

.guide-card__desc {
  font-size: .9rem;
  color: var(--ink-sec);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.guide-card__link {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* ============================================================
   12. CATEGORY BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.badge--biosciences {
  background: rgba(45, 106, 79, .12);
  color: var(--emerald-dark);
}
.badge--sante-naturelle {
  background: rgba(82, 183, 136, .14);
  color: #2E7D57;
}
.badge--animaux-bien-etre {
  background: rgba(233, 196, 106, .20);
  color: var(--gold-deeper);
}
.badge--alimentation {
  background: rgba(139, 105, 20, .12);
  color: #6B4F10;
}
.badge--physique-chimie {
  background: rgba(47, 110, 165, .12);
  color: #1F5282;
}

/* ============================================================
   13. CATEGORY FILTER (blog/index)
   ============================================================ */
.cat-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}

.cat-filter {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.cat-filter:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.cat-filter.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--cream);
}

/* ============================================================
   14. ARTICLE BODY — CONTENU ÉDITORIAL
   ============================================================ */
.article-body {
  font-family: 'Source Serif 4', serif;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink);
  max-width: var(--max-w-prose);
}

.article-body > * + * { margin-top: 1.3em; }
.article-body > h2 + * { margin-top: .75em; }
.article-body > h3 + * { margin-top: .6em; }

.article-body h3 {
  font-size: 1.35rem;
  margin-top: 2.2em;
  color: var(--emerald-dark);
}

.article-body h4 {
  font-family: 'DM Mono', monospace;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 1.8em;
}

.article-body p { max-width: 66ch; }

.article-body a {
  color: var(--emerald);
  text-decoration: underline;
  text-decoration-color: var(--mint-muted);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.article-body a:hover {
  color: var(--emerald-dark);
  text-decoration-color: var(--emerald);
}

.article-body ul { list-style: none; }
.article-body ul li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: .4em;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.article-body ol {
  counter-reset: art-ol;
  list-style: none;
}
.article-body ol li {
  counter-increment: art-ol;
  padding-left: 2em;
  position: relative;
  margin-bottom: .5em;
}
.article-body ol li::before {
  content: counter(art-ol, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  color: var(--gold-dark);
  top: .25em;
  letter-spacing: .04em;
}

.article-body img {
  width: 100%;
  border-radius: var(--r-md);
  margin-block: var(--sp-md);
  box-shadow: var(--shadow-md);
}

.article-body figure { margin-block: var(--sp-lg); }
.article-body figcaption {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
  margin-top: .6rem;
  text-align: center;
}

/* --- Lettrine (drop cap 1er paragraphe) --- */
.article-body > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.6em;
  font-weight: 700;
  color: var(--emerald);
  float: left;
  line-height: .82;
  margin-right: .12em;
  margin-top: .08em;
  padding-bottom: .02em;
  shape-outside: margin-box;
}

/* ============================================================
   15. PULL QUOTES
   ============================================================ */
.pull-quote {
  border-left: 4px solid var(--mint);
  padding: var(--sp-sm) var(--sp-md);
  margin-block: var(--sp-lg);
  background: var(--mint-muted);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  position: relative;
}

.pull-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--mint);
  position: absolute;
  top: -.2rem;
  left: .5rem;
  line-height: 1;
  opacity: .35;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--emerald-dark);
  padding-left: 1.5rem;
}

.pull-quote cite {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--ink-muted);
  margin-top: .5rem;
  padding-left: 1.5rem;
  font-style: normal;
}

/* ============================================================
   16. FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  margin-block: var(--sp-xl);
}

.faq-section__title {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.faq-list { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-item.open {
  border-color: var(--emerald);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--sp-sm) var(--sp-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-sm);
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.faq-item.open .faq-question { color: var(--emerald); }

.faq-question__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--emerald-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  color: var(--emerald);
  font-size: .9rem;
  line-height: 1;
}
.faq-item.open .faq-question__icon {
  background: var(--emerald);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer__inner {
  padding: 0 var(--sp-md) var(--sp-md);
  font-size: .95rem;
  color: var(--ink-sec);
  line-height: 1.75;
  border-top: 1px solid var(--border-soft);
  padding-top: var(--sp-sm);
}

/* ============================================================
   17. STAT COUNTER SECTION
   ============================================================ */
.stats-section {
  background: var(--bg-dark);
  padding-block: var(--sp-2xl);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(45,106,79,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(233,196,106,.08) 0%, transparent 55%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-lg);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--sp-md);
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(248,246,240,.08);
}

.stat-item__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
  transition: color var(--dur) var(--ease);
}

.stat-item__label {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248,246,240,.55);
  line-height: 1.4;
}

.stat-item__desc {
  font-size: .85rem;
  color: rgba(248,246,240,.35);
  margin-top: .25rem;
  font-style: italic;
}

/* ============================================================
   18. CTA SECTION (fond émeraude)
   ============================================================ */
.cta-section {
  background: var(--emerald);
  padding-block: var(--sp-2xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(248,246,240,.03) 24px,
    rgba(248,246,240,.03) 25px
  );
  pointer-events: none;
}

.cta-section__content { position: relative; z-index: 1; }

.cta-section__title {
  color: var(--cream);
  margin-bottom: var(--sp-sm);
}

.cta-section__text {
  font-size: 1.05rem;
  color: rgba(248,246,240,.78);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

/* ============================================================
   19. PAGE LAYOUT (guides & articles)
   ============================================================ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-xl) 1.5rem;
}

@media (min-width: 1024px) {
  .page-layout {
    grid-template-columns: var(--max-w-prose) 1fr;
    align-items: start;
    gap: var(--sp-2xl);
  }
}

/* --- Summary box (intro card) --- */
.summary-box {
  background: var(--emerald-muted);
  border: 1px solid var(--border-em);
  border-left: 4px solid var(--emerald);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.summary-box__label {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: .4rem;
}

.summary-box p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-sec);
}

/* --- TOC sticky (table of contents) --- */
.toc {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-md));
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - var(--nav-h) - var(--sp-xl));
  overflow-y: auto;
}

.toc__title {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--sp-sm);
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border-soft);
}

.toc__list { display: flex; flex-direction: column; gap: .1rem; }

.toc__link {
  font-size: .88rem;
  color: var(--ink-muted);
  padding: .3rem .5rem;
  border-radius: var(--r-sm);
  border-left: 2px solid transparent;
  transition:
    color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  display: block;
  line-height: 1.4;
}
.toc__link:hover {
  color: var(--emerald);
  background: var(--emerald-muted);
  border-left-color: var(--mint);
}
.toc__link.active {
  color: var(--emerald);
  border-left-color: var(--emerald);
  font-weight: 500;
}

/* ============================================================
   20. RELATED ARTICLES
   ============================================================ */
.related-section {
  border-top: 2px solid var(--border);
  padding-top: var(--sp-xl);
  margin-top: var(--sp-xl);
}

.related-section__title {
  margin-bottom: var(--sp-lg);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-md);
}

/* ============================================================
   21. FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(248,246,240,.65);
  padding-block: var(--sp-2xl) var(--sp-lg);
  border-top: 1px solid rgba(248,246,240,.06);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.footer-brand__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .3rem;
}

.footer-brand__tagline {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}

.footer-brand__desc {
  font-size: .88rem;
  line-height: 1.65;
  max-width: 30ch;
}

.footer-col { display: flex; flex-direction: column; }

.footer-col__title {
  font-family: 'DM Mono', monospace;
  font-size: .64rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--sp-sm);
}

.footer-col__links { display: flex; flex-direction: column; gap: .35rem; }
.footer-col__link {
  font-size: .88rem;
  color: rgba(248,246,240,.50);
  transition: color var(--dur) var(--ease);
}
.footer-col__link:hover { color: var(--gold); }

.site-footer__bottom {
  border-top: 1px solid rgba(248,246,240,.08);
  padding-top: var(--sp-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.site-footer__copy {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .07em;
  color: rgba(248,246,240,.30);
}

/* ============================================================
   22. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  padding-block: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.breadcrumb__item {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  letter-spacing: .07em;
  color: var(--ink-muted);
}
.breadcrumb__item:last-child { color: var(--emerald); }
.breadcrumb__sep { color: var(--border); font-size: .7rem; }

/* ============================================================
   23. READING PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--gold) 100%);
  z-index: 200;
  width: 0%;
  transition: width .1s linear;
}

/* ============================================================
   24. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-em);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 90;
  font-size: 1rem;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   25. HOMEPAGE SECTIONS
   ============================================================ */
.home-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.home-section-header__eyebrow { margin-bottom: .4rem; }

/* ============================================================
   26. CONTACT FORM
   ============================================================ */
.contact-form { max-width: 560px; }

.form-group { margin-bottom: var(--sp-md); }

.form-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink-sec);
  margin-bottom: .45rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
  color: var(--ink);
  font-family: 'Source Serif 4', serif;
  font-size: .95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-muted);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   27. PAGE STATIQUES (Mentions légales, CGU, Plan du site)
   ============================================================ */
.static-page {
  max-width: var(--max-w-prose);
  margin-inline: auto;
  padding: var(--sp-xl) 1.5rem;
}

.static-page h1 { margin-bottom: var(--sp-lg); }
.static-page h2 { margin-top: var(--sp-xl); margin-bottom: var(--sp-sm); }
.static-page p { margin-bottom: 1em; }

/* ============================================================
   28. PAGE 404
   ============================================================ */
.page-404 {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-xl) 1.5rem;
}

.page-404__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 700;
  color: var(--emerald-muted);
  line-height: 1;
  display: block;
}

.page-404__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: var(--sp-sm);
}

.page-404__text {
  color: var(--ink-sec);
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

/* ============================================================
   29. SITEMAP PAGE
   ============================================================ */
.sitemap-section { margin-bottom: var(--sp-xl); }
.sitemap-section h2 { margin-bottom: var(--sp-sm); }
.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-left: var(--sp-sm);
  border-left: 2px solid var(--border);
}
.sitemap-links a {
  font-size: .95rem;
  color: var(--emerald);
  padding: .15rem 0;
}
.sitemap-links a:hover { text-decoration: underline; }

/* ============================================================
   30. BLOG INDEX — HEADER
   ============================================================ */
.blog-header {
  background: var(--bg-dark);
  padding-block: var(--sp-xl) var(--sp-lg);
  position: relative;
  overflow: hidden;
}

.blog-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--gold) 50%, var(--mint) 100%);
}

.blog-header__title {
  color: var(--cream);
  margin-bottom: .4rem;
}

.blog-header__subtitle {
  font-size: 1rem;
  color: rgba(248,246,240,.55);
  max-width: 50ch;
}

/* ============================================================
   31. UTILITY CLASSES
   ============================================================ */
.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;
}

.text-center { text-align: center; }
.text-kicker {
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.text-emerald { color: var(--emerald); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--ink-muted); }
.mt-auto { margin-top: auto; }

/* ============================================================
   32. RESPONSIVE
   ============================================================ */

/* --- Tablet (< 1024px) --- */
@media (max-width: 1023px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .guides-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

/* --- Mobile (< 768px) --- */
@media (max-width: 767px) {
  :root { --nav-h: 60px; }

  .site-nav { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; background: var(--cream); border-bottom: 1px solid var(--border);
    padding: var(--sp-sm) 1.5rem var(--sp-md); gap: .15rem; }
  .site-nav.open { display: flex; }
  .site-header__cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-home__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-home__actions { flex-direction: column; }
  .hero-home__actions .btn { width: 100%; justify-content: center; }

  .blog-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }

  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }

  .home-section-header { flex-direction: column; align-items: flex-start; gap: .5rem; }

  .page-layout { padding-inline: 1rem; }
  .article-body > p:first-of-type::first-letter { font-size: 2.8em; }
}

/* --- Très petit mobile (< 420px) --- */
@media (max-width: 419px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cat-filters { gap: .35rem; }
  .cat-filter { font-size: .62rem; padding: .35rem .8rem; }
}

/* ============================================================
   33. PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .back-to-top, .progress-bar,
  .toc, .related-section, .faq-section { display: none; }
  .article-body { font-size: 11pt; line-height: 1.6; }
  a::after { content: ' (' attr(href) ')'; font-size: 9pt; }
}

/* ============================================================
   34. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-home__bubbles { display: none; }
}

/* ============================================================
   INTERVIEWS — cards expert + blocs Q/R
   ============================================================ */
.interview-expert-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: var(--alt-bg);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  margin: 2rem 0;
}
.interview-expert-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.interview-expert-card__info h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  margin-bottom: .2rem;
}
.interview-expert-card__info p {
  font-size: .85rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Blocs Q/R — override !important pour casser tout héritage global */
blockquote.journalist-question,
blockquote.expert-answer,
blockquote.journalist-question p,
blockquote.expert-answer p {
  font-family: var(--ff-body) !important;
  font-style: normal !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}
blockquote.journalist-question::before,
blockquote.expert-answer::before {
  content: none !important;
  display: none !important;
}

.journalist-question {
  background: var(--alt-bg);
  border-left: 3px solid var(--border);
  padding: .9rem 1.15rem;
  margin: 1.5rem 0 .4rem;
  border-radius: 4px;
}
.expert-answer {
  background: #f7fbf6;
  border-left: 3px solid var(--emerald);
  padding: 1rem 1.2rem;
  margin: .4rem 0 1.5rem;
  border-radius: 4px;
}
.expert-answer p { margin-bottom: .7rem; }
.expert-answer p:last-child { margin-bottom: 0; }

.journalist-question > strong:first-child,
.expert-answer > strong:first-child {
  display: block;
  margin-bottom: .35rem;
  font-style: normal;
  font-family: var(--ff-mono);
  color: var(--gold);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
