@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ─── Variables ─────────────────────────────── */
:root {
  --bg:       #f4f2ec;
  --text:     #1a1816;
  --ocean:    #4a7da0;
  --brown:    #2b1c14;
  --muted:    #7a776f;
  --border:   rgba(26,24,22,.10);
  --nav-h:    72px;

  --serif:    "montserrat", sans-serif;
  --sans:     "montserrat", sans-serif;

  --ease:     cubic-bezier(.25,.46,.45,.94);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.bg-pattern {
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(75,85,99,.045) 5px, rgba(75,85,99,.045) 6px, transparent 6px, transparent 15px),
    repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(75,85,99,.045) 5px, rgba(75,85,99,.045) 6px, transparent 6px, transparent 15px),
    repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(107,114,128,.03) 10px, rgba(107,114,128,.03) 11px, transparent 11px, transparent 30px),
    repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(107,114,128,.03) 10px, rgba(107,114,128,.03) 11px, transparent 11px, transparent 30px);
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Grain overlay ──────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
  pointer-events: none;
  z-index: 9999;
}


/* ─── Preloader ──────────────────────────────── */
@keyframes noise-move {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-2%,-3%); }
  20%  { transform: translate(-4%,2%); }
  30%  { transform: translate(2%,-4%); }
  40%  { transform: translate(-2%,5%); }
  50%  { transform: translate(-4%,2%); }
  60%  { transform: translate(3%,0); }
  70%  { transform: translate(0,3%); }
  80%  { transform: translate(-3%,0); }
  90%  { transform: translate(2%,2%); }
  100% { transform: translate(1%,0); }
}

@keyframes preloader-bar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d0c0b;
}

/* photo de fond */
.preloader__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.preloader__photo.visible { opacity: .55; }

/* bruit animé */
.preloader__noise {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .07;
  pointer-events: none;
  animation: noise-move .4s steps(1) infinite;
}

/* logo + nom centré */
.preloader__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.preloader__content.visible {
  opacity: 1;
  transform: translateY(0);
}

.preloader__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: invert(1) brightness(2);
}

.preloader__name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* barre de progression */
.preloader__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.12);
  z-index: 2;
}

.preloader__bar span {
  display: block;
  height: 100%;
  background: rgba(255,255,255,.6);
  transform-origin: left;
  transform: scaleX(0);
}

.preloader__bar span.running {
  animation: preloader-bar 2s var(--ease) forwards;
}

/* sortie */
.preloader.exit {
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  background: rgba(244,242,236,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* Nav transparente sur le slideshow */
.nav--overlay {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

/* Dégradé en haut de la page pour la lisibilité du nav */
.hero-gradient {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* Logo : image filtrée en noir sur fond clair */
.nav__logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 140px;
  text-decoration: none;
  cursor: pointer;
}

.nav__logo img {
  width: 140px;
  height: 47px;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: brightness(0);
  transition: opacity .3s var(--ease);
}

/* Logo blanc sur l'image */
.nav--overlay .nav__logo img {
  filter: brightness(0) invert(1);
}

.nav__logo:hover img { opacity: .7; }

/* Liens blancs sur l'image */
.nav--overlay .nav__links a {
  color: rgba(255,255,255,.8);
}


.nav--overlay .nav__links a:hover,
.nav--overlay .nav__links a.active {
  color: #fff;
  opacity: 1;
}

.nav--overlay .nav__logo-name { color: rgba(255,255,255,.8); }

/* Nom qui apparaît sous le logo au survol */
.nav__logo-name {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.nav__logo:hover .nav__logo-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__links a {
  font-family: "montserrat", sans-serif;
  font-size: 11px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .55;
  position: relative;
  transition: opacity .25s var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
  opacity: 1;
}

/* ─── Page wrapper ───────────────────────────── */
.page {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ═══════════════════════════════════════════════
   INDEX — Slideshow
═══════════════════════════════════════════════ */

.slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #111;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  will-change: opacity;
}

.slide.active  { opacity: 1; }
.slide.leaving { opacity: 0; }

/* Flèches navigation */
.slide-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(244,242,236,.65);
  font-size: 22px;
  padding: 20px;
  transition: color .25s, opacity .25s;
  opacity: 0;
  pointer-events: none;
}

body:hover .slide-arrow {
  opacity: 1;
  pointer-events: all;
}

.slide-arrow:hover { color: #f4f2ec; }
.slide-arrow--prev { left: 16px; }
.slide-arrow--next { right: 16px; }

/* index page = full screen, pas de padding-top sur main */
.page--slideshow {
  padding-top: 0;
}

/* intro strip & home grid (sous le fold, scroll) */
.home-strip-wrap {
  position: relative;
  z-index: 10;
  margin-top: 100vh;
  background: var(--bg);
}

/* intro strip below hero */
.intro-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intro-strip__tagline {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

.intro-strip__cta {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s;
}

.intro-strip__cta:hover { color: var(--ocean); }

/* preview grid on home */
.home-grid {
  padding: 60px 40px;
}

.home-grid__title {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.home-grid__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.home-grid__item img {
  transition: transform .6s var(--ease);
}

.home-grid__item:hover img {
  transform: scale(1.05);
}

.home-grid__item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 18px;
  background: linear-gradient(transparent, rgba(26,24,22,.6));
  color: #f4f2ec;
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.home-grid__item:hover .home-grid__item-label {
  opacity: 1;
}

.home-grid__item-label span {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.home-grid__item-label small {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
}

/* intro strip below hero */
.intro-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intro-strip__tagline {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

.intro-strip__cta {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s;
}

.intro-strip__cta:hover { color: var(--ocean); }

/* preview grid on home */
.home-grid {
  padding: 60px 40px;
}

.home-grid__title {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.home-grid__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.home-grid__item img {
  transition: transform .6s var(--ease);
}

.home-grid__item:hover img {
  transform: scale(1.05);
}

.home-grid__item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 18px;
  background: linear-gradient(transparent, rgba(26,24,22,.6));
  color: #f4f2ec;
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.home-grid__item:hover .home-grid__item-label {
  opacity: 1;
}

.home-grid__item-label span {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.home-grid__item-label small {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
}

/* ═══════════════════════════════════════════════
   TRAVAIL — Filtre catégories
═══════════════════════════════════════════════ */

.work-filter {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 0 0;
}

.work-filter__btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 14px;
  position: relative;
  transition: color .25s var(--ease);
}

.work-filter__btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.work-filter__btn:hover { color: var(--text); }

.work-filter__btn.active {
  color: var(--text);
}

.work-filter__btn.active::after {
  transform: scaleX(1);
}

.work-item.hidden {
  display: none;
}

/* ═══════════════════════════════════════════════
   TRAVAIL — Grille clients
═══════════════════════════════════════════════ */

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 48px 10% 100px;
}

.work-item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: block;
  background: #e8e5de;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
  display: block;
}

.work-item:hover img {
  transform: scale(1.04);
}

.work-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
  transition: background .5s var(--ease);
}

.work-item:hover .work-item__overlay {
  background: rgba(0,0,0,.28);
}

.work-item__name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: clamp(12px, 1.4vw, 18px);
  font-weight: 400;
  color: #fff;
  letter-spacing: .22em;
  text-transform: uppercase;
  pointer-events: none;
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}

/* ═══════════════════════════════════════════════
   PAGE CLIENT — Photos défilables
═══════════════════════════════════════════════ */

.client-header {
  padding: 60px 40px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.client-header__back {
  position: absolute;
  top: 60px;
  left: 40px;
  font-size: 18px;
  color: var(--muted);
  transition: color .2s;
  line-height: 1;
}

.client-header__back:hover { color: var(--text); }

.client-header h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 8px;
}

.client-header__meta {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.client-header__desc {
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  text-align: center;
}

.client-video {
  padding: 24px 40px 0;
}

.client-video video {
  width: 100%;
  height: auto;
  display: block;
}

.client-photos {
  padding: 24px 40px 80px;
  display: flex;
  gap: 4px;
  align-items: flex-start;
}

.client-photos__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-photos__col--right {
  margin-top: 60px;
}

.client-photos img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: opacity .2s;
}

.client-photos img:hover { opacity: .88; }

/* Zoom overlay (pages client) */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.zoom-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.zoom-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.zoom-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
  line-height: 1;
  transition: color .2s;
}

.zoom-close:hover { color: #fff; }

/* ═══════════════════════════════════════════════
   À PROPOS — TEAM
═══════════════════════════════════════════════ */

.about-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 60px 80px;
  border-bottom: 1px solid var(--border);
}

.about-team__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-team__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}

.about-team__item:hover img { transform: scale(1.03); }

.about-team__item span {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}

/* ═══════════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════════ */

.tarifs-body.hidden { display: none; }

.tarifs-header {
  padding: 72px 40px 60px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tarifs-header h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tarifs-header p {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tarifs-body {
  padding: 60px 40px 100px;
}

.tarifs-note {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}

.tarifs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.tarifs-col__heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--text);
  margin-bottom: 32px;
}

.tarifs-col__heading h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .04em;
}

.tarifs-col__heading span {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.tarifs-package {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.tarifs-package:last-child {
  border-bottom: none;
}

.tarifs-package__left {
  flex: 1;
}

.tarifs-package__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.tarifs-package__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.tarifs-package__desc li {
  padding: 2px 0;
}

.tarifs-package__desc li::before {
  content: '\2013\00a0\00a0';
  color: var(--muted);
}

.tarifs-package__price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  white-space: nowrap;
  flex-shrink: 0;
}

.tarifs-package__price small {
  font-size: 12px;
  font-family: var(--sans);
  color: var(--muted);
  display: block;
  text-align: right;
  margin-top: 2px;
}

.tarifs-mention {
  margin-top: 60px;
  padding: 32px;
  background: rgba(74,125,160,.08);
  border-left: 3px solid var(--ocean);
  border-radius: 2px;
}

.tarifs-mention p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  color: var(--text);
}

.tarifs-mention p + p {
  margin-top: 8px;
}

.tarifs-mention strong {
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   À PROPOS
═══════════════════════════════════════════════ */

.about-hero {
  height: 52vh;
  position: relative;
  overflow: hidden;
}

.about-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.72);
}

.about-hero__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 52px 40px;
}

.about-hero__text h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: #f4f2ec;
  letter-spacing: .04em;
  line-height: 1;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-intro {
  padding: 72px 60px 72px 40px;
  border-right: 1px solid var(--border);
}

.about-intro__lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: .015em;
  margin-bottom: 32px;
}

.about-intro__body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.about-intro__body p + p { margin-top: 16px; }

.about-sidebar {
  padding: 72px 40px 72px 60px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.about-services h3,
.about-contact h3 {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.about-services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-services li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.about-services li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ocean);
  flex-shrink: 0;
}

.about-contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  transition: color .2s;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.about-contact-link:last-child { border-bottom: none; padding-bottom: 0; }

.about-contact-link:hover { color: var(--ocean); }

.about-contact-link__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(74,125,160,.1);
  display: flex;align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-contact-link__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}

.about-contact-link__value {
  font-family: var(--serif);
  font-size: 16px;
}

/* ─── Contact form ───────────────────────────── */
.about-contact-form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-contact-form label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-contact-form input,
.about-contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.about-contact-form input:focus,
.about-contact-form textarea:focus {
  border-bottom-color: var(--text);
}

.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
  color: var(--muted);
  font-size: 14px;
}

.about-contact-form textarea {
  resize: none;
  height: 100px;
  line-height: 1.6;
}

.about-contact-form__submit {
  align-self: flex-start;
  margin-top: 4px;
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
}

.about-contact-form__submit:hover { opacity: .75; }

/* ─── Footer ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__left img {
  width: 60px; height: 20px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  filter: brightness(0);
}

.footer__left span {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .06em;
}

.footer__right {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav__links { gap: 24px; }

  .hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50vh 30vh;
  }
  .hero__cell--main { grid-column: 1 / 3; }

  .home-grid__items { grid-template-columns: 1fr 1fr; }

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

  .tarifs-cols { grid-template-columns: 1fr; gap: 40px; }

  .about-body { grid-template-columns: 1fr; }
  .about-intro { border-right: none; border-bottom: 1px solid var(--border); padding: 48px 24px; }
  .about-sidebar { padding: 48px 24px; }
}

@media (max-width: 600px) {
  .nav { padding: 0 12px; }
  .nav__logo { width: 110px; }
  .nav__logo img { width: 110px; height: 37px; }
  .nav__logo-text { display: none; }
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 10px; letter-spacing: .12em; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh 25vh 20vh;
    height: auto;
  }
  .hero__cell--main { grid-column: 1; grid-row: 1; }

  .intro-strip { flex-direction: column; gap: 12px; text-align: center; }
  .home-grid { padding: 40px 20px; }
  .home-grid__items { grid-template-columns: 1fr; }

  .client-header { padding: 48px 20px 32px; }
  .client-photos { padding: 20px 20px 60px; flex-direction: column; }
  .client-photos__col--right { margin-top: 0; }

  .tarifs-header, .tarifs-body { padding-left: 20px; padding-right: 20px; }
  .about-hero__text, .about-intro, .about-sidebar { padding-left: 20px; padding-right: 20px; }

  .about-team {
    grid-template-columns: 1fr 1fr;
    padding: 30px 12px;
    gap: 10px;
  }
  .about-team__item { aspect-ratio: 3 / 4; }

  .work-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding-left: 20px;
    padding-right: 20px;
    gap: 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .work-filter::-webkit-scrollbar { display: none; }
  .work-filter__btn { white-space: nowrap; flex-shrink: 0; }

  .footer { padding: 20px; flex-direction: column; gap: 10px; text-align: center; }
}

/* ─── Transitions d'entrée ───────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

