/* ─────────────────────────────────────────────────────────────────
   Bistanclaque — site shared stylesheet (light pages)
   Used by: nous-connaitre.html · studio.html
───────────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }

/* Smooth cross-document page transitions (À savoir ↔ Studio ↔ Productions).
   Falls back to instant navigation where unsupported. */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation-duration: 0.42s; animation-timing-function: ease; }
}


:root {
  /* Brand */
  --cream: #F9F9EE;
  --cream-2: #F2F1E4;
  --cream-3: #ECE5D3;
  --paper: #FDFAF1;

  --ink: #1a1a1a;
  --ink-2: #2a2a2a;
  --muted: #5a5a5a;
  --muted-2: #8a8a8a;

  --line: rgba(26,26,26,0.14);
  --line-soft: rgba(26,26,26,0.08);

  --burgundy: #6D2721;
  --burgundy-2: #9D3830;
  --turquoise: #5ECFBE;
  --orange-warm: #E87A3A;
  --yellow: #F5C842;

  /* Type */
  --serif: 'Averia Serif Libre', Georgia, serif;
  --body: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px; line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; }
sup { font-size: 0.6em; vertical-align: super; line-height: 0; }

.page {
  max-width: 1440px; margin: 0 auto;
  background: var(--cream);
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
main { flex: 1; }

/* ───── Type helpers ───────────────────────────────────────────── */
.ff-title { font-family: var(--serif); color: var(--burgundy); }

/* ─────────────────────────────────────────────────────────────────
   Header
───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 0 32px;
  background: rgba(249,249,238,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: center; gap: 40px;
}
.site-header__logo {
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}
.site-header__logo:hover { opacity: 0.7; transform: scale(0.97); }
.site-header__logo img { height: 84px; width: auto; display: block; }
.brand-col {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; line-height: 1;
  position: relative;
  padding-bottom: 10px;
}
.brand-col__name {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.brand-col__name a { transition: opacity 0.2s; }
.brand-col__name a:hover { opacity: 0.6; }
.brand-col__sub {
  font-family: var(--body); font-size: 11px; font-weight: 300;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  margin-top: 6px;
  text-transform: lowercase;
}
.brand-col.is-current .brand-col__name {
  color: var(--burgundy);
}
.brand-col.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--burgundy);
  opacity: 0.85;
}
.header-divider {
  width: 1px; height: 32px; background: var(--line); flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────
   Sections
───────────────────────────────────────────────────────────────── */
.section {
  padding: 72px 56px;
  border-top: 1px solid var(--line-soft);
}
.section--alt { background: var(--cream-2); }
.container { max-width: 1100px; margin: 0 auto; }

.section__head {
  display: flex; flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 920px;
}
.section__num { display: none; }
.section__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.section__intro {
  font-family: var(--body);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
  max-width: 920px;
  text-wrap: pretty;
}
.section__intro strong { font-weight: 600; color: var(--ink); }
.section__after {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-2); margin: 32px 0 0;
  max-width: none; text-wrap: pretty;
}
.section__after em { font-style: italic; color: var(--burgundy); }
.section__after strong { font-weight: 600; color: var(--ink); }

/* ─────────────────────────────────────────────────────────────────
   Home hero
───────────────────────────────────────────────────────────────── */
.home-hero {
  padding: 88px 56px 64px;
  position: relative;
  overflow: hidden;
}
.home-hero__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.home-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--muted);
  margin-bottom: 32px;
}
.home-hero__eyebrow .sep { opacity: 0.5; }
.home-hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.92; letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 36px;
  text-wrap: balance;
}
.home-hero__title em {
  font-style: italic; font-weight: 300;
  color: var(--burgundy);
}
.home-hero__lede {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 720px;
  text-wrap: pretty;
}
.home-hero__rhythm {
  position: absolute;
  right: 56px; bottom: 64px;
  display: flex; align-items: flex-end; gap: 8px;
  height: 64px;
}
.home-hero__rhythm .bar {
  width: 14px; border-radius: 2px;
  animation: hbeat 1.4s ease-in-out infinite;
}
.home-hero__rhythm .bar--burgundy { background: var(--burgundy); height: 64px; animation-delay: 0s; }
.home-hero__rhythm .bar--orange   { background: var(--orange-warm); height: 44px; animation-delay: 0.18s; }
.home-hero__rhythm .bar--yellow   { background: #B8941F; height: 52px; animation-delay: 0.36s; }
.home-hero__rhythm .bar--turquoise{ background: #2A8F7D; height: 36px; animation-delay: 0.54s; }
@keyframes hbeat {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__rhythm .bar { animation: none; }
}

/* ─────────────────────────────────────────────────────────────────
   Activity cards (2 columns on home)
───────────────────────────────────────────────────────────────── */
.activities {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.activity {
  position: relative;
  display: block;
  padding: 40px 36px 36px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.activity:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.25);
}
.activity--dark {
  background: #0a0a0a;
  color: #F9F9EE;
}
.activity--cream {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--burgundy);
  border-width: 1.5px;
}
.activity__bg {
  display: none;
}
.activity__body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 360px;
}
.activity__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.activity--dark .activity__eyebrow { color: var(--turquoise); }
.activity--cream .activity__eyebrow { color: var(--burgundy); }
.activity__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 0.95; letter-spacing: -0.02em;
  margin: 6px 0 4px;
}
.activity--cream .activity__title { color: var(--burgundy); }
.activity__title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.activity__title a:hover { opacity: 0.85; }
.activity__desc {
  font-size: 15px; line-height: 1.55;
  font-weight: 300;
  margin: 0;
  max-width: 380px;
  text-wrap: pretty;
}
.activity--dark .activity__desc { color: rgba(249,249,238,0.78); }
.activity--cream .activity__desc { color: var(--ink-2); }
.activity__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}
.activity__tags span {
  font-family: var(--body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid;
}
.activity--dark .activity__tags span { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.78); }
.activity--cream .activity__tags span { border-color: rgba(0,0,0,0.18); color: var(--muted); }

/* Foot row: socials left, prominent */
.activity__foot {
  display: flex; align-items: center; justify-content: flex-start;
  flex-wrap: wrap; gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid;
}
.activity--dark .activity__foot { border-top-color: rgba(255,255,255,0.10); }
.activity--cream .activity__foot { border-top-color: rgba(0,0,0,0.08); }

.activity__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: inherit;
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.activity__cta:hover { border-bottom-color: currentColor; }

/* Prominent socials variant — plain inline links, left-aligned */
.activity__socials--prominent {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.01em;
}
.activity__socials--prominent a {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent !important;
  opacity: 1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.activity--dark .activity__socials--prominent a {
  color: rgba(249,249,238,0.92);
}
.activity--dark .activity__socials--prominent a:hover {
  color: var(--turquoise);
  border-bottom-color: var(--turquoise);
  background: transparent !important;
}
.activity--cream .activity__socials--prominent a {
  color: var(--ink);
}
.activity--cream .activity__socials--prominent a:hover {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
  background: transparent !important;
}
.activity__arrow {
  font-family: var(--body); font-weight: 300;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.25s ease;
}
.activity__cta:hover .activity__arrow,
.activity:hover .activity__arrow { transform: translateX(6px); }

.activity__socials {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 12.5px;
  letter-spacing: 0.02em;
}
.activity__socials a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.78;
}
.activity__socials a:hover {
  opacity: 1;
  border-bottom-color: currentColor;
}
.activity__socials-sep { opacity: 0.4; }
.activity--dark .activity__socials a { color: rgba(249,249,238,0.85); }
.activity--cream .activity__socials a { color: var(--ink); }

/* ─────────────────────────────────────────────────────────────────
   Portraits (shared across pages)
   - 4/5 aspect ratio, hatched border, corner label
───────────────────────────────────────────────────────────────── */
.portraits {
  display: grid;
  gap: 24px;
}
.portraits--three { grid-template-columns: repeat(3, 1fr); max-width: 800px; }
.portraits--four  { grid-template-columns: repeat(4, 1fr); }
.portraits--five  { grid-template-columns: repeat(5, 1fr); }

.portrait { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.portrait__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(135deg, rgba(109,39,33,0.06) 0 8px, rgba(109,39,33,0.10) 8px 16px);
  border: 1px dashed rgba(109,39,33,0.32);
  border-radius: 2px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 12px;
}
.portrait__frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* Real photo present → drop the dashed placeholder treatment */
.portrait__frame:has(img) {
  background: none;
  border: 0;
  padding: 0;
}
.portrait__placeholder-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--burgundy);
  background: var(--cream);
  padding: 4px 8px;
}
.portrait__name {
  font-family: var(--serif);
  font-size: 18px; font-weight: 700;
  color: var(--ink);
}
.portrait__role {
  font-family: var(--body);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
  line-height: 1.4;
}

/* Dark portrait variant (PB page) */
.portrait--dark .portrait__frame {
  background: repeating-linear-gradient(135deg, rgba(94,207,190,0.06) 0 8px, rgba(94,207,190,0.10) 8px 16px);
  border-color: rgba(94,207,190,0.32);
}
.portrait--dark .portrait__placeholder-label {
  color: var(--turquoise);
  background: #0a0a0a;
}
.portrait--dark .portrait__name { color: #F9F9EE; }
.portrait--dark .portrait__role { color: rgba(249,249,238,0.55); }

/* ─────────────────────────────────────────────────────────────────
   Rhythm beats (NOTRE NOM)
───────────────────────────────────────────────────────────────── */
.nom-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 330px);
  gap: 56px;
  align-items: stretch;
}
.nom-layout__text { min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.nom-after { margin-top: 32px; }
.nom-layout__text { justify-content: flex-start; }
.nom-layout__text .rhythm { flex: 0 0 auto; padding-top: 22px; padding-bottom: 22px; }
.nom-layout__text .rhythm { margin: 0; }
.nom-layout__text .section__after { margin: 0; }
.nom-layout__text .section__head { margin-bottom: 0; }
.nom-layout__text .section__title { margin-bottom: 16px; }
/* Image: top aligns with the intro paragraph, bottom aligns with the rhythm box. */
.nom-layout__img {
  position: relative;
  margin: 0;
  align-self: stretch;
  margin-top: var(--nom-title-h, 52px);
  display: flex;
}
.nom-layout__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -24px rgba(0,0,0,0.45);
}
.nom-layout__img figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  font-style: italic;
  text-align: right;
}
@media (max-width: 820px) {
  .nom-layout { grid-template-columns: 1fr; gap: 32px; }
  .nom-layout__img { margin-top: 0; align-self: auto; max-width: 360px; }
  .nom-layout__img img { aspect-ratio: 4 / 3; }
  .nom-layout__img figcaption { text-align: left; }
}
.rhythm {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 8px;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.rhythm::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--burgundy) 0% 33.333%,
    var(--orange-warm) 33.333% 66.666%,
    #2A8F7D 66.666% 100%);
}
.beat { display: flex; flex-direction: column; gap: 8px; }
.beat__syllable {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--burgundy);
}
.beat__desc {
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.beat__index {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────────────────────────────
   Socials
───────────────────────────────────────────────────────────────── */
.socials {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  gap: 32px;
  align-items: stretch;
}
.socials__divider { background: var(--line); }
.socials__col { display: flex; flex-direction: column; gap: 12px; }
.socials__col-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.social-link {
  display: grid; grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-link:hover {
  background: var(--cream);
  border-color: var(--burgundy);
  transform: translateX(2px);
}
.social-link__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  font-family: var(--serif); font-weight: 700;
  font-size: 16px;
}
.icon-ig {
  width: 18px; height: 18px;
  border: 1.6px solid var(--cream);
  border-radius: 5px;
  position: relative;
}
.icon-ig::before {
  content: ""; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 7px; height: 7px; border: 1.6px solid var(--cream); border-radius: 50%;
}
.icon-ig::after {
  content: ""; position: absolute;
  top: 2px; right: 2px;
  width: 3px; height: 3px; background: var(--cream); border-radius: 50%;
}
.icon-vimeo, .icon-li, .icon-sc {
  font-family: var(--serif); font-weight: 700; font-size: 15px;
}
.social-link__name {
  font-family: var(--serif); font-weight: 700;
  font-size: 16px; color: var(--ink);
}
.social-link__handle {
  display: block;
  font-family: var(--body); font-size: 12px; font-weight: 300;
  color: var(--muted);
  margin-top: 2px;
}
.social-link__name, .social-link__handle { grid-column: 2; }
.social-link__handle { grid-row: 2; }
.social-link__name { grid-row: 1; }
.social-link__arrow {
  font-family: var(--body); font-size: 16px;
  color: var(--muted-2);
  grid-column: 3; grid-row: 1 / span 2;
  transition: transform 0.2s, color 0.2s;
}
.social-link:hover .social-link__arrow { color: var(--burgundy); transform: translate(2px, -2px); }

/* ─────────────────────────────────────────────────────────────────
   Contact block (dark island, used on home + studio)
───────────────────────────────────────────────────────────────── */
.contact-block {
  background: var(--ink);
  color: var(--cream);
  padding: 88px 56px;
  text-align: center;
}
.contact-block__inner { max-width: 1000px; margin: 0 auto; }
.contact-block__eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.contact-block__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.contact-block__title--sm {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}
.contact-block__email {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: -0.005em;
  color: var(--cream);
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  transition: all 0.25s ease;
}
.contact-block__email:hover {
  background: var(--cream); color: var(--ink); border-color: var(--cream);
  transform: translateY(-2px);
}
.contact-block__address {
  font-family: var(--body); font-size: 12px;
  color: rgba(249,249,238,0.5);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 32px;
}

/* ─────────────────────────────────────────────────────────────────
   Footer (harmonized)
───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--cream);
  padding: 56px 56px 24px;
  border-top: 1px solid var(--line);
}
.site-footer__cols {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.site-footer__brand {
  font-family: var(--serif);
  font-size: 22px; font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 6px;
}
.site-footer__sub {
  font-family: var(--body); font-weight: 300;
  font-size: 13px; color: var(--muted);
}
.site-footer__label {
  font-family: var(--body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.site-footer__cols a {
  color: var(--ink); font-weight: 400;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.site-footer__cols a:hover {
  border-bottom-color: var(--burgundy);
  color: var(--burgundy);
}
.site-footer__links { display: flex; flex-direction: column; gap: 6px; }
.site-footer__bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--body); font-size: 12px; font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.site-footer__cross { display: inline-flex; gap: 10px; align-items: center; }
.site-footer__cross a { transition: color 0.2s; }
.site-footer__cross a:hover { color: var(--burgundy); }
.dot-sep { color: var(--muted-2); opacity: 0.6; }

/* ─────────────────────────────────────────────────────────────────
   Atoms — dots
───────────────────────────────────────────────────────────────── */
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.dot--turquoise { background: var(--turquoise); }
.dot--orange    { background: var(--orange-warm); }
.dot--yellow    { background: var(--yellow); }
.dot--burgundy  { background: var(--burgundy); }

/* ─────────────────────────────────────────────────────────────────
   Hero-style section head (À savoir, section 1)
───────────────────────────────────────────────────────────────── */
.section__head--hero { margin-bottom: 56px; max-width: 1100px; }
.section__title--hero {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 8.4vw, 120px);
  line-height: 0.92; letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: balance;
}
.section__title--hero em {
  font-style: italic; font-weight: 300;
}
.section__title--hero .ink-turquoise { color: var(--orange-warm); }
.section__title--hero .ink-burgundy  { color: var(--burgundy); }

/* Neutral (body) intro variant — drops the larger serif treatment */
.section__intro--neutral {
  font-family: var(--body);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 720px;
  text-wrap: pretty;
}
.section__intro--neutral strong {
  font-family: var(--body);
  font-weight: 600;
  color: var(--ink);
}

/* ─────────────────────────────────────────────────────────────────
   Mini-socials under activity cards (home)
───────────────────────────────────────────────────────────────── */
.activities-socials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}
.activities-socials__col {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0 12px;
  padding: 14px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255,255,255,0.4);
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--ink);
}
.activities-socials__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.activities-socials__col a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.activities-socials__col a:hover {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}
.activities-socials__sep {
  color: var(--muted-2);
  opacity: 0.5;
}

@media (max-width: 760px) {
  .activities-socials { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────
   Devis banner — full-width burgundy CTA bar (Studio services)
───────────────────────────────────────────────────────────────── */
.devis-banner {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 36px auto 0;
  padding: 16px 28px;
  background: var(--burgundy);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 22px -14px rgba(109,39,33,0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}
.devis-banner strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: -0.005em;
  margin-left: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.devis-banner:hover {
  background: #5a1f1a;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -16px rgba(109,39,33,0.7);
}
.devis-banner:hover strong { border-bottom-color: #fff; }

/* ─────────────────────────────────────────────────────────────────
   Devis card — matches PB .devis-cta, adapted to light pages
───────────────────────────────────────────────────────────────── */
.devis-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 28px;
  margin: 8px auto 0;
  padding: 18px 24px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px -10px rgba(109,39,33,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--body);
  width: fit-content;
  max-width: 100%;
  text-align: center;
}
.devis-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -14px rgba(109,39,33,0.5);
}
.devis-card__label {
  grid-column: 1;
  font-family: var(--body);
  font-size: 11.5px; font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 4px;
  text-align: left;
}
.devis-card__email {
  grid-column: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: left;
}
.devis-card__arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--body); font-weight: 400;
  font-size: 15px;
  opacity: 1;
  transition: transform 0.25s ease;
}
.devis-card:hover .devis-card__arrow {
  transform: translateX(4px) rotate(-8deg);
}

@media (max-width: 600px) {
  .devis-card { min-width: 0; width: 100%; }
}

/* ─────────────────────────────────────────────────────────────────
   Responsive
───────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .site-header { padding: 10px 18px; }
  .site-header__inner { gap: 8px 18px; flex-wrap: wrap; }
  .site-header__logo img { height: 48px; }
  .header-divider { display: none; }
  .brand-col { padding-bottom: 0; max-width: 96px; }
  .brand-col__name { font-size: 14px; line-height: 1.15; }
  .brand-col__sub { display: none; }
  .brand-col.is-current::after { display: none; }
  .home-hero { padding: 56px 24px 48px; }
  .home-hero__rhythm { display: none; }
  .section { padding: 56px 24px; }
  .section__head { grid-template-columns: 1fr; gap: 12px; }
  .section__num { grid-row: auto; padding-top: 0; }
  .activities { grid-template-columns: 1fr; }
  .activity__body { min-height: 280px; }
  .portraits--three, .portraits--four, .portraits--five { grid-template-columns: repeat(2, 1fr); }
  .rhythm { grid-template-columns: repeat(2, 1fr); }
  .socials { grid-template-columns: 1fr; }
  .socials__divider { display: none; }
  .contact-block { padding: 64px 24px; }
  .site-footer { padding: 40px 24px 20px; }
  .site-footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
