/* ============================================
   LE KRISTO — Design System
   ============================================ */

:root {
  --color-primary: #A0392E;       /* Terracotta grenat */
  --color-primary-dark: #7A2B23;
  --color-secondary: #C9A961;     /* Or safran */
  --color-secondary-dark: #A88B45;
  --color-accent: #5C7A4F;        /* Vert olive */
  --color-bg: #FAF7F2;            /* Crème chaude */
  --color-bg-alt: #F0E9DC;
  --color-dark: #1F1B16;          /* Charbon */
  --color-text: #2C2620;
  --color-muted: #6B6157;
  --color-line: #E5DDD0;
  --color-white: #FFFFFF;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(31, 27, 22, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 27, 22, 0.1);
  --shadow-lg: 0 16px 48px rgba(31, 27, 22, 0.14);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg { max-width: 100%; display: block; }

a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-primary-dark); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: .75rem; }
h4 { font-size: 1.15rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; color: var(--color-text); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.lead { font-size: 1.15rem; color: var(--color-muted); max-width: 65ch; }

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

section { padding: 5rem 0; }

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .lead { margin: 0 auto; }

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}
.logo span { color: var(--color-primary); }
.logo:hover { color: var(--color-dark); }

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

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width .25s var(--ease);
}

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

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--color-primary-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  margin: 5px auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg);
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s var(--ease);
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn-secondary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-secondary);
  color: var(--color-dark);
  border-color: var(--color-secondary);
}
.btn-gold:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-white);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.75) 0%, rgba(160, 57, 46, 0.55) 100%),
    url('../images/hero-home.jpg') center/cover;
  color: var(--color-white);
  padding: 6rem 0;
}

.hero-content { max-width: 720px; }

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-secondary);
  font-weight: 400;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero .eyebrow { color: var(--color-secondary); }

/* Hero variants per page */
.hero-restaurant {
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.7) 0%, rgba(92, 122, 79, 0.4) 100%),
    url('../images/hero-restaurant.jpg') center/cover;
}
.hero-traiteur {
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.75) 0%, rgba(160, 57, 46, 0.5) 100%),
    url('../images/hero-traiteur.jpg') center/cover;
}
.hero-salle {
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.78) 0%, rgba(201, 169, 97, 0.4) 100%),
    url('../images/hero-salle.jpg') center/cover;
}
.hero-distrib {
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.8) 0%, rgba(92, 122, 79, 0.45) 100%),
    url('../images/hero-distributeur.jpg') center/cover;
}
.hero-contact {
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.85) 0%, rgba(160, 57, 46, 0.55) 100%),
    url('../images/hero-contact.jpg') center/cover;
  min-height: 50vh;
}

.hero-sub {
  min-height: 55vh;
}

/* ============ MOBILE HERO ============ */
/* Réduit la hauteur des héros sur mobile pour que le CTA soit visible sans scroller */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 4rem 0 3rem;
  }
  .hero-sub { min-height: 48vh; padding: 3rem 0 2.5rem; }
  .hero-contact { min-height: 40vh; padding: 3rem 0 2rem; }
  .hero p { font-size: 1rem; }
}

/* ============ FAB CALL (mobile uniquement) ============ */
.fab-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: none; /* caché par défaut, visible sur mobile via media query */
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(160, 57, 46, 0.5), 0 2px 6px rgba(0,0,0,0.15);
  z-index: 99;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: fab-pulse 2.5s ease-out 2s infinite;
}
.fab-call:hover, .fab-call:focus {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(160, 57, 46, 0.6);
  color: #fff;
  animation: none;
}
.fab-call:active { transform: scale(0.96); }
.fab-call svg { width: 26px; height: 26px; fill: currentColor; }

@keyframes fab-pulse {
  0%   { box-shadow: 0 6px 20px rgba(160, 57, 46, 0.5), 0 0 0 0 rgba(160, 57, 46, 0.6); }
  70%  { box-shadow: 0 6px 20px rgba(160, 57, 46, 0.5), 0 0 0 16px rgba(160, 57, 46, 0); }
  100% { box-shadow: 0 6px 20px rgba(160, 57, 46, 0.5), 0 0 0 0 rgba(160, 57, 46, 0); }
}

@media (max-width: 768px) {
  .fab-call { display: flex; }
}
@media print {
  .fab-call { display: none !important; }
}

/* ============ BADGES & RATING ============ */
.rating-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  max-width: fit-content;
}

.rating-strip .stars { color: var(--color-secondary); font-size: 1.1rem; letter-spacing: 0.1em; }
.rating-strip .source { color: rgba(255,255,255,.88); font-size: 0.92rem; }
.rating-strip strong { color: var(--color-white); }

/* ============ CARDS / GRID ============ */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid var(--color-line);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}
.card .icon svg { width: 24px; height: 24px; }

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin-bottom: 1rem; }
.card .link-arrow {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.card .link-arrow:hover { gap: 0.7rem; }

/* Service card (homepage) - tall, image header */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--color-line);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card .img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
}

.service-card .body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--color-muted); flex: 1; margin-bottom: 1.25rem; }
.service-card .link-arrow {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap .2s var(--ease);
}
.service-card .link-arrow:hover { gap: 0.7rem; }

/* ============ FEATURES (text + image) ============ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }

.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .feature { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============ MENU ============ */
.menu-section {
  background: var(--color-bg-alt);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.menu-col h3 {
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-line);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 600; color: var(--color-dark); }
.menu-item-desc { font-size: 0.88rem; color: var(--color-muted); display: block; margin-top: 0.2rem; font-weight: 400; }
.menu-item-price {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--color-dark);
  color: var(--color-white);
}
.testimonials h2, .testimonials .eyebrow { color: var(--color-secondary); }
.testimonials .section-header h2 { color: var(--color-white); }

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial .stars { color: var(--color-secondary); margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.95);
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  text-align: center;
}
.cta-band h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-band .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.cta-band .btn-primary:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
  border-color: var(--color-secondary);
}

/* ============ INFO ROW (horaires/contact) ============ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.info-block h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.info-block p, .info-block li {
  font-size: 1rem;
  line-height: 1.7;
}
.info-block ul { list-style: none; }

/* ============ FORM ============ */
.form-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(160, 57, 46, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============ ALERTS ============ */
.alert {
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  border: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.alert-success {
  background: #EAF5E9;
  border-color: #B9D9B7;
  color: #2D5A2A;
}
.alert-error {
  background: #FCEDEA;
  border-color: #F1B7AD;
  color: #8B2418;
}
.alert strong { display: block; margin-bottom: 0.2rem; }
.alert .icon-circle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.alert-success .icon-circle { background: #4C9A47; color: white; }
.alert-error .icon-circle { background: #C0392B; color: white; }
.alert .body { flex: 1; }

/* Honeypot — DOIT rester invisible (anti-bot) */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ============ MAP ============ */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer h5 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(255,255,255,0.75); }
.footer ul a:hover { color: var(--color-secondary); }

.footer .logo { color: var(--color-white); display: inline-block; margin-bottom: 1rem; }

.footer-review {
  text-align: center;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1rem;
}
.footer-review a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background: rgba(201, 169, 97, 0.12);
  border: 1.5px solid var(--color-secondary);
  border-radius: var(--radius);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.98rem;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer-review a:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
  transform: translateY(-1px);
}
.footer-review .stars { letter-spacing: 0.1em; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--color-secondary); }

.socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background .2s var(--ease);
}
.socials a:hover { background: var(--color-primary); }
.socials svg { width: 18px; height: 18px; }

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.bg-alt { background: var(--color-bg-alt); }

/* Pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--color-dark);
  font-weight: 500;
}
.pill.gold { background: var(--color-secondary); border-color: var(--color-secondary); color: var(--color-dark); }

/* Big number stat */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat .label { font-size: 0.92rem; color: var(--color-muted); letter-spacing: 0.05em; }
