/* ============================================================
   JOAO DECO — Système de design "Atelier raffiné"
   Palette : sang-de-bœuf #6B1518 · crème #F4ECD8 · papier chaud
   Display : Cormorant Garamond · Corps : Hanken Grotesk · Labels : Spline Sans Mono
   ============================================================ */

:root {
  /* Couleurs signature (échantillonnées du logo) */
  --oxblood:      #6B1518;
  --oxblood-600:  #7E1A1E;
  --oxblood-700:  #5A1114;
  --oxblood-900:  #3F0C0D;
  --cream:        #F4ECD8;
  --paper:        #FBF8F2;
  --paper-2:      #F2EADB;
  --paper-3:      #ECE2CF;
  --ink:          #221C18;
  --ink-soft:     #3A322B;
  --muted:        #6E645B;
  --muted-2:      #948A7E;
  --hairline:     #E4D8C3;
  --hairline-2:   #D8CAB1;
  --white:        #FFFFFF;

  /* Typo */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "Spline Sans Mono", "SFMono-Regular", Menlo, monospace;

  /* Mesure */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;

  /* Ombres douces */
  --shadow-sm: 0 1px 2px rgba(34,28,24,.04), 0 2px 8px rgba(34,28,24,.05);
  --shadow-md: 0 8px 30px rgba(34,28,24,.10);
  --shadow-lg: 0 24px 60px rgba(34,28,24,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Texture papier très subtile via gradient + grain léger */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(107,21,24,.04), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(107,21,24,.035), transparent 55%);
}

/* ---------- Typographie ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 6.5vw, 5.2rem); font-weight: 500; }
h2.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--oxblood); opacity: .55; }
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.7; }
.muted { color: var(--muted); }
em.serif-em { font-family: var(--serif); font-style: italic; font-size: 1.12em; color: var(--oxblood); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; z-index: 1; }
.section--paper2 { background: var(--paper-2); }
.section--cream { background: var(--cream); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .lead { margin-top: 22px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 15px 28px;
  font-family: var(--sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .01em;
  border-radius: 100px;
  transition: all .4s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--oxblood); color: var(--cream); box-shadow: 0 2px 14px rgba(107,21,24,.28); }
.btn--primary:hover { background: var(--oxblood-600); box-shadow: 0 8px 26px rgba(107,21,24,.36); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--hairline-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--oxblood); color: var(--oxblood); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--oxblood); }
.btn--cream:hover { background: var(--white); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1rem; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .45s var(--ease);
  background: transparent;
}
.header.scrolled {
  background: rgba(251,248,242,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: height .45s var(--ease); }
.header.scrolled .brand img { height: 38px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: .9rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0;
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--oxblood); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--oxblood); }
.nav a:hover::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .35s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all .4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.mobile-menu a:hover { color: var(--oxblood); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(130px, 18vh, 200px); padding-bottom: clamp(60px, 9vw, 110px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero__eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .accent { color: var(--oxblood); font-style: italic; }
.hero__lead { max-width: 30em; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2.4vw, 36px); padding-top: 30px; border-top: 1px solid var(--hairline); }
.stat__num { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--oxblood); line-height: 1; display: block; }
.stat__label { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; white-space: nowrap; }
.hero__stats .stat:last-child .stat__label { letter-spacing: .08em; font-size: .6rem; }

.hero__media { position: relative; }
.hero__media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.hero__media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hero__media:hover .frame img { transform: scale(1.04); }
.hero__media .badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--cream); color: var(--oxblood);
  padding: 18px 22px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); max-width: 220px;
  border: 1px solid var(--hairline);
}
.hero__media .badge .mono { font-family: var(--mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hero__media .badge .t { font-family: var(--serif); font-size: 1.15rem; line-height: 1.2; margin-top: 4px; display: block; color: var(--ink); }

/* ---------- Logos clients / confiance bar ---------- */
.trust { padding-block: 30px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--paper); }
.trust__inner { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 60px); flex-wrap: wrap; }
.trust__item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.trust__item svg { width: 17px; height: 17px; stroke: var(--oxblood); }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden; }
.service {
  background: var(--paper); padding: clamp(28px, 3.4vw, 46px);
  transition: background .4s var(--ease); position: relative;
}
.service:hover { background: var(--white); }
.service__num { font-family: var(--mono); font-size: .72rem; color: var(--muted-2); letter-spacing: .12em; }
.service h3 { margin: 16px 0 12px; }
.service h3 .ic { color: var(--oxblood); }
.service p { color: var(--muted); font-size: .98rem; }
.service__tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--oxblood); background: var(--cream); padding: 5px 11px; border-radius: 100px; }

/* ---------- Réalisations (galerie) ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.shot { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); cursor: pointer; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(63,12,13,.62), transparent 52%);
  opacity: .85; transition: opacity .4s;
}
.shot:hover::after { opacity: 1; }
.shot .cap {
  position: absolute; left: 20px; bottom: 18px; z-index: 2; color: var(--cream);
  transform: translateY(6px); opacity: .92; transition: all .4s var(--ease);
}
.shot:hover .cap { transform: translateY(0); opacity: 1; }
.shot .cap .mono { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; opacity: .85; }
.shot .cap .t { font-family: var(--serif); font-size: 1.3rem; display: block; margin-top: 2px; }
.shot--tall { grid-column: span 4; aspect-ratio: 3/4; }
.shot--wide { grid-column: span 8; aspect-ratio: 16/10; }
.shot--sq   { grid-column: span 4; aspect-ratio: 1/1; }
.shot--half { grid-column: span 6; aspect-ratio: 4/3; }

/* ---------- Tarifs ---------- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--hairline); transition: background .3s; }
.price-table tr:hover { background: var(--paper); }
.price-table td { padding: 17px 4px; vertical-align: baseline; }
.price-table .name { font-size: 1.02rem; color: var(--ink); }
.price-table .unit { font-family: var(--mono); font-size: .68rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; }
.price-table .val { text-align: right; font-family: var(--serif); font-size: 1.5rem; color: var(--oxblood); white-space: nowrap; }
.price-table .val small { font-family: var(--mono); font-size: .6rem; color: var(--muted); letter-spacing: .1em; display: block; text-transform: uppercase; }
.pricing__note { font-size: .86rem; color: var(--muted); margin-top: 24px; font-style: italic; }

/* Estimateur */
.estimator { background: var(--oxblood); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(28px, 3.6vw, 44px); box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.estimator h3 { color: var(--cream); margin-bottom: 6px; }
.estimator .sub { color: rgba(244,236,216,.72); font-size: .92rem; margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,236,216,.7); margin-bottom: 9px; }
.field select, .field input {
  width: 100%; padding: 13px 15px; border-radius: var(--radius);
  border: 1px solid rgba(244,236,216,.22); background: rgba(244,236,216,.06); color: var(--cream);
  font-family: var(--sans); font-size: .98rem; transition: border .3s, background .3s;
}
.field select:focus, .field input:focus { outline: none; border-color: var(--cream); background: rgba(244,236,216,.12); }
.field select option { color: var(--ink); }
.estimate-out {
  margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(244,236,216,.2);
  display: flex; align-items: baseline; justify-content: space-between;
}
.estimate-out .lab { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,236,216,.7); }
.estimate-out .amt { font-family: var(--serif); font-size: 2.4rem; color: var(--cream); }
.estimator .disclaimer { font-size: .76rem; color: rgba(244,236,216,.6); margin-top: 14px; line-height: 1.5; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 34px); }
.step { position: relative; }
.step__n { font-family: var(--serif); font-size: 3.4rem; color: var(--oxblood); opacity: .25; line-height: 1; }
.step h3 { font-size: 1.3rem; margin: 6px 0 10px; }
.step p { font-size: .92rem; color: var(--muted); }

/* ---------- À propos ---------- */
.about { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.about__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__body h2 { margin-bottom: 24px; }
.about__body p { color: var(--ink-soft); margin-bottom: 18px; }
.about__values { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value { display: flex; gap: 13px; align-items: flex-start; }
.value svg { width: 22px; height: 22px; stroke: var(--oxblood); flex-shrink: 0; margin-top: 3px; }
.value .t { font-weight: 600; font-size: .98rem; }
.value .d { font-size: .85rem; color: var(--muted); }

/* ---------- Zones ---------- */
.zones { text-align: center; }
.zones__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; max-width: 800px; margin-inline: auto; }
.zone-chip { font-family: var(--sans); font-weight: 500; font-size: .92rem; padding: 10px 20px; border: 1px solid var(--hairline-2); border-radius: 100px; color: var(--ink-soft); transition: all .35s var(--ease); }
.zone-chip:hover { background: var(--oxblood); color: var(--cream); border-color: var(--oxblood); transform: translateY(-2px); }

/* ---------- Devis / CTA form ---------- */
.devis { background: var(--oxblood); color: var(--cream); position: relative; overflow: hidden; }
.devis::before {
  content: ""; position: absolute; right: -8%; top: -20%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(244,236,216,.10), transparent 70%); border-radius: 50%;
}
.devis .container { position: relative; z-index: 1; }
.devis__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.devis h2 { color: var(--cream); }
.devis .eyebrow { color: var(--cream); }
.devis .eyebrow::before { background: var(--cream); }
.devis__intro p { color: rgba(244,236,216,.82); margin-top: 22px; }
.devis__contact { margin-top: 34px; display: flex; flex-direction: column; gap: 16px; }
.devis__contact a { display: flex; align-items: center; gap: 13px; color: var(--cream); font-size: 1.02rem; transition: opacity .3s; }
.devis__contact a:hover { opacity: .8; }
.devis__contact svg { width: 20px; height: 20px; stroke: var(--cream); }

.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 42px); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--hairline-2); border-radius: var(--radius);
  background: var(--white); color: var(--ink); font-family: var(--sans); font-size: .96rem; transition: border .3s, box-shadow .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--oxblood); box-shadow: 0 0 0 3px rgba(107,21,24,.1);
}
.form-field textarea { resize: vertical; min-height: 92px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-card .consent { font-size: .76rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.form-note { font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.form-note .dot { width: 7px; height: 7px; border-radius: 50%; background: #2e7d4f; box-shadow: 0 0 0 3px rgba(46,125,79,.18); }

/* ---------- Footer ---------- */
.footer { background: var(--oxblood-900); color: rgba(244,236,216,.78); padding-top: clamp(60px, 8vw, 90px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid rgba(244,236,216,.13); }
.footer__brand img { height: auto; width: 180px; max-width: 100%; margin-bottom: 18px; }
.footer__brand p { font-size: .9rem; max-width: 28ch; color: rgba(244,236,216,.6); }
.footer h4 { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; font-weight: 500; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a, .footer address a { font-size: .92rem; color: rgba(244,236,216,.72); transition: color .3s; font-style: normal; }
.footer ul li a:hover, .footer address a:hover { color: var(--cream); }
.footer address { font-style: normal; font-size: .92rem; line-height: 1.9; color: rgba(244,236,216,.72); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-block: 26px; flex-wrap: wrap; gap: 12px; }
.footer__bottom span, .footer__bottom a { font-size: .78rem; color: rgba(244,236,216,.5); }
.footer__bottom a:hover { color: var(--cream); }

/* ---------- Animations reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(34,18,18,.92); display: none; align-items: center; justify-content: center; padding: 5vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 28px; color: var(--cream); font-size: 2rem; line-height: 1; }

/* ============================================================
   CARTE DE VISITE VIRTUELLE
   ============================================================ */
.vcard-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--oxblood); position: relative; overflow: hidden; }
.vcard-page::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 600px at 50% -10%, rgba(244,236,216,.10), transparent 60%); }
.vcard { width: 100%; max-width: 420px; background: var(--paper); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; position: relative; z-index: 1; }
.vcard__head { background: var(--cream); padding: 38px 30px 26px; text-align: center; border-bottom: 1px solid var(--hairline); }
.vcard__head img { height: 120px; width: auto; margin: 0 auto 8px; }
.vcard__head .role { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--oxblood); }
.vcard__body { padding: 26px 26px 30px; }
.vcard__name { font-family: var(--serif); font-size: 1.7rem; text-align: center; margin-bottom: 4px; }
.vcard__loc { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.vcard__actions { display: grid; gap: 11px; }
.vcard-btn { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-radius: 12px; border: 1px solid var(--hairline-2); background: var(--white); transition: all .35s var(--ease); }
.vcard-btn:hover { border-color: var(--oxblood); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.vcard-btn svg { width: 22px; height: 22px; stroke: var(--oxblood); flex-shrink: 0; }
.vcard-btn .l { font-weight: 600; font-size: .95rem; }
.vcard-btn .s { font-size: .78rem; color: var(--muted); }
.vcard-btn--primary { background: var(--oxblood); border-color: var(--oxblood); }
.vcard-btn--primary svg { stroke: var(--cream); }
.vcard-btn--primary .l { color: var(--cream); }
.vcard-btn--primary .s { color: rgba(244,236,216,.7); }
.vcard__foot { text-align: center; padding: 18px; border-top: 1px solid var(--hairline); }
.vcard__foot a { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--oxblood); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { max-width: 460px; }
  .pricing { grid-template-columns: 1fr; }
  .estimator { position: static; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; order: -1; }
  .devis__grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav, .header__cta .btn { display: none; }
  .burger { display: flex; }
  .header__cta { gap: 0; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery { gap: 12px; }
  .shot--tall, .shot--wide, .shot--sq, .shot--half { grid-column: span 12; aspect-ratio: 16/11; }
  .process { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__media .badge { left: 0; }
}

/* ============================================================
   SÉLECTEUR DE LANGUE
   ============================================================ */
.lang-switch { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; }
.lang-switch a { color: var(--muted-2); padding: 3px 2px; transition: color .3s; position: relative; }
.lang-switch a:hover { color: var(--oxblood); }
.lang-switch a.active { color: var(--oxblood); font-weight: 500; }
.lang-switch .sep { color: var(--hairline-2); }
.header.scrolled .lang-switch a { color: var(--muted); }
.header.scrolled .lang-switch a.active { color: var(--oxblood); }
.header.scrolled .lang-switch a:hover { color: var(--oxblood); }
.header__cta { display: flex; align-items: center; gap: 18px; }
/* Sélecteur dans le menu mobile */
.mobile-menu .lang-switch { font-size: 1rem; margin-top: 10px; gap: 12px; }
.mobile-menu .lang-switch a { color: var(--muted); }
.mobile-menu .lang-switch a.active { color: var(--oxblood); }
/* Sélecteur sur la carte de visite */
.vcard__lang { position: absolute; top: 16px; right: 18px; z-index: 3; }
.vcard__lang .lang-switch a { color: var(--oxblood); opacity: .55; }
.vcard__lang .lang-switch a.active { opacity: 1; font-weight: 500; }
.vcard__lang .lang-switch .sep { color: rgba(107,21,24,.3); }
@media (max-width: 680px) {
  .header__cta .lang-switch { display: inline-flex; }
}
