/* ============================================
   La Fresque de l'Attention — Stylesheet
   Direction : éditorial cognitif
   ============================================ */

:root {
  /* Couleurs */
  --ink: #1A1611;
  --ink-soft: #3A332A;
  --ink-mute: #6B6256;
  --paper: #F7F2E8;
  --paper-warm: #EFE7D6;
  --paper-deep: #E5DAC4;
  --terra: #C7501F;
  --terra-deep: #9F3D14;
  --sand: #D9CDB3;
  --line: rgba(26, 22, 17, 0.12);
  --line-soft: rgba(26, 22, 17, 0.06);

  /* Typographie */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* Espacements (basés sur 8px) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Largeur de contenu */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* Reset minimal */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Sélection */
::selection { background: var(--terra); color: var(--paper); }

/* ============================================
   METABAR
   ============================================ */
.metabar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem var(--gutter);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.metabar-item { display: flex; align-items: center; gap: 0.5rem; }
.metabar-link { color: var(--paper); transition: color 0.2s; }
.metabar-link:hover { color: var(--terra); }
.dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  color: var(--ink);
}
.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 0.95;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.brand-line--accent {
  font-style: italic;
  color: var(--terra);
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terra);
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--terra); }
.nav a:hover::after { width: 100%; }

@media (max-width: 880px) {
  .nav { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}
.btn--small { padding: 0.55rem 1rem; font-size: 0.84rem; }
.btn--primary {
  background: var(--terra);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--terra-deep);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark:hover {
  background: var(--terra);
}
.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover {
  background: var(--terra);
  color: var(--paper);
}
.btn--block { width: 100%; justify-content: center; }
.arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: var(--space-8) var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-template-areas:
    "eyebrow ."
    "title aside"
    "meta aside";
  gap: 2rem 3rem;
  padding-top: var(--space-6);
  padding-bottom: var(--space-12);
}
.hero-eyebrow {
  grid-area: eyebrow;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.eyebrow-num {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
}
.eyebrow-sep { opacity: 0.4; }

.hero-title {
  grid-area: title;
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-top: 0.5rem;
}
.hero-title-line {
  display: block;
  animation: fadeUp 0.9s ease-out forwards;
  opacity: 0;
}
.hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) { animation-delay: 0.25s; }
.hero-title-line:nth-child(3) { animation-delay: 0.4s; padding-left: 4ch; }
.hero-title em {
  font-style: italic;
  color: var(--terra);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

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

.hero-meta {
  grid-area: meta;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-lede {
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.underline-soft {
  background-image: linear-gradient(transparent 65%, rgba(199, 80, 31, 0.25) 65%);
  background-position: 0 0;
  background-size: 100% 100%;
  padding: 0 0.1em;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-aside {
  grid-area: aside;
  align-self: end;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero-aside-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  font-size: 0.68rem;
}
.hero-aside-value {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.hero-aside-rule {
  height: 1px;
  background: var(--line);
  margin: 0.5rem 0;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "meta"
      "aside";
    padding-bottom: var(--space-8);
  }
  .hero-title-line:nth-child(3) { padding-left: 2ch; }
  .hero-aside { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.25rem; }
}

/* Ticker bandeau */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 1.25rem 0;
  margin: 0 calc(var(--gutter) * -1);
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  width: calc(100% + var(--gutter) * 2);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  padding-left: 2rem;
}
.ticker-dot {
  color: var(--terra);
  font-style: normal;
  opacity: 0.7;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADS
   ============================================ */
.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-4);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.section-num {
  background: var(--ink);
  color: var(--paper);
  padding: 0.25rem 0.5rem;
  font-weight: 500;
}
.section-head--light {
  color: rgba(247, 242, 232, 0.7);
  border-color: rgba(247, 242, 232, 0.2);
}
.section-head--light .section-num {
  background: var(--paper);
  color: var(--ink);
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  padding: var(--space-12) var(--gutter) var(--space-8);
  max-width: var(--container);
  margin: 0 auto;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.manifesto-title em {
  color: var(--terra);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink-soft);
  align-self: end;
}
.manifesto-lead {
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 880px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: var(--space-4) var(--space-3) var(--space-4) 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pillar:last-child { border-right: none; }
.pillar:not(:first-child) { padding-left: var(--space-3); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--terra);
  letter-spacing: 0.04em;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.pillar p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
  .pillar:last-child { border-bottom: none; }
  .pillar:not(:first-child) { padding-left: 0; }
}

/* ============================================
   WORKSHOPS / CARDS
   ============================================ */
.workshops {
  padding: var(--space-12) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.workshops-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: var(--space-6);
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.workshops-title em {
  color: var(--terra);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.cards {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--paper);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.3s ease;
  position: relative;
}
.card:hover { background: var(--paper-warm); }
.card--featured {
  background: var(--ink);
  color: var(--paper);
}
.card--featured:hover { background: #2A241D; }
.card--soon { opacity: 0.85; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-tag {
  background: var(--terra);
  color: var(--paper);
  padding: 0.3rem 0.6rem;
  font-weight: 500;
}
.card-tag--alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.card-tag--soft {
  background: var(--sand);
  color: var(--ink);
}
.card-duration {
  color: var(--ink-mute);
}
.card--featured .card-duration { color: rgba(247, 242, 232, 0.6); }

.card-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.card-title em {
  font-style: italic;
  color: var(--terra);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.card--featured .card-title em { color: var(--terra); }

.card-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.card--featured .card-desc { color: rgba(247, 242, 232, 0.78); }

.card-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.card--featured .card-list {
  color: rgba(247, 242, 232, 0.7);
  border-color: rgba(247, 242, 232, 0.15);
}
.card-list li {
  position: relative;
  padding-left: 1.25rem;
}
.card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--terra);
}

.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--terra);
}
.card--featured .card-cta {
  color: var(--paper);
  border-color: rgba(247, 242, 232, 0.15);
}
.card-cta--muted {
  color: var(--ink-mute);
}
.card-cta:hover .arrow { transform: translateX(4px); }

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
}

/* ============================================
   JOIN
   ============================================ */
.join {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-12) var(--gutter);
  margin: 0;
}
.join-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.join-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.join-title em {
  color: var(--terra);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.join-desc {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(247, 242, 232, 0.75);
  max-width: 56ch;
  margin-bottom: var(--space-4);
}

/* ============================================
   SESSIONS
   ============================================ */
.sessions {
  padding: var(--space-12) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: end;
}
.sessions-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.sessions-title em {
  color: var(--terra);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.sessions-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.sessions-body .btn { align-self: flex-start; }

@media (max-width: 880px) {
  .sessions-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--space-12) var(--gutter) var(--space-8);
  max-width: var(--container);
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
}
.contact-intro { padding-top: var(--space-3); }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 1.5rem;
}
.contact-title em {
  color: var(--terra);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.contact-mail {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.contact-mail a {
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  font-weight: 500;
}

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--terra);
  background: rgba(255, 255, 255, 0.4);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231A1611' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  min-height: 1.2em;
}
.form-status.is-success { color: #2D6A40; }
.form-status.is-error { color: var(--terra-deep); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--paper-deep);
  padding: var(--space-8) var(--gutter);
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin-bottom: 1rem;
}
.newsletter-title em {
  color: var(--terra);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.newsletter-text p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 42ch;
}
.newsletter-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.newsletter-input input {
  border: none;
  padding: 0.95rem 1rem;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
}
.newsletter-input input:focus { outline: none; background: rgba(255, 255, 255, 0.4); }
.newsletter-input .btn { border-radius: 0; }

@media (max-width: 880px) {
  .newsletter-inner { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-8) var(--gutter) var(--space-3);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(247, 242, 232, 0.15);
}
.footer-brand .brand-mark {
  width: 32px; height: 32px;
  color: var(--paper);
  margin-bottom: 1rem;
}
.footer-brand p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.footer-mute {
  color: rgba(247, 242, 232, 0.55);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: rgba(247, 242, 232, 0.55);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--terra); }

.footer-base {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(247, 242, 232, 0.55);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ACCESSIBILITY & MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-title-line { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
}
