:root {
  --bg: #f4f1ec;
  --paper: #fbfaf7;
  --text: #1d1d1b;
  --muted: #77736c;
  --line: #ddd6ca;
  --accent: #a9844f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(244, 241, 236, 0.86);
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.35s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 6vw;
  padding: 120px 8vw 70px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(3.8rem, 9vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.intro {
  margin-top: 34px;
  max-width: 520px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: #34322f;
}

.actions {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 13px 22px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--line);
  color: var(--muted);
}

.hero-image {
  width: 100%;
  min-height: 72vh;
  background:
    linear-gradient(to bottom, rgba(244, 241, 236, 0.1), rgba(29, 29, 27, 0.08)),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(29, 29, 27, 0.08);
  box-shadow: 0 35px 90px rgba(29, 29, 27, 0.12);
}

.section {
  padding: 105px 8vw;
  border-top: 1px solid var(--line);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 44px;
}

.section-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  letter-spacing: -0.04em;
}

.section-title p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card {
  min-height: 420px;
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(29, 29, 27, 0.09);
}

.work-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.work-card div {
  padding: 20px;
}

.work-card h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.5rem;
}

.work-card p {
  margin: 0;
  color: var(--muted);
}

.page {
  padding: 150px 8vw 90px;
  min-height: 100vh;
}

.page h1 {
  font-size: clamp(3rem, 7vw, 7rem);
}

.page-content {
  max-width: 850px;
  margin-top: 48px;
  font-size: 1.1rem;
  color: #34322f;
}

footer {
  padding: 60px 8vw 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 150px 24px 70px;
  }

  .hero-image {
    min-height: 420px;
  }

  .section {
    padding: 70px 24px;
  }

  .section-title {
    display: block;
  }

  .section-title p {
    margin-top: 18px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .page {
    padding: 150px 24px 70px;
  }

  footer {
    flex-direction: column;
    padding: 40px 24px;
  }
}
.gallery {
  columns: 3 260px;
  column-gap: 24px;
  margin-top: 60px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-caption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.82rem;
}
/* Page Œuvres — version éditoriale */

.works-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 90px;
}

.works-hero-text {
  max-width: 620px;
}

.works-hero-text .intro {
  max-width: 620px;
}

.works-hero-image {
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(29, 29, 27, 0.08);
  box-shadow: 0 35px 90px rgba(29, 29, 27, 0.12);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 70px 0 100px;
}

.practice-card {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 34px;
  min-height: 280px;
}

.practice-card h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.practice-card p {
  margin: 0;
  color: #34322f;
}

.featured-works {
  display: grid;
  gap: 80px;
  margin: 70px 0 110px;
}

.featured-work {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5vw;
  align-items: center;
}

.featured-work:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}

.featured-work:nth-child(even) .featured-image {
  order: 2;
}

.featured-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(29, 29, 27, 0.08);
}

.featured-text .number {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured-text h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.featured-text p {
  color: #34322f;
  font-size: 1.05rem;
}

.gallery-intro {
  max-width: 760px;
  margin-bottom: 50px;
}

.gallery-intro h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  letter-spacing: -0.04em;
}

.gallery-intro p {
  color: var(--muted);
}

.gallery {
  columns: 3 280px;
  column-gap: 26px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 26px;
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-caption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .works-hero,
  .featured-work,
  .featured-work:nth-child(even) {
    display: block;
  }

  .works-hero-image {
    min-height: 420px;
    margin-top: 36px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .featured-work {
    margin-bottom: 70px;
  }

  .featured-work:nth-child(even) .featured-image {
    order: initial;
  }

  .featured-text {
    margin-top: 24px;
  }
}
/* Correction : images moins zoomées sur la page Œuvres */

.works-hero-image {
  min-height: 520px;
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--paper);
}

.featured-image {
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 32px;
}

.featured-image img {
  width: auto;
  max-width: 82%;
  max-height: 540px;
  object-fit: contain;
  margin: auto;
  border: none;
}

.gallery {
  columns: 4 220px;
  column-gap: 24px;
}

.gallery-item {
  background: var(--paper);
  padding: 14px;
}

.gallery-item img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: var(--paper);
}

@media (max-width: 900px) {
  .works-hero-image {
    min-height: 360px;
  }

  .featured-image {
    padding: 18px;
  }

  .featured-image img {
    max-width: 100%;
    max-height: 420px;
  }

  .gallery {
    columns: 2 180px;
  }

  .gallery-item img {
    max-height: 300px;
  }
}
/* Page Bio / Biographie */

.bio-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 90px;
}

.bio-portrait {
  min-height: 62vh;
  background-image: url("../images/portrait.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  box-shadow: 0 35px 90px rgba(29, 29, 27, 0.12);
}

.bio-intro {
  max-width: 720px;
}

.bio-intro h1 {
  margin-bottom: 32px;
}

.bio-intro p {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: #34322f;
}

.bio-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6vw;
  margin-top: 80px;
}

.bio-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  color: var(--muted);
  font-size: 0.95rem;
}

.bio-sidebar h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--text);
}

.bio-section {
  padding: 0 0 70px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 70px;
}

.bio-section h2 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.bio-section p {
  color: #34322f;
  font-size: 1.05rem;
}

.bio-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bio-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.bio-year {
  color: var(--accent);
  font-size: 0.9rem;
}

.bio-note {
  color: var(--muted);
}

.lang-block {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 38px;
  margin-top: 38px;
}

.lang-block h3 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2rem;
}

@media (max-width: 900px) {
  .bio-hero,
  .bio-layout {
    display: block;
  }

  .bio-portrait {
    min-height: 420px;
    margin-top: 36px;
  }

  .bio-sidebar {
    position: static;
    margin-bottom: 50px;
  }

  .bio-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lang-block {
    padding: 24px;
  }
}

/* Page Archives / Bibliographie */

.archive-intro {
  max-width: 850px;
  margin-top: 48px;
  margin-bottom: 80px;
  font-size: 1.1rem;
  color: #34322f;
}

.archive-section {
  margin-bottom: 90px;
}

.archive-section h2 {
  margin: 0 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.archive-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(29, 29, 27, 0.08);
  border-color: rgba(169, 132, 79, 0.45);
}

.archive-card h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.15;
}

.archive-card p {
  margin: 0;
  color: var(--muted);
}

.archive-link {
  margin-top: 28px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-card {
    min-height: auto;
  }
}
/* Archives avec vignettes */

.archive-card {
  overflow: hidden;
  padding: 0;
}

.archive-thumb {
  width: 100%;
  height: 260px;
  background: var(--paper);
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

.archive-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.archive-card-body {
  padding: 26px;
}

.archive-card h3 {
  margin-top: 0;
}
/* Correction finale Archives : images + liens dans l'ordre de l'ancien site */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.archive-card {
  padding: 0 !important;
  min-height: auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
}

.archive-thumb {
  height: 250px;
  background: #f8f6f1;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

.archive-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.archive-card-body {
  padding: 26px;
}

.archive-card-body h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.5rem;
}

.archive-card-body p {
  margin: 0;
  color: var(--muted);
}

.archive-link {
  margin-top: 24px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================
   Bouton de langue global
   ========================= */

.header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-toggle {
  border: 1px solid rgba(29, 29, 27, 0.18);
  background: rgba(251, 250, 247, 0.72);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.lang-toggle:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-1px);
}

.lang-separator,
.lang-alt {
  opacity: 0.45;
}

/* Masquage des blocs selon la langue active */

html[lang="fr"] [data-lang="en"] {
  display: none !important;
}

html[lang="en"] [data-lang="fr"] {
  display: none !important;
}

/* =========================
   Page Bio enrichie
   ========================= */

.bio-page {
  padding-top: 150px;
}

.bio-hero-rich {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 90px;
}

.bio-hero-text {
  max-width: 780px;
}

.bio-hero-text h1 {
  margin-bottom: 34px;
}

.bio-lead {
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  color: #34322f;
  max-width: 720px;
}

.bio-portrait-rich {
  min-height: 66vh;
  background-image: url("../images/portrait.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  box-shadow: 0 35px 90px rgba(29, 29, 27, 0.12);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 6vw;
  align-items: start;
}

.bio-side {
  position: sticky;
  top: 120px;
  color: var(--muted);
  font-size: 0.95rem;
}

.bio-side-card {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 28px;
}

.bio-side-card h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--text);
}

.bio-side-card p {
  margin: 0;
}

.bio-section-rich {
  padding-bottom: 72px;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.bio-section-rich h2 {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.bio-section-rich p {
  color: #34322f;
  font-size: 1.05rem;
}

.bio-list-rich {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bio-list-rich li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.bio-list-rich a {
  color: var(--accent);
  text-decoration: none;
}

.bio-list-rich a:hover {
  text-decoration: underline;
}

.bio-marker {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.bio-muted {
  color: var(--muted);
}

.bio-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.bio-practice-card {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 28px;
  min-height: 260px;
}

.bio-practice-card h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.7rem;
}

.bio-practice-card p {
  margin: 0;
  color: #34322f;
}

@media (max-width: 900px) {
  .header-tools {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .bio-hero-rich,
  .bio-grid {
    display: block;
  }

  .bio-portrait-rich {
    min-height: 420px;
    margin-top: 34px;
  }

  .bio-side {
    position: static;
    margin-bottom: 54px;
  }

  .bio-list-rich li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bio-practice-grid {
    grid-template-columns: 1fr;
  }
}
/* Correction header + bouton langue sur une seule ligne */

.site-header {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}

.header-tools {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 0;
}

.nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.lang-toggle {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .lang-toggle {
    margin-left: auto;
  }
}



/* ============================================================
   Refonte phase 1 — header, langue, bio, archives, contact
   ============================================================ */

.site-header {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  z-index: 200;
}

.header-tools {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 0;
}

.nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 28px;
  white-space: nowrap;
}

.lang-toggle {
  flex-shrink: 0;
  white-space: nowrap;
  border: 1px solid rgba(29, 29, 27, 0.18);
  background: rgba(251, 250, 247, 0.76);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lang-toggle:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-1px);
}

.lang-separator,
.lang-alt {
  opacity: 0.48;
}

html[lang="fr"] [data-lang="en"] {
  display: none !important;
}

html[lang="en"] [data-lang="fr"] {
  display: none !important;
}

/* Bio enrichie */

.bio-page {
  padding-top: 150px;
}

.bio-hero-rich {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 90px;
}

.bio-hero-text {
  max-width: 780px;
}

.bio-lead {
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  color: #34322f;
  max-width: 720px;
}

.bio-portrait-rich {
  min-height: 66vh;
  background-image: url("../images/portrait.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  box-shadow: 0 35px 90px rgba(29, 29, 27, 0.12);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 6vw;
  align-items: start;
}

.bio-side {
  position: sticky;
  top: 120px;
  color: var(--muted);
  font-size: 0.95rem;
}

.bio-side-card {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 28px;
}

.bio-side-card h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--text);
}

.bio-section-rich {
  padding-bottom: 72px;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.bio-section-rich h2 {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.bio-section-rich p {
  color: #34322f;
  font-size: 1.05rem;
}

.bio-list-rich {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bio-list-rich li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.bio-list-rich a,
.inline-link {
  color: var(--accent);
  text-decoration: none;
}

.bio-list-rich a:hover,
.inline-link:hover {
  text-decoration: underline;
}

.bio-marker {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.bio-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.bio-practice-card {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 28px;
  min-height: 260px;
}

.bio-practice-card h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.7rem;
}

/* Archives */

.archive-intro {
  max-width: 850px;
  margin-top: 48px;
  margin-bottom: 80px;
  font-size: 1.1rem;
  color: #34322f;
}

.archive-section {
  margin-bottom: 95px;
}

.archive-section h2 {
  margin: 0 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.archive-card {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  min-height: auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(29, 29, 27, 0.08);
  border-color: rgba(169, 132, 79, 0.45);
}

.archive-thumb {
  height: 250px;
  background: #f8f6f1;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

.archive-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.archive-card-body {
  padding: 26px;
}

.archive-card-body h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.5rem;
}

.archive-card-body p {
  margin: 0;
  color: var(--muted);
}

.archive-link {
  margin-top: 24px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  margin-top: 70px;
  align-items: start;
}

.contact-card {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 34px;
}

.contact-card h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2.2rem;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-links a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.contact-note {
  color: var(--muted);
  margin-top: 24px;
}

/* Œuvres : galerie plus calme */

.gallery-item img,
.work-card img {
  loading: lazy;
}

.gallery-caption {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .lang-toggle {
    margin-left: auto;
  }

  .bio-hero-rich,
  .bio-grid,
  .contact-grid {
    display: block;
  }

  .bio-portrait-rich {
    min-height: 420px;
    margin-top: 34px;
  }

  .bio-side {
    position: static;
    margin-bottom: 54px;
  }

  .bio-list-rich li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bio-practice-grid {
    grid-template-columns: 1fr;
  }
}





/* ============================================================
   Page Œuvres — Phase 2 provisoire
   ============================================================ */

.works-page-v2 {
  padding-top: 150px;
}

.works-v2-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 100px;
}

.works-v2-lead {
  max-width: 760px;
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  color: #34322f;
}

.works-v2-hero-image {
  min-height: 64vh;
  background-color: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  box-shadow: 0 35px 90px rgba(29, 29, 27, 0.12);
  display: grid;
  place-items: center;
  padding: 34px;
}

.works-v2-hero-image img {
  max-width: 100%;
  max-height: 64vh;
  object-fit: contain;
  display: block;
}

.works-v2-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.works-v2-link {
  border: 1px solid rgba(29, 29, 27, 0.16);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.works-v2-link:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.work-axis {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.work-axis-header {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5vw;
  align-items: start;
  margin-bottom: 42px;
}

.work-axis-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.work-axis-header p {
  margin: 0;
  max-width: 760px;
  color: #34322f;
  font-size: 1.05rem;
}

.work-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.work-feature-card {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.work-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(29, 29, 27, 0.09);
  border-color: rgba(169, 132, 79, 0.45);
}

.work-feature-image {
  height: 360px;
  background: #f8f6f1;
  display: grid;
  place-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

.work-feature-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.work-feature-text {
  padding: 24px;
}

.work-feature-text h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.55rem;
}

.work-feature-text p {
  margin: 0 0 22px;
  color: var(--muted);
}

.work-open {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-mini-gallery {
  columns: 4 220px;
  column-gap: 20px;
  margin-top: 42px;
}

.work-mini {
  display: block;
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(29, 29, 27, 0.08);
}

.work-mini img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  display: block;
}

.work-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 55px;
}

.work-cta {
  background: var(--paper);
  border: 1px solid rgba(29, 29, 27, 0.08);
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(29, 29, 27, 0.08);
}

.work-cta h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.55rem;
}

.work-cta p {
  margin: 0 0 24px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .works-v2-hero,
  .work-axis-header {
    display: block;
  }

  .works-v2-hero-image {
    margin-top: 36px;
    min-height: 420px;
  }

  .work-feature-grid,
  .work-cta-grid {
    grid-template-columns: 1fr;
  }

  .work-feature-image {
    height: 320px;
  }

  .work-mini-gallery {
    columns: 2 160px;
  }
}



/* LIGHTBOX ŒUVRES */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 17, 15, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 34px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(100%, 1200px);
  height: min(100%, 86vh);
  display: grid;
  place-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  background: #f4f1ec;
}

.lightbox-caption {
  position: absolute;
  left: 0;
  bottom: -34px;
  max-width: 70%;
  color: rgba(244, 241, 236, 0.78);
  font-size: 0.86rem;
}

.lightbox-button {
  position: absolute;
  border: 1px solid rgba(244, 241, 236, 0.28);
  background: rgba(244, 241, 236, 0.08);
  color: #f4f1ec;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-button:hover {
  background: rgba(244, 241, 236, 0.18);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 70px;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) translateY(-1px);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

body.lightbox-open {
  overflow: hidden;
}

.work-mini,
.work-feature-card,
.works-v2-hero-image {
  cursor: zoom-in;
}

@media (max-width: 900px) {
  .lightbox {
    padding: 18px;
  }

  .lightbox-img {
    max-height: 76vh;
  }

  .lightbox-caption {
    max-width: 100%;
    bottom: -42px;
    font-size: 0.78rem;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 58px;
    font-size: 1.6rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
