/* =============================================
   MAXPATRIE — Design Stitch by Florian
   Palette : Warm Beige / Terracotta / Deep Navy
   Typo  : Playfair Display (headings) + Source Sans 3 (body)
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* =============================================
   CSS VARIABLES — Stitch Palette Exact
   ============================================= */
:root {
  /* === Fond principal — Beige (Stitch exact) === */
  --bg-beige:           #fbfbe2;
  --bg-beige-light:     #fdfded;
  --bg-beige-dark:      #f0f0d0;

  /* === Surfaces === */
  --bg-white:           #ffffff;
  --bg-card:            #ffffff;

  /* === Navy — Accents & headers intérieurs === */
  --navy:               #001626;
  --navy-dark:          #000d14;
  --navy-light:         #002644;

  /* === Terracotta — CTA, liens, accents === */
  --terracotta:         #924b26;
  --terracotta-dark:    #6e381c;
  --terracotta-light:   #f5e1d8;
  --terracotta-ghost:   rgba(146, 75, 38, 0.10);

  /* === Texte — Contraste WCAG AA renforcé (≥ 4.5:1 sur #fbfbe2) === */
  --text:               #1a1a1a;
  --text-light:         #3d3d3d;
  --text-muted:         #555555;

  /* === Legacy aliases — pour compatibilité HTML inline styles === */
  --cream:              var(--bg-beige);
  --cream-light:        var(--bg-beige-light);
  --cream-dark:         var(--bg-beige-dark);
  --saffron:            var(--terracotta);
  --saffron-dark:       var(--terracotta-dark);
  --saffron-light:      var(--terracotta-light);
  --saffron-ghost:      var(--terracotta-ghost);
  --spain-red:          var(--terracotta);
  --spain-red-dark:     var(--terracotta-dark);
  --spain-red-ghost:    var(--terracotta-ghost);
  --med-blue:           var(--navy);
  --med-blue-dark:      var(--navy);
  --med-blue-deep:      var(--navy-dark);
  --med-blue-ghost:     rgba(0, 22, 38, 0.07);
  --slate:              var(--navy);
  --slate-deep:         var(--navy-dark);
  --slate-light:        var(--navy-light);
  --slate-surface:      #0a3550;
  --accent:             var(--terracotta);
  --accent-dark:        var(--terracotta-dark);
  --accent-light:       var(--terracotta-ghost);
  --golden:             var(--terracotta);
  --golden-dark:        var(--terracotta-dark);
  --charcoal:           var(--text);
  --charcoal-light:     var(--text-light);
  --red-soft:           var(--terracotta);
  --white:              #ffffff;
  --red:                var(--terracotta);

  /* === Surfaces utilitaires === */
  --bg-main:            var(--bg-beige);
  --surface:            var(--bg-beige-dark);
  --surface-alt:        #f0ede6;
  --sand:               #f0ede6;
  --sand-dark:          #e4dbcf;
  --card-bg:            var(--bg-white);
  --section-alt:        #f0ede6;

  /* === Typographie === */
  --font-heading: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'SF Mono', 'Fira Code', 'Cousine', monospace;

  /* === Espacements === */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --max-width:        1100px;
  --max-width-narrow: 750px;

  /* === Easing === */
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);

  /* === Transitions === */
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 300ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-beige);
  line-height: 1.75;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHIE
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--terracotta);
}

/* Accessible focus ring on all interactive elements (WCAG AA) */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* Tabular nums for clean numeric alignment */
.tabular-nums, .calc-value, .epargne-chiffre, .kpi-card-amount, .quartier-price, .countdown-value, table td {
  font-variant-numeric: tabular-nums;
}

strong {
  color: var(--text);
  font-weight: 600;
}

/* Labels — uppercase, letter-spacing (Stitch spec) */
label, .label, .badge {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
}

/* Alternance : fond légèrement contrasté */
.section-alt {
  background: var(--section-alt);
  color: var(--text);
}

.section-alt h1,
.section-alt h2,
.section-alt h3,
.section-alt h4 {
  color: var(--text);
}

.section-alt p {
  color: var(--text-light);
}

.section-alt strong {
  color: var(--text);
}

/* =============================================
   MOTIF AZULEJOS TEXTURE — CSS pur
   Fond géométrique répétable style carreaux
   ============================================= */
.azulejos-bg {
  background-color: var(--navy);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(255, 255, 255, 0.06) 38px,
      rgba(255, 255, 255, 0.06) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(255, 255, 255, 0.06) 38px,
      rgba(255, 255, 255, 0.06) 40px
    ),
    repeating-conic-gradient(
      rgba(196, 115, 75, 0.12) 0% 12.5%,
      transparent 12.5% 25%
    ) 10px 10px,
    repeating-conic-gradient(
      rgba(196, 115, 75, 0.12) 0% 12.5%,
      transparent 12.5% 25%
    ) 10px 10px;
  background-size:
    40px 40px,
    40px 40px,
    80px 80px,
    80px 80px;
}

.azulejos-subtle {
  background-color: var(--navy-dark);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.02) 20px,
      rgba(255, 255, 255, 0.02) 22px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(196, 115, 75, 0.03) 20px,
      rgba(196, 115, 75, 0.03) 22px
    );
}

/* =============================================
   NAVBAR — Default: fond BEIGE, texte foncé (Home)
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: var(--bg-beige);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(251, 251, 226, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Navbar Navy Variant — Pages intérieures (budget, etc.) --- */
.navbar.navbar-navy {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.navbar.navbar-navy.scrolled {
  background: rgba(0, 22, 38, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.20);
}

.navbar.navbar-navy .nav-logo {
  color: #ffffff;
}

.navbar.navbar-navy .nav-links a {
  color: rgba(255, 255, 255, 0.75);
}

.navbar.navbar-navy .nav-links a:hover {
  color: #ffffff;
}

.navbar.navbar-navy .nav-links a::after {
  background: var(--terracotta);
}

.navbar.navbar-navy .nav-cta {
  background: var(--terracotta);
  color: #ffffff !important;
}

.navbar.navbar-navy .nav-toggle span {
  background: #ffffff;
}

.navbar.navbar-navy .nav-search input {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
  color: #ffffff;
}

.navbar.navbar-navy .nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.navbar.navbar-navy .nav-search input:focus {
  border-color: var(--terracotta);
}

/* --- Nav Logo --- */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-logo .emoji,
.nav-logo .flag {
  font-size: 1.6rem;
}

/* --- Nav Links --- */
.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* --- Nav Search --- */
.nav-search {
  display: flex;
  align-items: center;
  margin-left: var(--space-md);
}

.nav-search input {
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background: var(--bg-beige-light);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition-fast);
  width: 160px;
}

.nav-search input:focus {
  border-color: var(--terracotta);
}

.nav-search input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

/* --- Nav CTA --- */
.nav-cta {
  background: var(--terracotta);
  color: var(--bg-white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--terracotta-dark);
  color: var(--bg-white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition-base);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO — Dégradé rose → jaune/orangé (Stitch)
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
  background: linear-gradient(165deg, #e8b4b8 0%, #e8a098 20%, #e09860 42%, #e8a850 60%, #f0c060 78%, #fdf0c8 100%);
}

/* Texture subtile sur le hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 25% 70%, rgba(232, 168, 80, 0.12) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.04) 30px,
      rgba(255, 255, 255, 0.04) 32px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.04) 30px,
      rgba(255, 255, 255, 0.04) 32px
    );
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: var(--text);
}

.hero-content h1,
.hero-content p,
.hero-content .hero-subtitle {
  color: var(--text);
}

.hero-content h1 {
  margin-bottom: var(--space-md);
  line-height: 1.05;
  font-size: clamp(2.6rem, 7vw, 5rem);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.30);
}

.hero h1 .highlight {
  color: var(--terracotta);
}

/* Hero lead */
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  opacity: 0.85;
  max-width: 560px;
  font-weight: 300;
  color: var(--text);
}

/* Hero context */
.hero-context {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  opacity: 0.75;
  max-width: 540px;
  color: var(--text);
}

/* Hero countdown */
.hero-countdown {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.countdown-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  letter-spacing: 0;
  text-transform: none;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
  opacity: 0.82;
  color: var(--text);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: var(--space-xs);
  text-transform: none;
  letter-spacing: 0;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS — Terracotta (Stitch)
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  font-family: var(--font-body);
  border-radius: 8px;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--bg-white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(0, 22, 38, 0.35);
}

.btn-outline:hover {
  background: rgba(0, 22, 38, 0.06);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all var(--transition-base);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
}

.section:not(.section-alt) .btn-outline,
body > .section .btn-outline,
section:not(.section-alt) .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}

.section:not(.section-alt) .btn-outline:hover,
section:not(.section-alt) .btn-outline:hover {
  background: var(--navy);
  color: var(--bg-white);
  border-color: var(--navy);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

/* --- Hero Valencia (US-01, US-03) --- */
.hero-valencia {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  background: linear-gradient(145deg, #1b0918 0%, #4a1928 25%, #883226 50%, #c05828 72%, #d88235 88%, #e8a850 100%);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: url('../assets/img/hero-ciudad-arte.jpg') center 35%/cover no-repeat;
  mix-blend-mode: overlay;
  opacity: 0.52;
  filter: contrast(1.15) saturate(1.25);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.culture-card-img,
.heritage-card-img,
.tradition-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
  transition: transform 0.35s var(--ease-out);
}

.culture-card:hover .culture-card-img,
.heritage-card:hover .heritage-card-img,
.tradition-card:hover .tradition-card-img {
  transform: scale(1.03);
}

/* =============================================
   CARDS — Fond blanc, bordure fine, ombre légère
   border-radius: 8px max (Stitch)
   ============================================= */
.card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: var(--space-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

/* Variation par position dans grid-3 */
.grid-3 > .card:nth-child(3n+1) {
  border-left: none;
}

.grid-3 > .card:nth-child(3n+2) {
  border-radius: 8px;
}

.grid-3 > .card:nth-child(3n) {
  background: var(--bg-beige-dark);
  border-color: transparent;
  box-shadow: none;
}

.grid-3 > .card:nth-child(3n):hover {
  background: var(--surface-alt);
}

/* Cartes dans section-alt */
.section-alt .card {
  background: var(--bg-white);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.section-alt .card:hover {
  background: var(--bg-beige-light);
}

.section-alt .card h3 {
  color: var(--text);
}

.section-alt .card p {
  color: var(--text-light);
}

.section-alt .grid-3 > .card:nth-child(3n) {
  background: var(--bg-beige-dark);
  border-color: transparent;
}

/* Card icon */
.card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  line-height: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
  background: none !important;
}

.card-icon.terracotta,
.card-icon.blue,
.card-icon.golden,
.card-icon.olive {
  background: none;
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* =============================================
   GRIDS — 2/3/4 colonnes responsives
   ============================================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-lg);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.section-header .badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  padding: 0;
  border-radius: 0;
}

.section-alt .section-header .badge {
  color: var(--terracotta);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0;
}

.section-alt .section-header p {
  color: var(--text-light);
}

.badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: var(--space-sm);
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline {
  position: relative;
  padding: var(--space-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(3, 43, 68, 0.20);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: var(--space-lg);
  background: var(--bg-white);
  border-radius: 8px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.timeline-content h3 {
  color: var(--text);
}

.timeline-content p {
  color: var(--text-light);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(196, 115, 75, 0.20);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

/* =============================================
   BUDGET CALCULATOR
   ============================================= */
.calculator {
  background: var(--bg-white);
  border-radius: 8px;
  padding: var(--space-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.section-alt .calculator {
  background: var(--bg-white);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.calc-total-row {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.15rem;
  border-top: 2px solid var(--terracotta);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
}

.section-alt .calc-row {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.section-alt .calc-total-row {
  border-top-color: var(--terracotta);
}

.calc-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.calc-value {
  font-weight: 600;
  color: var(--terracotta);
}

.section-alt .calc-value {
  color: var(--terracotta);
}

.calc-scenario {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.calc-scenario button {
  flex: 1;
  padding: 0.55rem;
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.section-alt .calc-scenario button {
  border-color: rgba(0, 0, 0, 0.10);
  color: var(--text-light);
}

.calc-scenario button.active {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--bg-white);
}

.section-alt .calc-scenario button.active {
  border-color: var(--terracotta);
  background: var(--terracotta);
}

/* =============================================
   BUDGET PAGE LAYOUT
   ============================================= */
.budget-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.budget-epargne {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.epargne-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: var(--space-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.epargne-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.epargne-chiffre {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

.epargne-detail {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.budget-note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.budget-note a {
  color: var(--terracotta);
  font-weight: 600;
}

/* =============================================
   KPI CARDS — Scénarios Budget (Fold)
   ============================================= */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.kpi-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: var(--bg-beige-light);
}

.kpi-card.featured {
  border: 2px solid var(--terracotta);
  box-shadow: 0 4px 16px rgba(146, 75, 38, 0.12);
}

.kpi-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
  background: var(--terracotta-ghost);
  color: var(--terracotta);
}

.kpi-card.featured .kpi-card-badge {
  background: var(--terracotta);
  color: var(--bg-white);
}

.kpi-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.kpi-card-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--terracotta);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.kpi-card-period {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.kpi-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0;
}

/* =============================================
   CONTENT PHOTOS & FIGURES
   ============================================= */
.content-photo {
  margin: var(--space-xl) 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background: var(--bg-beige-dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.content-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  background-color: var(--bg-beige-dark);
  transition: transform 500ms var(--ease-out);
}

.content-photo:hover img {
  transform: scale(1.015);
}

.content-photo figcaption {
  padding: 0.75rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--bg-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =============================================
   QUARTIER CARDS
   ============================================= */
.quartier-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.quartier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: var(--bg-beige-light);
}

.quartier-card.featured {
  border-color: var(--terracotta);
  border-width: 2px;
  box-shadow: 0 2px 12px rgba(196, 115, 75, 0.12);
}

.section-alt .quartier-card {
  background: var(--bg-white);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.section-alt .quartier-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  background: var(--bg-beige-light);
}

.section-alt .quartier-card.featured {
  border-color: var(--terracotta);
  box-shadow: 0 2px 12px rgba(196, 115, 75, 0.12);
}

.quartier-card h3 {
  margin-bottom: var(--space-xs);
}

.section-alt .quartier-card h3 {
  color: var(--text);
}

.quartier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.quartier-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--terracotta);
  background: var(--terracotta-ghost);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-alt .quartier-badge {
  color: var(--terracotta);
  background: var(--terracotta-ghost);
}

.quartier-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.section-alt .quartier-desc {
  color: var(--text-light);
}

.quartier-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.quartier-filter button {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  color: var(--text-light);
}

.section-alt .quartier-filter button {
  border-color: rgba(0, 0, 0, 0.10);
  color: var(--text-light);
}

.quartier-filter button.active {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--bg-white);
}

.quartiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-lg);
}

.quartier-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.section-alt .quartier-price {
  color: var(--terracotta);
}

.quartier-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.meta-tag {
  background: var(--bg-beige-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
}

.section-alt .meta-tag {
  background: var(--bg-beige-dark);
  color: var(--text-light);
}

.meta-tag.good {
  background: rgba(139, 195, 74, 0.10);
  color: #6d9e38;
}

.meta-tag.warn {
  background: var(--terracotta-ghost);
  color: var(--terracotta-dark);
}

.quartier-score {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.score-item {
  text-align: center;
  flex: 1;
}

.score-value {
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.score-label {
  font-size: 0.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-alt .score-label {
  color: var(--text-light);
}

/* =============================================
   ÉDITORIAL — Page d'accueil, style magazine
   ============================================= */
.editorial-intro {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.editorial-intro h2 {
  margin-bottom: var(--space-md);
}

.editorial-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.editorial-col h3 {
  margin-bottom: var(--space-md);
  color: var(--terracotta);
}

.editorial-col p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
}

.editorial-full-bleed {
  background: var(--bg-beige-dark);
  padding: var(--space-xl) 0;
  border-radius: 8px;
  margin-top: var(--space-lg);
}

.editorial-quote {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  font-style: italic;
}

.editorial-quote p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.editorial-quote-attribution {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* =============================================
   GUIDE CARDS — Page d'accueil section guide
   ============================================= */
.guide-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.guide-row {
  display: grid;
  gap: var(--space-lg);
}

.guide-featured {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.guide-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
  display: block;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--terracotta);
  color: var(--text);
}

.guide-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.guide-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.guide-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  transition: color var(--transition-fast);
}

.guide-card:hover .guide-link {
  color: var(--terracotta-dark);
}

/* Guide list */
.guide-list {
  background: var(--bg-white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.guide-list-header {
  padding: var(--space-lg) var(--space-lg) var(--space-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.guide-list-header h3 {
  margin-bottom: var(--space-xs);
}

.guide-list-header p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.guide-list-items {
  display: flex;
  flex-direction: column;
}

.guide-list-item {
  display: flex;
  flex-direction: column;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition-fast);
  text-decoration: none;
  color: var(--text);
}

.guide-list-item:last-child {
  border-bottom: none;
}

.guide-list-item:hover {
  background: var(--bg-beige-light);
  color: var(--text);
}

.guide-list-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.guide-list-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Guide mini grid */
.guide-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--space-lg);
}

.guide-card--mini {
  text-align: center;
  padding: var(--space-lg);
}

.guide-card--mini h3 {
  font-size: 1.1rem;
}

/* =============================================
   SECTION CTA — Final call-to-action
   ============================================= */
.section-cta {
  background: var(--bg-beige-dark);
  color: var(--text);
  text-align: center;
  padding: var(--space-2xl) 0;
}

.section-cta h2 {
  color: var(--text);
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.section-cta .btn-primary {
  background: var(--terracotta);
  color: var(--bg-white);
}

.section-cta .btn-primary:hover {
  background: var(--terracotta-dark);
}

/* =============================================
   FOOTER — Fond BEIGE (#fbfbe2), texte foncé (Stitch)
   ============================================= */
.footer {
  background-color: var(--bg-beige);
  color: var(--text-light);
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer h4 {
  color: var(--text);
  margin-bottom: var(--space-md);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer a {
  color: var(--text-light);
  font-size: 0.82rem;
  display: inline-block;
  margin-bottom: 0.25rem;
}

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

.footer p {
  color: var(--text-light);
  font-size: 0.82rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-brand p {
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-light);
}

.footer-map-reference {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-map-reference span {
  font-size: 1.5rem;
  display: inline-block;
  margin-right: 0.4rem;
}

/* =============================================
   CONTENT PAGES — Pages intérieures
   ============================================= */
.content-page {
  padding-top: 100px;
}

.content-header {
  background: var(--bg-beige-dark);
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-bottom: var(--space-xl);
  color: var(--text);
}

.content-header h1 {
  color: var(--text);
}

.content-header p {
  color: var(--text-light);
}

.content-header .badge {
  color: var(--terracotta);
}

.content-body {
  font-size: 1rem;
  line-height: 1.85;
}

.content-body h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: 0;
  border-bottom: none;
  color: var(--text);
}

.content-body h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--terracotta);
}

.content-body ul,
.content-body ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-body li {
  margin-bottom: var(--space-xs);
}

.content-body blockquote {
  border-left: none;
  border: 1px solid rgba(196, 115, 75, 0.12);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--terracotta-ghost);
  border-radius: 8px;
  font-style: italic;
}

.content-body .highlight-box {
  background: rgba(3, 43, 68, 0.05);
  border-radius: 8px;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border: 1px solid rgba(3, 43, 68, 0.10);
  border-left: none;
}

/* =============================================
   ANIMATIONS — ease-out-quart only
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   prefers-reduced-motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================
   RESPONSIVE — 992 / 768 / 480
   ============================================= */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
  }

  .timeline-content {
    width: calc(100% - 5rem);
    margin-left: 4rem;
  }

  .timeline-dot {
    left: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .editorial-split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .budget-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

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

  .grid-2,
  .grid-3,
  .grid-4,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .content-photo img {
    height: 240px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    justify-content: center;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .container-narrow {
    padding: 0 var(--space-md);
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    background: var(--bg-beige);
    padding: 6rem var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    transition: right var(--transition-base);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.10);
    z-index: 999;
  }

  .navbar.navbar-navy .nav-links {
    background: var(--navy);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 998;
  }

  .nav-overlay.open {
    display: block;
  }

  .calc-scenario {
    flex-direction: column;
  }

  .calc-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .editorial-quote p {
    font-size: 1.1rem;
  }

  .hero-countdown {
    gap: 0.25rem;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .nav-search {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: 120px 0 var(--space-xl);
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .hero-stats {
    gap: var(--space-md);
  }

  .hero-stat-value {
    font-size: 1.4rem;
  }

  .section-header {
    margin-bottom: var(--space-lg);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-context {
    font-size: 0.82rem;
  }

  .epargne-chiffre {
    font-size: 2.2rem;
  }

  .guide-card {
    padding: var(--space-lg);
  }

  .editorial-intro h2 {
    font-size: 1.5rem;
  }
}
