/* La Fabrique du 10 — landing page
   Brand chart: display face Brasika (stand-in: Fraunces), subtitles Montserrat,
   body Calibri. Palette sampled from the chart image. */

:root {
  --navy: #0e3b65;
  --brown: #853c1c;
  --orange: #db7443;
  --cream: #fdf5e0;
  --teal: #609988;

  --ink: #14243a;           /* body text on cream */
  --ink-soft: #4a5566;
  --paper: #fffaf0;         /* page background, a touch lighter than cream */
  --line: rgba(14, 59, 101, 0.14);

  --display: "Fraunces", "Brasika", Georgia, serif;
  --subtitle: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --body: Calibri, Carlito, "Segoe UI", system-ui, -apple-system, sans-serif;

  --max: 1180px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
sup { font-size: 0.6em; line-height: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 8px; top: -60px; z-index: 100;
  background: var(--navy); color: var(--cream); padding: 10px 14px; border-radius: 8px;
}
.skip:focus { top: 8px; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
h1 { font-size: clamp(2.75rem, 7.5vw, 6rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.9rem); }
h3 { font-size: 1.45rem; font-variation-settings: "opsz" 48, "SOFT" 40, "WONK" 0; }

/* The "swash" word: italic Fraunces at full softness, tinted orange. */
.swash {
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.kicker {
  font-family: var(--subtitle);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 14px;
}
.kicker-light { color: var(--orange); }

p { margin: 0 0 1em; }
.intro, .lede { font-size: 1.25rem; color: var(--ink-soft); max-width: 40ch; }

/* ---------- Top bar ---------- */

.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px var(--gutter);
  background: rgba(253, 245, 224, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--navy);
}
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px 12px 12px 4px;
  background: var(--navy); color: var(--cream);
  font-family: var(--display); font-weight: 800; font-size: 1.25rem;
  font-variation-settings: "opsz" 48, "SOFT" 100, "WONK" 1;
}
.brand-name {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; line-height: 1;
}
.brand-name em { font-style: italic; color: var(--orange); font-weight: 600; }

.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  font-family: var(--subtitle); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; text-decoration: none; color: var(--navy);
  padding: 8px 12px; border-radius: 999px;
}
.nav a:hover { background: rgba(14, 59, 101, 0.08); }
.nav-cta { background: var(--orange); color: var(--cream) !important; }
.nav-cta:hover { background: var(--brown) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; padding: 10px; border: 0; background: none; cursor: pointer;
}
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--navy); border-radius: 2px; }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 10px var(--gutter) 18px; background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 1rem; }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--cream);
  padding: clamp(64px, 10vw, 140px) var(--gutter) clamp(200px, 22vw, 300px);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.hero .kicker { color: var(--orange); }
.hero h1 { color: var(--cream); max-width: 14ch; }
.hero .lede { color: rgba(253, 245, 224, 0.82); margin-top: 24px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--subtitle); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: var(--cream); }
.btn-orange:hover { background: #e88a5c; }
.btn-ghost { border-color: rgba(253, 245, 224, 0.5); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream); }

.hero-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px;
  margin: 56px 0 0; padding-top: 24px;
  border-top: 1px solid rgba(253, 245, 224, 0.2);
  max-width: 760px;
}
.hero-facts dt {
  font-family: var(--subtitle); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); font-weight: 700;
}
.hero-facts dd { margin: 4px 0 0; font-size: 1.05rem; }

/* Giant "10" sitting in the ridge like a moon. */
.hero-ten {
  position: absolute; right: -0.05em; bottom: 0.02em; z-index: 1;
  font-family: var(--display); font-weight: 900; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: clamp(14rem, 40vw, 34rem); line-height: 0.8;
  color: var(--orange); opacity: 0.92;
  pointer-events: none; user-select: none;
}
@media (max-width: 760px) {
  .hero { padding-bottom: 260px; }
  .hero-ten { font-size: 15rem; right: -0.1em; bottom: -0.02em; opacity: 0.5; }
}

.ridge {
  position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: clamp(120px, 18vw, 240px);
  z-index: 2;
}
.ridge-back { fill: var(--teal); opacity: 0.75; }
.ridge-front { fill: var(--paper); }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--cream); padding: 14px 0;
  font-family: var(--subtitle); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 0.8rem; color: var(--navy);
}
.marquee-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  animation: slide 40s linear infinite;
}
.marquee-track i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */

.section { padding: clamp(64px, 9vw, 120px) var(--gutter); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { color: var(--navy); max-width: 16ch; }
.section-head .intro { margin-top: 20px; }

/* ---------- Floor plan ---------- */

.plan {
  display: grid; gap: 14px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas:
    "travail travail travail accueil accueil accueil"
    "travail travail travail reunion reunion visio"
    "chill   chill   communs reunion reunion visio";
}
.room {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  min-height: 150px; padding: 20px; border-radius: var(--radius);
  text-decoration: none; color: var(--cream);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
a.room:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(14, 59, 101, 0.5); }
.room-n {
  font-family: var(--subtitle); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em;
  opacity: 0.75;
}
.room-name { font-family: var(--display); font-weight: 700; font-size: 1.6rem; line-height: 1.05; }
.room-desc { font-size: 1rem; line-height: 1.4; opacity: 0.9; margin-top: auto; max-width: 34ch; }

.room-travail { grid-area: travail; background: var(--navy); min-height: 300px; }
.room-accueil { grid-area: accueil; background: var(--orange); }
.room-reunion { grid-area: reunion; background: var(--teal); }
.room-visio   { grid-area: visio;   background: var(--brown); }
.room-chill   { grid-area: chill;   background: #e9ab86; color: var(--brown); }
.room-communs {
  grid-area: communs; background: transparent; color: var(--ink-soft);
  border: 2px dashed var(--line); justify-content: center;
}
.room-communs .room-name { font-size: 1.1rem; color: var(--navy); }
.room-communs .room-desc { margin-top: 0; }

/* Ghost number in the corner of the big rooms, like a door plate. */
.room-travail::after {
  content: "01"; position: absolute; right: -6px; bottom: -34px;
  font-family: var(--display); font-weight: 900; font-style: italic; font-size: 9rem;
  color: rgba(253, 245, 224, 0.08); line-height: 1;
}

@media (max-width: 900px) {
  .plan {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "travail travail"
      "accueil reunion"
      "visio   chill"
      "communs communs";
  }
  .room-travail { min-height: 220px; }
  .room-communs { min-height: 90px; }
}
@media (max-width: 520px) {
  .plan { grid-template-columns: 1fr; grid-template-areas: "travail" "accueil" "reunion" "visio" "chill" "communs"; }
}

/* ---------- Cards ---------- */

.cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: var(--paper); border-radius: var(--radius); padding: 26px 24px 22px;
  border: 1px solid var(--line); display: flex; flex-direction: column;
}
.card h3 { color: var(--navy); margin: 18px 0 10px; }
.card p { font-size: 1.02rem; color: var(--ink-soft); }
.card p strong { color: var(--ink); font-weight: 600; }
.card-meta {
  margin: auto 0 0; padding-top: 12px;
  font-family: var(--subtitle); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal) !important;
}
.card-meta-soon { color: var(--orange) !important; }

.card-icon {
  width: 56px; height: 56px; border-radius: 16px 16px 16px 6px; display: grid; place-items: center;
}
.card-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.card-icon-navy   { background: rgba(14, 59, 101, 0.1);  color: var(--navy); }
.card-icon-orange { background: rgba(219, 116, 67, 0.16); color: var(--orange); }
.card-icon-teal   { background: rgba(96, 153, 136, 0.18); color: var(--teal); }
.card-icon-brown  { background: rgba(133, 60, 28, 0.12);  color: var(--brown); }

.publics {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px;
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line);
}
.publics-label {
  margin: 0; font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--navy);
}
.pills { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.pills li {
  font-family: var(--subtitle); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 999px;
  border: 1.5px solid var(--navy); color: var(--navy);
}
.pills li:nth-child(even) { border-color: var(--orange); color: var(--brown); }

/* ---------- Esprit ---------- */

.esprit-grid {
  display: grid; gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: start;
}
.esprit-text h2 { color: var(--cream); margin-bottom: 24px; }
.esprit-text p { color: rgba(253, 245, 224, 0.85); font-size: 1.1rem; }

.values {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr);
}
.values li {
  padding: 22px 20px 20px; border-radius: var(--radius);
  background: rgba(253, 245, 224, 0.06); border: 1px solid rgba(253, 245, 224, 0.14);
}
.values li:nth-child(1) { background: rgba(219, 116, 67, 0.22); }
.values li:nth-child(4) { background: rgba(96, 153, 136, 0.28); }
.value-n {
  font-family: var(--subtitle); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em; color: var(--orange);
}
.values h3 { color: var(--cream); margin: 10px 0 8px; font-size: 1.5rem; }
.values p { margin: 0; font-size: 1rem; color: rgba(253, 245, 224, 0.8); }

@media (max-width: 860px) {
  .esprit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .values { grid-template-columns: 1fr; }
}

/* ---------- Timeline ---------- */

.timeline {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid; gap: 0; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
/* The line runs from the first dot's centre to the last one's: 12.5% = half a column. */
.timeline::before {
  content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 11px; height: 2px;
  background: linear-gradient(90deg, var(--navy) 0 66%, var(--orange) 66% 100%);
}
.timeline li { position: relative; padding: 40px 16px 0; text-align: center; }
.timeline li::before {
  content: ""; position: absolute; left: 50%; top: 0; width: 24px; height: 24px; border-radius: 50%;
  transform: translateX(-50%);
  background: var(--paper); border: 3px solid var(--navy);
}
.timeline h3 { max-width: 16ch; margin-left: auto; margin-right: auto; }
.timeline p { max-width: 30ch; margin-left: auto; margin-right: auto; }
#chemin .section-head { text-align: center; }
#chemin .section-head h2 { margin-left: auto; margin-right: auto; max-width: 24ch; }
.timeline li.is-now::before { border-color: var(--orange); background: var(--orange); box-shadow: 0 0 0 8px rgba(219, 116, 67, 0.2); }
.timeline time {
  display: block; font-family: var(--subtitle); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown); margin-bottom: 10px;
}
.timeline li.is-now time { color: var(--orange); }
.timeline h3 { color: var(--navy); margin-bottom: 10px; }
.timeline p { font-size: 1.02rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 28px; padding-left: 36px; }
  .timeline::before { left: 11px; right: auto; top: 0; bottom: 0; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--navy) 0 75%, var(--orange) 75% 100%); }
  .timeline li { padding: 0; text-align: left; }
  .timeline li::before { left: -36px; top: 2px; transform: none; }
  .timeline h3, .timeline p { margin-left: 0; max-width: none; }
  #chemin .section-head { text-align: left; }
  #chemin .section-head h2 { margin-left: 0; }
}

/* ---------- Partners ---------- */

.partners-title {
  text-align: center; color: var(--navy); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 36px;
}
.partners-list {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.partners-list li {
  padding: 26px 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.partner-name { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--navy); line-height: 1.1; }
.partner-role { color: var(--ink-soft); font-size: 1rem; }
.partner-open { border-style: dashed; border-color: var(--orange); background: transparent; }
.partner-open .partner-name { color: var(--orange); }

/* ---------- Contact ---------- */

.contact { padding-top: clamp(48px, 7vw, 96px); }
.contact-card {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 0;
  border-radius: 28px; overflow: hidden; background: var(--cream); border: 1px solid var(--line);
}
.contact-text { padding: clamp(32px, 5vw, 64px); }
.contact-text h2 { color: var(--navy); margin-bottom: 20px; }
.contact-text p { color: var(--ink-soft); font-size: 1.1rem; max-width: 46ch; }
.contact-mail a {
  font-family: var(--subtitle); font-weight: 700; font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--brown); text-decoration: none; border-bottom: 3px solid var(--orange); padding-bottom: 2px;
}
.contact-mail a:hover { color: var(--orange); }

.contact-address {
  font-style: normal; position: relative; overflow: hidden;
  background: var(--teal); color: var(--cream);
  padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; justify-content: flex-end;
}
.contact-ten {
  position: absolute; right: -0.08em; top: -0.18em;
  font-family: var(--display); font-weight: 900; font-style: italic; font-size: 13rem; line-height: 1;
  color: rgba(253, 245, 224, 0.16); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.addr-line { position: relative; font-family: var(--display); font-weight: 700; font-size: 1.6rem; line-height: 1.15; }
.addr-map {
  position: relative; margin-top: 18px; align-self: flex-start;
  font-family: var(--subtitle); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; border-bottom: 2px solid var(--cream); padding-bottom: 2px;
}
@media (max-width: 760px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-address { min-height: 220px; }
}

/* ---------- Finding the door ---------- */

.entree { margin: 28px auto 0; }
.entree-photo { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy); }
.entree-photo img { width: 100%; height: auto; display: block; }
.entree-pin {
  position: absolute; width: 28px; height: 28px; margin: -14px 0 0 -14px; border-radius: 50%;
  background: var(--orange); border: 3px solid var(--cream); box-shadow: 0 0 0 6px rgba(219, 116, 67, 0.35);
  animation: pulse 2s ease-out infinite;
}
.entree-pin span {
  position: absolute; left: 50%; bottom: calc(100% + 12px); transform: translateX(-50%);
  white-space: nowrap; padding: 6px 12px; border-radius: 999px;
  background: var(--orange); color: var(--cream);
  font-family: var(--subtitle); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.entree-pin span::after {
  content: ""; position: absolute; left: 50%; top: 100%; margin-left: -6px;
  border: 6px solid transparent; border-top-color: var(--orange);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(219, 116, 67, 0.55); }
  100% { box-shadow: 0 0 0 22px rgba(219, 116, 67, 0); }
}
.entree figcaption { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; max-width: 70ch; }
.entree figcaption strong { color: var(--navy); font-weight: 600; }

/* ---------- Footer ---------- */

.footer { background: var(--navy); color: rgba(253, 245, 224, 0.75); padding: 48px var(--gutter) 40px; font-size: 0.95rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-brand { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--cream); margin-bottom: 14px; }
.footer-brand em { font-style: italic; color: var(--orange); font-weight: 600; }
.footer-fine { margin: 18px 0 0; font-size: 0.85rem; opacity: 0.7; }

/* ---------- Gallery ---------- */

.mosaic {
  display: grid; gap: 16px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.photo { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy); }
.photo-tall { grid-row: 1 / 3; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.photo:hover img { transform: scale(1.03); }
.photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
  color: var(--cream); font-size: 1rem; line-height: 1.35;
  background: linear-gradient(180deg, rgba(14, 59, 101, 0) 0%, rgba(14, 59, 101, 0.85) 100%);
}
.photo figcaption time {
  display: block; font-family: var(--subtitle); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px;
}
@media (max-width: 760px) {
  .mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .photo-tall { grid-row: auto; max-height: 70vh; }
}

/* ---------- Associations ---------- */

.asso-list {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.asso {
  display: flex; flex-direction: column; gap: 18px;
  padding: 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line);
}
.asso-logo {
  display: grid; place-items: center; height: 150px; padding: 16px; text-decoration: none;
  border-radius: 16px; background: #fff; border: 1px solid var(--line);
}
.asso-logo-dark { background: var(--navy); border-color: var(--navy); }
.asso-logo img { max-height: 118px; max-width: 100%; width: auto; object-fit: contain; }
.asso-logo-text {
  font-family: var(--display); font-weight: 800; font-size: 2.2rem; color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.asso-body h3 { color: var(--navy); margin-bottom: 8px; }
.asso-body p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 10px; }
.asso-link {
  font-family: var(--subtitle); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); text-decoration: none;
  border-bottom: 2px solid currentColor; padding-bottom: 1px;
}
.asso-link:hover { color: var(--orange); }

/* "Votre structure ?" call-out: the loudest block on the page after the hero. */
.yours {
  position: relative; overflow: hidden; margin-top: 28px;
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 24px; align-items: center;
  padding: clamp(32px, 5vw, 56px); border-radius: 28px;
  background: var(--brown); color: var(--cream);
  background-image: radial-gradient(circle at 100% 0%, rgba(219, 116, 67, 0.55), transparent 55%);
}
.yours h3 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 18px; line-height: 0.95;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1; }
.yours h3 .swash { color: var(--orange); }
.yours p { color: rgba(253, 245, 224, 0.88); font-size: 1.1rem; max-width: 50ch; margin: 0; }
.yours .kicker { color: #f0b48f; }
.yours-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.yours-actions .btn { text-align: center; }
.yours-actions .btn-ghost { border-color: rgba(253, 245, 224, 0.55); }
.yours-ten {
  position: absolute; right: -0.06em; bottom: -0.32em; pointer-events: none;
  font-family: var(--display); font-weight: 900; font-style: italic; font-size: 14rem; line-height: 1;
  color: rgba(253, 245, 224, 0.1); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.yours-text { position: relative; z-index: 1; }
@media (max-width: 860px) {
  .yours { grid-template-columns: 1fr; }
  .yours-actions { flex-direction: row; flex-wrap: wrap; }
}

.commune {
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 36px;
  color: var(--ink-soft); font-size: 1.05rem;
}
.commune-logo { display: block; flex: none; }
.commune-logo img { width: 200px; height: auto; }
.commune p { margin: 0; max-width: 46ch; }
.commune a:not(.commune-logo) { color: var(--navy); font-weight: 600; text-decoration-color: var(--orange); text-decoration-thickness: 2px; }
.commune a:not(.commune-logo):hover { color: var(--orange); }
