/* ============================================================
   Fluid Glass — recréation HTML/CSS
   Base mesurée sur l'original : 1rem = 0.625vw (8px @ 1280)
   ============================================================ */

:root {
  --bg: #f3f0ec;            /* rgb(243,240,236) */
  --ink: #212325;           /* rgb(33,35,37)    */
  --ink-20: rgba(33, 35, 37, 0.2);
  --ink-15: rgba(33, 35, 37, 0.15);
  --dark: #212325;          /* section showroom  */
  --btn-black: #0b1012;     /* boutons           */
  --muted: #8f897c;
  --white: #ffffff;
  --cream-text: #f4f2ec;

  --font-sans: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --gutter: 2.5vw;          /* 52px @ 2076 */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 0.625vw; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 2rem;               /* 16px @1280 */
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 400; }
ul { list-style: none; }

/* ---------- Titres display : 6.4rem / lh 1 / ls -3% ---------- */
.display {
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ---------- Labels mono : 1.4rem / ls 0.1em ---------- */
.mono-label {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}
.mono-label.light { color: var(--white); }
.mono-label .diamond { font-size: 0.72em; vertical-align: 0.1em; }

.reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Boutons : mono 1.2rem, padding 1.5rem 2.4rem ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
  padding: 1.5rem 2.4rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}
.btn:hover { opacity: 0.75; }
.btn .arr { font-size: 0.9em; }

.btn--dark { background: var(--btn-black); color: var(--white); }
.btn--ghost { background: var(--white); color: var(--ink); }
.btn--text { background: #f3f0ec; color: var(--ink); }

/* ---------- Filets de section ---------- */
.section-head {
  margin: 0 var(--gutter);
  padding: 2.2rem 0;
  border-top: 1px solid var(--ink-15);
}
.section-head--dark { border-top-color: rgba(255, 255, 255, 0.15); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.6rem var(--gutter);
  color: var(--white);
}
.header-diamond { font-size: 1rem; }
.header-logo {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.logo-img { height: 4.6rem; width: auto; display: block; }
.header-quote { color: var(--white); font-size: 1.2rem; letter-spacing: 0.08em; }

/* ============================================================
   BOTTOM NAV — pilule 5rem, logo carré 5rem
   ============================================================ */

.bottom-nav-wrap {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  translate: -50% 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.menu-panel {
  background: rgba(11, 16, 18, 0.96);
  color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem 2.4rem;
  margin-bottom: 1rem;
  display: none;
  flex-direction: column;
}
.menu-panel.is-open { display: flex; }
.menu-panel__label { color: rgba(255, 255, 255, 0.5); margin-bottom: 1.6rem; font-size: 1.1rem; }
.menu-panel a {
  font-size: 3.2rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}
.menu-panel a:hover { opacity: 0.6; }

.bottom-nav {
  display: flex;
  align-items: center;
  height: 5rem;
  min-width: 28rem;
  background: rgba(11, 16, 18, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  overflow: hidden;
  color: var(--white);
}
.bottom-nav__logo {
  width: 5rem;
  height: 5rem;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}
.bottom-nav__logo img, .bottom-nav__logo svg { width: 2.6rem; height: auto; }
.bottom-nav__label {
  flex: 1;
  text-align: center;
  color: var(--white);
  font-size: 1.1rem;
}
.bottom-nav__burger {
  width: 5rem;
  height: 5rem;
  flex: none;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.bottom-nav__burger span {
  display: block;
  width: 1.9rem;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.bottom-nav__burger.is-open span:nth-child(1) { transform: translateY(0.65rem) rotate(45deg); }
.bottom-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.bottom-nav__burger.is-open span:nth-child(3) { transform: translateY(-0.65rem) rotate(-45deg); }

/* ============================================================
   HERO — image pleine hauteur, titre 6.4rem centré
   ============================================================ */

.hero {
  position: relative;
  min-height: 165vh;
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0) 28%),
    linear-gradient(rgba(0,0,0,0) 35%, rgba(0,0,0,0.75)),
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 165vh;
  display: flex;
  flex-direction: column;
}
.hero__title {
  margin-top: 66vh;
  align-self: center;
  text-align: center;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
/* ---------- Hero accueil (composition bas-gauche, 100vh) ---------- */
.hero--home { min-height: 100vh; }
.hero--home .hero__inner {
  min-height: 100vh;
  justify-content: flex-end;
  padding: 0 var(--gutter) 16rem;
}
.hero__content { max-width: 110rem; }
.hero--home .hero__title {
  margin: 3rem 0 3.5rem;
  align-self: flex-start;
  text-align: left;
}
.hero__content > p {
  max-width: 50rem;
  font-size: 2rem;
  line-height: 1.55;
  margin-bottom: 4.5rem;
}
.hero__actions { display: flex; align-items: center; gap: 2rem; }

/* ---------- Hero pages prestations : texte centré ---------- */
.hero--center .hero__media::after {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.1) 28%),
    linear-gradient(rgba(0,0,0,0.08) 35%, rgba(0,0,0,0.65)),
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35));
}
.hero--center .hero__inner { justify-content: center; padding-bottom: 6rem; }
.hero--center .hero__content {
  margin: 0 auto;
  max-width: 120rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero--center .hero__title { align-self: center; text-align: center; }
.hero--center .hero__content > p { max-width: 62rem; }
.hero--center .hero__actions { justify-content: center; }

.hero__intro {
  position: relative;
  margin-top: 48vh;
  width: 100%;
}
.hero__intro .mono-label {
  position: absolute;
  left: 43.75vw;
  top: 0;
}
.hero__intro p {
  position: absolute;
  left: 74.5vw;
  top: 0;
  width: 16.3vw;
  font-size: 1.75rem;
  line-height: 1.45;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  padding: 16rem var(--gutter) 18rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .mono-label { margin-bottom: 5rem; }
.about__heading {
  width: max-content;
  max-width: 90vw;
  text-align: center;
  font-size: 6rem;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 5rem;
}
.about .btn { align-self: center; }

/* ============================================================
   PRODUCT COLLECTION — collage positionné (valeurs mesurées)
   ============================================================ */

.products { padding-bottom: 14rem; }

.products__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
  padding: 4rem var(--gutter) 7rem;
}
.products__intro p {
  max-width: 52rem;
  font-size: 2.25rem;
  line-height: 1.5;
}
.products__intro strong { font-weight: 500; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25vw;
  padding: 0 var(--gutter);
}

.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.product-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover img { transform: scale(1.06); }
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0) 50%, rgba(0,0,0,0.42));
  pointer-events: none;
}
.product-card h3 {
  position: absolute;
  left: 2.4rem;
  bottom: 2rem;
  z-index: 2;
  color: var(--white);
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.product-card__arrow {
  position: absolute;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 2;
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0;
  translate: 0 0.8rem;
  transition: opacity 0.35s ease, translate 0.35s ease;
}
.product-card:hover .product-card__arrow { opacity: 1; translate: 0 0; }

/* ============================================================
   SHOWROOM — fond #212325, média 55vw centré
   ============================================================ */

.showroom {
  background: var(--dark);
  color: var(--white);
  padding-bottom: 0;
}
.showroom__stage {
  position: relative;
  height: 240vh;
}
.showroom__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.showroom__media {
  width: calc(55vw + 45vw * var(--p, 0));
  height: calc(32.75vw + (100vh - 32.75vw) * var(--p, 0));
  overflow: hidden;
}
.showroom__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showroom__title {
  position: absolute;
  left: 8.1vw;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.showroom__address {
  position: absolute;
  right: 6.6vw;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.4rem;
}
.showroom__address .mono-label { font-size: 1.1rem; }
.showroom__address p { font-size: 1.75rem; line-height: 1.5; opacity: 0.9; }
.showroom__address a:hover { opacity: 0.7; }
.showroom__address .btn { margin-top: 1rem; }

/* ============================================================
   FEATURED PROJECTS
   ============================================================ */

.projects { padding-top: 16rem; }

.projects__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8rem;
  padding: 0 var(--gutter);
  align-items: start;
}
.projects__side { position: sticky; top: 14rem; }
.projects__side .mono-label { display: block; margin-bottom: 4rem; }
.projects__heading {
  font-size: 4.8rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 4.5rem;
  max-width: 52rem;
}

.projects__grid .projects__list { margin: 0; }
.projects__grid .project-row a {
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 3.5rem;
  padding: 3.2rem 0;
}
.projects__grid .project-row a:hover { background: transparent; }
.projects__grid .project-row__num { color: var(--muted); padding-top: 0.9rem; }
.projects__grid .project-row__body { display: flex; flex-direction: column; gap: 1.6rem; }
.projects__grid .project-row__name {
  color: var(--ink);
  font-size: 3.2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.projects__grid .project-row__arrow { padding-top: 0.9rem; transition: translate 0.3s ease, color 0.3s ease; }
.projects__grid .project-row a:hover .project-row__arrow { translate: 0.6rem 0; color: var(--ink); }

.projects__list {
  margin: 0 var(--gutter);
  border-top: 1px solid var(--ink-15);
}
.project-row a {
  display: grid;
  grid-template-columns: 21.7vw 1fr auto;
  align-items: center;
  min-height: 4.9vw;
  padding: 1.4rem 2.5vw;
  border-bottom: 1px solid var(--ink-15);
  transition: background 0.25s ease;
}
.project-row a:hover { background: rgba(33, 35, 37, 0.04); }
.project-row__name {
  color: var(--muted);
  font-size: 2.1rem;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.project-row a:hover .project-row__name { color: var(--ink); }
.project-row__tags { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.chip {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--btn-black);
  border: 1px solid var(--btn-black);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.project-row__arrow { color: var(--muted); font-size: 1.6rem; }

/* ============================================================
   ASSETS DUO — deux portraits 2:3 alignés en haut
   ============================================================ */

.duo {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1.25vw;
  padding: 10rem var(--gutter) 0;
}
.duo figure { height: 46vw; overflow: hidden; }
.duo figure img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   AVIS CLIENTS
   ============================================================ */

.stories { padding: 16rem var(--gutter) 14rem; }

.stories__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 9rem;
}
.stories__score { color: var(--muted); font-size: 1.1rem; }

.stories__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.25s ease;
}
.stories__body.is-fading { opacity: 0; }

.stories__stars {
  font-size: 2.2rem;
  letter-spacing: 0.7rem;
  margin-bottom: 4.5rem;
  color: var(--ink);
}
.stories__body blockquote {
  font-size: 5.4rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 116rem;
  margin-bottom: 5.5rem;
}
.stories__author { font-size: 2rem; margin-bottom: 0.8rem; }
.stories__role { color: var(--muted); font-size: 1.1rem; }

.stories__controls {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-top: 6.5rem;
}
.stories__count { color: var(--muted); }
.story-arrow {
  width: 4.4rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--ink-20);
  border-radius: 0.4rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
  transition: background 0.25s ease;
}
.story-arrow:hover { background: var(--ink-15); }

/* ============================================================
   CTA — encadré 95vw, bordure ink 20%
   ============================================================ */

.cta { padding: 0 var(--gutter) var(--gutter); }

.cta__box {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-20);
  min-height: 38.3vw;
  padding: 10rem 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.cta__hex {
  position: absolute;
  right: -6rem;
  top: 50%;
  translate: 0 -50%;
  width: 30vw;
  color: var(--ink-20);
  pointer-events: none;
}
.cta__box .mono-label { margin-bottom: 3.5rem; }
.cta__heading {
  font-size: 6.4rem;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 4.5rem;
}
.cta__actions { display: flex; align-items: center; gap: 3rem; }
.cta__chips { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 5rem; }
.cta__chips .chip {
  background: var(--btn-black);
  color: var(--white);
  border-color: var(--btn-black);
}

/* ============================================================
   PAGES PRESTATIONS
   ============================================================ */

/* Chiffres clés */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 0 var(--gutter) 6rem;
}
.stat {
  border-top: 1px solid var(--ink-20);
  padding-top: 2.8rem;
}
.stat__label { display: block; color: var(--muted); font-size: 1.1rem; margin-bottom: 2.4rem; }
.stat__value {
  display: block;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.stat p {
  font-size: 1.75rem;
  line-height: 1.55;
  color: rgba(33, 35, 37, 0.8);
  max-width: 38rem;
}

/* Interventions : grille de cartes */
.detail { padding-bottom: 4rem; }
.detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 1.25vw;
  padding: 2rem var(--gutter) 0;
}
.detail-card {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  min-height: 30rem;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--ink-15);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.detail-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-card__num { color: var(--muted); }
.detail-card__arrow {
  font-size: 1.8rem;
  color: var(--muted);
  transition: translate 0.3s ease, color 0.3s ease;
}
.detail-card__name {
  font-size: 3.2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.detail-card__chips {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.detail-card:hover {
  background: var(--btn-black);
  border-color: var(--btn-black);
  color: var(--white);
}
.detail-card:hover .detail-card__num,
.detail-card:hover .detail-card__arrow { color: rgba(255, 255, 255, 0.7); }
.detail-card:hover .detail-card__arrow { translate: 0.6rem 0; }
.detail-card .chip {
  background: var(--btn-black);
  color: var(--white);
  border-color: var(--btn-black);
}
.detail-card:hover .chip {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* Méthode en 3 étapes */
.method { padding: 10rem 0 14rem; }
.method__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
  padding: 4rem var(--gutter) 8rem;
}
.method__heading {
  font-size: 4.8rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.method__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 0 var(--gutter);
}
.method__step {
  border-top: 1px solid var(--ink-20);
  padding-top: 2.8rem;
}
.method__num { display: block; color: var(--muted); margin-bottom: 2.4rem; }
.method__step h3 {
  font-size: 2.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.method__step p {
  font-size: 1.75rem;
  line-height: 1.55;
  color: rgba(33, 35, 37, 0.8);
}

/* Autres prestations */
.related { padding: 0 var(--gutter) 14rem; }
.related .mono-label { display: block; margin-bottom: 3rem; }
.related__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.related__links .chip {
  font-size: 1.3rem;
  padding: 1.3rem 2.4rem;
  background: var(--btn-black);
  color: var(--white);
  border-color: var(--btn-black);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.related__links .chip:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink-20);
}

/* ============================================================
   FOOTER — panneau sombre informatif + filigrane
   ============================================================ */

.footer {
  position: relative;
  background: var(--btn-black);
  color: var(--white);
  overflow: hidden;
  padding-top: 12rem;
}
.footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 6rem;
  padding: 0 var(--gutter) 12rem;
}
.footer__logo-img { height: 6rem; width: auto; margin-bottom: 3rem; }
.footer__brand p {
  font-size: 1.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 42rem;
}
.footer__col { display: flex; flex-direction: column; gap: 1.4rem; align-items: flex-start; }
.footer__col .mono-label { color: rgba(255, 255, 255, 0.4); font-size: 1.1rem; margin-bottom: 1.2rem; }
.footer__col a, .footer__col p {
  font-size: 1.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--white); }

.footer__watermark {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  font-size: 16.5vw;
  line-height: 0.72;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.07);
  translate: 0 8%;
  user-select: none;
  pointer-events: none;
}

.footer__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2.4rem var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__legal { display: flex; gap: 2.4rem; }
.footer__bar a { color: rgba(255, 255, 255, 0.55); transition: color 0.2s ease; }
.footer__bar a:hover { color: var(--white); }
.footer__credit { margin-left: auto; }

/* ============================================================
   PAGE CONTACT
   ============================================================ */

.contact {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8rem;
  padding: 8rem var(--gutter) 14rem;
}
.contact__info .mono-label { display: block; color: var(--muted); font-size: 1.1rem; margin: 3.6rem 0 1rem; }
.contact__info .mono-label:first-child { margin-top: 0; }
.contact__info p, .contact__info a { font-size: 2rem; line-height: 1.5; display: block; }
.contact__info a:hover { opacity: 0.7; }
.contact__chips { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 4rem; }

.contact__form { display: flex; flex-direction: column; gap: 2.4rem; }
.form-field { display: flex; flex-direction: column; gap: 1rem; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 1.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink-15);
  padding: 1.8rem 2rem;
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--ink); }
.form-field textarea { min-height: 18rem; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
.contact__form .btn { align-self: flex-start; margin-top: 1rem; }
.form-note { font-size: 1.5rem; color: var(--muted); }

@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; gap: 5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGES LÉGALES
   ============================================================ */

.site-header--dark {
  position: relative;
  color: var(--ink);
}
.site-header--dark .header-quote { color: var(--ink); }

.legal {
  max-width: 104rem;
  margin: 0 auto;
  padding: 10rem var(--gutter) 14rem;
}
.legal h1 {
  font-size: 5.6rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}
.legal__updated {
  display: block;
  color: var(--muted);
  margin-bottom: 7rem;
}
.legal h2 {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 6rem 0 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--ink-15);
}
.legal p, .legal li {
  font-size: 1.9rem;
  line-height: 1.65;
  color: rgba(33, 35, 37, 0.85);
  margin-bottom: 1.8rem;
}
.legal ul { list-style: disc; padding-left: 2.6rem; margin-bottom: 1.8rem; }
.legal li { margin-bottom: 0.8rem; }
.legal a { text-decoration: underline; text-underline-offset: 0.3em; }
.legal .placeholder {
  background: rgba(255, 196, 0, 0.22);
  padding: 0.1rem 0.6rem;
  border-radius: 0.3rem;
}

@media (max-width: 860px) {
  .legal { padding-top: 6rem; }
  .legal h1 { font-size: 4.4rem; }
  .legal p, .legal li { font-size: 2.1rem; }
}

/* ============================================================
   COOKIES
   ============================================================ */

.cookies {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 60;
  width: 34rem;
  background: var(--bg);
  padding: 2.4rem;
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.15);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cookies.is-hidden { opacity: 0; transform: translateY(1.5rem); pointer-events: none; }
.cookies p { font-size: 1.6rem; line-height: 1.5; margin: 1.4rem 0 1.8rem; }
.cookies__actions { display: flex; align-items: center; gap: 1.6rem; }
.cookies .btn { padding: 1rem 1.8rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
  html { font-size: clamp(6.5px, 1.9vw, 9px); }
  :root { --gutter: 5vw; }

  .header-quote, .header-diamond { display: none; }
  .site-header { justify-content: center; }
  .about__heading br { display: none; }
  .cta__actions { flex-wrap: wrap; gap: 1.5rem; }

  .hero { min-height: 130vh; }
  .hero__inner { min-height: 130vh; }
  .hero__title { margin-top: 52vh; font-size: 5.4rem; }
  .hero__intro { margin-top: 30vh; padding: 0 var(--gutter); }

  .hero--home, .hero--home .hero__inner { min-height: 100vh; }
  .hero--home .hero__inner { padding-bottom: 13rem; }
  .hero--home .hero__title { margin: 2.5rem 0 3rem; font-size: 4.6rem; }
  .hero__content > p { max-width: 100%; }
  .hero__actions { flex-wrap: wrap; }
  .hero__intro .mono-label { position: static; display: block; margin-bottom: 2rem; }
  .hero__intro p { position: static; width: 70vw; font-size: 2rem; }

  .about__heading { width: 100%; font-size: 4.6rem; }

  .products__intro { flex-direction: column; align-items: flex-start; padding-bottom: 4rem; }
  .products__intro p { max-width: 100%; font-size: 2rem; }
  .products__grid { grid-template-columns: 1fr 1fr; gap: 3vw; }
  .product-card h3 { font-size: 2.8rem; }

  .showroom__stage { display: block; height: auto; padding: 8rem var(--gutter); }
  .showroom__sticky { position: static; height: auto; display: block; overflow: visible; }
  .showroom__media { width: 100%; height: auto; aspect-ratio: 1142 / 680; }
  .showroom__title { position: static; translate: none; margin: 4rem 0 0; font-size: 3.2rem; line-height: 1.25; }
  .showroom__title br { display: none; }
  .showroom__address { position: static; translate: none; width: 100%; margin-top: 3.5rem; text-align: left; align-items: flex-start; }
  .showroom__address p { font-size: 2rem; }
  .showroom__address .mono-label { font-size: 1.3rem; }

  .projects__grid { grid-template-columns: 1fr; gap: 5rem; }
  .projects__side { position: static; }
  .projects__heading { max-width: 100%; font-size: 4.2rem; }
  .projects__grid .project-row__name { font-size: 2.8rem; }
  .projects__grid .project-row a { grid-template-columns: auto 1fr auto; }
  .related__links .chip { font-size: 1.6rem; }
  .detail__grid { grid-template-columns: 1fr; gap: 3vw; }
  .detail-card { min-height: 0; }
  .detail-card__name { font-size: 2.8rem; }
  .project-row a { grid-template-columns: 1fr auto; row-gap: 1.5rem; padding: 2.5rem var(--gutter); }
  .project-row__tags { grid-column: 1 / -1; }
  .project-row__name { font-size: 2.6rem; }
  .chip { font-size: 1.4rem; }

  .duo { grid-template-columns: 1fr; padding: 8rem var(--gutter) 0; gap: 4vw; }
  .duo figure { height: auto; aspect-ratio: 4 / 3; }

  .stats { grid-template-columns: 1fr; gap: 3rem; }
  .stat__value { font-size: 5.2rem; }
  .stat p { font-size: 2rem; max-width: 100%; }

  .method__intro { flex-direction: column; align-items: flex-start; padding-bottom: 5rem; gap: 3rem; }
  .method__heading { font-size: 4rem; }
  .method__steps { grid-template-columns: 1fr; gap: 3rem; }
  .method__step h3 { font-size: 2.4rem; }
  .method__step p { font-size: 2rem; }

  .stories__head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stories__body blockquote { font-size: 3.6rem; }

  .cta__box { min-height: 0; padding: 8rem var(--gutter); }
  .cta__heading { font-size: 4.4rem; }

  .footer { padding-top: 8rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 5.5rem; padding-bottom: 8rem; }
  .footer__logo-img { height: 5.5rem; }
  .footer__brand p { font-size: 2rem; max-width: 100%; }
  .footer__col { gap: 1.2rem; }
  .footer__col .mono-label { font-size: 1.4rem; margin-bottom: 0.8rem; }
  .footer__col a, .footer__col p { font-size: 2.1rem; white-space: nowrap; }
  .footer__watermark { font-size: 21vw; }
  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    font-size: 1.8rem;
    padding: 3rem var(--gutter) 12rem;
  }
  .footer__legal { flex-wrap: wrap; gap: 1.4rem 2.4rem; }
  .footer__credit { margin-left: 0; color: rgba(255, 255, 255, 0.35); }

  .cookies { width: calc(100vw - 4rem); }
  .cookies p, .cookies .btn { font-size: 1.8rem; }

  .bottom-nav { min-width: 34rem; height: 6rem; }
  .bottom-nav__logo, .bottom-nav__burger { width: 6rem; height: 6rem; }
  .mono-label { font-size: 1.6rem; }
  .btn { font-size: 1.6rem; }
}
