/* === DESIGN TOKENS === */
:root {
  --ivory: #FAF7F2;
  --ivory-95: rgba(250, 247, 242, 0.95);
  --ivory-75: rgba(250, 247, 242, 0.75);
  --ivory-40: rgba(250, 247, 242, 0.4);
  --gold: #C9A57B;
  --gold-soft: rgba(201, 165, 123, 0.15);
  --gold-30: rgba(201, 165, 123, 0.3);
  --berry: #6B1B2D;
  --berry-dark: #4A1220;
  --berry-deep: #2A0A14;
  --ink: #1F1A18;
  --ink-80: rgba(31, 26, 24, 0.8);
  --ink-65: rgba(31, 26, 24, 0.65);
  --ink-40: rgba(31, 26, 24, 0.4);
  --ink-20: rgba(31, 26, 24, 0.2);
  --ink-10: rgba(31, 26, 24, 0.1);
  --ink-06: rgba(31, 26, 24, 0.06);
  --mist: #F0EBE3;
  --rose: #E8C5C0;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-quote: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Source Sans 3', system-ui, sans-serif;
  --measure-article: 720px;
  --measure-wide: 1280px;
  --measure-hero: 1440px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 300ms;
  --dur: 500ms;
  --dur-slow: 700ms;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--berry); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--berry-dark); }

.container { max-width: var(--measure-wide); margin: 0 auto; padding: 0 var(--gutter); }
.article-wrap { max-width: var(--measure-article); margin: 0 auto; padding: 0 var(--gutter); }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--ivory-95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-10);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  max-width: var(--measure-wide); margin: 0 auto;
}
.logo {
  font-family: var(--ff-display);
  font-size: 1.35rem; font-weight: 900;
  color: var(--berry);
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 0.65rem;
}
.logo-mono {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--berry); color: var(--gold);
  border-radius: 50%;
  font-family: var(--ff-display); font-weight: 900; font-size: 0.95rem;
  letter-spacing: -0.05em;
}
.logo-text { font-style: italic; font-weight: 700; }
.nav { display: flex; gap: 1.8rem; align-items: center; }
.nav a {
  color: var(--ink-80); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav a:hover { color: var(--berry); }
.nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 50%;
  width: 0; height: 1px; background: var(--gold);
  transition: all var(--dur) var(--ease); transform: translateX(-50%);
}
.nav a:hover::after { width: 100%; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  margin: 5px auto; transition: all var(--dur) var(--ease);
}
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: 64px; right: 0; bottom: 0; width: 80%; max-width: 320px;
    background: var(--ivory); flex-direction: column; align-items: flex-start;
    padding: 2rem var(--gutter); gap: 1.5rem; transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    border-left: 1px solid var(--ink-10);
  }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* === HERO HOME === */
.hero-home {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--berry) 0%, var(--berry-dark) 60%, var(--berry-deep) 100%);
  color: var(--ivory);
  overflow: hidden;
}
.hero-home::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--gold-soft) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232, 197, 192, 0.08) 0%, transparent 50%);
}
.hero-home-content { position: relative; z-index: 1; max-width: 800px; padding: 0 var(--gutter); }
.hero-kicker {
  font-family: var(--ff-quote); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 0.85rem; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.05;
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.hero-title em {
  font-family: var(--ff-quote); font-style: italic; font-weight: 400;
  color: var(--gold); letter-spacing: 0;
}
.hero-lead {
  font-family: var(--ff-quote); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.6;
  color: var(--ivory-75); max-width: 580px; margin: 0 auto 2.5rem;
}
.hero-divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 2.5rem auto;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem; background: transparent; color: var(--ivory);
  border: 1px solid var(--gold-30); border-radius: 2px;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em;
  font-weight: 500; transition: all var(--dur) var(--ease);
}
.hero-cta:hover { background: var(--gold); color: var(--berry-deep); border-color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.4em;
  z-index: 1;
}

/* === HERO ARTICLE === */
.hero-article {
  position: relative; min-height: 65vh; padding: 9rem 0 4rem;
  display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--berry-dark) 0%, var(--berry-deep) 100%);
  color: var(--ivory); overflow: hidden;
}
.hero-article-img {
  position: absolute; inset: 0; z-index: 0; opacity: 0.35;
  background-size: cover; background-position: center;
}
.hero-article::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(74, 18, 32, 0.6) 0%, rgba(42, 10, 20, 0.85) 100%);
}
.hero-article-inner { position: relative; z-index: 2; max-width: var(--measure-wide); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.hero-article-kicker {
  font-family: var(--ff-quote); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.25em;
  font-size: 0.8rem; color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-article-title {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.75rem); line-height: 1.1;
  margin-bottom: 1rem; max-width: 880px;
}
.hero-article-meta {
  font-family: var(--ff-quote); font-style: italic;
  font-size: 1rem; color: var(--ivory-75);
}
.breadcrumb {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory-75); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.6rem; opacity: 0.5; }

/* === SECTIONS === */
.section { padding: 6rem 0; }
.section-mist { background: var(--mist); }
.section-intro-wrap { padding: 2.5rem 0 0; }
.section-intro-wrap .section-intro { margin-bottom: 1.5rem; }
.section-kicker {
  font-family: var(--ff-quote); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.25em;
  font-size: 0.8rem; color: var(--gold);
  margin-bottom: 1rem; text-align: center;
}
.section-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15;
  text-align: center; color: var(--berry);
  margin-bottom: 1.5rem; position: relative;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 1px; background: var(--gold);
  margin: 1.5rem auto 0;
}
.section-intro {
  font-family: var(--ff-quote); font-style: italic;
  font-size: 1.15rem; line-height: 1.7; color: var(--ink-80);
  max-width: 640px; margin: 0 auto 3.5rem; text-align: center;
}

/* === GUIDES GRID ASYMETRIQUE === */
.guides-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem;
  max-width: var(--measure-wide); margin: 0 auto; padding: 0 var(--gutter);
}
.g-card {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--ivory); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  counter-increment: card;
}
.g-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(31, 26, 24, 0.12); }
.g-card a { display: block; color: inherit; height: 100%; }
.g-card-image { aspect-ratio: 3 / 2; overflow: hidden; background: var(--mist); }
.g-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform var(--dur-slow) var(--ease); }
.g-card:hover .g-card-image img { transform: scale(1.05); }
.g-card-body { padding: 1.5rem 1.75rem 1.75rem; position: relative; }
.g-card-body::before {
  content: counter(card, upper-roman);
  position: absolute; top: 0; right: 1rem;
  font-family: var(--ff-display); font-weight: 900;
  font-size: 4rem; line-height: 1;
  color: var(--gold-soft); opacity: 0.5; pointer-events: none;
  transform: translateY(-1rem);
}
.g-card-kicker {
  font-family: var(--ff-quote); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.72rem; color: var(--gold);
  margin-bottom: 0.6rem;
}
.g-card-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.35rem; line-height: 1.25;
  color: var(--berry); margin-bottom: 0.75rem;
}
.g-card-summary {
  font-size: 0.95rem; color: var(--ink-65); line-height: 1.55;
}
.g-card-feature { grid-column: span 8; }
.g-card-sq { grid-column: span 4; }
.g-card-po { grid-column: span 4; }
@media (max-width: 880px) {
  .g-card-feature, .g-card-sq, .g-card-po { grid-column: span 12; }
}

/* === BLOG GRID === */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem;
  max-width: var(--measure-wide); margin: 0 auto; padding: 0 var(--gutter);
}
.blog-card {
  background: var(--ivory); overflow: hidden; border-radius: 4px;
  border: 1px solid var(--ink-10);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(31, 26, 24, 0.08); }
.blog-card a { display: block; color: inherit; }
.blog-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mist); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform var(--dur-slow) var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 1.4rem 1.5rem 1.5rem; }
.blog-card-kicker {
  font-family: var(--ff-quote); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; color: var(--gold);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.2rem; line-height: 1.3;
  color: var(--berry); margin-bottom: 0.5rem;
}
.blog-card-summary { font-size: 0.92rem; color: var(--ink-65); line-height: 1.55; margin-bottom: 0.8rem; }
.blog-card-meta { font-family: var(--ff-quote); font-style: italic; font-size: 0.82rem; color: var(--ink-40); }

/* === ARTICLE === */
.article-summary {
  font-family: var(--ff-quote); font-style: italic;
  font-size: 1.3rem; line-height: 1.6; color: var(--ink-80);
  text-align: center; padding: 3rem 0 2rem;
  max-width: var(--measure-article); margin: 0 auto;
}
.article-summary::after {
  content: ''; display: block; width: 60px; height: 1px; background: var(--gold);
  margin: 2.5rem auto 0;
}
.article-body {
  max-width: var(--measure-article); margin: 0 auto;
  padding: 2rem var(--gutter) 4rem; font-size: 1.05rem; line-height: 1.85;
  color: var(--ink-80);
}
.article-body > p:first-of-type::first-letter {
  font-family: var(--ff-display); font-weight: 900;
  font-size: 4.2rem; line-height: 0.85; float: left;
  margin: 0.3rem 0.8rem -0.2rem 0; color: var(--berry);
}
.article-body h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.9rem; line-height: 1.25; color: var(--berry);
  margin: 3rem 0 1.25rem; position: relative; padding-bottom: 0.5rem;
}
.article-body h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 60px; height: 1px; background: var(--gold);
}
.article-body h3 {
  font-family: var(--ff-quote); font-style: italic; font-weight: 600;
  font-size: 1.4rem; line-height: 1.3; color: var(--berry-dark);
  margin: 2rem 0 1rem;
}
.article-body p { margin-bottom: 1.5rem; }
.article-body ul, .article-body ol { margin: 0 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: 0.6rem; }
.article-body blockquote, .article-body .pullquote {
  border-left: 3px solid var(--gold); padding: 0.3rem 1.5rem;
  margin: 2.5rem 0; font-family: var(--ff-quote); font-style: italic;
  font-size: 1.25rem; line-height: 1.55; color: var(--berry-dark);
}
.article-body a { color: var(--berry); border-bottom: 1px solid var(--gold-30); }
.article-body a:hover { color: var(--berry-dark); border-bottom-color: var(--gold); }
.article-body img { margin: 2rem auto; border-radius: 4px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.95rem; }
.article-body th, .article-body td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--ink-10); text-align: left; }
.article-body th { background: var(--mist); font-family: var(--ff-display); color: var(--berry); font-weight: 600; }

/* === TOC === */
.layout-with-toc {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter);
}
@media (min-width: 1080px) {
  .layout-with-toc { grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
  .layout-with-toc .article-body { padding-left: 0; padding-right: 0; max-width: none; }
  .layout-with-toc:not(:has(.toc)) > article { grid-column: 1 / -1; }
}
.toc {
  background: var(--mist); border-left: 2px solid var(--gold);
  padding: 1.5rem 1.3rem; font-size: 0.88rem;
  position: sticky; top: 100px; align-self: start;
  max-height: calc(100vh - 130px); overflow-y: auto;
}
.toc-title {
  font-family: var(--ff-quote); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.15em;
  font-size: 0.75rem; color: var(--gold); margin-bottom: 1rem;
}
.toc ul { list-style: none; margin: 0; }
.toc li { margin-bottom: 0.55rem; }
.toc a { color: var(--ink-65); border: none; transition: color var(--dur-fast) var(--ease); }
.toc a:hover { color: var(--berry); }

/* === FAQ === */
.faq {
  max-width: var(--measure-article); margin: 4rem auto 0;
  padding: 3rem var(--gutter); border-top: 1px solid var(--ink-10);
}
.faq-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.8rem; color: var(--berry); margin-bottom: 2rem;
  text-align: center;
}
.faq-item {
  border-bottom: 1px solid var(--ink-10); padding: 1.2rem 0;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 1rem;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.1rem; color: var(--berry); line-height: 1.4;
}
.faq-question::after {
  content: '+'; font-family: var(--ff-display); font-weight: 400;
  font-size: 1.8rem; color: var(--gold); transition: transform var(--dur) var(--ease);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease), padding var(--dur) var(--ease);
  font-size: 0.98rem; line-height: 1.65; color: var(--ink-65);
}
.faq-item.open .faq-answer { max-height: 800px; padding-top: 1rem; }

/* === RELATED === */
.related {
  background: var(--mist); padding: 5rem 0;
}
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
  max-width: var(--measure-wide); margin: 0 auto; padding: 0 var(--gutter);
}
.related-card {
  background: var(--ivory); padding: 1.5rem 1.5rem; border-radius: 4px;
  border: 1px solid var(--ink-10);
  transition: transform var(--dur) var(--ease);
}
.related-card:hover { transform: translateY(-3px); }
.related-card a { color: inherit; }
.related-card-kicker {
  font-family: var(--ff-quote); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.15em;
  font-size: 0.72rem; color: var(--gold); margin-bottom: 0.5rem;
}
.related-card-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.05rem; color: var(--berry); line-height: 1.35;
}

/* === IMMERSIVE === */
.immersive {
  position: relative; min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--ivory);
  background: linear-gradient(135deg, var(--berry-dark) 0%, var(--berry-deep) 100%);
  padding: 5rem 0; overflow: hidden;
}
.immersive::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 30%, var(--gold-soft) 0%, transparent 60%);
}
.immersive-content { position: relative; z-index: 1; max-width: 720px; padding: 0 var(--gutter); }
.immersive-kicker {
  font-family: var(--ff-quote); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 0.8rem; color: var(--gold); margin-bottom: 1.5rem;
}
.immersive-title {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15;
  margin-bottom: 1.5rem;
}
.immersive-text {
  font-family: var(--ff-quote); font-style: italic;
  font-size: 1.15rem; line-height: 1.65; color: var(--ivory-75);
  margin-bottom: 2.5rem;
}

/* === FOOTER === */
.footer {
  background: var(--berry-deep); color: var(--ivory-75);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: var(--measure-wide); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-brand .logo { color: var(--ivory); }
.footer-brand .logo-mono { background: var(--gold); color: var(--berry-deep); }
.footer-slogan {
  font-family: var(--ff-quote); font-style: italic; font-size: 0.95rem;
  margin-top: 1rem; line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--ff-quote); font-style: italic; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.78rem; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--ivory-75); font-size: 0.92rem; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-copyright {
  max-width: var(--measure-wide); margin: 3rem auto 0; padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  font-size: 0.78rem; text-align: center; color: var(--ivory-40);
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.6rem; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 500; font-family: var(--ff-body);
  border-radius: 2px; border: 1px solid var(--berry); cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-primary { background: var(--berry); color: var(--ivory); }
.btn-primary:hover { background: var(--berry-dark); border-color: var(--berry-dark); color: var(--ivory); }
.btn-outline { background: transparent; color: var(--berry); }
.btn-outline:hover { background: var(--berry); color: var(--ivory); }

/* === FORMS === */
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block; font-family: var(--ff-quote); font-style: italic;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--ink-20);
  background: var(--ivory); font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  border-radius: 2px; transition: border-color var(--dur-fast) var(--ease);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--berry); }
.form-field textarea { resize: vertical; min-height: 140px; }

/* === FILTRES BLOG === */
.blog-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
  margin: 0 auto 3rem; max-width: var(--measure-wide); padding: 0 var(--gutter);
}
.blog-filter {
  padding: 0.55rem 1.1rem; background: transparent;
  border: 1px solid var(--ink-20); color: var(--ink-65);
  font-family: var(--ff-body); font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; cursor: pointer; transition: all var(--dur-fast) var(--ease);
  border-radius: 2px;
}
.blog-filter:hover { border-color: var(--berry); color: var(--berry); }
.blog-filter.active { background: var(--berry); border-color: var(--berry); color: var(--ivory); }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === UTILITIES === */
.center { text-align: center; }
.spacer { height: 2rem; }
.divider {
  display: block; width: 60px; height: 1px; background: var(--gold);
  margin: 2rem auto;
}
.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; }

main { padding-top: 64px; }
