:root {
  --primary: #16232e;
  --primary-deep: #07131c;
  --primary-hover: #223344;
  --background: #f8f7f3;
  --surface: #ffffff;
  --surface-secondary: #e7e4dd;
  --border: #d8d5ce;
  --border-strong: #9a958b;
  --text: #2b2f33;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --copper: #b8623b;
  --copper-dark: #944525;
  --accent: #c8a77a;
  --sage: #6f8374;
  --container: 1296px;
  --radius-s: 6px;
  --radius-m: 8px;
  --radius-l: 12px;
  --shadow-s: 0 12px 30px rgba(22, 35, 46, 0.08);
  --shadow-m: 0 20px 50px rgba(22, 35, 46, 0.14);
  --font-body: "Inter", system-ui, sans-serif;
  --font-ui: "Manrope", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 98, 59, 0.72);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(184, 98, 59, 0.18), transparent 34%),
    linear-gradient(120deg, var(--primary-deep), var(--primary));
  color: var(--text-light);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(280px, calc(100vw - 48px));
  animation: loaderRise 760ms ease both;
}

.loader-inner .brand-mark {
  width: 48px;
  height: 56px;
}

.loader-inner p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader-line {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--copper);
  transform-origin: left;
  animation: loaderLine 1200ms cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.site-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--background);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 88px;
  padding: 0 48px;
  background: linear-gradient(100deg, var(--primary-deep), var(--primary));
  color: var(--text-light);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-mark,
.cta-mark {
  width: 38px;
  height: 44px;
  border: 2px solid var(--copper);
  border-radius: 2px;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::after,
.cta-mark::after {
  content: "";
  position: absolute;
  inset: 6px 8px;
  border-right: 2px solid var(--copper);
  border-top: 2px solid var(--copper);
  transform: skewY(-18deg);
}

.brand-text {
  display: grid;
  line-height: 1.05;
  font-size: 18px;
}

.brand-text span {
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--accent);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-s);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(7, 19, 28, 0.18);
}

.btn-primary {
  background: var(--copper);
  color: var(--text-light);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--copper-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.82);
  color: var(--text-light);
}

.btn-light {
  background: var(--surface);
  color: var(--copper);
}

.header-cta {
  margin-left: 10px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px 48px;
  color: var(--text-light);
  background:
    linear-gradient(90deg, rgba(7, 19, 28, 0.92) 0%, rgba(7, 19, 28, 0.72) 33%, rgba(7, 19, 28, 0.24) 62%, rgba(7, 19, 28, 0.06) 100%),
    url("./assets/interieur_renove.webp") center / cover;
  animation: heroSettle 900ms ease both;
}

.hero-copy {
  max-width: 540px;
  animation: textReveal 920ms 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.before-after h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.94;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(56px, 5.6vw, 84px);
  letter-spacing: -0.01em;
}

.hero p:not(.eyebrow) {
  max-width: 470px;
  margin: 20px 0 0;
  font-weight: 600;
  line-height: 1.7;
}

.hero .cta-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  gap: 22px;
  padding: 38px 42px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item h2 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.trust-item p {
  margin: 0;
  color: #34383c;
  font-size: 14px;
  line-height: 1.55;
}

.line-icon,
.mini-icon {
  display: inline-grid;
  place-items: center;
  color: var(--copper);
  border: 2px solid currentColor;
  flex: 0 0 auto;
}

.line-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
}

.line-icon.shield {
  border-radius: 14px 14px 18px 18px;
}

.line-icon.leaf {
  border-radius: 50% 0 50% 50%;
  transform: rotate(-35deg);
}

.line-icon.person::before,
.line-icon.clock::before,
.mini-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.person {
  border-color: transparent;
}

.line-icon.person::before {
  position: absolute;
  top: 7px;
  width: 13px;
  height: 13px;
}

.line-icon.person::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 34px;
  height: 20px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.line-icon.shield::before {
  content: "✓";
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
}

.line-icon.clock::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  background: currentColor;
  transform: translate(5px, -3px) rotate(90deg);
  transform-origin: left center;
}

.line-icon.leaf::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.section {
  padding: 72px 48px;
}

.section,
.before-after,
.final-cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 680px;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 80px;
  align-items: end;
}

.section h2,
.before-after h2 {
  font-size: clamp(36px, 3vw, 48px);
}

.section-head p:not(.eyebrow) {
  margin: 0 0 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 800;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.service-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 98, 59, 0.34);
  box-shadow: var(--shadow-m);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 28px 26px 24px;
}

.mini-icon {
  width: 28px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 3px;
}

.service-card h3,
.project-strip h3,
.step-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.service-card p,
.step-card p {
  margin: 0;
  color: #3f4448;
  font-size: 14px;
}

.service-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  color: var(--copper);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: center;
  padding: 64px 48px 56px;
  background: linear-gradient(105deg, var(--primary-deep), var(--primary));
  color: var(--text-light);
}

.before-copy p:not(.eyebrow) {
  margin: 18px 0 26px;
  font-weight: 500;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 310px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.compare-img {
  position: relative;
  min-height: 310px;
}

.compare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.before-after:hover .compare-img img {
  transform: scale(1.025);
}

.compare-img span {
  position: absolute;
  top: 18px;
  padding: 8px 16px;
  border-radius: var(--radius-s);
  background: var(--primary);
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
}

.compare-img.before span {
  left: 18px;
}

.compare-img.after span {
  right: 18px;
  background: var(--copper);
}

.compare-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--copper);
  font-family: var(--font-ui);
  font-weight: 800;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-s);
}

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  gap: 10px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.slider-dots .active {
  background: var(--copper);
}

.method {
  background: var(--surface);
  text-align: center;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-top: 72px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 11%;
  right: 11%;
  height: 1px;
  border-top: 3px dashed rgba(216, 213, 206, 0.95);
}

.step-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.step-number {
  display: none;
}

.method .mini-icon {
  display: inline-grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 0 0 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--copper);
  box-shadow: 0 12px 28px rgba(22, 35, 46, 0.08);
}

.method .mini-icon::before {
  content: none;
}

.method .mini-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method .step-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.method .step-card p {
  max-width: 310px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.55;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.project-strip img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: var(--radius-m);
  transition: transform 420ms ease, filter 420ms ease;
}

.project-strip article:hover img {
  filter: brightness(1.03);
  transform: translateY(-3px);
}

.project-strip h3 {
  margin-top: 12px;
  margin-bottom: 2px;
  font-size: 13px;
}

.project-strip p {
  margin: 0;
  color: #3f4448;
  font-size: 12px;
}

.testimonials {
  background: var(--surface);
}

.section-note {
  max-width: 430px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.testimonial-grid article {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: #fbfaf7;
  box-shadow: var(--shadow-s);
}

.testimonial-grid p {
  margin: 0 0 22px;
  color: #3f4448;
}

.testimonial-grid h3 {
  margin: 0 0 4px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 800;
}

.testimonial-grid span {
  color: var(--copper);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-areas {
  background: var(--background);
}

.service-areas p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: #3f4448;
}

.faq {
  display: grid;
  grid-template-columns: 260px 1fr 340px;
  gap: 40px;
  align-items: start;
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: #fbfaf7;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--copper);
  font-size: 20px;
  font-weight: 500;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--text-secondary);
  font-size: 14px;
}

.faq-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius-m);
}

.final-cta {
  display: grid;
  grid-template-columns: auto minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 30px;
  align-items: start;
  padding: 40px 48px;
  background: linear-gradient(100deg, var(--copper), #c66f43);
  color: var(--text-light);
}

.final-cta h2 {
  font-size: clamp(32px, 3vw, 44px);
}

.final-cta p {
  margin: 8px 0 0;
}

.final-cta .cta-note {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
}

.final-cta .cta-mark,
.final-cta .cta-mark::after {
  border-color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  font: 500 14px var(--font-body);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:user-invalid,
.contact-form select:user-invalid,
.contact-form textarea:user-invalid {
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
}

.contact-form[data-status="error"] .form-status {
  color: #fff6d6;
}

.contact-form[data-status="ready-for-crm"] .form-status {
  color: #e9ffd9;
}

.consent {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px !important;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px !important;
  font-weight: 700 !important;
}

.consent input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--primary);
}

.contact-form .btn {
  justify-self: start;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 54px;
  padding: 46px 48px 30px;
  background: linear-gradient(100deg, var(--primary-deep), var(--primary));
  color: var(--text-light);
}

.site-footer h2 {
  margin: 0 0 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-brand p {
  margin-top: 20px;
  max-width: 220px;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--copper);
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a:nth-child(2) svg,
.socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.copyright {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 12px !important;
  font-size: 12px !important;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderLine {
  0% {
    transform: scaleX(0);
  }
  45% {
    transform: scaleX(1);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes loaderRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSettle {
  from {
    background-position: center 45%;
  }
  to {
    background-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-shell {
    width: 100%;
  }

  .site-header {
    padding: 0 28px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-light);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--primary);
    color: var(--text-light);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-ui);
    font-weight: 800;
  }

  .trust-band,
  .cards-grid,
  .steps,
  .project-strip,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .faq-image {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    background: #fff;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header {
    min-height: 72px;
    padding: 0 18px;
  }

  .brand-mark {
    width: 30px;
    height: 36px;
  }

  .brand-text {
    font-size: 15px;
  }

  .hero {
    min-height: 520px;
    padding: 40px 24px 34px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(7, 19, 28, 0.32) 0%, rgba(7, 19, 28, 0.78) 46%, rgba(7, 19, 28, 0.96) 100%),
      url("./assets/interieur_renove.webp") center / cover;
  }

  .hero h1 {
    max-width: 320px;
    font-size: 48px;
  }

  .hero p:not(.eyebrow) {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 30px 18px;
    text-align: center;
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .trust-item h2 {
    font-size: 13px;
  }

  .trust-item p {
    font-size: 12px;
  }

  .section {
    padding: 42px 18px;
  }

  .two-columns,
  .section-title-row {
    display: block;
  }

  .section h2,
  .before-after h2 {
    font-size: 34px;
  }

  .section-head p:not(.eyebrow) {
    margin-top: 18px;
  }

  .cards-grid,
  .project-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 14px;
    scroll-snap-type: x mandatory;
  }

  .service-card,
  .project-strip article {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .service-card img {
    height: 165px;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 18px 44px;
  }

  .before-copy .btn {
    display: none;
  }

  .comparison {
    min-height: 170px;
  }

  .compare-img {
    min-height: 170px;
  }

  .compare-img span {
    top: 10px;
    padding: 6px 11px;
    font-size: 11px;
  }

  .compare-img.before span {
    left: 10px;
  }

  .compare-img.after span {
    right: 10px;
  }

  .compare-handle {
    width: 42px;
    height: 42px;
  }

  .slider-dots {
    bottom: 20px;
    transform: translateX(-50%);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
    overflow: visible;
    padding-bottom: 0;
  }

  .steps::before {
    display: none;
  }

  .step-card p {
    display: block;
  }

  .step-card .mini-icon {
    display: inline-grid;
  }

  .step-card h3 {
    font-size: 20px;
  }

  .step-number {
    display: none;
  }

  .method .mini-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 18px;
  }

  .method .mini-icon svg {
    width: 34px;
    height: 34px;
  }

  .method .step-card p {
    max-width: 310px;
    font-size: 14px;
  }

  .project-strip img {
    height: 150px;
  }

  .faq {
    gap: 24px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-areas p:not(.eyebrow) {
    font-size: 14px;
  }

  summary {
    min-height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 34px 24px;
  }

  .final-cta .cta-mark {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    justify-self: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 24px;
  }

  .site-footer > div:not(.footer-brand) {
    display: none;
  }

  .copyright {
    justify-self: start;
  }
}
