/* =========================================================
   MAISON AMORIS — Édition Couture
   Direction artistique : magazine éditorial premium
   Palette  : Terracotta · Crème lin · Cacao · Champagne
   Typographies : Fraunces (titres) · Inter Tight (corps)
   ========================================================= */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; }
em { font-style: italic; }

/* ============ TOKENS ============ */
:root {
  --terracotta: #B8501F;
  --terracotta-2: #9A3F12;
  --bronze: #C68B5C;
  --champagne: #D4A574;
  --cream: #F4ECDE;
  --cream-2: #FAF6EE;
  --cream-3: #EFE4D0;
  --ink: #2B1810;
  --ink-2: #0F0A07;
  --muted: #6B4B3A;
  --rule: #D9CDB6;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter Tight', -apple-system, sans-serif;

  --container: 1280px;
  --header-h: 88px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-back: cubic-bezier(.34,1.32,.64,1);
}

/* ============ LAYOUT ============ */
.wrap {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
.section { padding: clamp(80px, 11vw, 160px) 0; }
.section--dark {
  background: var(--ink-2);
  color: var(--cream);
}

/* ============ TYPOGRAPHIE ÉDITORIALE ============ */
.chapter {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 80px);
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.chapter--light { color: rgba(244,236,222,.5); }
.chapter__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: 0;
  text-transform: none;
}
.chapter--light .chapter__num { color: var(--champagne); }
.chapter__label { font-weight: 500; }
.chapter__rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
  position: relative;
  top: -4px;
}
.chapter--light .chapter__rule { background: rgba(244,236,222,.18); }

/* ============ ANNOUNCE BAR (marquee) ============ */
.announce {
  background: var(--ink-2);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 11px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.announce__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 56s linear infinite;
  white-space: nowrap;
}
.announce__track span { display: inline-block; }
.announce__track span:nth-child(even) { color: var(--terracotta); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.header.is-scrolled {
  background: rgba(244,236,222,.96);
  border-color: var(--rule);
  backdrop-filter: saturate(1.1);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 64px; width: auto; transition: height .3s; }
.header.is-scrolled .brand img { height: 54px; }

.nav__list {
  display: flex;
  gap: 4px;
}
.nav__list a {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
  position: relative;
}
.nav__list a i {
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--terracotta);
  font-weight: 400;
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); }
.nav__close { display: none; position: absolute; top: 22px; right: 24px; font-size: 1.4rem; }

/* CTA — "Prendre rendez-vous" écrit en mince, élégant */
.appoint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--ink);
  padding: 12px 22px 12px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.appoint__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 0 rgba(184,80,31,.55);
  animation: pulse 2s infinite;
}
.appoint:hover { background: var(--ink); color: var(--cream); }
.appoint:hover .appoint__dot { background: var(--champagne); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,80,31,.45); }
  70%  { box-shadow: 0 0 0 9px rgba(184,80,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,80,31,0); }
}

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; gap: 6px;
  justify-content: center; align-items: center;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
}

/* ============ INK BUTTONS (signature) ============ */
.ink {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
  padding: 16px 28px;
  background: var(--ink-2);
  color: var(--cream);
  border-radius: 999px;
  transition: transform .35s var(--ease), background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.ink::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--terracotta);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.ink span { position: relative; z-index: 1; }
.ink__arrow {
  font-family: var(--serif);
  transition: transform .35s var(--ease);
}
.ink:hover::before { transform: translateY(0); }
.ink:hover .ink__arrow { transform: translateX(6px); }
.ink--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.ink--ghost::before { background: var(--ink-2); }
.ink--ghost:hover { color: var(--cream); }
.ink--sm { padding: 12px 22px; font-size: .82rem; }
.ink--full { width: 100%; justify-content: space-between; padding: 18px 28px; }
.ink--center { margin: 56px auto 0; display: inline-flex; }
.ink--ghost.ink--sm { background: transparent; }

/* ============ HERO ÉDITORIAL ============ */
.hero {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* Sidebar with rotated text */
.hero__side {
  position: relative;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__edition { display: flex; flex-direction: column; gap: 8px; }
.hero__edition span:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  letter-spacing: 0;
  text-transform: none;
}
.hero__rotator {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.hero__rotator-inner {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, 0) rotate(-90deg);
  transform-origin: 50% 120px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--ink);
  text-transform: none;
  animation: scrollText 18s linear infinite;
}
@keyframes scrollText {
  from { transform: translate(-50%, 0) rotate(-90deg); }
  to   { transform: translate(-50%, -50%) rotate(-90deg); }
}

/* Main column */
.hero__kicker {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}
.hero__kicker em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin: 0 4px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8.4vw, 7rem);
  line-height: .96;
  letter-spacing: -.025em;
  color: var(--ink-2);
  margin-bottom: 56px;
  font-variation-settings: "opsz" 144;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line:nth-child(1) { padding-left: 0; }
.hero__title .line:nth-child(2) { padding-left: 14%; }
.hero__title .line:nth-child(3) { padding-left: 28%; }
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.hero__under {
  position: relative;
  display: inline-block;
}
.hero__under::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 8%;
  background: var(--terracotta);
  opacity: .25;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawUnder 1.4s var(--ease) .8s forwards;
}
@keyframes drawUnder { to { transform: scaleX(1); } }

.hero__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.hero__lead {
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 44ch;
}
.hero__lead em { font-style: italic; color: var(--terracotta); }
.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  font-family: var(--sans);
  font-size: .8rem;
}
.hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 1px solid var(--rule);
}
.hero__meta span {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero artwork column */
.hero__art {
  position: relative;
  align-self: start;
}
.hero__art img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}
.hero__art figcaption {
  position: absolute;
  bottom: -12px; left: 0; right: 0;
  background: var(--cream);
  padding: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: .88rem;
  color: var(--muted);
}
.hero__art figcaption em {
  color: var(--terracotta);
  font-weight: 500;
  margin-right: 6px;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: var(--terracotta);
  animation: dropLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes dropLine {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ MANIFESTE ============ */
.manifeste { background: var(--cream); }
.manifeste__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  line-height: 1.28;
  letter-spacing: -.012em;
  color: var(--ink-2);
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
  font-variation-settings: "opsz" 96;
}
.manifeste__quote em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.manifeste__quote-2 {
  margin-top: 36px;
  font-size: .85em;
  color: var(--muted);
  max-width: 28ch;
  margin-inline: auto;
}
.manifeste__sign {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 60px;
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.manifeste__sign-rule {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
}

/* ============ UNIVERS ============ */
.metier {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-bottom: 100px;
}
.metier:last-of-type { margin-bottom: 0; }
.metier--reverse .metier__img { order: 2; }

.metier__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.metier__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.metier:hover .metier__img img { transform: scale(1.04); }
.metier__plate {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--cream);
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: .8rem;
  border-radius: 2px;
}

.metier__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}
.metier__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--terracotta);
  font-weight: 500;
}
.metier__text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink-2);
  font-variation-settings: "opsz" 144;
}
.metier__text h2 em { font-style: italic; color: var(--terracotta); font-weight: 500; }

.metier__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 46ch;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.metier__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: .92rem;
}
.metier__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
}
.metier__list span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: .85rem;
  width: 24px;
}

.metier__divider {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 0 100px;
  text-align: center;
  justify-content: center;
}
.metier__divider span {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: var(--rule);
}
.metier__divider em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--terracotta);
  font-weight: 400;
}

/* ============ MÉTHODE ============ */
.methode { position: relative; overflow: hidden; }
.methode::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,165,116,.12), transparent 70%);
  pointer-events: none;
}

.movements {
  border-top: 1px solid rgba(244,236,222,.15);
}
.movement {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 48px;
  align-items: baseline;
  padding: 38px 0;
  border-bottom: 1px solid rgba(244,236,222,.15);
  transition: padding-left .4s var(--ease);
}
.movement:hover { padding-left: 24px; }

.movement__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  font-variation-settings: "opsz" 96;
}
.movement__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.movement__body p {
  color: rgba(244,236,222,.7);
  font-size: 1rem;
  max-width: 56ch;
}
.movement__time {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ============ CARNET ============ */
.carnet { background: var(--cream-2); }
.carnet__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 28px 24px;
}
.carnet__item--xl { grid-column: span 2; grid-row: span 2; }
.carnet__item--tall { grid-row: span 2; }

.carnet__item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.carnet__media {
  flex: 1;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 2px;
}
.carnet__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.carnet__item:hover .carnet__media img { transform: scale(1.05); }

.carnet__item figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.carnet__nb {
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--terracotta);
}
.carnet__item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink-2);
  letter-spacing: -.005em;
}
.carnet__meta {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ DIRECTION ============ */
.direction { background: var(--cream); }
.direction__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.direction__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.direction__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.direction__plate {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 6px 14px;
  background: var(--cream);
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
}

.direction__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  color: var(--ink-2);
  letter-spacing: -.02em;
  margin-bottom: 48px;
  font-variation-settings: "opsz" 144;
}
.direction__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}

.direction__interview {
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.direction__q {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  margin-top: 28px;
}
.direction__q:first-child { margin-top: 0; }
.direction__a {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 50ch;
  font-variation-settings: "opsz" 36;
}
.direction__a em { font-style: italic; color: var(--terracotta); }

.direction__sign {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.direction__sign img {
  height: 56px;
  opacity: .9;
}
.direction__sign strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink-2);
}
.direction__sign span {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ REPÈRES ============ */
.reperes {
  background: var(--terracotta);
  color: var(--cream);
  padding: clamp(60px, 7vw, 100px) 0;
}
.reperes__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.repere {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 24px;
  border-right: 1px solid rgba(244,236,222,.22);
}
.repere:last-child { border-right: 0; }
.repere__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: .9;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144;
}
.repere__num em {
  font-size: .55em;
  color: var(--champagne);
  font-style: normal;
}
.repere__word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.005em;
  color: var(--champagne);
}
.repere__lbl {
  font-family: var(--sans);
  font-size: .82rem;
  line-height: 1.55;
  letter-spacing: .04em;
  color: rgba(244,236,222,.85);
  border-top: 1px solid rgba(244,236,222,.22);
  padding-top: 14px;
}

/* ============ CLIENTS ============ */
.clients { background: var(--cream); }
.clients__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 56px;
  font-variation-settings: "opsz" 36;
}
.clients__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.clients__list li {
  padding: 36px 28px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--ink-2);
  letter-spacing: -.015em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--cream);
  transition: background .35s var(--ease), color .35s var(--ease);
  cursor: default;
  font-variation-settings: "opsz" 96;
}
.clients__list li span {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.clients__list li:hover {
  background: var(--ink-2);
  color: var(--cream);
}
.clients__list li:hover span { color: var(--champagne); }

/* ============ CONVERSATION ============ */
.conv { background: var(--cream-2); }
.conv__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.conv__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink-2);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.conv__title em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.conv__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 42ch;
}
.conv__details {
  border-top: 1px solid var(--rule);
}
.conv__details div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.conv__details dt {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-top: 2px;
}
.conv__details dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.conv__details a { border-bottom: 1px solid currentColor; transition: color .3s; }
.conv__details a:hover { color: var(--terracotta); }

.conv__form {
  background: var(--cream);
  padding: clamp(32px, 4vw, 52px);
  border-radius: 2px;
  border: 1px solid var(--rule);
}
.conv__form-eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}

.field {
  display: block;
  margin-bottom: 22px;
}
.field span {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-2);
  transition: border-color .3s;
  font-variation-settings: "opsz" 36;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: .6;
  font-style: italic;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--terracotta);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.conv__feedback {
  margin-top: 18px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: .88rem;
  border-left: 2px solid;
  display: none;
}
.conv__feedback.is-success { display: block; border-color: #4F7A4A; background: rgba(79,122,74,.08); color: #2F5A2A; }
.conv__feedback.is-error   { display: block; border-color: #A03030; background: rgba(160,48,48,.08); color: #6E1F1F; }
.conv__feedback.is-loading { display: block; border-color: var(--terracotta); background: rgba(184,80,31,.06); color: var(--terracotta-2); }

#submitBtn.is-loading { pointer-events: none; opacity: .8; }
#submitBtn.is-loading .ink__arrow { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ COLOPHON / FOOTER ============ */
.colo {
  background: var(--ink-2);
  color: var(--cream);
  padding-top: 90px;
}
.colo__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,236,222,.1);
}
.colo__brand img {
  height: 96px;
  margin-bottom: 22px;
}
.colo__brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: .96rem;
  color: rgba(244,236,222,.7);
  max-width: 36ch;
  line-height: 1.6;
  font-variation-settings: "opsz" 36;
}

.colo__col h5 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244,236,222,.12);
}
.colo__col ul li {
  margin-bottom: 10px;
}
.colo__col a {
  font-family: var(--serif);
  font-style: italic;
  font-size: .98rem;
  color: rgba(244,236,222,.85);
  transition: color .3s, padding-left .3s var(--ease);
  display: inline-block;
}
.colo__col a:hover { color: var(--terracotta); padding-left: 6px; }
.colo__col address {
  font-family: var(--serif);
  font-style: italic;
  font-size: .96rem;
  color: rgba(244,236,222,.7);
  line-height: 1.7;
}
.colo__legal li {
  font-family: var(--sans);
  font-size: .8rem;
  color: rgba(244,236,222,.5);
  margin-bottom: 8px;
}

.colo__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.colo__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(244,236,222,.08);
  color: var(--cream);
  font-style: normal;
  font-size: .9rem;
  transition: background .3s, transform .3s var(--ease);
}
.colo__social a:hover { background: var(--terracotta); transform: translateY(-3px); padding-left: 0; }

.colo__edge {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,236,222,.45);
  flex-wrap: wrap;
}
.colo__mid {
  font-family: var(--serif) !important;
  font-style: italic;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--champagne) !important;
  font-size: .9rem !important;
}

/* ============ FLOAT WHATSAPP ============ */
.float {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: var(--ink-2);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 90;
  transition: transform .35s var(--ease), background .35s;
  border: 1px solid rgba(244,236,222,.15);
}
.float i {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1rem;
}
.float:hover { transform: translateY(-3px); background: var(--terracotta); }

/* ============ SCROLL TO TOP ============ */
.top {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink-2);
  color: var(--cream);
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .35s var(--ease);
  z-index: 90;
}
.top.is-visible { opacity: 1; visibility: visible; transform: none; }
.top:hover { background: var(--terracotta); }

/* ============ REVEAL ANIMATIONS (lightweight) ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ============ HERO INTRO STAGGER ============ */
.hero__kicker, .hero__title .line, .hero__cols, .hero__cta, .hero__art {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s var(--ease) forwards;
}
.hero__kicker { animation-delay: .1s; }
.hero__title .line:nth-child(1) { animation-delay: .25s; }
.hero__title .line:nth-child(2) { animation-delay: .4s; }
.hero__title .line:nth-child(3) { animation-delay: .55s; }
.hero__cols { animation-delay: .75s; }
.hero__cta { animation-delay: .9s; }
.hero__art { animation-delay: .55s; transform: translateY(40px); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__side { min-height: auto; flex-direction: row; align-items: center; justify-content: space-between; }
  .hero__rotator { display: none; }
  .hero__art { max-width: 480px; margin-top: 32px; }
  .colo__grid { grid-template-columns: 1fr 1fr; }
  .clients__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  .nav {
    position: fixed; inset: 0 -100% 0 auto;
    width: 330px; max-width: 86vw;
    background: var(--cream);
    padding: 90px 32px 32px;
    transition: inset .4s var(--ease);
    z-index: 110;
  }
  .nav.is-open { inset: 0 0 0 auto; }
  .nav__close { display: block; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { padding: 16px 0; border-bottom: 1px solid var(--rule); }
  .nav__list a::after { display: none; }
  .nav__toggle { display: flex; }
  .appoint { display: none; }

  .hero__title .line:nth-child(2) { padding-left: 8%; }
  .hero__title .line:nth-child(3) { padding-left: 16%; }
  .hero__cols { grid-template-columns: 1fr; gap: 28px; }

  .metier { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .metier--reverse .metier__img { order: 0; }
  .metier__divider { margin-bottom: 64px; }
  .metier__list { grid-template-columns: 1fr; }

  .movement { grid-template-columns: 60px 1fr; gap: 24px; padding: 28px 0; }
  .movement__time { grid-column: 1 / -1; grid-row: 2; padding-left: 84px; }

  .carnet__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .carnet__item--xl { grid-column: span 2; }
  .carnet__item--tall { grid-row: span 1; }

  .direction__grid, .conv__grid { grid-template-columns: 1fr; }
  .direction__media { max-width: 460px; }

  .reperes__row { grid-template-columns: 1fr 1fr; gap: 28px; }
  .repere { border-right: 0; padding-right: 0; }

  .colo__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .colo__edge { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 560px) {
  .announce { font-size: .65rem; }
  .hero { padding-top: 40px; }
  .hero__title .line { padding-left: 0 !important; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .carnet__grid { grid-template-columns: 1fr; }
  .carnet__item--xl { grid-column: span 1; grid-row: span 1; }
  .reperes__row { grid-template-columns: 1fr; }
  .clients__list { grid-template-columns: 1fr; }
  .clients__list li { padding: 24px 20px; font-size: 1.3rem; }
  .float span { display: none; }
  .float { padding: 10px; gap: 0; }
}

/* ============ ACCESSIBILITY ============ */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============ SELECTION ============ */
::selection { background: var(--terracotta); color: var(--cream); }
