/* =============================================
   Clinique Slimani Audition
   Style: Premium Swiss clinic — minimalisme radical
   ============================================= */

:root {
  /* Couleurs */
  --bg: #FAF9F6;
  --bg-soft: #F5F3EE;
  --ink: #0A2540;
  --ink-soft: #6B6762;
  --gold: #B8945F;
  --gold-soft: #D4C4A0;
  --rule: rgba(10, 37, 64, 0.08);
  --rule-strong: rgba(10, 37, 64, 0.16);
  --on-dark: #F5F1E8;
  --on-dark-soft: rgba(245, 241, 232, 0.65);

  /* Typographie */
  --serif: "DM Serif Display", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Échelle */
  --max-w: 1280px;
  --gutter: 32px;
  --header-h: 84px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =============================================
   Reset minimal
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* =============================================
   Typographie
   ============================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 { font-size: clamp(40px, 5.6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; letter-spacing: -0.015em; }
h4 { font-size: 18px; letter-spacing: -0.01em; }

p { margin: 0; color: var(--ink-soft); }
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
}

.section-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* =============================================
   Layout
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 120px 0; }
section.tight { padding: 80px 0; }

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* =============================================
   Header
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(250, 249, 246, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 249, 246, 0.92);
  border-bottom-color: var(--rule);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: block;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.brand.on-dark .brand-name { color: #FFFFFF; }
.brand.on-dark .brand-sub { color: var(--gold-soft); }
.brand.on-dark .brand-icon { filter: brightness(0) invert(1) sepia(0.3) saturate(0.8) hue-rotate(15deg); mix-blend-mode: screen; background: transparent; }
.brand.on-dark .brand-icon { background: rgba(245, 241, 232, 0.95); border-radius: 50%; mix-blend-mode: normal; filter: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--gold); }

.header-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s var(--ease);
}
.header-cta::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.header-cta:hover { gap: 14px; }
.header-cta:hover::after { width: 32px; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s var(--ease);
}

/* =============================================
   Boutons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 54px;
  padding: 0 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn .arrow {
  width: 18px; height: 1px; background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease);
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 26px; }

.btn-primary {
  background: var(--ink);
  color: #FFFFFF;
}
.btn-primary:hover { background: #08203A; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-on-dark {
  background: var(--gold);
  color: var(--ink);
}
.btn-on-dark:hover { background: var(--gold-soft); }

.btn-outline-light {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(245, 241, 232, 0.3);
}
.btn-outline-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* =============================================
   HERO (Accueil)
   ============================================= */
.hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 640px;
  border-top: 1px solid var(--rule);
}
.hero-left {
  padding: 80px 80px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}
.hero-left h1 {
  max-width: 14ch;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-left .lead { max-width: 48ch; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-right {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  padding: 88px 64px 72px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-right: calc(-1 * var(--gutter));
}
.hero-right::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(184, 148, 95, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-arc {
  position: absolute;
  right: -360px; bottom: -360px;
  width: 720px; height: 720px;
  pointer-events: none;
  opacity: 0.12;
}
.hero-arc circle { fill: none; stroke: var(--gold-soft); stroke-width: 1; }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0;
  display: inline-flex; align-items: center; gap: 14px;
  position: relative; z-index: 1;
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold-soft); opacity: 0.7;
}

.hero-stat-main { position: relative; z-index: 1; margin-top: 40px; }
.hero-37 {
  font-family: var(--serif);
  font-size: clamp(140px, 18vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--gold);
  margin: 0;
}
.hero-rule { width: 40px; height: 1px; background: var(--gold); margin: 20px 0; }
.hero-37-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(245, 241, 232, 0.65);
}

.hero-stat-sub {
  position: relative; z-index: 1;
  margin-top: 56px;
  align-self: flex-end;
  text-align: right;
  display: flex; flex-direction: column; gap: 4px;
}
.sub-num {
  font-family: var(--serif);
  font-size: 42px; line-height: 1; color: var(--gold);
  letter-spacing: -0.02em;
}
.sub-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-soft);
}

.hero-quote {
  position: relative; z-index: 1;
  margin-top: 72px;
  border: 0; padding: 0;
}
.hero-quote .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 96px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  margin-bottom: -8px;
}
.hero-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.4;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.hero-quote cite {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 24px;
  font-style: normal;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-soft);
}
.cite-rule { width: 28px; height: 1px; background: var(--gold-soft); display: block; }

/* =============================================
   Section services (3 colonnes)
   ============================================= */
.services-strip {
  padding: 0;
  border-top: 1px solid var(--rule);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-cell {
  padding: 64px 48px 64px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.4s var(--ease);
}
.service-cell:not(:first-child) { padding-left: 48px; }
.service-cell:last-child { border-right: 0; padding-right: 0; }
.service-cell:hover { background: rgba(184, 148, 95, 0.04); }
.service-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.service-cell h3 { color: var(--ink); }
.service-cell p { font-size: 15px; }
.service-cell .more {
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
}
.service-cell .more::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.service-cell:hover .more::after { transform: translateX(4px); }

/* =============================================
   Section "Héritage" (split asymétrique)
   ============================================= */
.heritage {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.heritage-left { position: sticky; top: calc(var(--header-h) + 40px); }
.heritage-left .eyebrow { margin-bottom: 24px; }
.heritage-left h2 { margin-bottom: 28px; }

.timeline {
  border-left: 1px solid var(--rule);
}
.timeline-item {
  padding: 0 0 56px 40px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -4px; top: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.timeline-item h4 { margin-bottom: 8px; }
.timeline-item p { font-size: 15px; max-width: 52ch; }

/* =============================================
   CTA dark band
   ============================================= */
.cta-band {
  background: var(--ink);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(184, 148, 95, 0.08), transparent 55%);
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-band h2 { color: #FFFFFF; max-width: 18ch; }
.cta-band .lead { color: var(--on-dark-soft); }
.cta-band .right {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-band .right .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-info {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  margin-top: 8px;
}
.cta-info-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.cta-info-value {
  font-family: var(--serif);
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

/* =============================================
   Page header (sous-pages)
   ============================================= */
.page-head {
  padding: calc(var(--header-h) + 100px) 0 80px;
  border-bottom: 1px solid var(--rule);
}
.page-head .eyebrow { margin-bottom: 28px; }
.page-head h1 { max-width: 16ch; margin-bottom: 28px; }
.page-head .lead { max-width: 60ch; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 100px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.service-block:last-child { border-bottom: 0; }
.service-block .num {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.service-block .body h2 { margin-bottom: 24px; max-width: 16ch; }
.service-block .body .lead { margin-bottom: 40px; }

.service-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.meta-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}
.brand-list span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}

/* =============================================
   ÉQUIPE PAGE
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.team-card {
  padding: 64px 40px 64px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: background 0.4s var(--ease);
}
.team-card:not(:first-child) { padding-left: 40px; }
.team-card:last-child { border-right: 0; padding-right: 0; }
.team-card:hover { background: rgba(184, 148, 95, 0.03); }

.role-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  width: 48px;
  height: auto;
}
/* Team values band */
.team-values {
  background: var(--bg-soft);
  padding: 96px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value {
  padding: 24px 48px;
  border-right: 1px solid var(--rule);
}
.value:last-child { border-right: 0; }
.value-num {
  font-family: var(--serif);
  font-size: 88px;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.value-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 1px solid var(--rule); padding: 32px 0; }
  .value:last-child { border-bottom: 0; }
}

.team-card .role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.team-card h3 { margin: 8px 0 16px; }
.team-card p { font-size: 15px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 40px;
}
.info-block {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.info-block:last-child { border: 0; padding-bottom: 0; }
.info-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.info-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.info-value.small { font-size: 18px; }
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--ink);
  padding: 4px 0;
}
.info-list li span:last-child { color: var(--ink-soft); }
.info-list li.closed span:last-child { color: var(--gold); font-style: italic; }

/* Form */
.form {
  display: grid;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s var(--ease);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); opacity: 0.6; }

.form-status {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  min-height: 1.4em;
}

.map-wrap {
  margin-top: 80px;
  border-top: 1px solid var(--rule);
  padding-top: 80px;
}
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  border: 1px solid var(--rule);
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.map-frame iframe {
  display: block;
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.5) contrast(0.95);
}

/* =============================================
   PUBLICATIONS PAGE
   ============================================= */
.pub-empty {
  border: 1px solid var(--rule);
  padding: 100px 80px;
  text-align: left;
  background: var(--bg-soft);
  display: grid;
  gap: 24px;
  max-width: 720px;
}
.pub-empty .eyebrow { margin: 0; }
.pub-empty h3 { font-size: 32px; }
.pub-empty p { max-width: 50ch; }

.pub-list {
  display: grid;
  gap: 0;
}
.pub-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.pub-item:first-child { border-top: 1px solid var(--rule); }
.pub-date {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.pub-item h3 {
  font-size: 24px;
  letter-spacing: -0.015em;
}
.pub-item .more {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: 80px 0 32px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2 * var(--gutter));
  max-width: var(--max-w);
  height: 1px;
  background: rgba(245, 241, 232, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}
.footer-grid h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 24px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer-grid a, .footer-grid li {
  font-size: 14px;
  color: var(--on-dark);
  transition: color 0.25s var(--ease);
}
.footer-grid a:hover { color: var(--gold-soft); }
.footer-tagline {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--on-dark-soft);
  line-height: 1.5;
  max-width: 26ch;
}
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--on-dark-soft);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 16px;
}

/* =============================================
   Image slots (photos)
   ============================================= */
image-slot {
  --is-bg: var(--bg-soft);
  --is-border: var(--rule);
  --is-color: var(--ink-soft);
  display: block;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.photo-figure {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.photo-figure figcaption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  gap: 14px;
  align-items: center;
}
.photo-figure figcaption::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Hero portrait column */
.hero-photo {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  padding: 64px 0 64px 64px;
  border-left: 1px solid var(--rule);
}
.hero-photo image-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
}

/* Editorial split (image + text) */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial.reverse { direction: rtl; }
.editorial.reverse > * { direction: ltr; }
.editorial image-slot { width: 100%; aspect-ratio: 5 / 6; }
.editorial .copy { display: flex; flex-direction: column; gap: 24px; }
.editorial .copy .eyebrow { margin-bottom: 8px; }

/* Photo trio strip */
.photo-trio {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 24px;
}
.photo-trio image-slot:nth-child(1) { aspect-ratio: 3 / 4; }
.photo-trio image-slot:nth-child(2) { aspect-ratio: 4 / 5; margin-top: 64px; }
.photo-trio image-slot:nth-child(3) { aspect-ratio: 1 / 1; }

/* Team avatar with photo */
.team-card image-slot {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background: var(--bg);
}

/* Contact map ratio if photo */
.contact-photo image-slot { width: 100%; aspect-ratio: 16 / 9; }

@media (max-width: 1024px) {
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .photo-trio { grid-template-columns: 1fr 1fr; }
  .photo-trio image-slot:nth-child(2) { margin-top: 0; }
  .photo-trio image-slot:nth-child(3) { display: none; }
  .hero-photo { padding: 32px 0 0; border-left: 0; border-top: 1px solid var(--rule); }
}
@media (max-width: 768px) {
  .photo-trio { grid-template-columns: 1fr; gap: 16px; }
  .photo-trio image-slot { aspect-ratio: 4 / 3 !important; margin-top: 0 !important; }
  .photo-trio image-slot:nth-child(3) { display: block; }
}

/* =============================================
   Animations au scroll
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  section { padding: 96px 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-left { padding: 64px 0; }
  .hero-right { margin-right: 0; padding: 64px 40px; }
  .heritage { grid-template-columns: 1fr; gap: 48px; }
  .heritage-left { position: static; }
  .cta-band .container { grid-template-columns: 1fr; gap: 40px; }
  .service-block { grid-template-columns: 1fr; gap: 40px; padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --header-h: 72px; }
  section { padding: 72px 0; }
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; }

  .services-grid { grid-template-columns: 1fr; }
  .service-cell {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 40px 0 !important;
  }
  .service-cell:last-child { border-bottom: 0; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 40px 0 !important;
  }
  .team-card:last-child { border-bottom: 0; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .pub-item { grid-template-columns: 1fr; gap: 8px; }

  .hero-right { padding: 48px 28px; }
  .hero-left { padding: 48px 0 32px; }
  .service-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pub-empty { padding: 56px 28px; }
}

/* mobile menu open */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 49;
  padding: 40px var(--gutter);
  flex-direction: column;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
