/* =========================================================
   Austral Couverture : maquette bespoke (Timy Studio)
   DA "Terre cuite du Midi" mesuree sur SES vraies photos :
   tuile terracotta (le materiau) + anthracite chaud (faitage,
   vetements de travail) + sable/platre (facades) + zinc/ardoise
   (les solins). Le bleu reste le ciel : atmosphere, pas interface.
   Typo : Cinzel (capitales lapidaires, la pierre de Nimes) + DM Sans.
   ========================================================= */

:root {
  /* Fonds : platre chaud du Midi */
  --sand:     #ECE4D8;   /* fond principal, platre/lin */
  --sand-2:   #E3D8C6;   /* bandes, fond secondaire (fond le plus sombre du clair) */
  --card:     #F6F0E6;   /* surfaces elevees */
  --cream:    #EFE7DA;   /* texte sur fond sombre */
  --cream-2:  #C8BCA9;   /* texte secondaire sur fond sombre (> 4.6:1) */

  /* Anthracite chaud : faitage, ombres des tuiles, vetements de travail */
  --ink:      #241C18;   /* texte principal, sections sombres */
  --ink-2:    #3A2E27;
  --ink-soft: #665C54;   /* texte attenue sur clair (4.60:1 sur sand-2) */

  /* Terracotta : LE materiau du couvreur, sa signature (tuile #CF835A mesuree) */
  --tile:      #CF835A;  /* accent decoratif vif (la tuile) : jamais sous du texte */
  --terra:     #B5623C;  /* aplats de couleur, blocs */
  --terra-deep:#974720;  /* boutons + terracotta EN TEXTE sur clair (4.60:1 sur sand-2) */
  --terra-lite:#BA764B;  /* terracotta en texte/emphase sur fond sombre (4.60:1 sur ink) */

  /* Zinc / ardoise : le second materiau, la zinguerie (solins) */
  --zinc:      #53606A;  /* zinc en texte sur clair (4.60:1 sur sand-2) */
  --zinc-2:    #5E6B76;  /* puces, decor */

  --line:   rgba(36, 28, 24, 0.13);
  --line-2: rgba(36, 28, 24, 0.24);
  --terra-soft: rgba(151, 71, 32, 0.12);

  --display: 'Cinzel', 'Times New Roman', serif;      /* titraille lapidaire */
  --body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background-color: var(--sand);
  /* lumiere douce du Midi, tres subtile */
  background-image:
    radial-gradient(120% 60% at 85% -8%, rgba(207, 131, 90, 0.14), transparent 60%),
    radial-gradient(90% 50% at -10% 4%, rgba(83, 96, 106, 0.08), transparent 55%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* Titraille lapidaire : Cinzel, capitales espacees, sobre */
h1, h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
h3, h4 {
  font-family: var(--body);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-deep);
  position: relative;
  padding-left: 26px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 0.54em;
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--tile);
}
.eyebrow-light { color: var(--cream); }
.eyebrow-light::before { background: var(--terra-lite); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55em;
  font-family: var(--body); font-weight: 600; font-size: 0.98rem;
  padding: 0.92em 1.7em;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-terra { background: var(--terra-deep); color: var(--cream); box-shadow: 0 12px 26px -12px rgba(151, 71, 32, 0.75); }
.btn-terra:hover { background: #7f3a19; transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(151, 71, 32, 0.85); }
.btn-light { background: rgba(239, 231, 218, 0.10); color: var(--cream); border-color: rgba(239, 231, 218, 0.44); backdrop-filter: blur(4px); }
.btn-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--terra-deep); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--terra-deep); background: var(--terra-soft); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn .arr { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Marqueur maquette ---------- */
.pitch {
  display: flex; align-items: center; justify-content: center; gap: 0.6em;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 400;
  text-align: center;
  padding: 0.55em 1.2em;
}
.pitch-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tile); box-shadow: 0 0 0 0 rgba(207,131,90,0.7); animation: pulse 2.4s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(207,131,90,0.6);} 70% { box-shadow: 0 0 0 8px rgba(207,131,90,0);} 100% { box-shadow: 0 0 0 0 rgba(207,131,90,0);} }

/* ---------- Marque (logo cree pour la maquette) ---------- */
.brand { display: flex; align-items: center; gap: 0.62em; text-decoration: none; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; flex: none; display: block; }
.brand-name {
  font-family: var(--display); font-weight: 600; font-size: 0.98rem;
  text-transform: uppercase; letter-spacing: 0.08em; line-height: 1; color: var(--ink);
}
.brand-name small { display: block; font-size: 0.6rem; letter-spacing: 0.24em; color: var(--terra-deep); margin-top: 3px; }

/* ---------- Nav (pilule figee) ---------- */
.nav { position: sticky; top: 0; z-index: 50; transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(236, 228, 216, 0.9); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--ink-2); font-weight: 500; font-size: 0.94rem; position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--tile); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-tel { display: flex; flex-direction: column; align-items: flex-end; text-decoration: none; line-height: 1.15; }
.nav-tel-label { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.nav-tel-num { font-family: var(--body); font-weight: 600; font-size: 1.06rem; color: var(--terra-deep); letter-spacing: 0.01em; }
.nav-tel:hover .nav-tel-num { color: #7f3a19; }

/* ---------- Hero cinematique (photo du gerant au travail) ---------- */
.hero { position: relative; min-height: 92vh; min-height: 92dvh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 114%; object-fit: cover; object-position: center 30%; will-change: transform; }
/* scrim chaud, remonte depuis le bas */
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(360deg, rgba(26,20,16,0.92) 0%, rgba(26,20,16,0.66) 26%, rgba(26,20,16,0.24) 56%, rgba(26,20,16,0.08) 100%),
  linear-gradient(90deg, rgba(26,20,16,0.5) 0%, rgba(26,20,16,0) 60%); }
.hero-content { position: relative; z-index: 1; padding: 134px 28px 92px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.7rem); color: var(--cream); margin: 0.5em 0 0.46em; max-width: 15ch; letter-spacing: 0.012em; line-height: 1.08; }
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--cream); }
/* soulignage terracotta qui se remplit au chargement */
.hero h1 .hl::after {
  content: ""; position: absolute; left: -0.04em; right: -0.04em; bottom: 0.03em; height: 0.14em;
  background: var(--tile); border-radius: 2px; transform: scaleX(0); transform-origin: left center;
}
.js .hero h1 .hl.draw::after { transform: scaleX(1); transition: transform 0.9s var(--ease) 0.35s; }
.hero-lede { font-size: clamp(1.06rem, 2vw, 1.28rem); color: rgba(239,231,218,0.92); max-width: 52ch; font-weight: 400; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.1rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; width: 26px; height: 42px; border: 2px solid rgba(239,231,218,0.5); border-radius: 999px; display: grid; justify-items: center; padding-top: 7px; }
.hero-scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--cream); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* ---------- Bande de faits (anthracite) ---------- */
.facts { background: var(--ink); color: var(--cream); }
.facts-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 30px 26px; display: flex; flex-direction: column; gap: 3px; border-left: 1px solid rgba(239,231,218,0.14); }
.fact:first-child { border-left: none; }
.fact strong { font-family: var(--display); font-weight: 600; font-size: 1.28rem; letter-spacing: 0.02em; color: var(--cream); }
.fact span { font-size: 0.88rem; color: var(--cream-2); }

/* ---------- Section heads ---------- */
.sec-head { max-width: 50ch; margin-bottom: clamp(34px, 4vw, 58px); }
.sec-head .eyebrow { margin-bottom: 1em; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.sec-head p { margin-top: 0.9em; font-size: 1.12rem; color: var(--ink-2); font-family: var(--body); }

section.metiers, section.galerie, section.artisan, section.contact { padding: clamp(66px, 8vw, 120px) 0; }

/* ---------- Savoir-faire (liste editoriale) ---------- */
.metier-list { list-style: none; border-top: 1px solid var(--line); }
.metier {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: clamp(20px, 4vw, 56px);
  padding: clamp(24px, 3vw, 38px) 0 clamp(24px, 3vw, 38px) 22px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.metier::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0);
  width: 4px; height: 58%; border-radius: 3px; background: var(--tile);
  transition: transform 0.4s var(--ease);
}
.metier:hover { padding-left: 32px; }
.metier:hover::before { transform: translateY(-50%) scaleY(1); }
.metier-k { font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--terra-deep); letter-spacing: 0.04em; }
.metier-body h3 { font-size: clamp(1.4rem, 2.9vw, 1.95rem); }
.metier-body p { margin-top: 0.5em; color: var(--ink-2); max-width: 56ch; font-size: 1.04rem; }
.metier-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--zinc); border: 1px solid var(--line-2); border-radius: 999px; padding: 0.35em 0.95em; white-space: nowrap; }

/* ---------- Realisations (galerie mosaique) ---------- */
.galerie { background: var(--sand-2); }
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 210px; gap: 16px; }
.m-cell { position: relative; cursor: pointer; margin: 0; grid-column: span 2; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line); box-shadow: 0 20px 40px -30px rgba(36,28,24,0.5); }
.m-cell.m-wide { grid-column: span 3; }
.m-cell.m-tall { grid-row: span 2; }
.m-cell > img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.8s var(--ease); }
.m-cell:hover > img { transform: scale(1.06); }
.m-cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px; font-size: 0.9rem; font-weight: 600; color: var(--cream);
  background: linear-gradient(0deg, rgba(26,20,16,0.84), rgba(26,20,16,0));
  display: flex; align-items: center; gap: 0.55em;
  transform: translateY(6px); opacity: 0; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.m-cell figcaption::before { content: ""; width: 16px; height: 2px; background: var(--tile); flex: none; }
.m-cell:hover figcaption, .m-cell:focus-within figcaption { opacity: 1; transform: translateY(0); }

/* ---------- L'artisan ---------- */
.artisan-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 74px); align-items: center; }
.artisan-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); box-shadow: 0 44px 84px -46px rgba(36,28,24,0.55); cursor: pointer; }
.artisan-photo img { width: 100%; height: 112%; object-fit: cover; object-position: center 34%; will-change: transform; }
.artisan-text .eyebrow { margin-bottom: 0.9em; }
.artisan-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.artisan-text .lede { margin-top: 1em; font-size: 1.12rem; color: var(--ink-2); max-width: 52ch; }
.steps { list-style: none; margin-top: 2.3rem; display: grid; gap: 1.35rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.steps li > span { font-family: var(--display); font-weight: 600; color: var(--terra-deep); font-size: 0.98rem; border: 1px solid var(--line-2); border-radius: 50%; width: 44px; height: 44px; display: grid; place-items: center; flex: none; }
.steps h4 { font-size: 1.14rem; }
.steps p { color: var(--ink-soft); margin-top: 0.15em; max-width: 48ch; }

/* ---------- Avis (bande terracotta profonde) : note reelle, aucun verbatim ---------- */
.avis { background: var(--terra-deep); color: var(--cream); padding: clamp(66px, 8vw, 110px) 0; position: relative; overflow: hidden; }
.avis::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% -10%, rgba(207,131,90,0.28), transparent 60%); pointer-events: none; }
.avis-in { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 5vw, 68px); align-items: center; max-width: 960px; margin: 0 auto; }
.avis-score { text-align: center; flex: none; }
.avis-score .num { font-family: var(--display); font-weight: 600; font-size: clamp(3.4rem, 8vw, 5.2rem); line-height: 1; color: var(--cream); letter-spacing: 0.02em; }
.avis-score .sur { font-size: 0.9rem; color: var(--cream-2); letter-spacing: 0.1em; }
/* etoiles : calque clippe pour la note partielle (4.9/5 = 98%) */
.stars { position: relative; display: inline-block; margin-top: 0.6em; font-size: 1.3rem; line-height: 1; letter-spacing: 0.12em; }
.stars .stars-bg { color: rgba(239,231,218,0.28); }
.stars .stars-fg { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; color: #F0C25A; width: 98%; }
.avis-text h2 { color: var(--cream); font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
.avis-text p { color: rgba(239,231,218,0.86); margin-top: 0.7em; font-size: 1.1rem; max-width: 46ch; }
.avis-text .avis-cta { display: inline-flex; align-items: center; gap: 0.4em; margin-top: 1.4rem; color: var(--cream); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(239,231,218,0.4); padding-bottom: 2px; transition: border-color 0.2s var(--ease); }
.avis-text .avis-cta:hover { border-bottom-color: var(--cream); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(36px, 5vw, 74px); align-items: start; }
.contact-info .eyebrow { margin-bottom: 1em; }
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.contact-lede { margin-top: 0.8em; font-size: 1.1rem; color: var(--ink-2); }
.contact-tel { display: inline-block; margin-top: 1.2rem; font-family: var(--body); font-weight: 600; font-size: clamp(1.8rem, 4.2vw, 2.5rem); color: var(--terra-deep); text-decoration: none; letter-spacing: 0.01em; }
.contact-tel:hover { color: #7f3a19; }
.contact-meta { margin-top: 1.9rem; display: grid; gap: 1rem; }
.contact-meta > div { display: grid; grid-template-columns: 116px 1fr; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.contact-meta dt { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; padding-top: 0.15em; }
.contact-meta dd { color: var(--ink-2); }
.contact-meta dd a { color: var(--terra-deep); text-decoration: none; border-bottom: 1px solid var(--terra-soft); }
.contact-meta dd a:hover { border-bottom-color: var(--terra-deep); }
.map { margin-top: 1.9rem; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); height: 250px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.92); }
.gmaps { display: inline-flex; align-items: center; gap: 0.4em; margin-top: 1rem; font-weight: 600; color: var(--terra-deep); text-decoration: none; border-bottom: 1px solid var(--terra-soft); padding-bottom: 2px; transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.gmaps:hover { color: #7f3a19; border-bottom-color: var(--terra-deep); }

.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); box-shadow: 0 32px 62px -42px rgba(36,28,24,0.42); }
.field { display: grid; gap: 0.45rem; margin-bottom: 1.15rem; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--sand); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 0.82em 0.9em; width: 100%; resize: vertical;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--terra-deep); box-shadow: 0 0 0 3px var(--terra-soft); }
.form-note { margin-top: 0.9rem; font-size: 0.82rem; color: var(--ink-soft); text-align: center; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: var(--cream); padding: 50px 0; }
.foot-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.foot .brand-name { color: var(--cream); }
.foot .brand-name small { color: var(--terra-lite); }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-links a { color: rgba(239,231,218,0.8); text-decoration: none; font-size: 0.92rem; }
.foot-links a:hover { color: var(--cream); }
.foot-cred { font-size: 0.82rem; color: rgba(239,231,218,0.5); }

/* ---------- Bouton d'appel flottant (mobile) ---------- */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--terra-deep); color: var(--cream);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(151,71,32,0.8);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.call-fab:hover { background: #7f3a19; transform: translateY(-2px); }
@media (max-width: 760px) { .call-fab { display: flex; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20,15,11,0.95); display: none; align-items: center; justify-content: center; padding: 5vh 6vw; }
.lightbox.open { display: flex; }
.lb-img { max-width: 88vw; max-height: 86vh; object-fit: contain; border-radius: 8px; box-shadow: 0 40px 90px rgba(0,0,0,0.6); }
.lb-close, .lb-nav { position: absolute; background: rgba(239,231,218,0.12); color: var(--cream); border: 1px solid rgba(239,231,218,0.28); border-radius: 50%; width: 50px; height: 50px; font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background 0.2s var(--ease); }
.lb-close:hover, .lb-nav:hover { background: rgba(239,231,218,0.26); }
.lb-close { top: 4vh; right: 5vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lb-prev { left: 2vw; } .lb-next { right: 2vw; } .lb-nav, .lb-close { width: 42px; height: 42px; } }

/* ---------- Reveal (motion) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .m-cell, .m-cell.m-wide { grid-column: span 2; }
  .m-cell.m-tall { grid-row: span 1; }
  .artisan-grid { grid-template-columns: 1fr; }
  .artisan-photo { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .facts-in { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: none; }
  .fact:nth-child(n+3) { border-top: 1px solid rgba(239,231,218,0.14); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-tel-label { display: none; }
  .nav-in { height: 64px; gap: 12px; }
  .brand { gap: 0.45em; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-name { font-size: 0.82rem; letter-spacing: 0.06em; white-space: nowrap; }
  .brand-name small { display: none; }
  .nav-tel { flex-direction: row; align-items: center; }
  .nav-tel-num { font-size: 0.98rem; white-space: nowrap; }
  .hero-content { padding-top: 116px; }
  .avis-in { grid-template-columns: 1fr; text-align: center; }
  .stars { margin-left: auto; margin-right: auto; }
  .avis-text p { margin-left: auto; margin-right: auto; }
  .metier { grid-template-columns: auto 1fr; }
  .metier-tag { display: none; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .facts-in { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 12px; }
  .m-cell, .m-cell.m-wide { grid-column: span 1; }
  .m-cell figcaption { opacity: 1; transform: none; font-size: 0.8rem; }
}
@media (max-width: 390px) {
  .brand-name { font-size: 0.74rem; }
  .nav-tel-num { font-size: 0.9rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero h1 .hl::after { transform: scaleX(1); transition: none; }
  .pitch-dot, .hero-scroll span { animation: none; }
  .m-cell img, .artisan-photo img { transition: none; }
}
