/* =====================================================
   chabrol.ch — Stylesheet
   Design : dark mode, accent ocre — repris de l'ancien site
   ===================================================== */

:root {
  /* Palette dark — héritée de medi.chabrol.ch */
  --bg-primary: #1a1a1a;
  --bg-secondary: #2a2a2a;
  --bg-elevated: #333333;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-mute: #999999;
  --line: #3a3a3a;
  --line-soft: #2f2f2f;

  /* Accent ocre conservé */
  --accent: #a67c52;
  --accent-hover: #b88e64;
  --accent-soft: rgba(166, 124, 82, 0.15);
  --accent-border: rgba(166, 124, 82, 0.4);

  /* Layout */
  --max-width: 1100px;
  --container-padding: 32px;
  --radius: 4px;
  --radius-lg: 6px;
  --transition: 180ms ease;

  /* Typo */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', Menlo, Consolas, monospace;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--accent); color: var(--bg-primary); }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 8px; color: var(--bg-primary); text-decoration: none; }

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
}
.brand:hover { color: var(--text-primary); text-decoration: none; opacity: 0.85; }
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.site-nav a.is-active {
  color: var(--accent);
}
.site-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 13px;
}
.nav-toggle:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 720px) {
  .site-nav { display: none; flex-direction: column; gap: 12px; padding-top: 16px; width: 100%; align-items: flex-start; }
  .site-nav.is-open { display: flex; }
  .site-header .container { flex-wrap: wrap; }
  .nav-toggle { display: block; }
}

/* Main */
main {
  padding-top: 64px;
  padding-bottom: 96px;
}
section + section { margin-top: 72px; }

/* Headings */
h1, h2, h3, h4 {
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-primary);
}
h1 { font-size: clamp(32px, 4.5vw, 48px); line-height: 1.1; }
h2 { font-size: clamp(22px, 2.8vw, 30px); line-height: 1.25; margin-top: 8px; }
h3 { font-size: clamp(18px, 2vw, 20px); line-height: 1.3; color: var(--text-primary); }
h4 { font-size: 15px; }

p { margin: 0 0 16px; color: var(--text-secondary); }
ul, ol { margin: 0 0 16px; padding-left: 24px; color: var(--text-secondary); }
li { margin-bottom: 8px; }
hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
strong { color: var(--text-primary); font-weight: 600; }
em { font-style: italic; color: var(--text-secondary); }
code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-elevated);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--accent);
}

/* Hero */
.hero {
  padding-top: 24px;
  padding-bottom: 56px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-layout { grid-template-columns: 1fr; gap: 32px; }
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual iframe {
  border: none;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: transparent;
}
.hero h1 { margin-bottom: 16px; color: var(--text-primary); }
.hero .tagline {
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.35;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.hero .lead {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0;
  line-height: 1.7;
}

/* Numbers grid */
.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 0 0 56px;
}
.number-card {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  transition: transform var(--transition), border-color var(--transition);
}
.number-card:hover {
  transform: translateY(-2px);
  border-left-color: var(--accent-hover);
}
.number-card .value {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.number-card .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}
.number-card .sub {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.5;
}

/* Doors (Home) */
.doors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.door {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.door:hover {
  text-decoration: none;
  border-color: var(--accent);
  background: var(--bg-elevated);
  transform: translateY(-3px);
  color: var(--text-primary);
}
.door h3 {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-size: 20px;
}
.door p {
  color: var(--text-secondary);
  margin: 0 0 20px;
  flex: 1;
  font-size: 15px;
}
.door .arrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.door:hover .arrow { color: var(--accent-hover); }

/* Pillars (Expertise) — cards avec icônes */
.pillar {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 720px) {
  .pillar { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
}
.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { display: block; }
.pillar-content h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin: 0 0 4px;
  font-size: 22px;
  display: block;
}
.pillar-content .pillar-num {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}
.pillar ul li { color: var(--text-secondary); }
.pillar ul li strong { color: var(--text-primary); }
.pillar .stack {
  font-size: 13px;
  color: var(--text-mute);
  font-style: italic;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  margin-bottom: 0;
}

/* FAQ */
.faq h2 {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 12px;
  margin-bottom: 24px;
  display: inline-block;
}
.faq h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 18px;
}
.faq h3::before {
  content: "▸ ";
  color: var(--text-mute);
  font-weight: 400;
  margin-right: 4px;
}
.faq p { padding-left: 20px; }

/* Sub-blocks IA pratique */
.subblock {
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 2px solid var(--line);
}
.subblock h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
}
.subblock .link-arrow,
.subblock p:last-child {
  font-size: 13px;
  color: var(--text-mute);
}

/* Values grid (Simplification, Standardisation, Automatisation) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.value-card {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--accent);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-3px); }
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-icon svg { display: block; }
.value-card h3 {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-size: 18px;
}
.value-card p {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.value-card .quote {
  font-style: italic;
  color: var(--text-mute);
  font-size: 13px;
  margin: 0;
}
.value-dep {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.method-final {
  background: var(--accent-soft);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}
.method-final p:first-of-type {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.method-final p:last-of-type {
  margin-bottom: 0;
}

/* Parcours - profile + timeline layout */
.profile-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 720px) {
  .profile-layout { grid-template-columns: 1fr; gap: 40px; }
  .profile-sidebar { position: static !important; }
}
.profile-sidebar {
  position: sticky;
  top: 96px;
}
.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid var(--accent);
  display: block;
  object-fit: cover;
}
.profile-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.profile-title {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
}
.profile-loc {
  color: var(--text-mute);
  font-size: 13px;
  margin: 0 0 20px;
}
.profile-actions { display: flex; flex-direction: column; gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  gap: 8px;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-primary);
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--line);
}
.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* Timeline */
.timeline-item {
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}
.timeline-date {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.timeline-item h3 {
  margin: 0 0 4px;
  font-size: 19px;
  color: var(--text-primary);
}
.timeline-employer {
  color: var(--text-mute);
  font-size: 14px;
  margin: 0 0 14px;
  font-style: italic;
}
.timeline-item ul { margin-top: 8px; }
.timeline-item ul li { color: var(--text-secondary); font-size: 14px; }

/* Stack grid */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.stack-card {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.stack-card:hover { border-color: var(--accent); }
.stack-card h3 {
  font-size: 12px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}
.stack-card .new-tag {
  display: inline-block;
  font-size: 9px;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.stack-card ul { margin: 0; padding-left: 18px; }
.stack-card li { font-size: 14px; margin-bottom: 6px; color: var(--text-secondary); }

/* Notes — Projets passés (aligné sur value-card / pattern dominant) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.project-card {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-3px); }
.project-card h3 {
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--text-primary);
  line-height: 1.3;
}
.project-meta {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0 0 16px;
  font-style: italic;
}
.project-kpis {
  margin: 0 0 16px;
  padding-left: 20px;
  list-style: disc;
  flex: 1;
}
.project-kpis li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.5;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.tech-tag {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Notes — Topics à venir */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.topic-card {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 24px;
  border-radius: var(--radius);
  opacity: 0.85;
  transition: opacity var(--transition);
}
.topic-card:hover { opacity: 1; }
.topic-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-family: var(--font-mono);
}
.topic-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--text-primary);
  line-height: 1.4;
}
.topic-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Notes index */
.note-card {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--transition);
}
.note-card:hover {
  text-decoration: none;
  color: var(--text-primary);
  padding-left: 12px;
}
.note-card:hover .note-card-title { color: var(--accent); }
.note-card .meta {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.note-card-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  transition: color var(--transition);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.note-card .excerpt {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

/* Contact */
.contact-channels {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.form-row .required { color: var(--accent); margin-left: 2px; font-weight: 700; }
.form-row .optional { color: var(--text-mute); font-weight: 400; font-size: 12px; margin-left: 4px; }
.field-hint {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 2px;
}
.field-error {
  font-size: 13px;
  color: #f4c2b6;
  min-height: 0;
  transition: min-height var(--transition);
  display: block;
}
.field-error:not(:empty) {
  min-height: 18px;
  margin-top: 2px;
}
.field-error:not(:empty)::before {
  content: "⚠ ";
  margin-right: 2px;
}
.form-row input.is-invalid,
.form-row textarea.is-invalid {
  border-color: #d97359;
  box-shadow: 0 0 0 3px rgba(217, 115, 89, 0.12);
}

/* Compteur de caractères (textarea) */
.textarea-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-top: 4px;
}
.textarea-meta .field-error { flex: 1; }
.char-count {
  font-size: 12px;
  color: var(--text-mute);
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-shrink: 0;
}
.char-count.is-warning { color: #d4a373; }
.char-count.is-danger  { color: #d97359; font-weight: 600; }

/* Bouton loading state */
.btn .btn-spinner { display: none; }
.btn.is-loading {
  cursor: wait;
  opacity: 0.7;
  pointer-events: none;
}
.btn.is-loading .btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--bg-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-row input,
.form-row textarea {
  background: var(--bg-primary);
  border: 1px solid var(--line);
  color: var(--text-primary);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-base);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-mute); }
.form-row textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.contact-form .btn { align-self: flex-start; margin-top: 4px; }

/* Honeypot anti-bot (champ caché aux humains) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* Messages succès / erreur formulaire */
#form-message:empty { display: none; }
.form-success,
.form-error {
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.5;
}
.form-success {
  background: rgba(45, 106, 79, 0.15);
  border-left: 4px solid #4ea876;
  color: #b6e3c5;
}
.form-error {
  background: rgba(152, 54, 40, 0.15);
  border-left: 4px solid #d97359;
  color: #f4c2b6;
}
.contact-channel {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  padding: 28px;
  border-radius: var(--radius-lg);
}
.channel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.channel-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel h2 {
  margin: 0;
  font-size: 22px;
  color: var(--text-primary);
}
.contact-channel p { margin: 0 0 12px; }
.contact-channel .channel-detail {
  color: var(--text-mute);
  font-size: 14px;
  margin: 12px 0 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: var(--bg-secondary);
  margin-top: 80px;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .copyright {
  color: var(--text-mute);
  font-size: 13px;
  margin: 0;
}
.site-footer .footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
}
.site-footer .footer-links a {
  color: var(--text-secondary);
}
.site-footer .footer-links a:hover {
  color: var(--accent);
}

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
