:root {
  --ink: #141917;
  --paper: #eef1ec;
  --paper-deep: #e1e6df;
  --white: #ffffff;
  --forest: #141917; /* charbon — aligné sur --ink, plus d'aplat coloré */
  --teal: #38c5c2;
  --timber: #bd7043;
  --line: rgba(20, 25, 23, 0.18);
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --page: min(1440px, calc(100vw - 64px));
  --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 90px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a, button, input, select, textarea { touch-action: manipulation; -webkit-tap-highlight-color: rgba(56, 197, 194, .22); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, height .25s ease;
}

/* Fond du header sur un pseudo-élément : un backdrop-filter posé sur
   .site-header ferait de lui le containing block de la nav mobile en
   position fixed, ce qui casse son plein écran. */
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(238, 241, 236, 0.92);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.site-header.scrolled {
  height: 70px;
  border-color: var(--line);
}

.site-header.scrolled::before { opacity: 1; }

.site-header:not(.scrolled) { color: var(--white); }

/* Signature horizontale : le logo officiel reste intact, tandis que le nom
   devient lisible sans agrandir le cartouche jusqu'à l'effet « autocollant ». */
.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  width: fit-content;
  min-height: 64px;
  padding: 6px 16px 6px 7px;
  background: var(--white);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  transition: height .25s ease;
}

.site-header.scrolled .brand-logo { height: 44px; }

.brand-copy {
  display: grid;
  gap: 3px;
  color: var(--ink);
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-copy small {
  color: #69716d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(22px, 3vw, 52px);
  justify-self: center;
}

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-call {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.header-call svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.menu-toggle { display: none; }
.nav-contact { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: clamp(720px, 86svh, 880px);
  align-items: center;
  padding: calc(var(--header-height) + 36px) 32px 52px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7,12,10,1) 0%, rgba(7,12,10,.97) 43%, rgba(7,12,10,.56) 59%, rgba(7,12,10,.08) 82%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  content: "";
  background: linear-gradient(transparent, rgba(7,12,10,.28));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(720px, 54vw);
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: 0 clamp(20px, 4vw, 64px) 0 2vw;
}
.hero-copy .eyebrow { color: var(--teal); }

.eyebrow {
  margin: 0 0 22px;
  color: #6b6560;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.detail-copy h2,
.review-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 82%;
  letter-spacing: -.045em;
  line-height: .96;
  text-wrap: balance;
}

.hero h1 { max-width: 760px; font-size: clamp(54px, 5.4vw, 92px); }
.hero-lead { max-width: 600px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: clamp(17px, 1.25vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; gap: 32px; align-items: center; margin-top: 30px; }
.hero .button-primary { color: var(--ink); background: var(--teal); box-shadow: inset 4px 0 var(--white); }
.hero .button-primary:hover { background: #6bd8d5; }
.hero .text-link { color: var(--white); }
.hero .google-proof { margin-top: 36px; }

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: transform .2s ease, background-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--forest); box-shadow: inset 4px 0 var(--teal); }
.button-primary:hover { background: #000; }
.button-light { color: var(--ink); background: var(--white); box-shadow: inset 4px 0 var(--teal); }

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span { color: var(--teal); font-size: 22px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.google-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  align-items: center;
  width: fit-content;
  margin-top: 52px;
  color: inherit;
  text-decoration: none;
}

.google-proof .stars { grid-row: 1 / span 2; }
.google-proof span:not(.stars) { font-size: 13px; }
.google-proof small { color: #5c635f; font-size: 11px; }
.hero .google-proof small { color: rgba(255,255,255,.62); }
.stars { color: var(--timber); letter-spacing: .08em; }

.hero-visual {
  position: absolute;
  top: calc(var(--header-height) + 22px);
  right: 0;
  bottom: 42px;
  width: min(52vw, 880px);
  min-height: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%);
  background: var(--ink);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 34%, rgba(0,0,0,.15));
  pointer-events: none;
}

.hero-photo img { height: 100%; object-fit: cover; object-position: 50% 48%; animation: heroDrift 14s ease-in-out infinite alternate; }
.hero-photo figcaption { position: absolute; z-index: 2; right: 26px; bottom: 24px; padding: 8px 11px; color: var(--white); background: rgba(20,25,23,.78); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

@keyframes heroDrift { from { transform: scale(1.01); } to { transform: scale(1.055); } }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar p { margin: 0; padding: 24px 26px; border-right: 1px solid var(--line); }
.trust-bar p:last-child { border-right: 0; }
.trust-bar strong, .trust-bar span { display: block; }
.trust-bar strong { font-family: var(--display); font-size: 17px; letter-spacing: -.01em; }
.trust-bar span { margin-top: 4px; color: #626965; font-size: 11px; }

.section { width: var(--page); margin: 0 auto; padding: 150px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: end; margin-bottom: 86px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2 { font-size: clamp(46px, 5.5vw, 88px); }
.section-heading > p:last-child { max-width: 430px; margin: 0 0 8px; color: #59605d; }

.services-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(48px, 8vw, 130px); align-items: start; }
.services-photo { position: sticky; top: 110px; margin: 0; }
.services-photo img { aspect-ratio: .88; object-fit: cover; }
.services-photo figcaption { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 46px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-icon { display: grid; width: 38px; height: 38px; place-items: center; color: var(--ink); border: 1px solid var(--line); }
.service-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: square; }
.service-item h3 { margin: 0 0 10px; font-family: var(--display); font-size: clamp(24px, 2.4vw, 37px); font-weight: 650; letter-spacing: -.025em; line-height: 1.05; }
.service-item p { max-width: 650px; margin: 0; color: #59605d; }

.section-dark {
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1440px) / 2));
  padding-left: max(32px, calc((100vw - 1440px) / 2));
  color: var(--white);
  background: var(--ink);
}

.projects-heading .eyebrow { color: var(--teal); }
.projects-heading > p:last-child { color: #aeb6b2; }

.project-film {
  position: relative;
  margin: 0 0 14px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--white);
  background: #131916;
}

.project-film::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(7,12,10,.82));
  pointer-events: none;
}

.project-film-media { display: block; width: 100%; height: 100%; object-fit: cover; }
.project-film-caption { position: absolute; z-index: 2; bottom: 30px; left: 30px; display: grid; max-width: 620px; gap: 6px; }
.project-film-caption strong { font-family: var(--display); font-size: clamp(30px, 3.5vw, 52px); font-weight: 650; letter-spacing: -.035em; line-height: 1; }
.project-film-caption > span:last-child { color: rgba(255,255,255,.72); font-size: 13px; }
.project-film-kicker { color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.project-film-toggle { position: absolute; z-index: 3; top: 24px; right: 24px; display: grid; width: 58px; height: 58px; padding: 0; place-items: center; border: 0; color: var(--ink); background: var(--teal); font-size: 20px; cursor: pointer; clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%); transition: background-color .2s ease, transform .2s ease; }
.project-film-toggle:hover { background: #6bd8d5; transform: translateY(-2px); }

.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 230px; gap: 14px; }
.project { position: relative; grid-column: span 4; padding: 0; overflow: hidden; border: 0; background: #252b28; cursor: zoom-in; }
.project-wide { grid-column: span 8; }
.project-tall { grid-row: span 2; }
.project-square { grid-row: span 1; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.2,1), filter .35s ease; }
.project-pergola-piscine img { object-position: center 47%; }
.project span { position: absolute; right: 0; bottom: 0; left: 0; padding: 32px 18px 16px; color: var(--white); background: linear-gradient(transparent, rgba(0,0,0,.72)); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-align: left; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: .3s ease; }
.project:hover img, .project:focus-visible img { transform: scale(1.045); filter: saturate(1.08); }
.project:hover span, .project:focus-visible span { opacity: 1; transform: translateY(0); }

.comparison-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin: 150px 0 58px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.comparison-intro .eyebrow { color: var(--teal); }
.comparison-intro h3 { margin: 0; font-family: var(--display); font-size: clamp(44px, 5vw, 76px); font-weight: 650; letter-spacing: -.045em; line-height: .95; }
.comparison-intro h3 em { color: var(--teal); font-style: normal; }
.comparison-intro div > p { max-width: 590px; margin: 26px 0 0; color: #aeb6b2; }

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  grid-template-rows: repeat(2, minmax(330px, 1fr));
  gap: 14px;
}
.comparison-card { position: relative; min-height: 350px; overflow: hidden; background: #252b28; isolation: isolate; }
.comparison-card-featured { grid-row: 1 / 3; min-height: 720px; }
.comparison-media { position: absolute; inset: 0 0 66px; overflow: hidden; cursor: ew-resize; touch-action: pan-y; }
.comparison-before,
.comparison-after,
.comparison-after img { width: 100%; height: 100%; }
.comparison-before,
.comparison-after img { object-fit: cover; object-position: center; }
.comparison-card:not(.comparison-card-featured) .comparison-before,
.comparison-card:not(.comparison-card-featured) .comparison-after img { object-position: center 48%; }
.comparison-after { position: absolute; z-index: 1; inset: 0; overflow: hidden; clip-path: inset(0 0 0 var(--compare-position)); will-change: clip-path; }
.comparison-tag { position: absolute; z-index: 3; top: 18px; padding: 7px 10px; color: var(--white); border: 1px solid rgba(255,255,255,.28); background: rgba(10,14,12,.62); backdrop-filter: blur(8px); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; pointer-events: none; }
.comparison-tag-before { left: 18px; }
.comparison-tag-after { right: 18px; color: var(--ink); border-color: rgba(56,197,194,.55); background: var(--teal); }
.comparison-divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--compare-position); width: 2px; background: var(--white); box-shadow: 0 0 18px rgba(0,0,0,.45); transform: translateX(-1px); pointer-events: none; will-change: left; }
.comparison-divider::before { position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; content: ""; border: 2px solid var(--white); border-radius: 50%; background: var(--teal); box-shadow: 0 8px 24px rgba(0,0,0,.28); transform: translate(-50%, -50%); }
.comparison-divider i { position: absolute; z-index: 1; top: 50%; color: var(--ink); font-family: Arial, sans-serif; font-size: 22px; font-style: normal; line-height: 1; transform: translateY(-54%); }
.comparison-divider i:first-child { right: 5px; }
.comparison-divider i:last-child { left: 5px; }
.comparison-range { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.comparison-range:focus-visible { outline: 0; }
.comparison-card:focus-within .comparison-media { outline: 3px solid var(--teal); outline-offset: -3px; }
.comparison-caption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; min-height: 66px; justify-content: space-between; align-items: center; gap: 20px; padding: 12px 18px; border-top: 1px solid rgba(255,255,255,.14); background: #1d2320; }
.comparison-caption strong { font-family: var(--display); font-size: 17px; font-weight: 650; letter-spacing: -.015em; }
.comparison-caption span { color: #9fa8a4; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.comparison-after,
.comparison-divider { transition: clip-path .38s cubic-bezier(.2,.75,.2,1), left .38s cubic-bezier(.2,.75,.2,1); }
.comparison-card.is-active .comparison-after,
.comparison-card.is-active .comparison-divider { transition: none; }

/* Accueil — les réalisations sont regroupées comme un carnet de chantier,
   avec un intitulé clair avant chaque famille de projets. */
.projects-overview { display: grid; gap: 86px; margin-top: 78px; }
.project-chapter { display: grid; gap: 24px; }
.project-chapter-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.project-chapter-heading > span { color: var(--teal); font-family: var(--display); font-size: 13px; font-weight: 800; }
.project-chapter-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(30px, 3.4vw, 48px); font-weight: 650; letter-spacing: -.035em; line-height: 1; }
.project-chapter-heading p { margin: 7px 0 0; color: #9fa8a4; font-size: 12px; }
.project-grid-exteriors .project:nth-child(1) { grid-column: span 7; }
.project-grid-exteriors .project:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.project-grid-exteriors .project:nth-child(3) { grid-column: span 7; }
.project-grid-exteriors .project:nth-child(4) { grid-column: span 12; }
.project-grid-renovations .project:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.project-grid-renovations .project:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.project-grid-renovations .project:nth-child(3) { grid-column: span 12; }
.projects-discover { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-top: 72px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.projects-discover p { display: grid; gap: 4px; margin: 0; }
.projects-discover strong { font-family: var(--display); font-size: clamp(22px, 2.4vw, 34px); font-weight: 650; letter-spacing: -.025em; }
.projects-discover span { color: #9fa8a4; font-size: 12px; }

/* Page Réalisations — dossier visuel organisé par familles de chantiers. */
@view-transition { navigation: auto; }

.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.portfolio-hero {
  position: relative;
  display: flex;
  min-height: min(900px, 92svh);
  align-items: flex-end;
  padding: calc(var(--header-height) + 70px) max(32px, calc((100vw - 1440px) / 2)) 86px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}
.portfolio-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7,12,10,.98) 0%, rgba(7,12,10,.9) 38%, rgba(7,12,10,.28) 68%, rgba(7,12,10,.08) 100%);
  pointer-events: none;
}
.portfolio-hero-copy { position: relative; z-index: 2; width: min(690px, 49vw); }
.portfolio-hero-copy .eyebrow { color: var(--teal); }
.portfolio-hero h1 { max-width: 760px; margin: 22px 0 28px; font-family: var(--display); font-size: clamp(70px, 8.4vw, 138px); font-weight: 650; letter-spacing: -.065em; line-height: .82; }
.portfolio-hero h1 em { color: var(--teal); font-style: normal; }
.portfolio-hero-copy > p:last-child { max-width: 600px; margin: 0; color: #c5ceca; font-size: 17px; }
.portfolio-hero-gallery { position: absolute; z-index: 0; top: 112px; right: max(32px, calc((100vw - 1440px) / 2)); bottom: 86px; display: grid; grid-template-columns: 1.2fr .82fr .82fr; gap: 12px; width: min(760px, 54vw); transform: translateX(7%); }
.portfolio-hero-shot { position: relative; margin: 0; overflow: hidden; background: #27302c; }
.portfolio-hero-shot:nth-child(2) { margin-top: 88px; margin-bottom: 38px; }
.portfolio-hero-shot:nth-child(3) { margin-top: 28px; margin-bottom: 98px; }
.portfolio-hero-shot img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.04); }
.portfolio-hero-shot-main { clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%); }
.portfolio-hero-note { position: absolute; z-index: 2; right: max(32px, calc((100vw - 1440px) / 2)); bottom: 28px; margin: 0; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-align: right; text-transform: uppercase; }
.portfolio-hero-note span { color: #87928d; font-family: var(--body); font-size: 8px; letter-spacing: .09em; }

.portfolio-index { display: grid; grid-template-columns: repeat(4, 1fr); width: var(--page); margin: 0 auto; border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.portfolio-index a { display: flex; min-height: 96px; gap: 16px; align-items: center; padding: 20px 24px; border-right: 1px solid var(--line); font-family: var(--display); font-size: 18px; font-weight: 650; letter-spacing: -.015em; text-decoration: none; transition: color .2s ease, background-color .2s ease; }
.portfolio-index a:last-child { border-right: 0; }
.portfolio-index a:hover { color: var(--white); background: var(--ink); }
.portfolio-index span { color: var(--timber); font-family: var(--body); font-size: 9px; font-weight: 800; letter-spacing: .1em; }

.portfolio-section { scroll-margin-top: 70px; }
.portfolio-section-heading { display: grid; grid-template-columns: .78fr 1.55fr; gap: 56px; align-items: start; margin-bottom: 66px; padding-top: 24px; border-top: 1px solid var(--line); }
.portfolio-section-heading .eyebrow { margin-top: 8px; }
.portfolio-section-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(54px, 6.2vw, 96px); font-weight: 650; letter-spacing: -.055em; line-height: .9; }
.portfolio-section-heading div > p { max-width: 660px; margin: 28px 0 0; color: #59605d; }
.project-film-portfolio { margin: 0; }
.video-case { margin-top: 140px; }
.video-case-heading { display: grid; grid-template-columns: .78fr 1.55fr; gap: 56px; margin-bottom: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.video-case-heading .eyebrow { margin-top: 8px; }
.video-case-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(44px, 5.2vw, 78px); font-weight: 650; letter-spacing: -.05em; line-height: .92; }
.video-case-heading div > p { max-width: 660px; margin: 26px 0 0; color: #59605d; }
.video-case-main { margin-bottom: 14px; }
.video-process-grid { display: grid; grid-template-columns: 1fr 1fr .92fr; gap: 14px; align-items: stretch; }
.project-film-portrait { height: auto; margin: 0; aspect-ratio: 9 / 16; }
.project-film-portrait .project-film-caption { right: 20px; bottom: 22px; left: 20px; }
.project-film-portrait .project-film-caption strong { font-size: clamp(24px, 2.6vw, 38px); }
.video-process-note { display: flex; min-height: 100%; flex-direction: column; justify-content: space-between; padding: clamp(28px, 4vw, 54px); color: var(--white); background: var(--ink); }
.video-process-note > span { color: var(--teal); font-family: var(--display); font-size: clamp(24px, 3vw, 42px); font-weight: 650; letter-spacing: -.03em; line-height: 1.08; }
.video-process-note .eyebrow { color: var(--teal); }
.video-process-note h4 { margin: 15px 0 20px; font-family: var(--display); font-size: clamp(28px, 3.1vw, 46px); font-weight: 650; letter-spacing: -.035em; line-height: .98; }
.video-process-note div > p:last-child { margin: 0; color: #aeb6b2; font-size: 13px; }

.portfolio-section-dark { width: 100%; padding: 150px max(32px, calc((100vw - 1440px) / 2)); color: var(--white); background: var(--ink); }
.portfolio-section-inner { width: 100%; max-width: 1440px; margin: 0 auto; }
.portfolio-section-dark .portfolio-section-heading { border-color: rgba(255,255,255,.2); }
.portfolio-section-dark .portfolio-section-heading .eyebrow { color: var(--teal); }
.portfolio-section-dark .portfolio-section-heading div > p { color: #aeb6b2; }

.portfolio-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-flow: dense; grid-auto-rows: clamp(270px, 28vw, 390px); gap: 14px; }
.portfolio-project { position: relative; grid-column: span 1; grid-row: span 1; min-height: 0; padding: 0; overflow: hidden; border: 0; color: var(--white); background: #252b28; cursor: zoom-in; }
.portfolio-project-hero { grid-row: span 2; }
.portfolio-project-landscape,
.portfolio-project-wide { grid-column: span 2; }
.portfolio-gallery-exteriors .portfolio-project:nth-child(7) { grid-column: span 3; }
.portfolio-gallery-interiors .portfolio-project:nth-child(5) { grid-column: span 3; }
.portfolio-project img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.2,1), filter .35s ease; }
.portfolio-project::after { position: absolute; inset: 38% 0 0; content: ""; background: linear-gradient(transparent, rgba(4,7,6,.82)); pointer-events: none; }
.portfolio-project > span { position: absolute; z-index: 1; right: 22px; bottom: 20px; left: 22px; display: flex; justify-content: space-between; align-items: end; gap: 24px; text-align: left; }
.portfolio-project strong { font-family: var(--display); font-size: clamp(20px, 2vw, 30px); font-weight: 650; letter-spacing: -.025em; line-height: 1; }
.portfolio-project small { color: #c3ccc8; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.portfolio-project:hover img,
.portfolio-project:focus-visible img { filter: saturate(1.08); transform: scale(1.035); }

.portfolio-transformations { padding-top: 130px; }
.portfolio-transformations .comparison-intro { margin-top: 0; }
.portfolio-transformations .comparison-intro h2 { margin: 0; font-family: var(--display); font-size: clamp(44px, 5vw, 76px); font-weight: 650; letter-spacing: -.045em; line-height: .95; }
.portfolio-transformations .comparison-intro h2 em { color: var(--teal); font-style: normal; }

.portfolio-contact { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(70px, 12vw, 180px); width: var(--page); margin: 0 auto; padding: 130px 0; }
.portfolio-contact h2 { max-width: 850px; margin: 12px 0 0; font-family: var(--display); font-size: clamp(54px, 7vw, 106px); font-weight: 650; letter-spacing: -.06em; line-height: .88; }
.portfolio-contact > div:last-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.portfolio-contact > div:last-child p { max-width: 470px; margin: 0 0 30px; color: #59605d; }
.portfolio-phone { margin-top: 18px; font-family: var(--display); font-size: 24px; font-weight: 700; text-underline-offset: 5px; }

.detail-section { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(70px, 12vw, 180px); align-items: center; }
.detail-copy h2 { max-width: 760px; font-size: clamp(46px, 5.8vw, 90px); }
.detail-copy > p:not(.eyebrow) { max-width: 600px; margin: 38px 0 28px; color: #59605d; font-size: 18px; }
.detail-photo { position: relative; margin: 0; }
.detail-photo::before { position: absolute; z-index: -1; top: -24px; right: -24px; width: 58%; height: 70%; content: ""; border: 1px solid var(--teal); }
.detail-photo img { aspect-ratio: .78; object-fit: cover; }
.material-key { position: absolute; right: -30px; bottom: 20px; display: flex; flex-direction: column; gap: 1px; }
.material-key span { padding: 7px 11px; color: var(--white); background: var(--forest); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.process { border-top: 1px solid var(--line); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 300px; padding: 24px 28px 32px; border-right: 1px solid var(--line); }
.process-list li:last-child { border-right: 0; }
.process-list li > span { color: var(--timber); font-family: var(--display); font-size: 13px; font-weight: 800; }
.process-list li div { margin-top: 120px; }
.process-list h3 { margin: 0 0 9px; font-family: var(--display); font-size: 28px; letter-spacing: -.02em; }
.process-list p { margin: 0; color: #626965; font-size: 14px; }

.review-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 520px;
  color: var(--white);
  background: var(--forest);
}

.review-score, .review-copy { display: flex; justify-content: center; padding: 80px max(32px, 7vw); }
.review-score { gap: 28px; align-items: center; border-right: 1px solid rgba(255,255,255,.18); }
.review-score .score { font-family: var(--display); font-size: clamp(110px, 14vw, 210px); font-weight: 750; letter-spacing: -.09em; line-height: .8; }
.review-score p { margin: 7px 0 0; color: #cbd8d3; font-size: 13px; }
.review-copy { flex-direction: column; align-items: flex-start; }
.review-copy .eyebrow { color: var(--teal); }
.review-copy h2 { font-size: clamp(44px, 5vw, 80px); }
.review-copy .button { margin-top: 38px; }

.contact { display: grid; grid-template-columns: 1fr .88fr; gap: clamp(70px, 12vw, 180px); }
.contact h2 { font-size: clamp(54px, 6vw, 96px); }
.contact-intro > p:not(.eyebrow) { max-width: 590px; margin: 32px 0 48px; color: #59605d; font-size: 18px; }
.contact-direct { border-top: 1px solid var(--line); }
.contact-direct a { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-direct small { color: #68706c; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-direct strong { font-family: var(--display); font-size: 18px; font-weight: 650; line-height: 1.35; }
.contact-direct a:hover strong { text-decoration: underline; text-decoration-color: var(--teal); text-underline-offset: 4px; }
.contact-socials { margin-top: 30px; }
.contact-socials > p { margin: 0 0 12px; color: #68706c; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; }
.social-link { display: inline-flex; min-width: 190px; gap: 12px; align-items: center; padding: 13px 16px; border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,.5); text-decoration: none; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.social-link:hover { border-color: var(--teal); background: var(--white); transform: translateY(-2px); }
.social-logo { width: 24px; height: 24px; flex: 0 0 auto; object-fit: contain; }
.social-link span { display: grid; gap: 1px; }
.social-link small { color: #68706c; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.social-link strong { font-family: var(--display); font-size: 16px; font-weight: 650; }

.quote-form { padding: clamp(28px, 4vw, 56px); color: var(--white); background: var(--ink); }
.field { margin-bottom: 24px; }
.field-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.field label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; }
.field label span { color: #9ba39f; font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 13px 0; color: var(--white); border: 0; border-bottom: 1px solid rgba(255,255,255,.34); border-radius: 0; outline: 0; background: transparent; }
.field select { color-scheme: dark; background-color: var(--ink); }
.field select option { color: var(--white); background-color: var(--ink); }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7e8783; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 1px var(--teal); }
.field > small { display: block; margin-top: 6px; color: #8f9894; font-size: 10px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-submit:disabled { opacity: .68; cursor: wait; transform: none; }
.form-note { margin: 16px 0 0; color: #959e9a; font-size: 12px; line-height: 1.6; }
.form-note a { color: #c9d0cd; text-underline-offset: 3px; }
.form-status { min-height: 1.5em; margin: 10px 0 0; color: var(--teal); font-size: 12px; }
.form-status a { color: inherit; font-weight: 700; text-underline-offset: 3px; }
.form-status.is-error { color: #f0b429; }
.form-fallback { margin: 14px 0 0; padding: 20px; border-left: 4px solid var(--teal); background: rgba(255,255,255,.06); }
.form-fallback:focus { outline: none; }
.form-fallback p { margin: 0 0 16px; color: #c9d0cd; font-size: 14px; line-height: 1.55; }
.form-fallback p strong { color: var(--white); }
.form-fallback-actions { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; }
.fallback-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--teal); font-size: 13px; font-weight: 700; text-underline-offset: 4px; }
.fallback-link:hover { color: var(--white); }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 54px 32px 110px;
  color: #c2cac6;
  background: var(--ink);
  font-size: 12px;
}

.brand-footer { padding: 8px 16px 8px 8px; }
.brand-footer .brand-logo { height: 58px; }
.site-footer p { margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 4px; }
.footer-links a:hover { color: var(--white); }
.footer-social-link { display: inline-flex; gap: 8px; align-items: center; }
.footer-social-link .social-logo { width: 18px; height: 18px; }
.copyright { white-space: nowrap; }
.mobile-call { display: none; }

.lightbox {
  width: min(1000px, calc(100vw - 40px));
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--white);
  background: var(--ink);
  overscroll-behavior: contain;
}

.lightbox::backdrop { background: rgba(8,11,10,.88); backdrop-filter: blur(8px); }
.lightbox img { max-height: 78vh; object-fit: contain; background: #0c0f0e; }
.lightbox p { margin: 0; padding: 15px 18px; font-size: 12px; }
.lightbox-close { position: absolute; z-index: 2; top: -18px; right: -18px; display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; color: var(--ink); background: var(--teal); font-size: 28px; cursor: pointer; }

.legal-main { width: min(900px, calc(100vw - 48px)); min-height: 75vh; margin: 0 auto; padding: 160px 0 100px; }
.legal-main h1 { margin: 0 0 48px; font-family: var(--display); font-size: clamp(50px, 7vw, 92px); letter-spacing: -.05em; line-height: .95; }
.legal-main h2 { margin-top: 42px; font-family: var(--display); font-size: 28px; }
.legal-main p, .legal-main li { color: #4f5753; }
.legal-main a { text-underline-offset: 3px; }
.legal-note { padding: 18px 20px; border-left: 4px solid var(--timber); background: var(--paper-deep); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 48px); }
  .site-nav { gap: 24px; }
  .hero { padding-right: 24px; padding-left: 24px; }
  .hero-copy { width: min(720px, 66vw); padding-left: 0; }
  .hero h1 { font-size: clamp(52px, 7.6vw, 76px); }
  .section-heading { grid-template-columns: .6fr 1.5fr 1fr; }
  .process-list li { padding-right: 18px; padding-left: 18px; }
  .contact { gap: 70px; }
  .portfolio-hero-copy { width: min(620px, 54vw); }
  .portfolio-hero-gallery { width: 58vw; transform: translateX(11%); }
  .portfolio-index a { padding-right: 16px; padding-left: 16px; font-size: 16px; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; --page: calc(100vw - 36px); }
  .site-header { height: var(--header-height); padding: 0 18px; }
  .header-call { display: none; }
  .menu-toggle { position: relative; z-index: 102; display: block; justify-self: end; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { position: absolute; left: 9px; width: 26px; height: 2px; background: currentColor; transition: transform .25s ease, top .25s ease; }
  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:nth-child(2) { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
  /* justify-self/align-self hérités de la grille du header rétrécissent
     et recentrent l'élément fixe : on les neutralise pour couvrir l'écran. */
  .site-nav { position: fixed; z-index: 101; inset: 0; justify-self: stretch; align-self: stretch; width: 100%; height: 100%; display: flex; flex-direction: column; gap: 14px; justify-content: center; align-items: flex-start; padding: calc(var(--header-height) + 10px) 34px max(34px, env(safe-area-inset-bottom)); color: var(--white); background: var(--forest); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .25s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-family: var(--display); font-size: clamp(36px, 11vw, 54px); letter-spacing: -.03em; line-height: 1.08; }
  .nav-contact { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; margin-top: clamp(26px, 6vh, 48px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.22); align-self: stretch; }
  .nav-contact .button-primary { color: var(--ink); background: var(--teal); box-shadow: inset 4px 0 var(--white); }
  .site-nav .nav-contact a { font-family: var(--body); font-size: 13px; letter-spacing: .02em; }
  .site-nav .nav-phone { display: grid; gap: 2px; text-decoration: none; }
  .site-nav .nav-phone small { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .site-nav .nav-phone strong { font-family: var(--display); font-size: 24px; font-weight: 650; letter-spacing: -.01em; }
  .brand { gap: 8px; min-height: 58px; padding: 5px 12px 5px 6px; }
  .brand-logo, .site-header.scrolled .brand-logo { height: 42px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { max-width: 110px; font-size: 7px; }
  .menu-open .site-header { color: var(--white); }
  .menu-open .site-header::before { opacity: 0; }
  .menu-open .brand, .menu-open .menu-toggle { z-index: 103; }
  .menu-open .mobile-call { opacity: 0; pointer-events: none; }

  .hero { min-height: 780px; align-items: flex-end; padding: calc(var(--header-height) + 80px) 18px 54px; }
  .hero::before { background: linear-gradient(180deg, rgba(7,12,10,.18) 0%, rgba(7,12,10,.34) 35%, rgba(7,12,10,.91) 80%, rgba(7,12,10,.96) 100%); }
  .hero-copy { width: 100%; max-width: 680px; padding: 0; }
  .hero-visual { inset: 0; width: auto; }
  .hero-photo { clip-path: none; }
  .hero h1 { font-size: clamp(54px, 15vw, 82px); }
  .hero-lead { margin-top: 26px; font-size: 17px; }
  .hero-actions { gap: 22px; margin-top: 30px; }
  .google-proof { margin-top: 34px; }
  .hero-photo img { object-position: 50% 46%; }
  .hero-photo figcaption { display: none; }

  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-bar p { padding: 19px 16px; }
  .trust-bar p:nth-child(2) { border-right: 0; }
  .trust-bar p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .section { padding: 100px 0; }
  .section-heading { display: block; margin-bottom: 54px; }
  .section-heading h2 { font-size: clamp(48px, 13vw, 72px); }
  .section-heading > p:last-child { margin-top: 26px; }
  .services-layout { display: block; }
  .services-photo { position: relative; top: auto; margin-bottom: 50px; }
  .services-photo img { aspect-ratio: 1; }
  .service-item { grid-template-columns: 40px 1fr; gap: 16px; }

  .section-dark { padding-right: 18px; padding-left: 18px; }
  .project-film-caption { bottom: 18px; left: 18px; }
  .project-film-caption strong { font-size: clamp(25px, 7vw, 38px); }
  .project-film-caption > span:last-child { display: none; }
  .project-film-toggle { top: 14px; right: 14px; width: 48px; height: 48px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .project, .project-wide { grid-column: span 1; }
  .project-wide:first-child { grid-column: 1 / -1; }
  .project-tall { grid-row: span 2; }
  .project span { opacity: 1; transform: none; }
  .projects-overview { gap: 64px; margin-top: 62px; }
  .project-chapter-heading { grid-template-columns: 50px 1fr; }
  .project-grid-exteriors .project:nth-child(n),
  .project-grid-renovations .project:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .project-grid-exteriors .project:first-child,
  .project-grid-renovations .project:first-child { grid-column: 1 / -1; }
  .projects-discover { align-items: flex-start; flex-direction: column; }

  .portfolio-hero { min-height: 780px; padding: calc(var(--header-height) + 70px) 18px 58px; }
  .portfolio-hero::before { background: linear-gradient(180deg, rgba(7,12,10,.2) 0%, rgba(7,12,10,.34) 38%, rgba(7,12,10,.94) 78%, rgba(7,12,10,1) 100%); }
  .portfolio-hero-copy { width: 100%; max-width: 700px; }
  .portfolio-hero h1 { font-size: clamp(64px, 17vw, 104px); }
  .portfolio-hero-gallery { top: 0; right: 0; bottom: 0; width: 100%; transform: none; opacity: .76; }
  .portfolio-hero-shot:nth-child(2) { margin-top: 72px; margin-bottom: 120px; }
  .portfolio-hero-shot:nth-child(3) { margin-top: 24px; margin-bottom: 168px; }
  .portfolio-hero-note { display: none; }
  .portfolio-index { grid-template-columns: 1fr 1fr; width: 100%; border-left: 0; border-right: 0; }
  .portfolio-index a { min-height: 78px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .portfolio-index a:nth-child(2) { border-right: 0; }
  .portfolio-section-heading { display: block; margin-bottom: 46px; }
  .portfolio-section-heading h2 { margin-top: 20px; font-size: clamp(48px, 13vw, 76px); }
  .portfolio-section-heading div > p { margin-top: 24px; }
  .video-case { margin-top: 100px; }
  .video-case-heading { display: block; margin-bottom: 38px; }
  .video-case-heading h3 { margin-top: 20px; font-size: clamp(42px, 11vw, 66px); }
  .video-process-grid { grid-template-columns: 1fr 1fr; }
  .video-process-note { grid-column: 1 / -1; min-height: 430px; }
  .portfolio-section-dark { padding: 100px 18px; }
  .portfolio-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .portfolio-gallery.portfolio-gallery-exteriors .portfolio-project,
  .portfolio-gallery.portfolio-gallery-interiors .portfolio-project { grid-column: span 1; grid-row: span 1; }
  .portfolio-gallery.portfolio-gallery-exteriors .portfolio-project:first-child,
  .portfolio-gallery.portfolio-gallery-interiors .portfolio-project:first-child,
  .portfolio-gallery.portfolio-gallery-exteriors .portfolio-project:nth-child(7),
  .portfolio-gallery.portfolio-gallery-interiors .portfolio-project:nth-child(5) { grid-column: 1 / -1; }
  .portfolio-transformations { padding-top: 100px; }
  .portfolio-contact { display: block; padding: 100px 0; }
  .portfolio-contact > div:last-child { margin-top: 44px; }

  .comparison-intro { display: block; margin-top: 100px; }
  .comparison-intro h3 { margin-top: 22px; font-size: clamp(46px, 12vw, 68px); }
  .comparison-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .comparison-card,
  .comparison-card-featured { grid-row: auto; min-height: 540px; }
  .comparison-card-featured { min-height: 620px; }
  .comparison-caption { align-items: flex-start; flex-direction: column; gap: 2px; }
  .comparison-caption span { text-align: left; }

  .detail-section { display: flex; flex-direction: column; gap: 60px; }
  .detail-copy h2 { font-size: clamp(48px, 13vw, 74px); }
  .detail-photo { width: calc(100% - 20px); margin-right: 20px; }
  .material-key { right: -20px; }

  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-list li div { margin-top: 70px; }

  .review-section { grid-template-columns: 1fr; }
  .review-score { min-height: 340px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .review-copy { min-height: 400px; }

  .contact { display: block; }
  .quote-form { margin-top: 64px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 50px 20px 110px; }

  .mobile-call { position: fixed; z-index: 90; right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom)); left: max(12px, env(safe-area-inset-left)); display: flex; align-items: stretch; min-height: 58px; color: var(--white); background: var(--forest); box-shadow: inset 4px 0 var(--teal), 0 12px 40px rgba(0,0,0,.22); transition: opacity .25s ease, transform .3s ease; }
  .mobile-call a { display: flex; align-items: center; text-decoration: none; }
  .mobile-call-project { flex: 1; padding: 10px 16px; font-size: 11px; font-weight: 700; }
  .mobile-call-phone { padding: 10px 16px 10px 18px; border-left: 1px solid rgba(255,255,255,.24); font-family: var(--display); font-size: 15px; font-weight: 650; }
  .mobile-call.is-docked { opacity: 0; pointer-events: none; transform: translateY(16px); }
}

@media (max-width: 520px) {
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero { min-height: 740px; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar p { border-right: 0; border-bottom: 1px solid var(--line); }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .project-wide:first-child, .project { grid-column: span 1; }
  .project-tall { grid-row: span 1; }
  .project-grid-exteriors .project:nth-child(n),
  .project-grid-renovations .project:nth-child(n),
  .project-grid-exteriors .project:first-child,
  .project-grid-renovations .project:first-child { grid-column: span 1; }
  .projects-discover .button { width: 100%; text-align: center; }
  .portfolio-hero { min-height: 720px; }
  .portfolio-hero h1 { font-size: clamp(58px, 18vw, 86px); }
  .portfolio-hero-copy > p:last-child { font-size: 15px; }
  .portfolio-hero-gallery { grid-template-columns: 1.4fr .8fr; }
  .portfolio-hero-shot:nth-child(3) { display: none; }
  .portfolio-index { grid-template-columns: 1fr; }
  .portfolio-index a { min-height: 64px; border-right: 0; }
  .portfolio-gallery { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .portfolio-gallery.portfolio-gallery-exteriors .portfolio-project,
  .portfolio-gallery.portfolio-gallery-interiors .portfolio-project,
  .portfolio-gallery.portfolio-gallery-exteriors .portfolio-project:first-child,
  .portfolio-gallery.portfolio-gallery-interiors .portfolio-project:first-child,
  .portfolio-gallery.portfolio-gallery-exteriors .portfolio-project:nth-child(7),
  .portfolio-gallery.portfolio-gallery-interiors .portfolio-project:nth-child(5) { grid-column: span 1; }
  .portfolio-project > span { right: 16px; bottom: 16px; left: 16px; }
  .portfolio-project small { display: none; }
  .video-process-grid { grid-template-columns: 1fr; }
  .video-process-note { grid-column: span 1; min-height: 400px; }
  .comparison-card,
  .comparison-card-featured { min-height: 500px; }
  .comparison-media { bottom: 74px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li div { margin-top: 42px; }
  .review-score { gap: 18px; padding-right: 24px; padding-left: 24px; }
  .review-score .score { font-size: 112px; }
  .contact-direct a { grid-template-columns: 86px 1fr; gap: 12px; }
  .quote-form { padding: 28px 22px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .copyright { margin-top: 12px !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
