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

/* =============================================================
   Design Tokens — Porcelaine & Houblon
   Bleu faïence + crème + or houblon + encre
   ============================================================= */

:root {
  /* Palette principale */
  --faience:       #2A5F8F;
  --faience-clair: #4A7FA9;
  --faience-nuit:  #1A3F6F;
  --or-houblon:    #C9A84C;
  --or-clair:      #E0C06A;
  --creme:         #F5F0E8;
  --creme-fonce:   #EDE5D8;
  --encre:         #1A2B3C;

  /* Dérivés opacité faïence */
  --faience-80: rgba(42,95,143,0.80);
  --faience-65: rgba(42,95,143,0.65);
  --faience-40: rgba(42,95,143,0.40);
  --faience-20: rgba(42,95,143,0.20);
  --faience-10: rgba(42,95,143,0.10);
  --faience-06: rgba(42,95,143,0.06);

  /* Dérivés opacité or */
  --or-40: rgba(201,168,76,0.40);
  --or-20: rgba(201,168,76,0.20);
  --or-10: rgba(201,168,76,0.10);

  /* Dérivés opacité crème */
  --creme-95: rgba(245,240,232,0.95);
  --creme-75: rgba(245,240,232,0.75);
  --creme-40: rgba(245,240,232,0.40);

  /* Polices */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --ff-accent:  'Cormorant Garamond', Georgia, serif;

  /* Mesures */
  --measure-article: 720px;
  --measure-wide:    1280px;
  --measure-hero:    1440px;
  --gutter:          clamp(1rem, 4vw, 2rem);

  /* Tailles fluid */
  --fs-xs:   0.8rem;
  --fs-sm:   0.9rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   clamp(1.5rem, 2vw + 1rem, 2rem);
  --fs-h3:   clamp(1.5rem, 1.5vw + 1rem, 1.875rem);
  --fs-h2:   clamp(1.875rem, 2vw + 1.25rem, 2.5rem);
  --fs-h1:   clamp(2.5rem, 4vw + 1rem, 4rem);
  --fs-hero: clamp(3rem, 5vw + 1.5rem, 5.5rem);

  /* Transitions */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 300ms;
  --dur:      500ms;
  --dur-slow: 700ms;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(26,43,60,0.08);
  --shadow-md: 0 4px 24px rgba(26,43,60,0.12);
  --shadow-lg: 0 12px 48px rgba(26,43,60,0.16);
}

/* =============================================================
   Anti-distorsion images (CODEX REGLE 14 — obligatoire)
   ============================================================= */

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

.img-hero     { aspect-ratio: 16/9; overflow: hidden; }
.img-card     { aspect-ratio: 3/2;  overflow: hidden; }
.img-body     { aspect-ratio: 3/2;  overflow: hidden; }
.img-portrait { aspect-ratio: 1/1;  overflow: hidden; border-radius: 50%; }

.img-hero img,
.img-card img,
.img-body img,
.img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =============================================================
   Reset & base
   ============================================================= */

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

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

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--encre);
  background-color: var(--creme);
}

a {
  color: var(--faience);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--faience-nuit); }

/* =============================================================
   Typography
   ============================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  line-height: 1.25;
  color: var(--encre);
}

h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p { margin-bottom: 1.25rem; }

blockquote {
  border-left: 3px solid var(--or-houblon);
  padding-left: 1.5rem;
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--faience-nuit);
  margin: 2rem 0;
}

/* =============================================================
   Layout helpers
   ============================================================= */

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

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

/* =============================================================
   Header
   ============================================================= */

.site-header {
  background: var(--creme);
  border-bottom: 1px solid var(--faience-20);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  max-width: var(--measure-hero);
  margin: 0 auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.site-header__logo-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--faience-nuit);
  line-height: 1.2;
}

.site-header__logo-sub {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or-houblon);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--encre);
  letter-spacing: 0.03em;
  transition: color var(--dur-fast) var(--ease);
}

.site-nav a:hover { color: var(--faience); }

.nav-cta {
  background: var(--faience);
  color: var(--creme) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background var(--dur-fast) var(--ease) !important;
}
.nav-cta:hover { background: var(--faience-nuit) !important; }

/* =============================================================
   Footer
   ============================================================= */

.site-footer {
  background: var(--faience-nuit);
  color: rgba(245,240,232,0.85);
  padding: 3rem var(--gutter) 1.5rem;
  margin-top: 4rem;
}

.site-footer__inner {
  max-width: var(--measure-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.site-footer h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--or-houblon);
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  font-size: var(--fs-sm);
  display: block;
  margin-bottom: 0.4rem;
  transition: color var(--dur-fast) var(--ease);
}
.site-footer a:hover { color: var(--creme); }

.site-footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.15);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(245,240,232,0.5);
  max-width: var(--measure-wide);
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================
   Signatures visuelles Porcelaine & Houblon
   ============================================================= */

/* Kicker alsacien */
.kicker {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-houblon);
  display: block;
  margin-bottom: 0.5rem;
}

/* Filet double or sous les H2 dans article */
.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.article-body h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--or-houblon);
  margin-top: 6px;
  box-shadow: 0 3px 0 var(--or-40);
}

.article-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body h4 { margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: var(--fs-lg); }

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.article-body li { margin-bottom: 0.4rem; }

/* =============================================================
   Hero homepage
   ============================================================= */

.hero-home {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--faience-nuit);
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--faience-80) 0%,
    var(--faience-65) 60%,
    rgba(26,63,111,0.9) 100%
  );
}

.hero-home__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--creme);
  padding: 2rem var(--gutter);
  max-width: 800px;
}

.hero-home__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--creme);
}

.hero-home__lead {
  font-size: var(--fs-lg);
  line-height: 1.65;
  color: rgba(245,240,232,0.9);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.hero-home__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.6);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2rem;
  cursor: pointer;
  transition: color var(--dur-fast);
}
.hero-home__scroll:hover { color: var(--or-houblon); }

/* =============================================================
   Hero page (guides/articles)
   ============================================================= */

.hero-page {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--faience);
  display: flex;
  align-items: flex-end;
}

.hero-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--faience-nuit) 0%, var(--faience-65) 60%, transparent 100%);
}

.hero-page__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem var(--gutter);
  max-width: var(--measure-wide);
  margin: 0 auto;
  width: 100%;
  color: var(--creme);
}

.hero-page__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--creme);
  line-height: 1.2;
}

/* =============================================================
   Guide cards (grille)
   ============================================================= */

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem var(--gutter);
  max-width: var(--measure-wide);
  margin: 0 auto;
}

.guide-card {
  position: relative;
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.guide-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent var(--or-houblon) transparent;
  z-index: 2;
}

.guide-card__img-wrap { position: relative; }

.guide-card__number {
  font-family: var(--ff-accent);
  font-size: clamp(4rem, 8vw, 7rem);
  font-style: italic;
  color: var(--or-10);
  position: absolute;
  top: -1rem; right: 1rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.guide-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.guide-card__title {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--encre);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.guide-card__summary {
  font-size: var(--fs-sm);
  color: rgba(26,43,60,0.7);
  line-height: 1.6;
  flex: 1;
}

.guide-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--faience);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--dur-fast);
}
.guide-card__link:hover { color: var(--faience-nuit); }
.guide-card__link::after { content: ' →'; }

/* =============================================================
   Blog cards
   ============================================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 3rem var(--gutter);
  max-width: var(--measure-wide);
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__cat {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or-houblon);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--encre);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  flex: 1;
}

.blog-card__summary {
  font-size: var(--fs-sm);
  color: rgba(26,43,60,0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__date {
  font-size: var(--fs-xs);
  color: rgba(26,43,60,0.5);
}

.blog-card__link {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--faience);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.blog-card__link:hover { color: var(--faience-nuit); }
.blog-card__link::after { content: ' →'; }

/* =============================================================
   Section labels & séparateurs
   ============================================================= */

.section-label {
  text-align: center;
  padding: 3.5rem var(--gutter) 0;
}

.section-label h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  color: var(--encre);
  margin-bottom: 0.75rem;
}

.section-label p {
  font-size: var(--fs-md);
  color: rgba(26,43,60,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.separator-or {
  width: 60px;
  height: 2px;
  background: var(--or-houblon);
  margin: 1.25rem auto 0;
  box-shadow: 0 3px 0 var(--or-40);
}

/* =============================================================
   Section immersive
   ============================================================= */

.section-immersive {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 2rem 0;
}

.section-immersive__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-immersive__overlay {
  position: absolute;
  inset: 0;
  background: var(--faience-80);
}

.section-immersive__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem var(--gutter);
  text-align: center;
  color: var(--creme);
}

.section-immersive__content h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  color: var(--creme);
  margin-bottom: 1rem;
}

.section-immersive__content p {
  font-size: var(--fs-md);
  color: rgba(245,240,232,0.9);
  line-height: 1.7;
}

/* =============================================================
   Article layout
   ============================================================= */

.article-header {
  background: var(--creme-fonce);
  padding: 3rem var(--gutter);
  border-bottom: 1px solid var(--faience-20);
}

.article-header__inner {
  max-width: var(--measure-article);
  margin: 0 auto;
}

.article-header__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  color: var(--encre);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.article-header__summary {
  font-size: var(--fs-md);
  color: rgba(26,43,60,0.75);
  line-height: 1.7;
  max-width: 640px;
}

.article-hero { margin: 0; }

.article-content {
  padding: 3rem var(--gutter);
  max-width: var(--measure-article);
  margin: 0 auto;
}

/* =============================================================
   FAQ
   ============================================================= */

.faq {
  margin: 3rem 0;
  border-top: 2px solid var(--faience-20);
}

.faq__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  color: var(--faience-nuit);
  margin: 2rem 0 1.5rem;
}

.faq__item {
  border-bottom: 1px solid var(--faience-10);
  padding: 1.25rem 0;
}

.faq__question {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--encre);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--or-houblon);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item.open .faq__question::after { content: '×'; color: var(--faience); }

.faq__answer {
  font-size: var(--fs-base);
  color: rgba(26,43,60,0.8);
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* =============================================================
   Breadcrumb
   ============================================================= */

.breadcrumb {
  font-size: var(--fs-xs);
  color: rgba(26,43,60,0.55);
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.breadcrumb a {
  color: rgba(26,43,60,0.55);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.breadcrumb a:hover { color: var(--faience); }
.breadcrumb span { color: rgba(26,43,60,0.35); }

/* Breadcrumb inside dark hero — override to light */
.hero-page .breadcrumb,
.hero-page .breadcrumb a { color: rgba(245,240,232,0.80); }
.hero-page .breadcrumb span { color: rgba(245,240,232,0.50); }
.hero-page .breadcrumb a:hover { color: var(--creme); text-decoration: underline; }

/* =============================================================
   Utility pages
   ============================================================= */

.page-content {
  max-width: var(--measure-article);
  margin: 0 auto;
  padding: 3rem var(--gutter);
}

.page-content h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--faience-20);
}

.page-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.page-content p, .page-content li { line-height: 1.75; }
.page-content ul { margin: 1rem 0 1.5rem 1.5rem; }

/* =============================================================
   Formulaire contact
   ============================================================= */

.contact-form { max-width: 560px; }

.contact-form label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--encre);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--faience-20);
  border-radius: 2px;
  background: white;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--encre);
  transition: border-color var(--dur-fast);
  margin-bottom: 1.25rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--faience);
  box-shadow: 0 0 0 3px var(--faience-10);
}

.contact-form textarea { min-height: 160px; resize: vertical; }

.btn-primary {
  display: inline-block;
  background: var(--faience);
  color: var(--creme);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--dur-fast) var(--ease);
}
.btn-primary:hover { background: var(--faience-nuit); }

/* =============================================================
   404
   ============================================================= */

.page-404 {
  text-align: center;
  padding: 6rem var(--gutter);
}

.page-404 h1 {
  font-family: var(--ff-accent);
  font-size: clamp(5rem, 15vw, 10rem);
  font-style: italic;
  color: var(--faience-20);
  line-height: 1;
  margin-bottom: 1rem;
}

.page-404 p {
  font-size: var(--fs-lg);
  color: rgba(26,43,60,0.7);
  max-width: 400px;
  margin: 0 auto 2rem;
}

/* =============================================================
   Blog listing header
   ============================================================= */

.blog-header {
  background: var(--faience-nuit);
  color: var(--creme);
  padding: 4rem var(--gutter);
  text-align: center;
}

.blog-header h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  color: var(--creme);
  margin-bottom: 0.75rem;
}

.blog-header p {
  font-size: var(--fs-md);
  color: rgba(245,240,232,0.8);
  max-width: 540px;
  margin: 0 auto;
}

/* =============================================================
   Sommaire (table des matières)
   ============================================================= */

.article-sommaire {
  background: var(--creme-fonce);
  border-left: 3px solid var(--or-houblon);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.article-sommaire__title {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faience-nuit);
  margin: 0 0 0.75rem;
}

.article-sommaire ol {
  margin: 0;
  padding-left: 1.25rem;
}

.article-sommaire li {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.article-sommaire a {
  color: var(--faience);
  text-decoration: none;
}

.article-sommaire a:hover {
  color: var(--or-houblon);
  text-decoration: underline;
}

/* =============================================================
   Responsive
   ============================================================= */

/* =============================================================
   Related pages / articles
   ============================================================= */

.related-section {
  margin: 3rem 0 2rem;
  border-top: 2px solid var(--faience-20);
  padding-top: 2rem;
}

.related-section__title {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-houblon);
  margin-bottom: 1rem;
}

.related-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.related-section__list li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--faience-20);
  border-radius: 2px;
  font-size: var(--fs-sm);
  color: var(--faience);
  text-decoration: none;
  background: white;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.related-section__list li a:hover {
  border-color: var(--faience);
  background: var(--faience-06);
  color: var(--faience-nuit);
}

@media (max-width: 768px) {
  .site-nav { display: none; }

  .guides-grid { grid-template-columns: 1fr; padding: 1.5rem var(--gutter); }
  .blog-grid   { grid-template-columns: 1fr; padding: 1.5rem var(--gutter); }

  .hero-home { min-height: 75vh; }
  .hero-page  { height: 280px; }

  .article-header { padding: 2rem var(--gutter); }
  .article-content { padding: 2rem var(--gutter); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
}
