/* ============================================
   LA BELLE CORNE — STYLE SYSTEM
   Charcuterie artisanale · Aussonne
   ============================================ */

/* --- VARIABLES --- */
:root {
  /* Couleurs */
  --c-primary: #861345;
  --c-primary-light: #a82060;
  --c-primary-dark: #6a0f37;
  --c-accent: #1a1a1a;
  --c-accent-light: #f5f3f4;
  --c-accent-dark: #000000;
  --c-bg: #faf9f7;
  --c-surface: #ffffff;
  --c-surface-alt: #f3f1ed;
  --c-text: #1a1a2e;
  --c-text-soft: #4a4a5a;
  --c-text-muted: #9ca3af;
  --c-border: rgba(0,0,0,.08);

  /* Typographie */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body: 'Source Sans 3', -apple-system, sans-serif;

  /* Spacing */
  --space-unit: clamp(1rem, 2vw, 1.5rem);
  --space-xs: calc(var(--space-unit) * 0.5);
  --space-sm: var(--space-unit);
  --space-md: calc(var(--space-unit) * 2);
  --space-lg: calc(var(--space-unit) * 3);
  --space-xl: calc(var(--space-unit) * 4);
  --space-2xl: calc(var(--space-unit) * 6);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.03);
  --shadow-md: 0 2px 4px rgba(0,0,0,.05), 0 8px 16px rgba(0,0,0,.05), 0 16px 32px rgba(0,0,0,.03);
  --shadow-lg: 0 4px 8px rgba(0,0,0,.05), 0 16px 32px rgba(0,0,0,.07), 0 32px 64px rgba(0,0,0,.05);

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-base: 0.3s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--c-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  line-height: 1.15;
  overflow-wrap: break-word;
  word-break: break-word;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; }

p {
  overflow-wrap: break-word;
  word-break: break-word;
}

.text-accent { color: var(--c-primary); }
.text-accent-light { color: #e8a0b8; }
.text-soft { color: var(--c-text-soft); }
.text-muted { color: var(--c-text-muted); font-size: 0.9em; }
.text-lg { font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.8; }
.text-center { text-align: center; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.4rem, 3vw, 1.8rem);
  font-family: var(--f-body);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
  line-height: 1.2;
}

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--c-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}

.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.btn--lg { padding: clamp(0.85rem, 2vw, 1rem) clamp(1.8rem, 3vw, 2.4rem); font-size: clamp(0.95rem, 1.1vw, 1.05rem); }
.btn--full { width: 100%; }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: all var(--transition-base);
  padding-top: env(safe-area-inset-top, 0);
}

.nav--scrolled {
  background: rgba(250,249,247,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border), var(--shadow-sm);
  padding: var(--space-xs) 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--c-text);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  flex-shrink: 0;
}

.nav__logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.nav__links a {
  color: var(--c-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__links a.is-active {
  color: var(--c-primary);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* --- NAV OVERLAY (MOBILE) --- */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--c-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}

.nav__overlay.is-open {
  transform: translateX(0);
}

.nav__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: var(--c-text);
}

.nav__overlay-links {
  list-style: none;
  text-align: center;
}

.nav__overlay-links li {
  border-bottom: 1px solid var(--c-border);
}

.nav__overlay-links a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-text);
}

.nav__overlay-links a.is-active {
  color: var(--c-primary);
}

.nav__overlay-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

/* --- BADGE --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-primary);
  border: 1px solid rgba(134,19,69,.2);
  border-radius: var(--radius-full);
  background: rgba(134,19,69,.05);
  backdrop-filter: blur(8px);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250,249,247,.92) 0%, rgba(250,249,247,.82) 50%, rgba(250,249,247,.7) 100%);
  z-index: 1;
}

.hero__decorative-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,19,69,.08) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  z-index: 2;
  pointer-events: none;
}

.hero__decorative-dots {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(134,19,69,.12) 1px, transparent 1px);
  background-size: 12px 12px;
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding-top: clamp(7rem, 15vw, 10rem);
  padding-bottom: var(--space-xl);
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--c-text-soft);
  max-width: 60ch;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.hero__reassurance {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin-top: var(--space-xs);
}

.hero__metrics {
  position: relative;
  z-index: 3;
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero__metric {
  text-align: center;
}

.hero__metric-number {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.1;
}

.hero__metric-label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 0.3rem;
}

/* Hero animation */
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title { animation: heroSlideIn 0.8s var(--ease-out) 0.2s both; }
.hero__subtitle { animation: heroFadeUp 0.7s var(--ease-out) 0.4s both; }
.hero__ctas { animation: heroFadeUp 0.7s var(--ease-out) 0.55s both; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  position: relative;
  background: var(--c-surface-alt);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,19,69,.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  padding-top: clamp(7rem, 14vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero__title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.page-hero__accent-line {
  display: inline-block;
  width: 4px;
  height: 1.8em;
  background: var(--c-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.page-hero__subtitle {
  color: var(--c-text-soft);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  margin-top: var(--space-sm);
  max-width: 60ch;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.breadcrumb a {
  color: var(--c-text-muted);
}

.breadcrumb a:hover {
  color: var(--c-primary);
}

/* --- SECTIONS --- */
.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.section--diagonal {
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--c-primary);
  margin-bottom: var(--space-sm);
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 1px;
}

.section-desc {
  color: var(--c-text-soft);
  margin-top: var(--space-xs);
  max-width: 55ch;
}

.section-header:not(.section-header--left) .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* --- SPLIT LAYOUT --- */
.split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.split--55-45 {
  grid-template-columns: 55fr 45fr;
}

.split--reverse .split__visual {
  order: -1;
}

.split__visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.split__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* --- CHECK LIST --- */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: var(--space-sm) 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
}

.check-list li i,
.check-list li svg {
  color: var(--c-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* --- CARDS --- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--space-md);
}

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

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

.card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(134,19,69,.15);
}

.card--accent-left {
  border-left: 3px solid var(--c-primary);
}

.card--accent-top {
  border-top: 3px solid var(--c-primary);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(134,19,69,.08);
  color: var(--c-primary);
  margin-bottom: var(--space-sm);
}

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

.card p {
  color: var(--c-text-soft);
  max-width: 55ch;
}

.card__price {
  display: inline-block;
  margin-top: var(--space-sm);
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-primary);
}

.card__detail {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 0.2rem;
}

/* --- PRICING CARDS --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: var(--space-md);
}

.pricing-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

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

.pricing-card--featured {
  border-color: var(--c-primary);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.pricing-card__ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-primary);
  margin-bottom: var(--space-sm);
}

.pricing-card__header h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.pricing-card__price {
  margin-bottom: var(--space-sm);
}

.pricing-card__amount {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--c-text);
}

.pricing-card__unit {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-sm);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--c-text-soft);
  border-bottom: 1px solid var(--c-border);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li i,
.pricing-card__features li svg {
  color: var(--c-primary);
  flex-shrink: 0;
}

.pricing-card__badge {
  margin-top: var(--space-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-primary);
  background: rgba(134,19,69,.06);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* --- GALLERY GRID --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: var(--space-sm);
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--tall img {
  aspect-ratio: auto;
  min-height: 100%;
}

/* --- TESTIMONIALS --- */
.testimonials-scroll {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
}

.testimonials-scroll::-webkit-scrollbar {
  height: 4px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: var(--c-border);
  border-radius: 2px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: var(--c-primary);
  border-radius: 2px;
}

.testimonial {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: #e8a849;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--c-text-soft);
  line-height: 1.7;
  flex: 1;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-xs);
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  color: #fff;
}

.cta-banner__inner h2 {
  color: #fff;
  margin-bottom: var(--space-sm);
}

.cta-banner__inner p {
  color: rgba(255,255,255,.85);
  max-width: 50ch;
  margin: 0 auto var(--space-md);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.cta-banner__inner .hero__ctas {
  justify-content: center;
}

/* --- PARALLAX SECTION --- */
.parallax-section {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.75);
}

.parallax-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) 0;
}

.parallax-section__content h2 {
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: var(--space-md);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-primary), rgba(134,19,69,.15));
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: calc(-1 * var(--space-md) + 4px);
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-primary);
  border: 3px solid var(--c-bg);
  box-shadow: 0 0 0 2px var(--c-primary);
}

.section--alt .timeline__dot {
  border-color: var(--c-surface-alt);
}

.timeline__date {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-primary);
  margin-bottom: 0.3rem;
}

.timeline__content h3 {
  margin-bottom: 0.5rem;
}

.timeline__content p {
  color: var(--c-text-soft);
  max-width: 55ch;
}

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: var(--space-md);
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.1;
}

.stat__label {
  display: block;
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin-top: 0.4rem;
}

/* --- FAQ --- */
.faq {
  max-width: 750px;
}

.faq__item {