/* ============================================================
   SOUHEL IMMO — Système de design
   Noir #0A0A0A · Or #C9A84C · Blanc cassé #F5F0E8 · Anthracite #1C1C1C
   Cormorant Garamond (titres) + Jost (corps) + Sacramento (signature)
   ============================================================ */

:root {
  --noir: #0a0a0a;
  --noir-2: #070707;
  --anthracite: #1c1c1c;
  --anthracite-2: #161616;
  --or: #c9a84c;
  --or-soft: #dcc079;
  --or-deep: #b3923a;
  --creme: #f5f0e8;
  --creme-2: #ece4d6;
  --creme-3: #e4dac8;

  --ink: #23211c;            /* texte sur fond clair */
  --ink-soft: #5a564d;
  --on-dark: rgba(245, 240, 232, 0.80);
  --on-dark-soft: rgba(245, 240, 232, 0.52);
  --on-dark-faint: rgba(245, 240, 232, 0.34);

  --line-dark: rgba(245, 240, 232, 0.12);
  --line-light: rgba(35, 33, 28, 0.14);
  --line-gold: rgba(201, 168, 76, 0.40);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --script: "Sacramento", cursive;

  --container: 1280px;
  --pad-x: clamp(22px, 5vw, 80px);
  --section-y: clamp(84px, 12vh, 168px);

  --ease: cubic-bezier(0.22, 0.7, 0.16, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--on-dark);
  background: var(--noir);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- Primitives ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
  width: 100%;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0;
}

/* Titre de section : serif, lettrage étiré, filet doré dessous */
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.16em;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.06;
  margin: 0;
  padding-bottom: 0.5em;
  position: relative;
  width: fit-content;
  white-space: nowrap;
}
.section-title.center { margin-inline: auto; text-align: center; }
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold) 18%, var(--line-gold) 82%, transparent);
}
.section-title.center::after {
  left: 50%; transform: translateX(-50%);
  width: 64%;
}

/* La signature : fine colonne dorée verticale */
.spine {
  width: 1px;
  height: clamp(48px, 8vh, 96px);
  margin: 0 auto;
  background: linear-gradient(to bottom, transparent, var(--or) 45%, var(--or) 55%, transparent);
  opacity: 0.7;
}
.spine.tall { height: clamp(72px, 12vh, 140px); }

.gold { color: var(--or); }
.gold-strong { color: var(--or-soft); font-weight: 400; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border: 1px solid var(--or);
  color: var(--or);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--noir); }
.btn:hover::before { transform: scaleX(1); }

.btn.solid { background: var(--or); color: var(--noir); border-color: var(--or); }
.btn.solid::before { background: var(--noir); }
.btn.solid:hover { color: var(--or); }

.btn.on-light { border-color: var(--ink); color: var(--ink); }
.btn.on-light::before { background: var(--ink); }
.btn.on-light:hover { color: var(--creme); }

.text-link {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
}
.text-link .arrow { transition: transform 0.4s var(--ease); }
.text-link:hover .arrow { transform: translateX(6px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: clamp(14px, 2.4vh, 26px) 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
  padding: clamp(10px, 1.6vh, 16px) 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* Logo / monogramme */
.brand { display: flex; align-items: center; gap: 14px; justify-self: start; }
.monogram {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  flex: none;
  transition: transform 0.5s var(--ease);
}
.brand:hover .monogram { transform: scale(1.05); }
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--creme);
  line-height: 1;
  padding-left: 0.15em;
  white-space: nowrap;
}
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-top: 5px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--creme); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { justify-self: end; display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 0.85em 1.7em; font-size: 0.7rem; }

.burger {
  display: none;
  width: 40px; height: 40px;
  background: none; border: none;
  flex-direction: column; justify-content: center; gap: 6px;
  padding: 0;
}
.burger span {
  display: block; height: 1px; width: 26px;
  background: var(--creme);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--noir);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  letter-spacing: 0.12em;
  color: var(--on-dark);
  padding: 0.25em 0;
  transition: color 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--or); }
.mobile-menu .btn { margin-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero .overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 40%, transparent 30%, rgba(8,8,8,0.45) 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.20) 35%, rgba(8,8,8,0.65) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x);
  max-width: 1100px;
}
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(2.7rem, 7.4vw, 6.4rem);
  line-height: 1.02;
  margin: 0 0 38px;
  color: var(--creme);
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: italic; color: var(--or-soft); }
.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--on-dark-soft);
}
.scroll-cue .line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: cue 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   SECTIONS génériques
   ============================================================ */
.section { padding-block: var(--section-y); position: relative; }
.section.dark { background: var(--noir); color: var(--on-dark); }
.section.light { background: var(--creme); color: var(--ink); }
.section.light-2 { background: var(--creme-2); color: var(--ink); }
.section-head { text-align: center; margin-bottom: clamp(48px, 7vh, 90px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section.light .eyebrow { color: var(--or-deep); }
.section.light .section-title::after,
.section.light-2 .section-title::after {
  background: linear-gradient(90deg, transparent, rgba(179,146,58,0.5) 18%, rgba(179,146,58,0.5) 82%, transparent);
}

/* ---------- Concept ---------- */
.concept { text-align: center; }
.concept-body {
  max-width: 820px; margin: 0 auto;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.95;
  color: var(--on-dark-soft);
  font-weight: 300;
}
.concept-body p { margin: 0 0 1.7em; }
.concept-body .gold { color: var(--or-soft); }
.concept-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.3;
  color: var(--or);
  margin-top: 0.4em;
  letter-spacing: 0.01em;
}

/* ---------- Services ---------- */
.services-panel {
  background: linear-gradient(160deg, var(--anthracite) 0%, var(--anthracite-2) 100%);
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service {
  text-align: center;
  padding: clamp(8px, 2vw, 28px) clamp(20px, 3vw, 44px);
  position: relative;
}
.service + .service::before {
  content: "";
  position: absolute;
  left: 0; top: 8%; bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-gold) 30%, var(--line-gold) 70%, transparent);
}
.service-icon {
  width: 56px; height: 56px;
  margin: 0 auto 28px;
  color: var(--or);
}
.service-icon svg { width: 100%; height: 100%; }
.service h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 0 0 22px;
  color: var(--creme);
  min-height: 2.5em;
  display: flex; align-items: center; justify-content: center;
}
.service p {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--on-dark-soft);
  margin: 0 0 1.4em;
  font-weight: 300;
}
.service p:last-child { margin-bottom: 0; }

/* ---------- Projets ---------- */
.filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: clamp(40px, 6vh, 64px);
}
.filter {
  background: transparent;
  border: 1px solid var(--line-light);
  color: var(--ink-soft);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.8em 1.5em;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}
.filter:hover { border-color: var(--or-deep); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: var(--creme); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
}
.project-card {
  background: #fff;
  border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -28px rgba(35,33,28,0.45);
  border-color: var(--or);
}
.project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.project-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.status {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
  padding: 0.55em 1.1em;
  background: rgba(8,8,8,0.78);
  color: var(--creme);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark);
}
.status.dispo { color: var(--or-soft); border-color: var(--line-gold); }
.status.reserve { color: var(--on-dark-soft); }
.project-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.project-loc {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or-deep); margin: 0 0 12px;
}
.project-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--ink);
}
.project-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--ink-soft);
  padding-top: 18px; margin-top: auto;
  border-top: 1px solid var(--line-light);
}
.project-meta .price { color: var(--ink); font-weight: 400; }
.project-meta span b { font-weight: 400; color: var(--ink); }

/* ---------- Fondateur ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.founder-media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.founder-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.founder-media .tag {
  position: absolute; bottom: 0; left: 0;
  transform: translateY(50%);
  background: var(--ink); color: var(--creme);
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 1em 1.6em;
}
.founder-text .eyebrow { color: var(--or-deep); margin-bottom: 20px; }
.founder-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.12;
  margin: 0 0 30px;
  color: var(--ink);
}
.founder-text p {
  font-size: 1rem; line-height: 1.9; color: var(--ink-soft);
  margin: 0 0 1.4em; max-width: 48ch;
}
.signature {
  font-family: var(--script);
  font-size: 2.6rem;
  color: var(--or-deep);
  line-height: 1;
  margin: 8px 0 6px;
}
.founder-text .credit {
  font-size: 0.74rem; color: var(--ink-soft); opacity: 0.7;
  letter-spacing: 0.04em; margin-bottom: 34px;
}
.founder-text .btn { margin-top: 6px; }

/* ---------- Témoignages ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.quote {
  padding: clamp(24px, 3vw, 48px);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote + .quote::before {
  content: "";
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(179,146,58,0.4) 30%, rgba(179,146,58,0.4) 70%, transparent);
}
.quote .mark {
  font-family: var(--serif);
  font-size: 3.2rem; line-height: 1;
  color: var(--or);
  margin-bottom: 18px;
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 26px;
  flex: 1 0 auto;
}
.quote figcaption { margin-top: auto; }
.quote .author { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.quote .role { font-size: 0.74rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Blog ---------- */
.blog-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(40px, 6vh, 72px); gap: 24px; flex-wrap: wrap;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 40px); }
.article { display: flex; flex-direction: column; }
.article-media {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden; margin-bottom: 22px;
}
.article-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.article:hover .article-media image-slot { transform: scale(1.0); }
.article-cat {
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--or-deep); margin: 0 0 10px;
  display: flex; gap: 14px; align-items: center;
}
.article-cat .dot { width: 3px; height: 3px; background: currentColor; border-radius: 50%; opacity: 0.5; }
.article-cat .date { color: var(--ink-soft); letter-spacing: 0.12em; }
.article h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.55rem; line-height: 1.22;
  margin: 0 0 14px; color: var(--ink);
  transition: color 0.3s var(--ease);
}
.article:hover h3 { color: var(--or-deep); }
.article p { font-size: 0.92rem; line-height: 1.8; color: var(--ink-soft); margin: 0 0 18px; }
.article .text-link { color: var(--or-deep); margin-top: auto; }

/* ---------- Valeurs ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value {
  text-align: center;
  padding: clamp(16px, 2.4vw, 36px);
  position: relative;
}
.value + .value::before {
  content: "";
  position: absolute; left: 0; top: 16%; bottom: 16%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-gold) 30%, var(--line-gold) 70%, transparent);
}
.value .num {
  font-family: var(--serif);
  font-size: 1.1rem; letter-spacing: 0.1em;
  color: var(--or); margin-bottom: 22px;
}
.value h3 {
  font-family: var(--serif); font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.4rem; line-height: 1.25;
  margin: 0 0 16px; color: var(--creme);
}
.value p { font-size: 0.86rem; line-height: 1.75; color: var(--on-dark-soft); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--noir-2); border-top: 1px solid var(--line-dark); padding-top: clamp(64px, 9vh, 110px); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(48px, 7vh, 80px);
}
.footer-brand .brand { margin-bottom: 24px; }
.footer-brand p {
  font-size: 0.9rem; line-height: 1.9; color: var(--on-dark-soft);
  max-width: 30ch; margin: 0 0 24px;
}
.footer-brand address {
  font-style: normal; font-size: 0.86rem; line-height: 1.8;
  color: var(--on-dark-soft);
}
.footer-col h4 {
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--or); margin: 0 0 22px; font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  font-size: 0.88rem; color: var(--on-dark-soft);
  transition: color 0.3s var(--ease); width: fit-content;
}
.footer-col a:hover { color: var(--or-soft); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-dark); border-radius: 50%;
  display: grid; place-items: center; color: var(--on-dark-soft);
  transition: all 0.4s var(--ease);
}
.socials a:hover { border-color: var(--or); color: var(--or); }
.socials svg { width: 16px; height: 16px; }
.lang-switch { display: flex; gap: 4px; margin-top: 26px; }
.lang-switch button {
  background: none; border: none; color: var(--on-dark-faint);
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.14em;
  padding: 4px 8px; transition: color 0.3s var(--ease);
}
.lang-switch button.active { color: var(--or); }
.lang-switch button:hover { color: var(--creme); }
.lang-switch .sep { color: var(--line-dark); pointer-events: none; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
  font-size: 0.74rem; color: var(--on-dark-faint); letter-spacing: 0.04em;
}
.footer-bottom a:hover { color: var(--or-soft); }

/* ============================================================
   image-slot — habillage raffiné
   ============================================================ */
image-slot::part(frame) { background: var(--anthracite-2); }
image-slot::part(empty) { color: rgba(245, 240, 232, 0.42); }
image-slot::part(ring) { border-color: rgba(245, 240, 232, 0.18); border-width: 1px; }
image-slot.on-light::part(frame) { background: var(--creme-3); }
image-slot.on-light::part(empty) { color: rgba(35, 33, 28, 0.42); }
image-slot.on-light::part(ring) { border-color: rgba(35, 33, 28, 0.18); }

/* ============================================================
   Révélation au scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue .line { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: flex; justify-self: end; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 880px) {
  .services-panel { grid-template-columns: 1fr; gap: 8px; }
  .service + .service::before { left: 8%; right: 8%; top: 0; bottom: auto; width: auto; height: 1px;
    background: linear-gradient(to right, transparent, var(--line-gold) 30%, var(--line-gold) 70%, transparent); }
  .service { padding-block: 40px; }
  .service h3 { min-height: 0; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .founder { grid-template-columns: 1fr; gap: 40px; }
  .founder-media { max-width: 440px; aspect-ratio: 4/5; }
  .quotes { grid-template-columns: 1fr; }
  .quote + .quote::before { left: 16%; right: 16%; top: 0; bottom: auto; width: auto; height: 1px;
    background: linear-gradient(to right, transparent, rgba(179,146,58,0.4) 30%, rgba(179,146,58,0.4) 70%, transparent); }
  .values { grid-template-columns: repeat(2, 1fr); gap: 10px 0; }
  .value:nth-child(3)::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 560px) {
  .projects-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .values { grid-template-columns: 1fr; }
  .value::before { display: none !important; }
  .value { border-top: 1px solid var(--line-dark); padding-block: 30px; }
  .value:first-child { border-top: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand-name { font-size: 1rem; }
}

/* ---------- Lien projet card ---------- */
.project-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 26px;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or-deep);
  border-top: 1px solid var(--line-light);
  margin-top: auto;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.project-link span { transition: transform 0.3s var(--ease); }
.project-card:hover .project-link { background: var(--ink); color: var(--or-soft); }
.project-card:hover .project-link span { transform: translateX(4px); }
