﻿:root {
  /* Neutres teintés vert — rappel du cabinet, sans le vert “#006400” d’origine */
  --bg: oklch(0.972 0.012 152);
  --bg-soft: oklch(0.942 0.022 152);
  --surface: oklch(0.99 0.008 152);
  --ink: oklch(0.24 0.028 152);
  --ink-muted: oklch(0.43 0.03 152);
  --ink-faint: oklch(0.55 0.025 152);
  --accent: oklch(0.42 0.08 152);
  --accent-hover: oklch(0.36 0.09 152);
  --accent-soft: oklch(0.91 0.04 152);
  --accent-deep: oklch(0.32 0.065 152);
  --line: oklch(0.24 0.028 152 / 0.14);
  --footer: oklch(0.22 0.035 152);
  --on-accent: oklch(0.975 0.01 152);
  --pad-x: clamp(22px, 5vw, 64px);
  --page-max: 1120px;
  --font-display: 'Spectral', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); transition: color 0.3s var(--ease-out); }
a:hover { color: var(--accent-hover); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
img { max-width: 100%; display: block; }
.site { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); overflow-x: clip; }
main { flex: 1; width: 100%; min-width: 0; overflow-x: clip; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--pad-x);
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.brand {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand strong { font-weight: 600; color: var(--accent); }
.nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 32px);
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav a { color: var(--ink-muted); text-decoration: none; transition: color 0.35s var(--ease-out); }
.nav a:hover { color: var(--ink); }
.nav a.is-active {
  color: var(--accent);
  box-shadow: inset 0 -1.5px 0 var(--accent);
}
.header-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.header-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.35s var(--ease-out);
}
.header-phone:hover { color: var(--accent-hover); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.4s var(--ease-out),
    color 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid color-mix(in oklch, var(--accent) 35%, transparent);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.btn-lg { padding: 16px 30px; font-size: 0.9rem; }


/* Hero â€” split editorial, portrait untouched */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: min(90vh, 820px);
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(40px, 7vh, 80px) var(--pad-x);
  animation: rise 0.85s var(--ease-out) both;
}
.hero-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.02;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  margin: 0;
  text-wrap: pretty;
  max-width: 22ch;
  color: var(--ink-muted);
}
.hero-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 40ch;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.hero-meta li { display: flex; align-items: center; gap: 8px; }
.hero-meta li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-media {
  position: relative;
  background: #0a0a0a;
  min-height: 420px;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  animation: fadein 1.1s var(--ease-out) both;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 12%);
  pointer-events: none;
}

.section { padding: clamp(56px, 8vw, 96px) var(--pad-x); }
.section-tight { padding-top: clamp(28px, 4vw, 40px); }
.section-soft { background: var(--bg-soft); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0;
  text-wrap: pretty;
  letter-spacing: -0.015em;
}
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 8px;
  line-height: 1.3;
}
.lede {
  margin: 12px 0 0;
  color: var(--ink-muted);
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.7;
}
.text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 40%, transparent);
  transition: border-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.text-link:hover { border-bottom-color: var(--accent); color: var(--accent-hover); }

/* Services â€” featured mosaic */
.services {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(36px, 5vw, 52px);
  min-height: 560px;
}
.service {
  display: grid;
  grid-template-rows: 1fr auto;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 0;
  transition: border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.service:first-child {
  grid-row: 1 / -1;
}
.service:hover {
  border-color: color-mix(in oklch, var(--accent) 45%, transparent);
  box-shadow: 0 12px 40px oklch(0.32 0.05 152 / 0.12);
}

.service-media {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 140px;
}
.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.85s var(--ease-out);
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #808080;
  mix-blend-mode: color;
  opacity: 1;
  transition: opacity 0.85s var(--ease-out);
  pointer-events: none;
}
.service:hover .service-media img {
  transform: scale(1.06);
}
.service:hover .service-media::after {
  opacity: 0;
}
.domicile-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.85s var(--ease-out);
}
.domicile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #808080;
  mix-blend-mode: color;
  opacity: 1;
  transition: opacity 0.85s var(--ease-out);
  pointer-events: none;
}
.domicile:hover .domicile-media img {
  transform: scale(1.04);
}
.domicile:hover .domicile-media::after {
  opacity: 0;
}
.img-reveal {
  position: relative;
  overflow: hidden;
  background: #111;
}
.img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.85s var(--ease-out);
}
.img-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #808080;
  mix-blend-mode: color;
  opacity: 1;
  transition: opacity 0.85s var(--ease-out);
  pointer-events: none;
}
.img-reveal:hover img,
a:hover .img-reveal img {
  transform: scale(1.04);
}
.img-reveal:hover::after,
a:hover .img-reveal::after {
  opacity: 0;
}
@media (hover: none) {
  .service-media::after,
  .domicile-media::after,
  .img-reveal::after {
    opacity: 0;
  }
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 20px;
}
.service:first-child .service-body { padding: 22px 26px 26px; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.service:first-child .service-name { font-size: 1.85rem; }
.service p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.service .text-link { margin-top: 6px; align-self: flex-start; font-size: 0.84rem; }

.domicile {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: min(56vh, 520px);
  background: var(--accent-deep);
  color: var(--on-accent);
}
.domicile-media { position: relative; min-height: 300px; overflow: hidden; }
.domicile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(40px, 6vw, 64px) var(--pad-x);
}
.domicile-copy .eyebrow { color: oklch(0.82 0.06 152); margin: 0; }
.domicile-copy h2 {
  color: var(--on-accent);
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
}
.domicile-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: oklch(0.92 0.02 152 / 0.82);
  max-width: 36ch;
}
.domicile-copy .btn-primary {
  background: var(--on-accent);
  color: var(--accent-deep);
  align-self: flex-start;
  margin-top: 6px;
}
.domicile-copy .btn-primary:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
table.data th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
table.data td {
  padding: 13px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 8%, transparent);
}

.quotes { display: flex; flex-direction: column; gap: 36px; }
.quote {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.quote p {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
}
.quote footer {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--ink-faint);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 40px);
}
.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* Inner pages — largeur unifiée + centrée */
.page-hero,
.page-intro,
.page-body,
.faq-list,
.contact-grid,
.cta-band,
.disclaimer,
.panel-soft > .split {
  width: min(100% - (2 * var(--pad-x)), var(--page-max));
  max-width: var(--page-max);
  margin-inline: auto;
  box-sizing: border-box;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  padding-block: clamp(40px, 6vw, 72px) clamp(36px, 5vw, 56px);
}
.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}
.page-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0;
  text-wrap: pretty;
  letter-spacing: -0.02em;
}
.page-hero-copy > p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 48ch;
}
.page-hero-media {
  position: relative;
  min-height: 320px;
  min-width: 0;
  border: 1px solid var(--line);
}
.page-hero-media.img-reveal { height: 100%; }
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-intro {
  padding-block: clamp(56px, 8vw, 88px) clamp(28px, 4vw, 44px);
}
.page-intro h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 16px;
  text-wrap: pretty;
  letter-spacing: -0.02em;
}
.page-intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 62ch;
}
.page-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.page-body {
  padding-block: 0 clamp(48px, 7vw, 80px);
}
.page-body.narrow { /* même largeur que les autres */ }

.motifs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.motif {
  background: var(--surface);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.motif-n {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.motif-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.motif p { margin: 0; font-size: 0.92rem; line-height: 1.65; color: var(--ink-muted); }

.panel-soft {
  background: var(--bg-soft);
  padding-block: clamp(48px, 7vw, 80px);
  padding-inline: 0;
}
.panel-soft > .split {
  padding-block: 0;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1.1;
}
.step p { margin: 0; font-size: 1rem; line-height: 1.7; color: var(--ink-muted); }
.step strong { color: var(--ink); font-weight: 600; }
.note-box {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-muted);
}
.note-box strong { color: var(--ink); }
.disclaimer {
  padding-block: 28px 56px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-faint);
}

.zones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 36px;
}
.zone {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  min-width: 0;
}
.zone h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 8px;
  font-weight: 500;
}
.zone p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: var(--ink-muted); }

table.data.filled {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
}
table.data.filled th {
  background: var(--accent);
  color: var(--on-accent);
  padding: 16px 20px;
  border: none;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}
table.data.filled td {
  padding: 16px 20px;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 8%, transparent);
}
table.data.filled tr:last-child td { border-bottom: none; }
table.data.filled td.price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

.cta-band {
  margin-block: 0 clamp(56px, 8vw, 88px);
  background: var(--accent-deep);
  color: var(--on-accent);
  padding: clamp(32px, 5vw, 44px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin: 0 0 8px;
  color: var(--on-accent);
}
.cta-band p { margin: 0; font-size: 0.95rem; color: color-mix(in oklch, var(--on-accent) 72%, transparent); }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--on-accent); color: var(--accent-deep); }
.cta-band .btn-primary:hover { background: var(--accent-soft); color: var(--accent-deep); }
.cta-band .btn-ghost {
  border-color: color-mix(in oklch, var(--on-accent) 40%, transparent);
  color: var(--on-accent);
}
.cta-band .btn-ghost:hover { border-color: var(--on-accent); color: var(--on-accent); background: color-mix(in oklch, var(--on-accent) 10%, transparent); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 0 clamp(56px, 8vw, 88px);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 48px);
  padding-block: 12px clamp(56px, 8vw, 88px);
  align-items: start;
}

.faq-card {
  background: transparent;
  padding: 28px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}
.faq-card:first-child { border-top: 1px solid var(--line); }
.faq-n {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  padding-top: 4px;
}
.faq-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.faq-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.contact-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  min-height: 280px;
}
.contact-photo.img-reveal img {
  position: absolute;
  inset: 0;
}
.contact-ways { display: flex; flex-direction: column; gap: 12px; }
.way {
  padding: 20px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 2px;
  transition:
    background 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}
.way-primary { background: var(--accent); color: var(--on-accent); }
.way-primary:hover { background: var(--accent-hover); color: var(--on-accent); }
.way-primary .way-title { font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.way-primary .way-sub { font-size: 0.85rem; color: color-mix(in oklch, var(--on-accent) 75%, transparent); }
.way-outline {
  border: 1px solid color-mix(in oklch, var(--accent) 30%, transparent);
  color: var(--ink);
  background: var(--surface);
}
.way-outline:hover { border-color: var(--accent); color: var(--accent); }
.way-outline .way-title { font-size: 1.1rem; font-weight: 600; font-family: var(--font-display); }
.way-outline .way-sub { font-size: 0.85rem; color: var(--ink-muted); }
.zone-box {
  background: var(--bg-soft);
  padding: 22px 24px;
  border: 1px solid var(--line);
}
.zone-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 8px;
  font-weight: 500;
}
.zone-box p { margin: 0; font-size: 0.9rem; line-height: 1.65; color: var(--ink-muted); }
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 40px);
  align-self: start;
}
.form-panel h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  margin: 0 0 8px;
}
.form-panel .form-lede {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-muted);
}
input, textarea {
  padding: 13px 14px;
  border: 1px solid color-mix(in oklch, var(--ink) 16%, transparent);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
}
input:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.form-note { font-size: 0.75rem; color: var(--ink-faint); }

.site-footer {
  background: var(--footer);
  color: color-mix(in oklch, var(--bg) 72%, transparent);
  padding: 36px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bg);
}
.site-footer .footer-meta {
  font-size: 0.8rem;
  margin-top: 6px;
  color: color-mix(in oklch, var(--bg) 48%, transparent);
  max-width: 62ch;
  line-height: 1.5;
}
.footer-nav { display: flex; gap: 22px; font-size: 0.85rem; flex-wrap: wrap; }
.footer-nav a {
  color: color-mix(in oklch, var(--bg) 72%, transparent);
  text-decoration: none;
  transition: color 0.35s var(--ease-out);
}
.footer-nav a:hover { color: var(--accent-soft); }
.footer-nav a.phone { color: oklch(0.78 0.07 152); font-weight: 600; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-media img {
    animation: none !important;
  }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: min(62vw, 480px); order: -1; }
  .hero-media::after {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 28%);
  }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-media { min-height: 280px; aspect-ratio: 16 / 10; }
  .services {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .service:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }
  .faq-grid, .motifs { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .split, .contact-grid, .domicile, .zones { grid-template-columns: 1fr; }
  .domicile-media { min-height: 240px; aspect-ratio: 16 / 9; }
  .contact-photo { aspect-ratio: 16 / 10; min-height: 220px; }
}
@media (max-width: 640px) {
  .services { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-phone { display: none; }
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-header .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    order: 10;
    border-top: 1px solid var(--line);
    padding-top: 8px;
    margin-top: 4px;
  }
  .site-header .nav.is-open { display: flex; }
  .site-header .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-header .nav a:last-child { border-bottom: none; }
}
