/* ============================================================
   2M Paysage — Site styles
   Built on /colors_and_type.css. All tokens live there.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--c-cream);
  color: var(--c-sapin);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   Shared utilities
   ============================================================ */

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14, 59, 38, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
}
.eyebrow--light { color: rgba(255, 250, 230, 0.75); }

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
  font-size: clamp(40px, 5.4vw, 88px);
  color: var(--c-sapin);
  margin: 18px 0 0;
  text-wrap: balance;
}
.section-title--light { color: var(--c-cream); }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  line-height: 1;
  padding: 16px 24px;
  border-radius: 999px;
  border: 2px solid var(--c-sapin);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  font-weight: 400;
}
.btn .ic { display: inline-flex; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .ic { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--c-sapin); color: var(--c-cream); }
.btn--primary:hover { background: var(--c-vert-fluo); color: var(--c-sapin); border-color: var(--c-vert-fluo); }

.btn--outline { background: transparent; color: var(--c-sapin); }
.btn--outline:hover { background: var(--c-sapin); color: var(--c-cream); }

.btn--cream {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-cream);
}
.btn--cream:hover { background: var(--c-cream); color: var(--c-sapin); }

.btn--cream-fill {
  background: var(--c-cream);
  color: var(--c-sapin);
  border-color: var(--c-cream);
}
.btn--cream-fill:hover { background: var(--c-vert-fluo); border-color: var(--c-vert-fluo); }

.btn--accent { background: var(--c-vert-fluo); color: var(--c-sapin); border-color: var(--c-vert-fluo); }
.btn--accent:hover { background: var(--c-sapin); color: var(--c-cream); border-color: var(--c-sapin); }

.btn--text {
  background: transparent;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  color: var(--c-sapin);
}
.btn--text .lbl {
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 4px;
}
.btn--text:hover { color: var(--c-orange); }

.btn--text-light { color: var(--c-cream); }
.btn--text-light:hover { color: var(--c-vert-fluo); }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  border-bottom: 1.5px solid transparent;
  color: var(--c-sapin);
}
/* On dark/video hero, header is cream-on-transparent until scrolled */
.site-header--inverse { color: var(--c-cream); }
.site-header--scrolled {
  background: var(--c-cream);
  border-bottom-color: rgba(14, 59, 38, 0.12);
  color: var(--c-sapin);
}
.site-header--inverse .site-header__logo .logo-dark { display: none; }
.site-header--inverse .site-header__logo .logo-cream { display: block; }
.site-header__logo .logo-cream { display: none; }
.site-header--scrolled .site-header__logo .logo-dark { display: block; }
.site-header--scrolled .site-header__logo .logo-cream { display: none; }

.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.site-header__logo { display: inline-flex; }
.site-header__logo img { height: 44px; width: auto; }

.site-nav {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.site-nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: inherit;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { border-bottom-color: currentColor; }

.site-header__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: inherit;
  cursor: pointer;
}

/* CTA button colors on inverse header */
.site-header--inverse:not(.site-header--scrolled) .btn--primary {
  background: var(--c-cream);
  color: var(--c-sapin);
  border-color: var(--c-cream);
}
.site-header--inverse:not(.site-header--scrolled) .btn--primary:hover {
  background: var(--c-vert-fluo);
  border-color: var(--c-vert-fluo);
}

/* ============================================================
   Video hero (homepage)
   ============================================================ */

.video-hero {
  position: relative;
  min-height: 720px;
  height: 100vh;
  max-height: 980px;
  background: var(--c-sapin);
  color: var(--c-cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-hero__media video,
.video-hero__media image-slot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* image-slot fallback inherits these sizes */
  --is-bg: #16291f;
  --is-fg: rgba(255, 250, 230, 0.6);
}
.video-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 59, 38, 0.65) 0%, rgba(14, 59, 38, 0.45) 40%, rgba(14, 59, 38, 0.88) 100%);
  pointer-events: none;
}

.video-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 48px 80px;
  display: flex;
  flex-direction: column;
}
.video-hero__inner > .eyebrow { margin-top: auto; }
.video-hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.005em;
  font-size: clamp(52px, 7.2vw, 132px);
  color: var(--c-cream);
  margin: 24px 0 36px;
  max-width: 14ch;
  text-wrap: balance;
}
.video-hero__title em {
  color: var(--c-vert-fluo);
  font-style: normal;
}
.video-hero__lead {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 250, 230, 0.88);
  max-width: 560px;
  margin: 0 0 40px;
}
.video-hero__cta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.video-hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 230, 0.7);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.video-hero__scroll svg {
  width: 16px;
  height: 28px;
  animation: floatY 2.2s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(6px); opacity: 0.6; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  border-top: 1.5px solid var(--c-sapin);
  border-bottom: 1.5px solid var(--c-sapin);
  padding: 18px 0;
  display: flex;
  gap: 36px;
  overflow: hidden;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  color: var(--c-sapin);
  white-space: nowrap;
  background: var(--c-cream);
}
.marquee__track {
  display: flex;
  gap: 36px;
  flex: 0 0 auto;
  animation: marquee 38s linear infinite;
  padding-right: 36px;
}
.marquee__track > span { flex: 0 0 auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ============================================================
   Vision / Manifesto section
   ============================================================ */
.vision { padding: 160px 0 140px; background: var(--c-cream); }
.vision__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.vision__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
  font-size: clamp(48px, 6vw, 104px);
  color: var(--c-sapin);
  margin: 24px 0 0;
  text-wrap: balance;
}
.vision__title em {
  color: var(--c-orange);
  font-style: normal;
}
.vision__col p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(14, 59, 38, 0.84);
  margin: 0 0 24px;
  max-width: 520px;
}
.vision__col p:last-child { margin-bottom: 0; }
.vision__manifesto {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--c-sapin);
  margin: 0 0 36px;
  max-width: 460px;
}
.vision__manifesto em {
  font-style: normal;
  color: var(--c-orange);
}

/* ============================================================
   Before / After comparator
   ============================================================ */
.before-after { padding: 160px 0; background: var(--c-rosy); }
.before-after__head {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.before-after__lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(14, 59, 38, 0.78);
  max-width: 480px;
  margin: 0;
}
.ba-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.ba-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--c-sapin);
}
.ba-item__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 0.01em;
  margin: 0;
}
.ba-item__place {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 59, 38, 0.6);
}

/* The actual comparator — draggable handle */
.ba-compare {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-sapin);
  border: 1.5px solid var(--c-sapin);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.ba-compare__after,
.ba-compare__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-compare__after > image-slot,
.ba-compare__before > image-slot {
  width: 100%;
  height: 100%;
}
.ba-compare__before {
  /* Clip from the left by default 50% */
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s; /* no transition during drag */
}
.ba-compare__tag {
  position: absolute;
  top: 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  padding: 8px 14px;
  background: var(--c-cream);
  color: var(--c-sapin);
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
}
.ba-compare__tag--before { left: 16px; }
.ba-compare__tag--after  { right: 16px; }

.ba-compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-cream);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(14, 59, 38, 0.4);
}
.ba-compare__handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--c-cream);
  border: 2px solid var(--c-sapin);
  transform: translate(-50%, -50%);
}
.ba-compare__handle::after {
  content: "‹  ›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--c-sapin);
  z-index: 1;
}

/* ============================================================
   Founder / "Qui suis-je" section
   ============================================================ */
.founder {
  background: var(--c-sapin);
  color: var(--c-cream);
  padding: 160px 0;
}
.founder__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: center;
}
.founder__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
}
.founder__portrait image-slot {
  width: 100%;
  height: 100%;
  --is-bg: #16291f;
  --is-fg: rgba(255, 250, 230, 0.6);
}
.founder__portrait::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  background: var(--c-vert-fluo);
  z-index: -1;
}

.founder__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  color: var(--c-cream);
  margin: 24px 0 36px;
  text-wrap: balance;
}
.founder__title em {
  color: var(--c-vert-fluo);
  font-style: normal;
}
.founder__lead {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--c-cream);
  margin: 0 0 24px;
  max-width: 560px;
}
.founder__lead--muted {
  color: rgba(255, 250, 230, 0.72);
  font-size: 17px;
}
.founder__signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1.5px solid rgba(255, 250, 230, 0.2);
}
.founder__signature .name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 0.01em;
}
.founder__signature .role {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 250, 230, 0.65);
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: var(--c-vert-fluo);
  color: var(--c-sapin);
  padding: 96px 0;
}
.cta-banner__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 64px;
  align-items: center;
}
.cta-banner__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 0.95;
  margin: 0;
  text-wrap: balance;
  max-width: 18ch;
}

/* ============================================================
   Generic page header (services / contact)
   ============================================================ */
.page-header {
  padding: 200px 0 120px;
  background: var(--c-cream);
}
.page-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.page-header__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(72px, 10vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  margin: 24px 0 0;
  color: var(--c-sapin);
  text-wrap: balance;
}
.page-header__title em {
  color: var(--c-orange);
  font-style: normal;
}
.page-header__lede {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(14, 59, 38, 0.78);
  margin: 0;
  max-width: 460px;
  align-self: end;
  padding-bottom: 24px;
}

/* ============================================================
   Services page — long-form service rows
   ============================================================ */
.service-row {
  padding: 120px 0;
  border-top: 1.5px solid var(--c-sapin);
}
.service-row:first-of-type { border-top: 0; }
.service-row__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
  align-items: start;
}
.service-row--reverse .service-row__inner {
  grid-template-columns: 1.1fr 0.9fr;
  direction: rtl; /* flip column order, content inside re-flipped */
}
.service-row--reverse .service-row__inner > * { direction: ltr; }

.service-row__no {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.service-row__no::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: var(--c-sapin);
  max-width: 140px;
}
.service-row__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(48px, 5vw, 84px);
  line-height: 0.92;
  margin: 0 0 36px;
  text-wrap: balance;
}
.service-row__title em {
  font-style: normal;
}
.service-row--01 .service-row__title em { color: var(--c-vert-fluo); -webkit-text-stroke: 1.5px var(--c-sapin); color: transparent; }
.service-row--02 .service-row__title em { color: var(--c-rose); }
.service-row--03 .service-row__title em { color: var(--c-orange); }
.service-row--04 .service-row__title em { color: var(--c-sapin); -webkit-text-stroke: 1.5px var(--c-sapin); color: transparent; }
.service-row--05 .service-row__title em { color: var(--c-vert-fluo); }

.service-row__lede {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
  color: var(--c-sapin);
  margin: 0 0 32px;
  max-width: 520px;
}
.service-row__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(14, 59, 38, 0.82);
  margin: 0 0 24px;
  max-width: 520px;
}
.service-row__list {
  columns: 2;
  column-gap: 32px;
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1.5px solid var(--c-sapin);
  max-width: 520px;
}
.service-row__list li {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--c-sapin);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
  margin-bottom: 12px;
  break-inside: avoid;
}
.service-row__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1.5px;
  background: currentColor;
}

/* Visual side */
.service-row__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.service-row__visual image-slot {
  width: 100%;
  height: 100%;
}
.service-row__visual .tag-floating {
  position: absolute;
  z-index: 2;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 22px;
  padding: 14px 22px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-sapin);
  color: var(--c-sapin);
}
.service-row--01 .tag-floating { right: -24px; top: 32px; background: var(--c-vert-fluo); border-color: var(--c-vert-fluo); }
.service-row--02 .tag-floating { left: -24px;  top: 56px; background: var(--c-rose); border-color: var(--c-rose); color: var(--c-cream); }
.service-row--03 .tag-floating { right: -24px; bottom: 56px; background: var(--c-orange); border-color: var(--c-orange); color: var(--c-cream); }
.service-row--04 .tag-floating { left: -24px;  top: 48px; background: var(--c-sapin); color: var(--c-cream); }
.service-row--05 .tag-floating { right: -24px; bottom: 56px; background: var(--c-vert-fluo); border-color: var(--c-vert-fluo); }

/* ============================================================
   Approach (3-step) — used on services page too
   ============================================================ */
.approach { padding: 160px 0; background: var(--c-rosy); }
.approach__head { max-width: 1320px; margin: 0 auto; padding: 0 48px 80px; }
.approach__grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.step__head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.step__n {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.step__rule { flex: 1; height: 1.5px; background: var(--c-sapin); }
.step__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 0.01em;
  line-height: 0.92;
  margin: 0 0 18px;
}
.step__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(14, 59, 38, 0.78);
  margin: 0;
  max-width: 340px;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-page {
  padding: 80px 0 140px;
  background: var(--c-cream);
}
.contact-page__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 96px;
  align-items: start;
}
.contact-info__lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(14, 59, 38, 0.82);
  margin: 28px 0 48px;
  max-width: 460px;
}
.contact-info__group { margin-bottom: 36px; }
.contact-info__label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14, 59, 38, 0.6);
  margin: 0 0 10px;
}
.contact-info__value {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--c-sapin);
}
.contact-info__value a { text-decoration: none; color: inherit; border-bottom: 1.5px solid transparent; transition: border-color var(--dur-fast) var(--ease-out); }
.contact-info__value a:hover { border-bottom-color: var(--c-sapin); }
.contact-info__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(14, 59, 38, 0.7);
  margin: 6px 0 0;
}

.contact-info__hours {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1.5px solid var(--c-sapin);
}
.contact-info__hours dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 32px;
  margin: 0;
}
.contact-info__hours dt {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-sapin);
}
.contact-info__hours dd {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(14, 59, 38, 0.7);
  margin: 0;
  text-align: right;
}

/* Form */
.contact-form {
  background: var(--c-rosy);
  border: 1.5px solid var(--c-sapin);
  padding: 56px 56px 64px;
}
.contact-form__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 40px;
  line-height: 0.95;
  margin: 0 0 8px;
}
.contact-form__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(14, 59, 38, 0.7);
  margin: 0 0 36px;
}

/* Type-of-request radio segmented control */
.req-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  border: 1.5px solid var(--c-sapin);
  border-radius: 999px;
  padding: 4px;
}
.req-type input { position: absolute; opacity: 0; pointer-events: none; }
.req-type label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  text-align: center;
  padding: 14px 12px;
  cursor: pointer;
  border-radius: 999px;
  color: var(--c-sapin);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.req-type input:checked + label {
  background: var(--c-sapin);
  color: var(--c-cream);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.field > label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14, 59, 38, 0.6);
}
.input, .select, .textarea {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--c-sapin);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--c-sapin);
  padding: 10px 0;
  outline: none;
  width: 100%;
  border-radius: 0;
}
.input::placeholder, .textarea::placeholder { color: rgba(14, 59, 38, 0.32); }
.input:focus, .select:focus, .textarea:focus { border-color: var(--c-orange); }
.textarea {
  background: var(--c-cream);
  border: 1.5px solid var(--c-sapin);
  padding: 16px 18px;
  resize: vertical;
  min-height: 140px;
}
.select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--c-sapin) 50%),
                    linear-gradient(135deg, var(--c-sapin) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 7px) center;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}

/* Service checkboxes group */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  border: 1.5px solid var(--c-sapin);
  border-radius: 999px;
  color: var(--c-sapin);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.chips input:checked + label {
  background: var(--c-sapin);
  color: var(--c-cream);
}
.chips label:hover { background: var(--c-sapin-08); }

.contact-form__submit {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.contact-form__small {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(14, 59, 38, 0.6);
}

/* Success view */
.contact-success { padding: 8px 0; display: none; }
.contact-success.is-on { display: block; }
.contact-form.is-sent { display: none; }
.contact-success__icon {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--c-vert-fluo);
  border: 1.5px solid var(--c-sapin);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.contact-success__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 56px;
  line-height: 0.95;
  margin: 0 0 16px;
}
.contact-success p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(14, 59, 38, 0.78);
  max-width: 460px;
  margin: 0 0 28px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--c-sapin);
  color: var(--c-cream);
  padding: 96px 0 32px;
}
.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 96px;
}
.footer__logo { height: 64px; width: auto; margin-bottom: 24px; }
.footer__brand p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 250, 230, 0.72);
  max-width: 360px;
  margin: 0 0 24px;
}
.footer__brand-tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-vert-fluo);
}
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__cols h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255, 250, 230, 0.55);
  margin: 0 0 18px;
}
.footer__cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer__cols li, .footer__cols a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-cream);
  text-decoration: none;
}
.footer__cols a:hover { color: var(--c-vert-fluo); }

.footer__base {
  max-width: 1320px;
  margin: 80px auto 0;
  padding: 28px 48px 0;
  border-top: 1px solid rgba(255, 250, 230, 0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 250, 230, 0.55);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .vision__inner,
  .before-after__head, .ba-grid,
  .founder__inner,
  .page-header__inner,
  .service-row__inner,
  .contact-page__inner,
  .cta-banner__inner,
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-row--reverse .service-row__inner { direction: ltr; grid-template-columns: 1fr; }
  .approach__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .container, .site-header__inner,
  .video-hero__inner,
  .vision__inner,
  .before-after__head, .ba-grid,
  .founder__inner,
  .page-header__inner,
  .service-row__inner,
  .contact-page__inner,
  .cta-banner__inner,
  .footer__inner, .footer__base {
    padding-left: 24px; padding-right: 24px;
  }
  .video-hero__scroll { display: none; }
  .video-hero__title { font-size: clamp(44px, 11vw, 80px); }
  .video-hero__lead { font-size: 17px; }
  .video-hero { min-height: 600px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--c-cream);
    color: var(--c-sapin);
    border-bottom: 1.5px solid rgba(14, 59, 38, 0.12);
    padding: 16px 24px 24px;
  }
  .site-nav--open { display: flex; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid rgba(14, 59, 38, 0.08); }
  .site-header__cta { display: none; }
  /* With nav + CTA hidden, drop to 2 columns so the burger sits hard right. */
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-header__burger { display: inline-flex; justify-self: end; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-form { padding: 32px 24px 40px; }
  .service-row__list { columns: 1; }
}

/* ============================================================
   Production override — real <img> elements fill the same
   containers the <image-slot> editor component used to.
   (Added when finalizing the prototype into a deployable site.)
   ============================================================ */
.service-row__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-compare__after > img,
.ba-compare__before > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Les photos ne doivent jamais capter le curseur : c'est le conteneur
     qui gère le glissement (sinon drag natif de l'image = curseur figé). */
  pointer-events: none;
  -webkit-user-drag: none;
}
.founder__portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
