/* ─────────────────────────────────────────────────────────────
   L'Entrepreneur du Paysage — Design tokens & styles
   ───────────────────────────────────────────────────────────── */
:root {
  --forest: #2d4a3e;
  --forest-deep: #1f3429;
  --sage: #84a98c;
  --sage-light: #b8c9b8;
  --stone: #e8ddc9;
  --cream: #faf7f2;
  --cream-warm: #f2ede3;
  --charcoal: #1f1f1f;
  --terracotta: #c76b4a;
  --line: rgba(31, 31, 31, 0.12);
  --shadow-sm:
    0 1px 2px rgba(45, 74, 62, 0.06), 0 2px 6px rgba(45, 74, 62, 0.05);
  --shadow-md:
    0 6px 16px rgba(45, 74, 62, 0.08), 0 20px 40px rgba(45, 74, 62, 0.07);
  --container: 1320px;
  --pad-section: 112px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (max-width: 900px) {
  :root {
    --pad-section: 48px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 72px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ── Typographie ── */
.fraunces {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 144;
}
.it {
  font-style: italic;
  color: var(--sage);
}
.it-light {
  font-style: italic;
  color: var(--sage-light);
}

h1,
h2,
h3,
.display-xl {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 144;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}
.display-xl {
  font-size: clamp(56px, 7.3vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.022em;
}
h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
}
h3 {
  font-size: 24px;
  line-height: 1.2;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--light {
  color: var(--sage-light);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 700px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

section {
  position: relative;
}

/* ── Bruit de fond (texture) ── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1.2 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── Placeholders photos (rayures sage + légende monospace) ── */
.ph {
  position: relative;
  width: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(132, 169, 140, 0.22) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(180deg, #d8d2c1, #c9c2af);
  overflow: hidden;
  border-radius: inherit;
}
.ph--dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(184, 201, 184, 0.1) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(180deg, #2a4538, #1c2e25);
}
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: var(--rd, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow {
  transition: transform 0.4s var(--ease);
  display: inline-block;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
}
.btn--primary:hover {
  background: #243d33;
}
.btn--cream {
  background: var(--cream);
  color: var(--forest);
}
.btn--cream:hover {
  background: #fff;
}
.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.4);
}
.btn--outline-cream:hover {
  border-color: var(--cream);
  background: rgba(250, 247, 242, 0.06);
}

/* ════════════════════════════════════════
   01 · TOP BAR
════════════════════════════════════════ */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 8px 0;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar__tag {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--sage-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topbar__tag::before {
  content: "—";
  color: var(--sage-light);
  opacity: 0.6;
}
.topbar__contact {
  display: inline-flex;
  gap: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.topbar__contact a {
  transition: color 0.3s var(--ease);
}
.topbar__contact a:hover {
  color: var(--sage-light);
}
.topbar__contact .dot {
  color: var(--sage);
  opacity: 0.6;
}
@media (max-width: 700px) {
  .topbar__tag {
    font-size: 11px;
  }
  .topbar__contact a:first-child,
  .topbar__contact .dot {
    display: none;
  }
}

/* ════════════════════════════════════════
   02 · NAV
════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition:
    padding 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
  padding: 18px 0;
}
.nav.scrolled {
  padding: 10px 0;
  border-bottom-color: var(--line);
  background: rgba(250, 247, 242, 0.94);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand__mono {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  padding-bottom: 2px;
  flex-shrink: 0;
}
.brand__word {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 24;
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}
.nav__links {
  display: inline-flex;
  gap: 32px;
}
.nav__link {
  position: relative;
  font-size: 14px;
  color: var(--charcoal);
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--forest);
  transition: width 0.45s var(--ease);
}
.nav__link:hover::after {
  width: 100%;
}
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
}

/* ════════════════════════════════════════
   03 · HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: max(720px, 100vh);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media .ph {
  height: 100%;
  border-radius: 0;
  background:
    repeating-linear-gradient(
      118deg,
      rgba(132, 169, 140, 0.1) 0 1px,
      transparent 1px 22px
    ),
    radial-gradient(120% 80% at 30% 30%, #3d5a4c 0%, #243a30 55%, #182721 100%);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    118deg,
    rgba(31, 52, 41, 0.78) 0%,
    rgba(31, 52, 41, 0.45) 55%,
    rgba(31, 52, 41, 0) 100%
  );
}
.hero__overlay2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(31, 52, 41, 0.35) 0%,
    transparent 25%,
    transparent 60%,
    rgba(31, 52, 41, 0.55) 100%
  );
}
.hero__eyebrow {
  position: absolute;
  top: 64px;
  left: 32px;
  z-index: 2;
  color: var(--sage-light);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 96px;
}
.hero__title {
  margin-bottom: 32px;
  color: var(--cream);
}
.hero__title span {
  display: block;
}
.hero__intro {
  max-width: 50ch;
  color: rgba(250, 247, 242, 0.85);
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .hero__eyebrow {
    top: 32px;
    left: 20px;
  }
  .hero__content {
    padding: 0 20px 80px;
  }
}

/* ════════════════════════════════════════
   04 · TRUST STRIP
════════════════════════════════════════ */
.trust {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 120px;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 12px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.trust__item:last-child {
  border-right: none;
}
.trust__num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 34px;
  color: var(--forest);
  line-height: 1;
  font-variation-settings:
    "SOFT" 60,
    "opsz" 60;
}
.trust__label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(31, 31, 31, 0.6);
}
@media (max-width: 700px) {
  .trust__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust__item:nth-child(2) {
    border-right: none;
  }
  .trust__item:nth-child(1),
  .trust__item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

/* ════════════════════════════════════════
   05 · MARQUEE
════════════════════════════════════════ */
.marquee {
  background: var(--stone);
  padding: 18px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 60s linear infinite;
  will-change: transform;
}
.marquee__item {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  font-variation-settings:
    "SOFT" 60,
    "opsz" 60;
}
.marquee__item::after {
  content: "•";
  color: var(--sage);
  font-style: normal;
  font-size: 18px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════
   06 · SERVICES
════════════════════════════════════════ */
.services {
  background: var(--cream);
  padding: var(--pad-section) 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head__intro {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: rgba(31, 31, 31, 0.75);
  line-height: 1.55;
  max-width: 46ch;
  font-variation-settings:
    "SOFT" 40,
    "opsz" 20;
}
@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 16px 16px 24px;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(132, 169, 140, 0.25);
}
.service-card .ph {
  aspect-ratio: 4/3;
  border-radius: 8px;
  margin-bottom: 24px;
}
.service-card__num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--sage);
  margin-bottom: 6px;
}
.service-card__title {
  font-family: "Fraunces", serif;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: 14px;
  color: rgba(31, 31, 31, 0.7);
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 0.5s var(--ease),
    opacity 0.4s var(--ease),
    transform 0.5s var(--ease),
    margin 0.5s var(--ease);
}
.service-card:hover .service-card__desc,
.service-card:focus-within .service-card__desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   07 · RÉALISATIONS
════════════════════════════════════════ */
.showcase {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.showcase__watermark {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 280px;
  color: var(--sage-light);
  opacity: 0.08;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  font-variation-settings:
    "SOFT" 70,
    "opsz" 144;
}
.showcase__head {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
}
.showcase__head h2 {
  color: var(--cream);
  max-width: 18ch;
}
.showcase__gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.showcase__tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.showcase__tile .ph {
  height: 100%;
  border-radius: 8px;
  transition: transform 0.7s var(--ease);
}
.showcase__tile:hover .ph {
  transform: scale(1.06);
}
.showcase__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 52, 41, 0);
  transition: background 0.5s var(--ease);
  pointer-events: none;
}
.showcase__tile:hover::after {
  background: rgba(31, 52, 41, 0.4);
}
.showcase__cap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--cream);
  transform: translateY(14px);
  opacity: 0;
  transition:
    transform 0.5s var(--ease),
    opacity 0.5s var(--ease);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.showcase__tile:hover .showcase__cap {
  transform: translateY(0);
  opacity: 1;
}
.showcase__cap-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
}
.showcase__cap-year {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--sage-light);
  white-space: nowrap;
}
.tile--big {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 900px) {
  .showcase__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .showcase__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 220px);
  }
  .tile--big {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* ════════════════════════════════════════
   08 · MÉTHODE
════════════════════════════════════════ */
.process {
  background: var(--cream-warm);
  padding: var(--pad-section) 0;
}
.process__timeline {
  margin-top: 64px;
  position: relative;
}
.process__line {
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background-image: linear-gradient(to right, var(--line) 50%, transparent 50%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.process__step {
  text-align: center;
}
.process__circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--cream-warm);
  border: 1.5px solid var(--forest);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--forest);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
  transition:
    background 0.5s var(--ease),
    color 0.5s var(--ease),
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.process__step:hover .process__circle {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(45, 74, 62, 0.15);
}
.process__step h4 {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 6px;
}
.process__step p {
  font-size: 13px;
  color: rgba(31, 31, 31, 0.65);
  line-height: 1.45;
  max-width: 22ch;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process__line {
    display: none;
  }
}

/* ════════════════════════════════════════
   09 · CRÉDIT D'IMPÔT
════════════════════════════════════════ */
.tax {
  background: var(--cream);
  padding: 96px 0;
}
.tax__card {
  position: relative;
  background: var(--stone);
  border-radius: 16px;
  padding: 80px 64px;
  overflow: hidden;
}
.tax__watermark {
  position: absolute;
  right: -30px;
  bottom: -90px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 320px;
  color: var(--forest);
  opacity: 0.08;
  line-height: 0.8;
  pointer-events: none;
  font-variation-settings:
    "SOFT" 80,
    "opsz" 144;
}
.tax__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.tax__copy h2 {
  max-width: 16ch;
  margin-bottom: 20px;
}
.tax__copy p {
  max-width: 42ch;
  margin-bottom: 32px;
  color: rgba(31, 31, 31, 0.78);
}

/* Colonne droite : liste des prestations */
.tax__right {
  background: var(--cream);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--line);
}
.tax__services-label {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(31, 31, 31, 0.5);
  margin-bottom: 20px;
}
.tax__services-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tax__services-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.tax__services-list li:last-child {
  border-bottom: none;
}
.tax__svc-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}
.tax__svc-name {
  font-family: "Fraunces", serif;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.2;
}
.tax__services-note {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: rgba(31, 31, 31, 0.55);
  line-height: 1.55;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .tax__card {
    padding: 56px 32px;
  }
  .tax__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tax__watermark {
    font-size: 220px;
  }
}

/* ════════════════════════════════════════
   10 · TÉMOIGNAGE
════════════════════════════════════════ */
.quote {
  background: var(--forest);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.quote__mark {
  position: absolute;
  top: 40px;
  left: 32px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 180px;
  color: var(--sage-light);
  opacity: 0.45;
  line-height: 1;
  pointer-events: none;
}
.quote__inner {
  position: relative;
  z-index: 2;
}
.quote__text {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin: 32px 0 32px;
  color: var(--cream);
  font-variation-settings:
    "SOFT" 50,
    "opsz" 80;
}
.quote__text em {
  color: var(--sage-light);
  font-style: italic;
}
.quote__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.quote__author {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
}
.quote__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid rgba(184, 201, 184, 0.35);
  border-radius: 999px;
  font-size: 13px;
  color: var(--sage-light);
}
.quote__stars {
  letter-spacing: 0.05em;
  color: #d6c990;
}
@media (max-width: 700px) {
  .quote__mark {
    font-size: 120px;
    top: 24px;
    left: 20px;
  }
}

/* ════════════════════════════════════════
   11 · CTA / FORMULAIRE
════════════════════════════════════════ */
.cta {
  background: var(--cream);
  padding: var(--pad-section) 0;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.cta__left h2 {
  max-width: 14ch;
  margin-bottom: 20px;
}
.cta__left p {
  color: rgba(31, 31, 31, 0.7);
  margin-bottom: 32px;
  max-width: 38ch;
}
.cta__coords {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.9;
}
.cta__coords a {
  color: inherit;
}
.cta__coords a:hover {
  color: var(--forest);
}

.form {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 36px 36px 32px;
  border: 1px solid var(--line);
}
.form__progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.6);
  margin-bottom: 12px;
}
.form__bar {
  height: 2px;
  width: 100%;
  background: rgba(31, 31, 31, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 32px;
}
.form__bar-fill {
  height: 100%;
  width: 33%;
  background: var(--forest);
  border-radius: 2px;
  transition: width 0.6s var(--ease);
}
.form__question {
  font-family: "Fraunces", serif;
  font-size: 28px;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.form__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.form__opt {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: left;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form__opt:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.form__opt.active {
  border-color: var(--forest);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form__opt-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 12px;
  color: var(--sage);
}
.form__opt-label {
  font-family: "Fraunces", serif;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--charcoal);
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form__field label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(31, 31, 31, 0.6);
}
.form__field input,
.form__field textarea {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  color: var(--charcoal);
  transition: border-color 0.3s var(--ease);
}
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--forest);
}
.form__field input.invalid,
.form__field textarea.invalid {
  border-color: var(--terracotta);
}
.form__error {
  font-size: 12px;
  color: var(--terracotta);
  margin-top: -4px;
}
.form__field textarea {
  resize: vertical;
  min-height: 100px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.form__hint {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(31, 31, 31, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}
.form__hint--error {
  color: var(--terracotta);
}
.form__hint::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.form__back {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: rgba(31, 31, 31, 0.6);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.form__back:hover {
  color: var(--forest);
}
.form__step {
  display: none;
}
.form__step.active {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form__success {
  text-align: center;
  padding: 24px 8px;
}
.form__success h3 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  margin-bottom: 12px;
}
.form__success p {
  color: rgba(31, 31, 31, 0.7);
  max-width: 36ch;
  margin: 0 auto;
}
.form__success .check {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 24px;
}
.form__submit-error {
  font-size: 13px;
  color: var(--terracotta);
  margin: 0 0 12px;
}
.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width: 1000px) {
  .cta__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form__options {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .form__options {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .form {
    padding: 28px 22px;
  }
}

/* ════════════════════════════════════════
   12 · FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(184, 201, 184, 0.18);
}
.footer__brand .brand__mono {
  background: var(--cream);
  color: var(--forest-deep);
}
.footer__brand .brand__word {
  color: var(--cream);
  font-size: 22px;
}
.footer__tag {
  margin-top: 18px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--sage-light);
  max-width: 28ch;
  line-height: 1.5;
}
.footer__col h5 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--sage-light);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col li {
  color: var(--cream);
  font-size: 14px;
  opacity: 0.85;
}
.footer__col a {
  color: var(--cream);
  font-size: 14px;
  opacity: 0.85;
  transition:
    opacity 0.3s,
    color 0.3s;
}
.footer__col a:hover {
  opacity: 1;
  color: var(--sage-light);
}
.footer__legal {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 247, 242, 0.5);
}
.footer__legal a {
  color: inherit;
  transition: color 0.3s;
}
.footer__legal a:hover {
  color: rgba(250, 247, 242, 0.9);
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   13 · PAGES LÉGALES (Mentions & RGPD)
════════════════════════════════════════ */
.legal-section {
  background: var(--cream);
  padding: 140px 0 80px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section h1 {
  margin-bottom: 56px;
}

.legal-section h2 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  margin: 48px 0 20px;
  color: var(--forest-deep);
}

.legal-section h3 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  margin: 32px 0 16px;
  color: var(--charcoal);
}

.legal-section p,
.legal-section ul {
  font-size: 16px;
  color: rgba(31, 31, 31, 0.8);
  margin-bottom: 16px;
  line-height: 1.6;
}

.legal-section ul {
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(45, 74, 62, 0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s var(--ease);
}

.legal-section a:hover {
  text-decoration-color: var(--forest);
}
/* Pour aligner le logo et le texte à l'intérieur du lien brand */
.brand {
  display: flex;
  align-items: center; /* Aligne verticalement l'image et le texte */
  gap: 10px; /* Espace entre le logo et le texte (à ajuster) */
  text-decoration: none; /* Enlève le soulignement si présent */
}

/* Taille de votre logo */
.brand__logo {
  height: 40px; /* Ajustez la hauteur selon votre logo */
  width: auto;
}

/* Le conteneur principal de la nav */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ════════════════════════════════════════
   MOBILE — Hamburger (≤ 900px seulement)
════════════════════════════════════════ */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition:
    transform 0.4s var(--ease),
    opacity 0.3s var(--ease);
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav__burger {
    display: flex;
  }
  .nav__inner > .btn {
    display: none;
  }
  .nav__inner {
    padding: 0 20px;
  }
}

/* ════════════════════════════════════════
   MOBILE — Overlay nav
════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 49;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s var(--ease);
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
body.nav-open {
  overflow: hidden;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.mobile-nav__link {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 144;
  font-size: clamp(28px, 7vw, 52px);
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
  transform: translateY(14px);
  transition:
    color 0.3s var(--ease),
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--forest);
  outline: none;
}
.mobile-nav__cta {
  margin-top: 8px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.mobile-nav.open .mobile-nav__link:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.mobile-nav.open .mobile-nav__link:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.mobile-nav.open .mobile-nav__link:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.mobile-nav.open .mobile-nav__link:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.mobile-nav.open .mobile-nav__cta { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.mobile-nav__coords {
  margin-top: 36px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-align: center;
  color: rgba(31, 31, 31, 0.45);
  line-height: 2;
  letter-spacing: 0.05em;
}
.mobile-nav__coords a {
  color: inherit;
  transition: color 0.3s;
}
.mobile-nav__coords a:hover {
  color: var(--forest);
}

/* ════════════════════════════════════════
   MOBILE — Touch: toujours afficher les
   éléments masqués au hover
════════════════════════════════════════ */
@media (hover: none), (pointer: coarse) {
  .showcase__cap {
    transform: translateY(0);
    opacity: 1;
  }
  .showcase__tile::after {
    background: rgba(31, 52, 41, 0.3);
  }
  .service-card__desc {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
  }
}

/* ════════════════════════════════════════
   MOBILE — Layout ≤ 600px
════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Réalisations → 1 colonne */
  .showcase {
    padding: 72px 0;
  }
  .showcase__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .tile--big {
    grid-column: span 1;
    grid-row: span 1;
  }
  .showcase__tile .ph {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  /* Méthode → 1 colonne */
  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Crédit d'impôt → padding réduit */
  .tax__card {
    padding: 40px 24px;
  }
  .tax__watermark {
    font-size: 160px;
    right: -20px;
    bottom: -60px;
  }
}

/* ════════════════════════════════════════
   MOBILE — Layout ≤ 480px
════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero title plus petit sur très petits écrans */
  .display-xl {
    font-size: clamp(36px, 10vw, 88px);
  }
  .hero__intro {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero {
    min-height: max(600px, 100dvh);
  }

  /* Topbar : masquer le slogan, centrer le contact */
  .topbar__tag {
    display: none;
  }
  .topbar__inner {
    justify-content: center;
    padding: 0 20px;
  }

  /* Quote : moins de padding vertical */
  .quote {
    padding: 80px 0;
  }
}
