/* ==========================================================================
   Kolo France — Design System V3.1
   Premium French digital strategy publication.
   Editorial, calm, polished, original, trustworthy.
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  /* Color System — Warm editorial palette with navy anchor */
  --kf-navy:         #1a2744;
  --kf-navy-light:   #253656;
  --kf-navy-dark:    #0f1729;
  --kf-cream:        #faf7f2;
  --kf-cream-warm:   #f5f0e8;
  --kf-ivory:        #fefcf8;
  --kf-white:        #ffffff;
  --kf-sand:         #e8dfd3;
  --kf-sand-light:   #f0eade;
  --kf-copper:       #b87333;
  --kf-copper-light: #d4956b;
  --kf-copper-dark:  #8c5520;
  --kf-gold:         #c9a84c;
  --kf-gold-light:   #e2cc7e;
  --kf-gold-pale:    #f5ecd0;
  --kf-terracotta:   #c4644a;
  --kf-sage:         #6b8f71;
  --kf-sage-light:   #e8efe9;
  --kf-text:         #2c2c2c;
  --kf-text-light:   #5a5a5a;
  --kf-text-muted:   #8a8a8a;
  --kf-border:       #e0dbd2;
  --kf-border-light: #eee9e1;

  /* Shadows — deeper, more premium */
  --kf-shadow-sm:    0 1px 3px rgba(26,39,68,0.06);
  --kf-shadow-md:    0 8px 24px rgba(26,39,68,0.10);
  --kf-shadow-lg:    0 16px 40px rgba(26,39,68,0.14);
  --kf-shadow-xl:    0 28px 64px rgba(26,39,68,0.18);
  --kf-shadow-glow:  0 0 60px rgba(201,168,76,0.15);

  /* Gradients */
  --kf-gradient-hero:   linear-gradient(145deg, var(--kf-ivory) 0%, var(--kf-cream-warm) 55%, var(--kf-sand-light) 100%);
  --kf-gradient-navy:   linear-gradient(165deg, var(--kf-navy) 0%, var(--kf-navy-dark) 100%);
  --kf-gradient-copper: linear-gradient(135deg, var(--kf-copper) 0%, var(--kf-copper-dark) 100%);
  --kf-gradient-gold:   linear-gradient(135deg, var(--kf-gold) 0%, var(--kf-copper-light) 100%);

  /* Typography */
  --kf-font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --kf-font-body:    'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --kf-font-mono:    'Source Code Pro', 'Consolas', monospace;

  /* Type Scale — Refined modular scale */
  --kf-text-xs:   0.694rem;
  --kf-text-sm:   0.833rem;
  --kf-text-base: 1rem;
  --kf-text-md:   1.125rem;
  --kf-text-lg:   1.25rem;
  --kf-text-xl:   1.563rem;
  --kf-text-2xl:  1.953rem;
  --kf-text-3xl:  2.441rem;
  --kf-text-4xl:  3.052rem;
  --kf-text-5xl:  3.815rem;

  /* Spacing — 8px base */
  --kf-space-1:  0.5rem;
  --kf-space-2:  1rem;
  --kf-space-3:  1.5rem;
  --kf-space-4:  2rem;
  --kf-space-5:  2.5rem;
  --kf-space-6:  3rem;
  --kf-space-8:  4rem;
  --kf-space-10: 5rem;
  --kf-space-12: 6rem;
  --kf-space-16: 8rem;

  /* Layout */
  --kf-max-width:     1200px;
  --kf-content-width: 720px;
  --kf-radius-sm:     4px;
  --kf-radius-md:     10px;
  --kf-radius-lg:     16px;
  --kf-radius-xl:     24px;

  /* Transitions */
  --kf-transition:      0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --kf-transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--kf-font-body);
  font-size: var(--kf-text-base);
  line-height: 1.7;
  color: var(--kf-text);
  background-color: var(--kf-ivory);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--kf-copper);
  text-decoration: none;
  transition: color var(--kf-transition);
}

a:hover {
  color: var(--kf-copper-dark);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--kf-font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--kf-navy);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--kf-text-5xl); margin-bottom: var(--kf-space-4); }
h2 { font-size: var(--kf-text-4xl); margin-bottom: var(--kf-space-3); }
h3 { font-size: var(--kf-text-2xl); margin-bottom: var(--kf-space-2); }
h4 { font-size: var(--kf-text-xl);  margin-bottom: var(--kf-space-2); }

p {
  margin-bottom: var(--kf-space-2);
}

.text-serif { font-family: var(--kf-font-display); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--kf-max-width);
  margin: 0 auto;
  padding: 0 var(--kf-space-4);
}

.container--narrow {
  max-width: var(--kf-content-width);
}

.container--wide {
  max-width: 1400px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--kf-navy);
  color: var(--kf-ivory);
  padding: var(--kf-space-2) var(--kf-space-4);
  z-index: 1000;
  font-family: var(--kf-font-body);
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--kf-border-light);
  transition: box-shadow var(--kf-transition);
}

.site-header.scrolled {
  box-shadow: var(--kf-shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--kf-space-2) 0;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--kf-font-display);
  font-size: var(--kf-text-xl);
  font-weight: 700;
  color: var(--kf-navy);
  text-decoration: none;
  line-height: 1;
}

.logo:hover {
  color: var(--kf-navy);
}

.logo__dot {
  color: var(--kf-copper);
}

.logo__tagline {
  font-family: var(--kf-font-body);
  font-size: var(--kf-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kf-copper);
  opacity: 0.9;
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--kf-space-1);
}

.main-nav ul {
  display: flex;
  gap: var(--kf-space-1);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: var(--kf-text-sm);
  font-weight: 600;
  color: var(--kf-navy);
  border-radius: var(--kf-radius-md);
  transition: all var(--kf-transition);
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(26,39,68,0.06);
  color: var(--kf-navy);
}

.main-nav a.active {
  color: var(--kf-copper);
  background: rgba(184,115,51,0.08);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--kf-radius-md);
  transition: background var(--kf-transition);
}

.menu-toggle:hover {
  background: rgba(26,39,68,0.06);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--kf-navy);
  border-radius: 2px;
  transition: all var(--kf-transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 880px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--kf-ivory);
    border-bottom: 1px solid var(--kf-border-light);
    box-shadow: var(--kf-shadow-lg);
    padding: var(--kf-space-3) var(--kf-space-4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--kf-transition);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: var(--kf-space-1);
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: var(--kf-text-md);
    border-bottom: 1px solid var(--kf-border-light);
    border-radius: 0;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--kf-space-1);
  font-family: var(--kf-font-body);
  font-size: var(--kf-text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--kf-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--kf-transition);
  text-decoration: none;
  box-shadow: var(--kf-shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 100%);
  opacity: 1;
  transition: opacity var(--kf-transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--kf-shadow-md);
}

.btn--primary {
  background: var(--kf-gradient-navy);
  color: var(--kf-ivory);
  border-color: var(--kf-navy);
}

.btn--primary:hover {
  color: var(--kf-ivory);
  box-shadow: var(--kf-shadow-lg);
}

.btn--secondary {
  background-color: var(--kf-ivory);
  color: var(--kf-navy);
  border-color: var(--kf-border);
}

.btn--secondary:hover {
  border-color: var(--kf-copper);
  color: var(--kf-copper-dark);
  background-color: var(--kf-white);
}

.btn--copper {
  background: var(--kf-gradient-copper);
  color: var(--kf-ivory);
  border-color: var(--kf-copper);
}

.btn--copper:hover {
  color: var(--kf-ivory);
  box-shadow: 0 8px 24px rgba(184,115,51,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--kf-navy);
  border-color: transparent;
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(26,39,68,0.06);
  color: var(--kf-navy);
  transform: translateY(-1px);
}

/* Cookie banner buttons must be high-contrast on dark navy */
.cookie-banner__actions .btn--copper {
  background: var(--kf-gradient-copper);
  color: var(--kf-ivory);
  border-color: var(--kf-copper-light);
  box-shadow: 0 4px 14px rgba(184,115,51,0.45);
}

.cookie-banner__actions .btn--secondary {
  background-color: rgba(255,255,255,0.2);
  color: var(--kf-ivory);
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cookie-banner__actions .btn--secondary:hover {
  background-color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.95);
  color: var(--kf-ivory);
  box-shadow: 0 4px 16px rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: var(--kf-space-12) 0;
  position: relative;
}

.section--white {
  background-color: var(--kf-white);
}

.section--ivory {
  background-color: var(--kf-ivory);
}

.section--cream {
  background: var(--kf-gradient-hero);
}

.section--sand {
  background-color: var(--kf-sand-light);
}

.section--sage {
  background-color: var(--kf-sage-light);
}

.section--navy {
  background: var(--kf-gradient-navy);
  color: var(--kf-ivory);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--kf-ivory);
}

.section__header {
  max-width: 720px;
  margin: 0 auto var(--kf-space-8);
  text-align: center;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--kf-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kf-copper);
  margin-bottom: var(--kf-space-2);
  padding: 0.35rem 0.8rem;
  background: rgba(184,115,51,0.08);
  border-radius: 100px;
}

.section__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kf-copper);
}

.section__title {
  margin-bottom: var(--kf-space-3);
}

.section__subtitle {
  font-size: var(--kf-text-lg);
  color: var(--kf-text-light);
  line-height: 1.6;
}

.section--navy .section__subtitle {
  color: rgba(255,255,255,0.75);
}

/* --- Hero Section --- */
.hero {
  padding: var(--kf-space-10) 0 var(--kf-space-8);
  background: var(--kf-gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107,143,113,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--kf-space-6);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--kf-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kf-copper);
  margin-bottom: var(--kf-space-3);
  padding: 0.4rem 0.9rem;
  background: rgba(184,115,51,0.10);
  border: 1px solid rgba(184,115,51,0.18);
  border-radius: 100px;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: var(--kf-space-3);
}

.hero__title em {
  color: var(--kf-copper);
  font-style: italic;
}

.hero__subtitle {
  font-size: var(--kf-text-lg);
  color: var(--kf-text-light);
  max-width: 560px;
  margin-bottom: var(--kf-space-5);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: var(--kf-space-2);
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 460px;
  }
}

/* --- Hero visual accent --- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__accent {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: var(--kf-radius-xl);
  background: var(--kf-gradient-navy);
  box-shadow: var(--kf-shadow-xl), var(--kf-shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero__accent svg {
  width: 60%;
  height: 60%;
  opacity: 0.9;
}

/* --- Stat Row --- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--kf-space-4);
  text-align: center;
  padding: var(--kf-space-6);
  background: var(--kf-white);
  border-radius: var(--kf-radius-lg);
  box-shadow: var(--kf-shadow-md);
  margin-top: calc(-1 * var(--kf-space-8));
  position: relative;
  z-index: 2;
}

.stat-row__number {
  font-family: var(--kf-font-display);
  font-size: var(--kf-text-3xl);
  font-weight: 700;
  color: var(--kf-navy);
  line-height: 1;
  margin-bottom: var(--kf-space-1);
}

.stat-row__label {
  font-size: var(--kf-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kf-text-muted);
}

@media (max-width: 640px) {
  .stat-row {
    grid-template-columns: 1fr;
    gap: var(--kf-space-4);
    padding: var(--kf-space-4);
  }
}

/* --- Cards --- */
.card-grid {
  display: grid;
  gap: var(--kf-space-4);
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .card-grid--2,
  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--kf-white);
  border-radius: var(--kf-radius-lg);
  padding: var(--kf-space-5);
  box-shadow: var(--kf-shadow-sm);
  border: 1px solid var(--kf-border-light);
  transition: all var(--kf-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kf-shadow-lg);
  border-color: var(--kf-border);
}

.card__category {
  font-size: var(--kf-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kf-copper);
  margin-bottom: var(--kf-space-2);
}

.card__title {
  font-size: var(--kf-text-xl);
  margin-bottom: var(--kf-space-2);
}

.card__title a {
  color: var(--kf-navy);
  text-decoration: none;
}

.card__title a:hover {
  color: var(--kf-copper);
}

.card__excerpt {
  font-size: var(--kf-text-base);
  color: var(--kf-text-light);
  line-height: 1.6;
  margin-bottom: var(--kf-space-3);
  flex-grow: 1;
}

.card__meta {
  display: flex;
  gap: var(--kf-space-2);
  font-size: var(--kf-text-sm);
  color: var(--kf-text-muted);
  margin-top: auto;
}

/* --- Callout Panels --- */
.callout {
  background: var(--kf-white);
  border-left: 4px solid var(--kf-copper);
  border-radius: 0 var(--kf-radius-lg) var(--kf-radius-lg) 0;
  padding: var(--kf-space-5);
  box-shadow: var(--kf-shadow-sm);
  transition: all var(--kf-transition);
}

.callout:hover {
  box-shadow: var(--kf-shadow-md);
  transform: translateY(-2px);
}

.callout--navy {
  border-left-color: var(--kf-copper-light);
  background: var(--kf-gradient-navy);
  color: var(--kf-ivory);
  box-shadow: var(--kf-shadow-md);
}

.callout--navy .callout__title,
.callout.callout--navy .callout__title {
  color: var(--kf-ivory);
}

.callout--navy .callout__body,
.callout.callout--navy .callout__body {
  color: rgba(255,255,255,0.85);
}

.callout--sage {
  border-left-color: var(--kf-sage);
  background-color: var(--kf-sage-light);
}

.callout--gold {
  border-left-color: var(--kf-gold);
  background-color: var(--kf-gold-pale);
}

.callout__title {
  font-family: var(--kf-font-display);
  font-size: var(--kf-text-md);
  margin-bottom: var(--kf-space-1);
  color: var(--kf-navy);
}

.callout__body {
  font-size: var(--kf-text-base);
  line-height: 1.7;
  color: var(--kf-text);
}

/* --- Editorial Grid --- */
.editorial-grid {
  display: grid;
  gap: var(--kf-space-6);
  align-items: start;
}

.editorial-grid--2-1 {
  grid-template-columns: 2fr 1fr;
}

.editorial-grid--1-2 {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 768px) {
  .editorial-grid--2-1,
  .editorial-grid--1-2 {
    grid-template-columns: 1fr;
  }
}

/* --- Separator --- */
.separator {
  border: 0;
  height: 2px;
  width: 60px;
  background: var(--kf-copper);
  margin: var(--kf-space-4) 0;
}

.separator--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Article Page --- */
.article-hero {
  background: var(--kf-gradient-navy);
  color: var(--kf-ivory);
  padding: var(--kf-space-12) 0 var(--kf-space-8);
  text-align: center;
}

.article-hero__category {
  display: inline-block;
  font-size: var(--kf-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kf-gold-light);
  margin-bottom: var(--kf-space-3);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(226,204,126,0.35);
  border-radius: 100px;
}

.article-hero__title {
  color: var(--kf-ivory);
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 800px;
  margin: 0 auto var(--kf-space-3);
}

.article-hero__meta {
  font-size: var(--kf-text-sm);
  color: rgba(255,255,255,0.7);
}

.article-body {
  padding: var(--kf-space-8) 0 var(--kf-space-12);
  font-size: var(--kf-text-md);
  line-height: 1.8;
}

.article-body p {
  margin-bottom: var(--kf-space-3);
}

.article-body h2 {
  font-size: var(--kf-text-2xl);
  margin-top: var(--kf-space-8);
  margin-bottom: var(--kf-space-3);
}

.article-body h3 {
  font-size: var(--kf-text-xl);
  margin-top: var(--kf-space-6);
  margin-bottom: var(--kf-space-2);
}

.article-body ul,
.article-body ol {
  list-style: disc;
  padding-left: var(--kf-space-4);
  margin-bottom: var(--kf-space-3);
}

.article-body li {
  margin-bottom: var(--kf-space-1);
}

.article-body blockquote {
  border-left: 4px solid var(--kf-copper);
  padding-left: var(--kf-space-4);
  margin: var(--kf-space-5) 0;
  font-family: var(--kf-font-display);
  font-size: var(--kf-text-xl);
  color: var(--kf-navy);
  font-style: italic;
}

.article-body strong {
  color: var(--kf-navy);
  font-weight: 700;
}

.tip-box {
  background: var(--kf-sage-light);
  border-left: 4px solid var(--kf-sage);
  border-radius: 0 var(--kf-radius-md) var(--kf-radius-md) 0;
  padding: var(--kf-space-4);
  margin: var(--kf-space-5) 0;
}

.tip-box__title {
  font-family: var(--kf-font-display);
  font-size: var(--kf-text-lg);
  color: var(--kf-navy);
  margin-bottom: var(--kf-space-1);
}

/* --- Page Header --- */
.page-header {
  background: var(--kf-gradient-hero);
  padding: var(--kf-space-10) 0 var(--kf-space-6);
  text-align: center;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--kf-space-2);
}

.page-header__intro {
  font-size: var(--kf-text-lg);
  color: var(--kf-text-light);
  max-width: 680px;
  margin: 0 auto;
}

/* --- Feature List --- */
.feature-list {
  display: grid;
  gap: var(--kf-space-3);
}

.feature-list__item {
  display: flex;
  gap: var(--kf-space-2);
  align-items: flex-start;
  padding: var(--kf-space-3);
  background: var(--kf-white);
  border-radius: var(--kf-radius-md);
  box-shadow: var(--kf-shadow-sm);
  border: 1px solid var(--kf-border-light);
  transition: all var(--kf-transition);
}

.feature-list__item:hover {
  box-shadow: var(--kf-shadow-md);
  transform: translateX(4px);
}

.feature-list__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kf-cream-warm);
  border-radius: var(--kf-radius-md);
  color: var(--kf-copper);
  font-weight: 700;
}

.feature-list__content h4 {
  font-size: var(--kf-text-md);
  margin-bottom: 0.25rem;
}

.feature-list__content p {
  font-size: var(--kf-text-base);
  color: var(--kf-text-light);
  margin-bottom: 0;
}

/* --- Contact / Forms --- */
.form-group {
  margin-bottom: var(--kf-space-3);
}

.form-group label {
  display: block;
  font-size: var(--kf-text-sm);
  font-weight: 600;
  color: var(--kf-navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--kf-border);
  border-radius: var(--kf-radius-md);
  background: var(--kf-white);
  font-family: var(--kf-font-body);
  font-size: var(--kf-text-base);
  color: var(--kf-text);
  transition: border-color var(--kf-transition), box-shadow var(--kf-transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--kf-copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}

/* --- Footer --- */
.site-footer {
  background: var(--kf-gradient-navy);
  color: var(--kf-ivory);
  padding: var(--kf-space-10) 0 0;
}

.site-footer a {
  color: rgba(255,255,255,0.75);
}

.site-footer a:hover {
  color: var(--kf-gold-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--kf-space-6);
  padding-bottom: var(--kf-space-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid__brand h3 {
  color: var(--kf-ivory);
  font-size: var(--kf-text-2xl);
  margin-bottom: var(--kf-space-2);
}

.footer-grid__brand p {
  color: rgba(255,255,255,0.7);
  font-size: var(--kf-text-base);
  line-height: 1.6;
}

.footer-grid h4 {
  color: var(--kf-ivory);
  font-size: var(--kf-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--kf-space-3);
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-grid a {
  font-size: var(--kf-text-base);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--kf-space-3) 0;
  font-size: var(--kf-text-sm);
  color: rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--kf-space-5);
  }
  .footer-grid__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--kf-gradient-navy);
  color: var(--kf-ivory);
  padding: var(--kf-space-3) var(--kf-space-4);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--kf-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--kf-space-4);
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: var(--kf-text-sm);
  line-height: 1.6;
  flex: 1;
  color: rgba(255,255,255,0.9);
}

.cookie-banner__text a {
  color: var(--kf-gold-light);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner__text a:hover {
  color: var(--kf-ivory);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--kf-space-2);
  flex-shrink: 0;
}

/* --- Sitemap --- */
.sitemap-list {
  columns: 2;
  column-gap: var(--kf-space-6);
}

.sitemap-list li {
  break-inside: avoid;
  margin-bottom: var(--kf-space-2);
}

.sitemap-list a {
  color: var(--kf-navy);
  font-weight: 500;
}

@media (max-width: 640px) {
  .sitemap-list {
    columns: 1;
  }
}

/* --- Utility --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: var(--kf-space-2); }
.mb-2 { margin-bottom: var(--kf-space-2); }
.mt-4 { margin-top: var(--kf-space-4); }
.mb-4 { margin-bottom: var(--kf-space-4); }
.mt-6 { margin-top: var(--kf-space-6); }
.mb-6 { margin-bottom: var(--kf-space-6); }

/* --- Print --- */
@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .menu-toggle,
  .btn {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
}
