/* ============================================
   caniche-nain-elevage.fr — Design System
   Palette : pierre claire, aubergine, laiton, corail doux
   Typo : DM Serif Display (titres) + Inter (corps)
   ============================================ */

:root {
  /* Palette pierre / aubergine / laiton */
  --stone-50: #faf9f7;
  --stone-100: #f0ede8;
  --stone-200: #e2ddd5;
  --stone-300: #c9c1b5;
  --stone-400: #a89e8f;
  --stone-500: #8a7e6e;

  --aubergine-900: #2d1033;
  --aubergine-800: #421850;
  --aubergine-700: #5a2270;
  --aubergine-600: #6e2d89;
  --aubergine-500: #8b3aad;
  --aubergine-400: #a95cc8;
  --aubergine-100: #ece0f3;

  --brass-500: #b8952f;
  --brass-400: #d4ad3c;
  --brass-300: #e6c65c;
  --brass-200: #f0da8a;
  --brass-100: #faf1cc;

  --coral-500: #d4705a;
  --coral-400: #e88a72;
  --coral-300: #f0a68e;
  --coral-200: #f7c5b4;
  --coral-100: #fce8e0;

  --white: #ffffff;
  --text-primary: #1a1118;
  --text-secondary: #5c4d56;
  --text-muted: #8a7e85;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45,16,51,.06);
  --shadow-md: 0 4px 12px rgba(45,16,51,.08);
  --shadow-lg: 0 8px 30px rgba(45,16,51,.12);
  --shadow-glow: 0 0 20px rgba(139,58,173,.15);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--stone-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--aubergine-600); text-decoration: none; transition: color .2s; }
a:hover { color: var(--aubergine-400); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--aubergine-900); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: var(--space-lg); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: var(--space-md); }
p { margin-bottom: var(--space-md); }

/* ---- Layout ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-3xl) 0; }
.section--stone { background: var(--stone-100); }
.section--aubergine {
  background: linear-gradient(135deg, var(--aubergine-900) 0%, var(--aubergine-800) 100%);
  color: var(--stone-100);
}
.section--aubergine h2, .section--aubergine h3 { color: var(--brass-300); }
.section--aubergine a { color: var(--coral-300); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--aubergine-900);
  font-weight: 500;
}
.logo strong { color: var(--aubergine-600); }
.logo-icon { font-size: 1.3rem; }
.nav-list {
  display: flex;
  gap: var(--space-lg);
}
.nav-list a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.nav-list a:hover, .nav-list a.active {
  color: var(--aubergine-600);
  border-bottom-color: var(--aubergine-500);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--aubergine-900);
  border-radius: 2px;
  transition: .3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-2xl);
  background:
    radial-gradient(ellipse at 20% 80%, rgba(139,58,173,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(184,149,47,.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--stone-50) 0%, var(--stone-100) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,58,173,.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--aubergine-100);
  color: var(--aubergine-700);
  font-size: .8rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  margin-bottom: var(--space-lg);
  letter-spacing: .02em;
}
.hero h1 {
  margin-bottom: var(--space-lg);
}
.hero h1 em {
  font-style: italic;
  color: var(--aubergine-600);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}
.hero-stats {
  display: flex;
  gap: var(--space-xl);
}
.hero-stat { text-align: center; }
.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--aubergine-700);
}
.hero-stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(45,16,51,.1));
}

/* ---- Search Bar ---- */
.search-bar {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
}
.search-bar input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--stone-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  transition: border-color .2s;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--aubergine-400);
}
.search-bar button {
  padding: var(--space-md) var(--space-xl);
  background: var(--aubergine-600);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.search-bar button:hover { background: var(--aubergine-500); }

/* ---- Dept Grid ---- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-lg);
}
.dept-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--stone-200);
  transition: all .25s;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.dept-card:hover {
  border-color: var(--aubergine-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.dept-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--aubergine-900);
}
.dept-card-meta {
  font-size: .85rem;
  color: var(--text-muted);
}
.dept-card-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--brass-100);
  color: var(--brass-500);
  font-size: .75rem;
  font-weight: 600;
  border-radius: 12px;
  width: fit-content;
}

/* ---- Score / Trust Cards ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--stone-200);
  text-align: center;
  transition: box-shadow .2s;
}
.trust-card:hover { box-shadow: var(--shadow-lg); }
.trust-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--aubergine-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.trust-card h3 { font-size: 1.1rem; margin-bottom: var(--space-sm); }
.trust-card p { font-size: .9rem; color: var(--text-secondary); margin: 0; }

/* ---- Tables ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table thead { background: var(--aubergine-900); color: var(--stone-100); }
.data-table th {
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-align: left;
}
.data-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--stone-100);
  font-size: .95rem;
}
.data-table tbody tr:hover { background: var(--stone-50); }
.data-table .tag-ok {
  display: inline-block;
  padding: 2px 8px;
  background: #d4edda;
  color: #155724;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 8px;
}
.data-table .tag-warn {
  display: inline-block;
  padding: 2px 8px;
  background: #fff3cd;
  color: #856404;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 8px;
}
.data-table .tag-danger {
  display: inline-block;
  padding: 2px 8px;
  background: #f8d7da;
  color: #721c24;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 8px;
}

/* ---- Checklist ---- */
.checklist { max-width: 640px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--stone-200);
}
.checklist-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
}
.checklist-icon--ok { background: #d4edda; color: #155724; }
.checklist-icon--warn { background: #fff3cd; color: #856404; }
.checklist-icon--danger { background: #f8d7da; color: #721c24; }
.checklist-text { font-size: .95rem; }
.checklist-text strong { color: var(--aubergine-800); }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--stone-200);
  padding: var(--space-lg) 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--aubergine-800);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--aubergine-400);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  margin-top: var(--space-md);
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
}

/* ---- Scorecard ---- */
.scorecard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}
.scorecard-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--stone-200);
}
.scorecard-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--aubergine-700);
}
.scorecard-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: var(--space-xs);
}

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--aubergine-100);
}
.timeline-step {
  position: relative;
  margin-bottom: var(--space-xl);
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--aubergine-500);
  border-radius: 50%;
  border: 3px solid var(--aubergine-100);
}
.timeline-step h3 { margin-bottom: var(--space-xs); }
.timeline-step p { font-size: .9rem; color: var(--text-secondary); }

/* ---- CTA Section ---- */
.cta-box {
  background: linear-gradient(135deg, var(--aubergine-800) 0%, var(--aubergine-700) 50%, var(--aubergine-600) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  color: var(--stone-100);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,198,92,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box h2 { color: var(--brass-300); margin-bottom: var(--space-md); }
.cta-box p { color: var(--stone-200); max-width: 560px; margin: 0 auto var(--space-lg); font-size: 1.05rem; }
.btn-cta {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--brass-400);
  color: var(--aubergine-900);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-cta:hover { background: var(--brass-300); transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--aubergine-900); }

/* ---- Content pages ---- */
.page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--stone-50) 0%, var(--stone-100) 100%);
  border-bottom: 1px solid var(--stone-200);
}
.page-hero h1 { margin-bottom: var(--space-md); }
.page-hero .lead { font-size: 1.1rem; color: var(--text-secondary); max-width: 660px; }

.content-body {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}
.content-body h2 { margin-top: var(--space-2xl); }
.content-body h3 { margin-top: var(--space-xl); }
.content-body ul, .content-body ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}
.content-body li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  list-style: disc;
}
.content-body ol li { list-style: decimal; }
.content-body blockquote {
  border-left: 4px solid var(--aubergine-400);
  background: var(--aubergine-100);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--aubergine-800);
}

/* ---- Internal links block ---- */
.internal-links {
  background: var(--stone-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}
.internal-links h3 { font-size: 1rem; color: var(--aubergine-800); margin-bottom: var(--space-md); }
.internal-links ul { display: flex; flex-wrap: wrap; gap: var(--space-sm); padding: 0; }
.internal-links li { list-style: none; }
.internal-links a {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  transition: all .2s;
}
.internal-links a:hover {
  border-color: var(--aubergine-400);
  background: var(--aubergine-100);
}

/* ---- Dept list page ---- */
.dept-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { margin-top: var(--space-xl); }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .search-bar { flex-direction: column; max-width: 100%; }
  .search-bar input, .search-bar button { width: 100%; }
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--stone-200);
    box-shadow: var(--shadow-md);
    gap: var(--space-md);
  }
  .nav-list.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .scorecard { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Premium Design: Hero with Image ---- */
.page-hero--image {
  position: relative;
  padding: var(--space-3xl) 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,16,51,.82) 0%, rgba(66,24,80,.7) 50%, rgba(45,16,51,.85) 100%);
  z-index: 1;
}
.page-hero--image .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero--image .container {
  position: relative;
  z-index: 2;
}
.page-hero--image h1 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.page-hero--image .lead {
  color: var(--stone-200);
  font-size: 1.15rem;
  max-width: 680px;
}
.page-hero--image .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: .85rem;
  color: var(--brass-300);
}
.page-hero--image .hero-breadcrumb a {
  color: var(--brass-200);
}

/* ---- Premium: Two-Column Section ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}
.split-section--reverse {
  direction: rtl;
}
.split-section--reverse > * {
  direction: ltr;
}
.split-section__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .4s ease;
}
.split-section__image:hover img {
  transform: scale(1.03);
}
.split-section__content h2 {
  margin-bottom: var(--space-md);
}
.split-section__content p {
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- Premium: Photo Gallery ---- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
.photo-gallery--4col {
  grid-template-columns: repeat(4, 1fr);
}
.photo-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.photo-gallery__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.photo-gallery__item:hover img {
  transform: scale(1.08);
}
.photo-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ---- Premium: Feature Block with Icon ---- */
.feature-block {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  margin-bottom: var(--space-lg);
  transition: box-shadow .2s;
}
.feature-block:hover {
  box-shadow: var(--shadow-md);
}
.feature-block__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--aubergine-100) 0%, var(--coral-100) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.feature-block__content h3 {
  margin-bottom: var(--space-xs);
}
.feature-block__content p {
  font-size: .95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ---- Premium: Ambient Image ---- */
.ambient-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: var(--space-2xl) 0;
  box-shadow: var(--shadow-lg);
}
.ambient-image img {
  width: 100%;
  display: block;
}
.ambient-image__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(transparent, rgba(45,16,51,.8));
  color: var(--white);
  font-size: .9rem;
  font-style: italic;
}

/* ---- Premium: Quote/Testimony ---- */
.testimony {
  position: relative;
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(135deg, var(--aubergine-100) 0%, var(--stone-100) 100%);
  border-radius: var(--radius-xl);
  margin: var(--space-2xl) 0;
  border-left: 4px solid var(--aubergine-500);
}
.testimony::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--aubergine-300);
  opacity: .3;
  line-height: 1;
}
.testimony p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--aubergine-800);
  font-style: italic;
}
.testimony cite {
  display: block;
  margin-top: var(--space-md);
  font-style: normal;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- Premium: Stats Banner ---- */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--aubergine-900), var(--aubergine-800));
  border-radius: var(--radius-xl);
  margin: var(--space-2xl) 0;
}
.stats-banner__item {
  text-align: center;
  padding: var(--space-md);
}
.stats-banner__value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brass-300);
}
.stats-banner__label {
  font-size: .8rem;
  color: var(--stone-300);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: var(--space-xs);
}

/* ---- Premium: Responsive overrides ---- */
@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .split-section--reverse {
    direction: ltr;
  }
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-gallery--4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-gallery__item--wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }
  .feature-block {
    flex-direction: column;
    gap: var(--space-md);
  }
  .page-hero--image {
    min-height: 280px;
    padding: var(--space-2xl) 0;
  }
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--aubergine-900);
  color: var(--stone-300);
  padding: var(--space-2xl) 0 var(--space-lg);
}
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-lg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-2xl); margin-bottom: var(--space-xl); }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--stone-100);
  margin-bottom: var(--space-sm);
}
.footer-tagline { font-size: .9rem; line-height: 1.6; }
.site-footer h4 { color: var(--brass-300); font-size: .9rem; margin-bottom: var(--space-md); }
.site-footer ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.site-footer li a { color: var(--stone-300); font-size: .9rem; }
.site-footer li a:hover { color: var(--coral-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: .8rem;
  color: var(--stone-400);
}
