/* =================================================================
   Transform' & Moi — Salon de coiffure
   Direction : luxe organique & éditorial · chaleureux & naturel
   Fraunces (display) + Mulish (body)
   ================================================================= */

/* ---------- Variables ---------- */
:root {
  /* Couleurs */
  --porcelain: #FBF6F0;   /* fond principal, blanc chaud */
  --linen:     #F3EADC;   /* sections alternées */
  --sand:      #E6D7C4;   /* bordures douces */
  --sand-deep: #D8C5AD;
  --blush:     #E0B7AF;   /* rose poudré */
  --blush-tint:#F6E4DF;
  --clay:      #A07E68;   /* brun clair / taupe */
  --cocoa:     #6B5141;   /* brun moyen */
  --espresso:  #3B2E26;   /* texte foncé chaud */
  --ink:       #2A211B;
  --gold:      #B68B43;   /* doré */
  --gold-soft: #D8BC83;
  --white-warm:#FFFDFA;

  /* Typo */
  --display: "Fraunces", "Georgia", serif;
  --body: "Mulish", system-ui, sans-serif;

  /* Mesures */
  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 18px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 50px -28px rgba(59, 46, 38, .45);
  --shadow-card: 0 26px 60px -34px rgba(59, 46, 38, .55);
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--porcelain);
  color: var(--espresso);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Grain global */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

/* ---------- Typographie ---------- */
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex; align-items: center; gap: .7em;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .8;
}

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--clay); font-weight: 500; }

.section-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-sub { margin-top: 1.2rem; color: var(--cocoa); font-size: 1.05rem; max-width: 52ch; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .82em 1.5em;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn-lg { padding: 1.02em 1.85em; font-size: .98rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--espresso); color: var(--porcelain);
  box-shadow: 0 14px 30px -16px rgba(59, 46, 38, .8);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(59, 46, 38, .9); }
.btn-ghost {
  background: transparent; color: var(--espresso);
  box-shadow: inset 0 0 0 1.5px var(--sand-deep);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--clay); transform: translateY(-2px); color: var(--cocoa); }
.cta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 0 0 rgba(216,188,131,.7); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216,188,131,.6); }
  70% { box-shadow: 0 0 0 8px rgba(216,188,131,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,188,131,0); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 246, 240, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(214,197,173,.6), 0 16px 40px -34px rgba(59,46,38,.5);
  height: 64px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }

.logo { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); }
.logo-mark { color: var(--gold); display: inline-flex; transition: transform .5s var(--ease); }
.logo:hover .logo-mark { transform: rotate(-8deg); }
.logo-text {
  font-family: var(--display); font-weight: 600; font-size: 1.32rem; letter-spacing: -.01em;
  line-height: 1;
}
.logo-text em { font-style: italic; color: var(--gold); font-weight: 500; }
.logo-text .apos { color: var(--clay); }

/* Logo image (header) */
.logo-img { display: block; height: 48px; width: auto; transition: opacity .3s var(--ease); }
.logo:hover .logo-img { opacity: .85; }
@media (max-width: 768px) {
  .logo-img { height: 38px; }
}

.nav { display: flex; gap: clamp(.5rem, 1.6vw, 1.7rem); }
.nav-link {
  position: relative; font-weight: 500; font-size: .95rem; color: var(--cocoa);
  padding: .35rem 0; transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .7rem; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cocoa); box-shadow: inset 0 0 0 1.4px var(--sand-deep);
  transition: background .3s, color .3s, transform .3s;
}
.icon-btn:hover { background: var(--espresso); color: var(--porcelain); transform: translateY(-2px); }

/* Burger */
.burger { display: none; width: 42px; height: 42px; border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.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; top: 0; right: 0; z-index: 1001;
  width: min(86vw, 380px); height: 100dvh;
  background: var(--linen);
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
  transform: translateX(105%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; gap: 2rem;
  box-shadow: -30px 0 60px -40px rgba(59,46,38,.6);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; }
.m-link {
  font-family: var(--display); font-size: 1.5rem; font-weight: 500;
  color: var(--ink); padding: .65rem 0; border-bottom: 1px solid var(--sand);
  transition: color .3s, padding-left .3s;
}
.m-link:hover { color: var(--clay); padding-left: .4rem; }
.mobile-cta { display: flex; flex-direction: column; gap: .8rem; margin-top: auto; }
.mobile-phone { text-align: center; font-family: var(--display); font-size: 1.3rem; color: var(--cocoa); }
.menu-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(42,33,27,.4); backdrop-filter: blur(2px); opacity: 0; transition: opacity .4s; }
.menu-overlay.show { opacity: 1; }

/* ---------- Placeholder photo ---------- */
.ph-photo {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  background: linear-gradient(135deg, var(--blush-tint), var(--sand) 60%, var(--clay));
  border-radius: inherit;
}
.ph-photo::after { /* duotone chaleureux pour cohérence */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(224,183,175,.35), rgba(107,81,65,.42));
  mix-blend-mode: multiply; opacity: .55; transition: opacity .6s var(--ease); z-index: 2;
}
.ph-photo[data-label]::before {
  content: attr(data-label); position: absolute; z-index: 3; left: 14px; bottom: 12px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  color: var(--porcelain); opacity: .85; text-shadow: 0 1px 6px rgba(42,33,27,.5);
}
.ph-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.18) saturate(.92) contrast(1.02);
  transition: transform .9s var(--ease), filter .6s var(--ease);
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 2rem); padding-bottom: 3rem;
  background: radial-gradient(120% 90% at 85% 5%, var(--blush-tint), transparent 55%),
              linear-gradient(180deg, var(--porcelain), var(--linen));
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; }
.blob-1 { width: 420px; height: 420px; background: var(--blush); top: -120px; right: -80px; opacity: .35; }
.blob-2 { width: 320px; height: 320px; background: var(--gold-soft); bottom: -100px; left: -60px; opacity: .25; }
.blob-3 { width: 260px; height: 260px; background: var(--sand-deep); top: 40%; left: 42%; opacity: .3; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero-title {
  font-family: var(--display); font-weight: 500; font-optical-sizing: auto;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--clay); }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--cocoa); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem .65rem; margin-top: 2.2rem; }
.hero-tags li {
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--cocoa);
  padding: .42em 1em; border-radius: var(--radius-pill);
  background: rgba(255,253,250,.6); box-shadow: inset 0 0 0 1px var(--sand);
}

/* Visuel hero */
.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  overflow: hidden; aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card); border: 6px solid var(--white-warm);
}
.hero-card {
  position: absolute; bottom: -22px; left: -22px; z-index: 3;
  background: var(--white-warm); border-radius: 16px;
  padding: 1rem 1.3rem; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: .12rem; max-width: 200px;
}
.hero-card-line { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.hero-card strong { font-family: var(--display); font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.hero-card-sub { font-size: .82rem; color: var(--cocoa); }
.hero-sprig { position: absolute; top: -34px; right: 8px; color: var(--gold); opacity: .8; z-index: 3; }

.scroll-hint {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--clay); font-weight: 600;
}
.scroll-hint svg { animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- PRESTATIONS ---------- */
.prestations { background: var(--porcelain); }
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 1.25rem;
}
.price-card {
  background: var(--white-warm); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.1rem); box-shadow: var(--shadow-soft);
  border: 1px solid rgba(230,215,196,.7);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.price-card--accent { background: linear-gradient(165deg, var(--espresso), var(--cocoa)); color: var(--porcelain); border: none; }
.price-card--accent .price-card-title { color: var(--gold-soft); }
.price-card--accent .price-card-title::after { background: rgba(216,188,131,.4); }
.price-card--accent .lab { color: var(--linen); }
.price-card--accent .lab small { color: var(--sand-deep); }
.price-card--accent .lead { border-color: rgba(230,215,196,.3); }
.price-card--accent .pr { color: #fff; }
.price-card--accent .price-note { color: rgba(243,234,220,.75); border-color: rgba(230,215,196,.25); }

.price-card-title {
  font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--ink);
  margin-bottom: 1.1rem; padding-bottom: .7rem; position: relative;
}
.price-card-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 2px; background: var(--gold); }

.menu li { display: flex; align-items: baseline; gap: .55rem; padding: .5rem 0; }
.menu .lab { color: var(--espresso); font-weight: 500; font-size: .96rem; }
.menu .lab small { display: block; font-weight: 400; font-size: .76rem; color: var(--clay); letter-spacing: .01em; }
.menu .lead { flex: 1; min-width: 12px; border-bottom: 1px dotted var(--sand-deep); transform: translateY(-3px); }
.menu .pr { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--gold); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-feature .lab { font-weight: 700; }
.menu-feature .pr { color: var(--blush); }
.price-card--accent .menu-feature .pr { color: var(--gold-soft); }
.price-note { margin-top: auto; padding-top: 1rem; font-size: .85rem; color: var(--cocoa); border-top: 1px solid var(--sand); font-style: italic; }

.alacarte {
  margin-top: 1.25rem; background: var(--white-warm); border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-soft); border: 1px solid rgba(230,215,196,.7);
}
.alacarte-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem; margin-bottom: 1.2rem; }
.alacarte-head p { color: var(--cocoa); font-style: italic; }
.alacarte-head .price-card-title { margin-bottom: 0; padding-bottom: .55rem; }
.alacarte-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1rem, 4vw, 3rem); }
.price-footnote { margin-top: 1.6rem; text-align: center; font-size: .85rem; color: var(--clay); font-style: italic; }

/* ---------- GALERIE ---------- */
.galerie { background: linear-gradient(180deg, var(--linen), var(--porcelain)); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px; gap: 1rem;
}
.g-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); cursor: pointer;
}
.g-item .ph-photo { border-radius: var(--radius); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-item figcaption {
  position: absolute; z-index: 4; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.1rem .9rem; color: var(--white-warm);
  font-family: var(--display); font-weight: 500; font-size: 1.05rem;
  background: linear-gradient(transparent, rgba(42,33,27,.7));
  transform: translateY(8px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g-item:hover .ph-photo::after { opacity: .15; }
.g-item:hover .ph-photo img { transform: scale(1.07); filter: sepia(0) saturate(1) contrast(1); }
.gallery-cta { margin-top: 2rem; text-align: center; color: var(--cocoa); }
.gallery-cta a { color: var(--clay); font-weight: 700; border-bottom: 1.5px solid var(--gold-soft); transition: color .3s; }
.gallery-cta a:hover { color: var(--gold); }

/* ---------- PRODUITS ---------- */
.produits { background: var(--porcelain); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.product-card {
  background: var(--white-warm); border-radius: var(--radius-lg); padding: 1rem 1rem 1.6rem;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(230,215,196,.7);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-img { aspect-ratio: 4 / 3; border-radius: 22px; margin-bottom: 1.2rem; }
.product-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--ink); padding: 0 .6rem .35rem; }
.product-card p { color: var(--cocoa); font-size: .96rem; padding: 0 .6rem; }

.product-banner {
  margin-top: 2rem; background: linear-gradient(150deg, var(--blush-tint), var(--linen));
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; overflow: hidden; position: relative;
  border: 1px solid var(--sand);
}
.product-banner-text { max-width: 50ch; }
.product-banner-text h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: var(--ink); margin-bottom: .7rem; }
.product-banner-text p { color: var(--cocoa); margin-bottom: 1.5rem; }
.product-banner-mark { color: var(--gold); opacity: .35; flex-shrink: 0; }

/* ---------- À PROPOS ---------- */
.apropos { background: linear-gradient(180deg, var(--porcelain), var(--linen)); }
.apropos-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.apropos-visual { position: relative; }
.apropos-visual .ph-photo { border-radius: var(--radius-lg) var(--radius-lg) 130px 130px; aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); border: 6px solid var(--white-warm); }
.apropos-badge {
  position: absolute; bottom: 26px; right: -18px; z-index: 4;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--espresso); color: var(--porcelain);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); text-align: center;
}
.apropos-badge-num { font-family: var(--display); font-size: 1.7rem; font-weight: 600; color: var(--gold-soft); line-height: 1; }
.apropos-badge-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; margin-top: .25rem; }
.apropos-copy p { color: var(--cocoa); margin-top: 1.1rem; font-size: 1.04rem; }
.values { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.5rem; }
.values li { display: flex; gap: .85rem; align-items: flex-start; }
.value-ic {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blush-tint); color: var(--clay); font-size: 1.05rem;
  box-shadow: inset 0 0 0 1px var(--sand-deep);
}
.values strong { display: block; font-family: var(--display); font-size: 1.08rem; color: var(--ink); font-weight: 600; }
.values span span, .values li div span { font-size: .9rem; color: var(--cocoa); }

/* ---------- CONTACT ---------- */
.contact { background: var(--linen); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: .3rem; }
.contact-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--sand); }
.contact-row--link { transition: transform .3s var(--ease); }
.contact-row--link:hover { transform: translateX(6px); }
.contact-row--link:hover .contact-ic { background: var(--espresso); color: var(--porcelain); }
.contact-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white-warm); color: var(--clay); box-shadow: inset 0 0 0 1.4px var(--sand-deep);
  transition: background .3s, color .3s;
}
.contact-label { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.contact-row strong { font-family: var(--display); font-size: 1.18rem; color: var(--ink); font-weight: 600; line-height: 1.3; }
.hours { margin-top: 1.4rem; padding: 1.2rem 1.3rem; background: var(--white-warm); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.hours-title { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1.1rem; margin-bottom: .3rem; }
.hours-note { font-size: .92rem; color: var(--cocoa); }

.contact-form { background: var(--white-warm); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.4rem); box-shadow: var(--shadow-card); border: 1px solid rgba(230,215,196,.7); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--cocoa); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82em 1em; border-radius: 12px;
  background: var(--porcelain); border: 1.5px solid var(--sand);
  transition: border-color .3s, box-shadow .3s, background .3s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--clay); background: var(--white-warm);
  box-shadow: 0 0 0 4px rgba(160,126,104,.12);
}
.form-status { margin-top: .9rem; font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #5a7d4e; }
.form-status.err { color: #b5524a; }
.form-hint { margin-top: .7rem; font-size: .8rem; color: var(--clay); text-align: center; }

.map { margin-top: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 6px solid var(--white-warm); }
.map iframe { display: block; filter: sepia(.12) saturate(.95); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--espresso); color: var(--linen); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-logo { color: var(--porcelain); font-size: 1.5rem; display: inline-block; margin-bottom: 1rem; }
.footer-logo em { color: var(--gold-soft); }
.footer-logo .apos { color: var(--blush); }
.footer-brand p { color: rgba(243,234,220,.7); font-size: .94rem; max-width: 36ch; margin-bottom: 1.2rem; }
.footer-social { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-soft); font-weight: 600; font-size: .9rem; transition: color .3s; }
.footer-social:hover { color: var(--porcelain); }
.footer-col h4 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--porcelain); margin-bottom: 1rem; }
.footer-col address { font-style: normal; color: rgba(243,234,220,.72); font-size: .94rem; line-height: 1.9; }
.footer-col address a:hover, .footer-links a:hover { color: var(--gold-soft); }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: rgba(243,234,220,.72); font-size: .94rem; transition: color .3s; }
.footer-rdv { color: rgba(243,234,220,.72); font-size: .94rem; margin-bottom: 1rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem;
  padding: 1.5rem var(--gutter); border-top: 1px solid rgba(243,234,220,.16);
  font-size: .84rem; color: rgba(243,234,220,.6);
}
.footer-bottom a { border-bottom: 1px solid rgba(216,188,131,.4); transition: color .3s; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Bouton flottant ---------- */
.float-rdv {
  position: fixed; z-index: 900; bottom: 18px; right: 18px;
  display: none; align-items: center; gap: .55rem;
  padding: .85em 1.3em; border-radius: var(--radius-pill);
  background: var(--espresso); color: var(--porcelain); font-weight: 600; font-size: .92rem;
  box-shadow: 0 18px 40px -16px rgba(42,33,27,.9);
  transform: translateY(120px); transition: transform .5s var(--ease);
}
.float-rdv.show { transform: translateY(0); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- Page mentions légales ---------- */
.legal-page { padding-top: calc(var(--header-h) + 3rem); }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); color: var(--ink); margin-bottom: .5rem; }
.legal-page h2 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin: 2.2rem 0 .6rem; }
.legal-page p { color: var(--cocoa); margin-bottom: .8rem; }
.legal-back { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; color: var(--clay); font-weight: 600; }
.legal-back:hover { color: var(--gold); }
.legal-placeholder { background: var(--linen); border-left: 3px solid var(--gold-soft); padding: 1rem 1.2rem; border-radius: 0 12px 12px 0; font-style: italic; color: var(--clay); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .apropos-grid { grid-template-columns: 1fr; }
  .apropos-visual { max-width: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .cta-rdv { display: none; }
  .burger { display: flex; }
  .icon-btn { display: none; }
  .float-rdv { display: inline-flex; }
  .scroll-hint { display: none; }
  .values { grid-template-columns: 1fr; }
  .product-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .product-banner-mark { align-self: flex-end; }
  .hero-card { left: 0; bottom: -16px; }
}

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .alacarte-cols { gap: 0; }
}

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

/* ===================================================================
   AJOUTS MARKETING — Offre découverte & Avis clients
   (styles additifs, aucune règle existante modifiée)
   =================================================================== */

/* ---------- Offre découverte (bandeau temporaire) ---------- */
.offre-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem 2rem;
  background: var(--blush-tint);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.4rem, 4vw, 2.6rem);
}
.offre-text { max-width: 52ch; }
.offre-title {
  font-family: var(--display); font-weight: 600; line-height: 1.05;
  font-size: clamp(1.5rem, 4vw, 2rem); color: var(--espresso); margin: .25rem 0 .4rem;
}
.offre-title strong { color: var(--clay); }
.offre-sub { color: var(--cocoa); font-size: .96rem; }

/* ---------- Avis clients ---------- */
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.avis-card {
  display: flex; flex-direction: column; gap: .8rem;
  background: var(--white-warm);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  box-shadow: var(--shadow-soft);
}
.avis-stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.avis-card blockquote { margin: 0; font-style: italic; line-height: 1.55; color: var(--espresso); }
.avis-card figcaption { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--clay); }
.avis-cta { text-align: center; margin-top: clamp(1.6rem, 4vw, 2.4rem); }

@media (max-width: 860px) {
  .avis-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .offre-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}
