/* ============================================================
   SYNTONIE — Design System
   Grid unit: 60px | Palette: neutral steel | Accent: orange #E8831A
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;0,800;1,400&family=Spectral:ital,wght@0,400;0,700;1,400;1,700&family=Syne+Mono&display=swap');

/* --- Variables --- */
:root {
  --u: 60px;

  /* Palette */
  --bg:          #0f1216;
  --bg-dark:     #080b0e;
  --bg-mid:      #131619;
  --bg-alt:      #181c20;
  --sidebar-bg:  #0b0e12;
  --accent-o:    #E8831A;
  --accent-b:    #5B9BD5;
  --text-hi:     #e8eaed;
  --text-mid:    #c8d4e0;
  --text-lo:     #6a7a8a;
  --text-muted:  rgba(106, 122, 138, 0.5);
  --border:      rgba(180, 200, 216, 0.15);
  --border-hi:   rgba(180, 200, 216, 0.38);

  /* Sidebar */
  --sidebar-w: 236px;

  /* Fonts
     --f-head:    Atkinson Hyperlegible — UI chrome (nav, brand, labels, inputs)
     --f-body:    Atkinson Hyperlegible — body/recipe text (accessibility-first)
     --f-display: Spectral             — large display headings only (hero, section titles)
     --f-mono:    Syne Mono            — technical labels */
  --f-head:    'Atkinson Hyperlegible', sans-serif;
  --f-body:    'Atkinson Hyperlegible', sans-serif;
  --f-display: 'Spectral', serif;
  --f-mono:    'Syne Mono', monospace;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-hi);
  font-family: var(--f-body);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Language Toggle --- */
html[data-lang="en"] .lang-fr { display: none !important; }
html[data-lang="fr"] .lang-en { display: none !important; }

/* --- Layout: Sidebar + Main --- */
.layout {
  display: flex;
  width: 100%;
}

/* --- Sidebar --- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 28px 32px 28px;
  z-index: 100;
  border-right: 1px solid var(--border);
}

/* Brand */
.brand { display: flex; flex-direction: column; gap: 4px; }
.brand-name {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-hi);
  letter-spacing: -0.4px;
}
.brand-glyph { font-size: 26px; line-height: 1; }
.brand-tag, .brand-tag2 {
  font-family: var(--f-head);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  line-height: 1.5;
}

/* Nav */
.nav { display: flex; flex-direction: column; margin-top: 24px; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(180,200,216,0.07);
  text-decoration: none;
}
.nav-num {
  font-family: var(--f-head);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.nav-txt {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(192, 204, 216, 0.75);
  letter-spacing: 1px;
}
.nav-item:hover .nav-txt { color: var(--text-hi); }

.brand-reset {
  cursor: pointer;
}

.nav-item-recipe {
  padding: 9px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(180,200,216,0.07);
}

.nav-recipe-label {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-o);
  letter-spacing: 1.2px;
}

.nav-item-recipe .nav-num {
  color: var(--accent-o);
}

/* Sidebar spacer */
.sidebar-spacer { flex: 1; }

/* Lang Toggle */
.lang-toggle {
  display: flex;
  border: 1px solid var(--border-hi);
  margin-bottom: 16px;
}
.lang-btn {
  font-family: var(--f-head);
  font-size: 10px;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-muted);
}
.lang-btn.active {
  background: #1e2830;
  color: var(--text-hi);
}

/* Ecosystem Portals */
.portals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--border-hi);
}
.portals-label {
  font-family: var(--f-head);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1.6px;
  margin-bottom: 2px;
}
.portal-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border-hi);
  text-decoration: none;
}
.portal-glyph { font-size: 14px; }
.portal-name {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.8px;
}
.portal-link:hover .portal-name { color: var(--text-hi); }

/* --- Main Content --- */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(180,200,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,200,216,0.04) 1px, transparent 1px);
  background-size: var(--u) var(--u);
}

/* --- Sections --- */
section {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

/* Section height grid classes */
.h-8u  { min-height: calc(8  * var(--u)); }  /* 480px */
.h-10u { min-height: calc(10 * var(--u)); }  /* 600px */
.h-12u { min-height: calc(12 * var(--u)); }  /* 720px */
.h-14u { min-height: calc(14 * var(--u)); }  /* 840px */
.h-18u { min-height: calc(18 * var(--u)); }  /* 1080px */

/* Section inner padding */
.sec-pad {
  padding: calc(2 * var(--u)) var(--u);
}
.sec-pad-hero {
  padding: calc(2 * var(--u)) var(--u) var(--u) calc(2 * var(--u));
}

/* Section gap between children */
.sec-gap { gap: var(--u); }

/* --- Eyebrow --- */
.eyebrow {
  font-family: var(--f-head);
  font-size: 9px;
  font-weight: 400;
  color: var(--accent-o);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* --- Hero --- */
#hero {
  background-color: var(--bg);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--u);
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-left {
  flex: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: rgba(15,18,22,0.72);
  padding-right: var(--u);
  padding-left: 28px;
}

.hero-eyebrow {
  font-family: var(--f-head);
  font-size: 10px;
  font-weight: 400;
  color: var(--accent-b);
  letter-spacing: 2.2px;
}

.hero-title {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 0.95;
  max-width: 640px;
}

.hero-sub {
  font-family: var(--f-body);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: #E0E4E8;
  line-height: 1.6;
  max-width: 691px;
}

/* Definition Card */
.def-card {
  width: 236px;
  min-width: 236px;
  align-self: center;
  background: #e8eaed;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 3px solid var(--accent-o);
}

.def-word {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 800;
  color: #0f1216;
  letter-spacing: -0.3px;
}

.def-phon {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent-b);
}

.def-sep {
  height: 3px;
  background: var(--accent-o);
  width: 100%;
}

.def-txt {
  font-family: var(--f-body);
  font-size: 13px;
  color: #1a2535;
  line-height: 1.7;
}

/* --- Vision Section --- */
#vision { background: var(--bg-mid); }

.vision-inner {
  display: flex;
  gap: var(--u);
}

.vision-body { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.sec-title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-hi);
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 460px;
}

.sec-body {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 460px;
}

.vision-pull {
  width: 320px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 28px;
  border-left: 5px solid var(--accent-o);
}

.pull-quote {
  font-family: var(--f-display);
  font-size: 26px;
  font-style: italic;
  color: var(--text-hi);
  line-height: 1.55;
}

.pull-annot {
  font-family: var(--f-head);
  font-size: 10px;
  color: var(--accent-o);
  letter-spacing: 1.4px;
}

.photo-placeholder {
  background: rgba(26,30,34,0.5);
  border: 1px solid rgba(74,127,165,0.25);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-label {
  font-family: var(--f-head);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.8px;
}

.v-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(232,131,26,0.08);
  border: 1px solid rgba(232,131,26,0.4);
}

.v-badge-txt {
  font-family: var(--f-head);
  font-size: 11px;
  color: var(--accent-b);
  letter-spacing: 1px;
  line-height: 1.5;
}

/* --- Role Section --- */
#role { background: var(--bg-alt); }

.sec-lead {
  font-family: var(--f-body);
  font-size: 24px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

.role-cols {
  display: flex;
  gap: var(--u);
  width: 100%;
}

.do-col, .dont-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--border);
}

.do-col { background: rgba(45,125,121,0.06); }
.dont-col { background: rgba(139,58,58,0.06); }

.col-head {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.do-col .col-head  { color: #2D7D79; }
.dont-col .col-head { color: #8B3A3A; }

.col-sep {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.col-item {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}

.role-images {
  display: flex;
  gap: var(--u);
  width: 100%;
}

.role-images .photo-placeholder { flex: 1; }

/* --- Trinity Section --- */
#trinity { background: var(--bg-mid); }

.trinity-intro {
  font-family: var(--f-body);
  font-size: 24px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
}

.trinity-cards {
  display: flex;
  gap: var(--u);
  width: 100%;
}

.t-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
}

.t-card-of {
  background: #0e1a28;
  border-top: 4px solid #2d6a9f;
}

.t-card-pt {
  background: #1a0e08;
  border-top: 4px solid #c47a2a;
}

.t-card-title {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.2;
}

.t-card-body {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.t-card-cta {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-decoration: none;
}
.t-card-of .t-card-cta { color: var(--accent-b); }
.t-card-pt .t-card-cta { color: var(--accent-o); }

.t-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
}
.t-card-of .t-card-img { background: rgba(10,21,32,0.5); border-color: rgba(45,106,159,0.25); }
.t-card-pt .t-card-img { background: rgba(21,13,8,0.5); border-color: rgba(196,122,42,0.25); }

/* --- Contact Section --- */
#contact { background: var(--sidebar-bg); }

.contact-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: var(--bg-mid);
}

.track-head {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
}

.track-desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: #8a96a4;
  line-height: 1.6;
  max-width: 380px;
}

.track-cta {
  font-family: var(--f-head);
  font-size: 10px;
  color: var(--accent-b);
  letter-spacing: 1.2px;
  text-decoration: none;
}
.track-cta:hover { color: var(--text-hi); }

/* --- Footer --- */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--u);
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-muted);
}

.footer-legal {
  font-family: var(--f-head);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.8;
  text-align: right;
}

/* --- Pillar Colonnade (Sidebar spacer) ---
   Load-bearing metaphor: pillars that hold the pavilion roof.
   Contained in the spacer — the breathing gap between nav and identity.
   ------------------------------------------------------------------- */
@keyframes pillar-breathe {
  0%, 100% {
    opacity: 0.15;
    box-shadow: 0 0 3px rgba(91,155,213,0.2), 0 0 10px rgba(91,155,213,0.06);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 6px rgba(91,155,213,0.55), 0 0 20px rgba(91,155,213,0.22), 0 0 40px rgba(91,155,213,0.08);
  }
}

/* Spacer is the colonnade host */
.sidebar-spacer {
  position: relative;
  overflow: hidden;
}

.pillars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pillar {
  position: absolute;
  top: 0;
  bottom: 0;
  /* 1.5px solid core — enough weight to read as structural, not decorative */
  width: 1.5px;
  /* Fade at top and bottom — columns receding into floor and ceiling */
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--accent-b) 15%,
    var(--accent-b) 85%,
    transparent 100%
  );
  animation: pillar-breathe 5s ease-in-out infinite;
}


/* ============================================================
   FOG-OF-WAR — Entry Experience
   Warm cream background, dot matrix, radical absence
   ============================================================ */

.main-fog {
  background: #faf8f4;
  background-image: radial-gradient(circle, rgba(90,70,50,0.18) 1.5px, transparent 1.5px);
  background-size: 60px 60px;
  color: #1a1612;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Fog zone: centered entry, nothing else exists */
.fog-zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: var(--padding-centered, 120px);
  padding-bottom: 120px;
  gap: 18px;
  transition: padding-top 0.4s ease-out, padding-bottom 0.4s ease-out, min-height 0.4s ease-out;
}

/* Collapse: input field smoothly moves to top when recipe is active */
.fog-zone.has-recipe {
  min-height: var(--min-height-collapsed, auto);
  padding-top: 20px;
  padding-bottom: 20px;
}

.fog-tagline {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 800;
  color: #1a1612;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 540px;
}

/* Input */
.fog-input-wrap {
  position: relative;
  width: 800px;
  margin: 0 auto;
}

.fog-input {
  width: 100%;
  height: 60px;
  background: #ffffff;
  border: none;
  border-left: 3px solid #E8831A;
  padding: 0 20px;
  font-family: var(--f-body);
  font-size: 18px;
  color: #1a1612;
  outline: none;
  box-shadow: 0 2px 12px rgba(90,60,20,0.08);
  transition: box-shadow 0.2s;
}
.fog-input:focus {
  box-shadow: 0 2px 12px rgba(90,60,20,0.12), 0 0 0 3px rgba(232,131,26,0.15);
}
.fog-input::placeholder {
  color: #6b5b4e;
  font-style: italic;
}

/* Autocomplete dropdown */
.fog-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-left: 3px solid #E8831A;
  border-bottom: 1px solid rgba(90,70,50,0.1);
  z-index: 200;
  max-height: 240px;
  overflow-y: auto;
}
.fog-suggestion-item {
  font-family: var(--f-body);
  font-size: 15px;
  color: #1a1612;
  padding: 10px 20px;
  cursor: pointer;
}
.fog-suggestion-item:hover,
.fog-suggestion-item.active {
  background: rgba(232,131,26,0.06);
  color: #E8831A;
}

/* Keywords — inline prose, centered on single line */
/* Color: #2d6a9f on #faf8f4 = 4.9:1 contrast — WCAG AA ✓ */
.fog-topics {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  white-space: nowrap;
  overflow-x: hidden;
}

.topic-chip {
  display: inline;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.5px;
  color: #2d6a9f;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s;
}
.topic-chip:hover {
  color: #E8831A;
}

/* Dot separator — wider breathing room */
.topic-chip + .topic-chip::before {
  content: '\00a0\00a0·\00a0\00a0';
  color: #a89888;
  cursor: default;
  pointer-events: none;
  font-style: normal;
}

/* ============================================================
   RECIPE BLOCKS — hidden until revealed
   ============================================================ */

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

.recipe-block {
  display: none;
  flex-direction: column;
  padding: 60px 120px;
  gap: 36px;
  border-bottom: 1px solid rgba(90,70,50,0.12);
  background: #faf8f4;
}
/* Start state — visible in layout but invisible visually */
.recipe-block.revealed {
  display: flex;
  opacity: 0;
  transform: translateY(32px);
}

/* Animation fires in next rAF; fill-mode:both applies from-state immediately */
.recipe-block.revealed.entering {
  animation: slideUp 0.5s ease-out forwards;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0s);
}

/* Shared fog typography */
.fog-eyebrow {
  font-family: var(--f-head);
  font-size: 9px;
  font-weight: 400;
  color: #E8831A;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.fog-sec-title {
  font-family: var(--f-head);
  font-size: 36px;
  font-weight: 800;
  color: #1a1612;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 560px;
}
.fog-sec-body {
  font-family: var(--f-body);
  font-size: 17px;
  color: #3a3028;
  line-height: 1.75;
  max-width: 560px;
}

/* A — shelter-header */
#shelter-header { padding-top: 60px; }

.shelter-intro { display: flex; flex-direction: column; gap: 20px; }

.shelter-title {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 800;
  color: #1a1612;
  letter-spacing: -1.5px;
  line-height: 1.0;
  max-width: 600px;
}
.shelter-sub {
  font-family: var(--f-body);
  font-size: 22px;
  font-style: italic;
  color: #4a3e34;
  max-width: 520px;
  line-height: 1.6;
}

.shelter-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(90,70,50,0.15);
  border-bottom: 1px solid rgba(90,70,50,0.15);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 800;
  color: #E8831A;
  letter-spacing: -0.5px;
}
.stat-label {
  font-family: var(--f-head);
  font-size: 9px;
  color: #6b5b4e;
  letter-spacing: 1.4px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(90,70,50,0.2);
}

/* B — ownership-split */
.ownership-cols {
  display: flex;
  gap: 60;
}
.own-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}
.own-col-orange {
  background: rgba(232,131,26,0.05);
  border-top: 3px solid #E8831A;
}
.own-col-blue {
  background: rgba(91,155,213,0.05);
  border-top: 3px solid #5B9BD5;
}
.own-col-head {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.own-col-orange .own-col-head { color: #E8831A; }
.own-col-blue .own-col-head { color: #5B9BD5; }
.own-col-sep {
  height: 1px;
  background: rgba(90,70,50,0.12);
}
.own-col-item {
  font-family: var(--f-body);
  font-size: 15px;
  color: #3a3028;
  line-height: 1.5;
}

/* C — precedents-grid */
.precedents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.precedent-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(90,70,50,0.15);
  background: rgba(255,255,255,0.6);
}
.precedent-name {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  color: #1a1612;
}
.precedent-tag {
  font-family: var(--f-head);
  font-size: 9px;
  letter-spacing: 1.4px;
  color: #E8831A;
}
.precedent-desc {
  font-family: var(--f-body);
  font-size: 14px;
  color: #4a3e34;
  line-height: 1.65;
}

/* G — value:imparfait (single) */
.value-item-single {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border-left: 4px solid #E8831A;
  background: rgba(232,131,26,0.04);
  max-width: 560px;
}

/* H — values-all */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(90,70,50,0.1);
}
.value-name {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  color: #E8831A;
  letter-spacing: -0.3px;
}
.value-story {
  font-family: var(--f-body);
  font-size: 15px;
  color: #3a3028;
  line-height: 1.7;
  max-width: 560px;
}

/* D — constellation-map */
.constellation-placeholder {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  height: 240px;
  border: 1px dashed rgba(90,70,50,0.25);
  background: rgba(255,255,255,0.4);
}
.constellation-placeholder-label {
  font-family: var(--f-head);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: #6b5b4e;
}
.constellation-placeholder-sub {
  font-family: var(--f-body);
  font-size: 14px;
  color: #6b5b4e;
}
.fog-inline-link { color: #E8831A; text-decoration: none; }
.fog-inline-link:hover { text-decoration: underline; }

/* --- Projet pages (warm cream, same as fog) --- */
.fog-page {
  background: #faf8f4;
  min-height: 100vh;
  width: 100%;
}
.projet-page {
  font-family: var(--f-head);  /* ch unit now based on Atkinson Hyperlegible */
  width: min(75ch, 100%);
  padding: 60px 60px 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.projet-back {
  font-family: var(--f-head);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.projet-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.projet-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.projet-body h2 {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 800;
  color: #1a1612;
  letter-spacing: -0.5px;
  margin-top: 12px;
}
.projet-body h3 {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  color: #1a1612;
}
.projet-body p {
  font-family: var(--f-body);
  font-size: 17px;
  color: #3a3028;
  line-height: 1.75;
  max-width: none;
}
.projet-page .fog-sec-title,
.projet-page .fog-sec-body {
  max-width: none;
}
.projet-body strong {
  color: #1a1612;
}
.projet-body ul, .projet-body ol {
  font-family: var(--f-body);
  font-size: 17px;
  color: #3a3028;
  line-height: 1.75;
  padding-left: 24px;
}
.projet-body blockquote {
  border-left: 3px solid #E8831A;
  padding: 16px 24px;
  background: rgba(232,131,26,0.04);
  font-style: italic;
  color: #3a3028;
}
.projet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(26,22,18,0.12);
}
.projet-meta-label {
  font-family: var(--f-head);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #E8831A;
  display: block;
}
.projet-meta-value {
  font-family: var(--f-body);
  font-size: 15px;
  color: #3a3028;
  display: block;
  margin-top: 4px;
}

/* J — mission */
.mission-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  padding: 32px;
  border-left: 4px solid #5B9BD5;
  background: rgba(91,155,213,0.04);
}
.mission-statement {
  font-family: var(--f-body);
  font-size: 22px;
  font-style: italic;
  color: #1a1612;
  line-height: 1.6;
}
.mission-tag {
  font-family: var(--f-head);
  font-size: 10px;
  color: #6b5b4e;
  letter-spacing: 1.2px;
}

/* Contact recipe — Tally form + address/hours sidebar */
.contact-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-form {
  flex: 1 1 480px;
  min-width: 0;
}
.contact-form iframe {
  background: transparent;
  display: block;
}
.contact-info {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-left: 3px solid #E8831A;
  background: rgba(232,131,26,0.04);
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info-label {
  font-family: var(--f-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #E8831A;
  text-transform: uppercase;
}
.contact-info-text {
  font-family: var(--f-body);
  font-size: 14px;
  color: #3a3028;
  line-height: 1.6;
}

/* K — CTA */
#cta {
  padding: 60px 120px 120px 120px;
  gap: 12px;
  border-bottom: none;
}
.cta-main {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 800;
  color: #1a1612;
  letter-spacing: -0.5px;
}
.cta-main a {
  color: #E8831A;
  text-decoration: none;
}
.cta-main a:hover { text-decoration: underline; }
.cta-hint {
  font-family: var(--f-body);
  font-size: 16px;
  font-style: italic;
  color: #6b5b4e;
}
