/* =================================================================
   Laura Jutge — Photographe
   Feuille de style commune
   Palette : beige / greige / taupe / mauve (douce, maternité/famille)
   ================================================================= */

:root {
  /* Fonds (les 4 teintes de la cliente) */
  --bg:        #F4EFE8;   /* fond général clair */
  --bg-2:      #EAE3D7;   /* section alternée */
  --cream:     #D9D2C5;   /* nuancier 2 */
  --greige:    #CCC4B8;   /* nuancier 1 */
  --taupe:     #B2A28D;   /* nuancier 3 (le plus foncé) */
  --mauve:     #C7B4AE;   /* nuancier 4 (rose poudré) */

  /* Accents & texte */
  --accent:    #AE917F;   /* taupe-rosé : intertitres, liens */
  --accent-d:  #97836C;   /* boutons */
  --accent-dd: #7d6b56;   /* boutons survol */
  --brown:     #473F38;   /* texte principal / barre foncée */
  --muted:     #8B8175;   /* texte secondaire */
  --white:     #FFFFFF;
  --line:      #E2D8CB;

  /* Typographies */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --radius: 4px;
  --shadow: 0 18px 50px -22px rgba(71, 63, 56, 0.40);
  --shadow-soft: 0 10px 30px -18px rgba(71, 63, 56, 0.32);
  --trans: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--brown);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown);
  margin: 0 0 0.4em;
}
p { margin: 0 0 1.1em; }

/* ---------- Utilitaires ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container--narrow { max-width: 860px; }
.section { padding: 100px 0; }
.section--tight { padding: 70px 0; }
.bg-2 { background: var(--bg-2); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--taupe);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-3px);
}

.title { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
.subtitle { font-size: clamp(1.5rem, 3vw, 2rem); }
.lead { font-size: 1.12rem; color: var(--muted); }
.muted { color: var(--muted); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--accent-d);
  background: var(--accent-d);
  color: var(--white);
  cursor: pointer;
  transition: var(--trans);
}
.btn:hover { background: var(--accent-dd); border-color: var(--accent-dd); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brown); border-color: var(--taupe); }
.btn--ghost:hover { background: var(--brown); border-color: var(--brown); color: var(--white); }
.btn--light { background: var(--white); color: var(--brown); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* =================================================================
   PLACEHOLDERS IMAGES  (à remplacer par les vraies photos)
   ================================================================= */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 60%),
    linear-gradient(160deg, var(--greige), var(--taupe));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.30), transparent 45%),
    radial-gradient(circle at 75% 80%, rgba(178,162,141,0.30), transparent 50%);
}
.ph__icon { position: relative; z-index: 1; width: 44px; height: 44px; opacity: 0.5; color: var(--white); }
.ph--v2 { background-image: linear-gradient(160deg, var(--mauve), var(--taupe)); }
.ph--v3 { background-image: linear-gradient(160deg, var(--cream), var(--greige)); }
.ph--v3 .ph__icon { color: var(--accent); }
.ph--v4 { background-image: linear-gradient(160deg, #cdbcc4, var(--taupe)); }

/* =================================================================
   PROTECTION PHOTOS — filigrane + anti-copie
   ================================================================= */
.wm { position: relative; overflow: hidden; }
.wm img, .wm .ph, .ph, .bubble__circle img {
  -webkit-user-select: none; user-select: none;
  -webkit-user-drag: none; -webkit-touch-callout: none;
}
.wm::after {
  content: "";
  position: absolute;
  inset: -60%;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-22deg);
  opacity: 0.13;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='150'%3E%3Ctext x='8' y='80' font-family='Georgia, serif' font-size='21' fill='%23ffffff'%3ELaura Jutge%3C/text%3E%3C/svg%3E");
}

/* =================================================================
   EN-TÊTE / NAVIGATION  (logo blanc, barre foncée au scroll)
   ================================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--trans);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 13px; line-height: 1; }
.brand__logo { display: inline-flex; color: var(--white); }
.brand__logo svg { width: 46px; height: auto; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.brand__tag {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  padding: 6px 0;
  transition: color var(--trans);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--white);
  transition: width var(--trans);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link:hover, .nav__link.is-active { color: var(--white); }

/* Lien "Espace client" + bouton "Réserver" dans le menu */
.nav__link--client { display: inline-flex; align-items: center; gap: 6px; }
.nav__link--client svg { width: 15px; height: 15px; }
.nav__cta {
  border: 1px solid rgba(255,255,255,0.65);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: var(--trans);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--white); color: var(--brown) !important; border-color: var(--white); }
.nav__cta.is-active { background: var(--white); color: var(--brown) !important; border-color: var(--white); }

/* Barre foncée quand on défile (logo blanc reste lisible) */
.header.is-scrolled {
  background: rgba(64, 56, 50, 0.96);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 6px 24px -16px rgba(0,0,0,0.6);
}

/* Burger */
.burger { display: none; flex-direction: column; gap: 6px; width: 30px; background: none; border: 0; cursor: pointer; padding: 4px; z-index: 110; }
.burger span { display: block; height: 2px; width: 100%; background: var(--white); transition: var(--trans); }
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =================================================================
   HERO (Bienvenue)
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--mauve), var(--taupe) 78%);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,0.28), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(71,63,56,0.35), transparent 55%);
}
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(71,63,56,0.45), rgba(71,63,56,0.08)); }
.hero__inner { position: relative; z-index: 2; max-width: 720px; padding-top: 60px; }
.hero .eyebrow { color: rgba(255,255,255,0.9); }
.hero .eyebrow::before { background: rgba(255,255,255,0.6); }
.hero__title { color: var(--white); font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 500; margin-bottom: 0.15em; }
.hero__text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.85); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; text-align: center; }
.hero__scroll span { display: block; width: 1px; height: 46px; margin: 12px auto 0; background: rgba(255,255,255,0.6); animation: scrollline 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollline { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Bannière de page (intérieur) */
.pagehead {
  position: relative;
  padding: 188px 0 88px;
  background: linear-gradient(160deg, var(--mauve), var(--taupe) 85%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.pagehead__bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 25% 30%, rgba(255,255,255,0.26), transparent 45%), radial-gradient(circle at 80% 80%, rgba(71,63,56,0.30), transparent 55%); }
.pagehead__inner { position: relative; z-index: 2; }
.pagehead h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem); }
.pagehead .eyebrow { color: rgba(255,255,255,0.9); }
.pagehead .eyebrow::before { background: rgba(255,255,255,0.6); }
.pagehead p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.8); margin-top: 18px; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }

/* =================================================================
   INTRO (image + texte)
   ================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media .ph { aspect-ratio: 4 / 5; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__badge { position: absolute; left: -26px; top: 34px; background: var(--white); padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow-soft); text-align: center; z-index: 3; }
.split__badge strong { font-family: var(--serif); font-size: 2rem; color: var(--accent); display: block; line-height: 1; }
.split__badge span { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: var(--accent); margin-top: 10px; }

.quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.5; color: var(--brown); max-width: 820px; margin: 0 auto; }
.quote::before { content: "“"; font-size: 2.4em; line-height: 0; color: var(--taupe); vertical-align: -0.4em; margin-right: 6px; }

.shead { max-width: 640px; margin: 0 auto 56px; }
.shead.text-center { text-align: center; }
.shead p { color: var(--muted); margin-bottom: 0; }

/* =================================================================
   PRESTATIONS — bulles catégories
   ================================================================= */
.bubbles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 28px; }
.bubble { display: flex; flex-direction: column; align-items: center; gap: 18px; background: none; border: 0; cursor: pointer; font-family: inherit; }
.bubble__circle {
  position: relative;
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--trans);
}
.bubble__circle .ph { position: absolute; inset: 0; }
.bubble__circle::before {
  content: "";
  position: absolute; inset: 0; z-index: 3;
  background: rgba(71,63,56,0.0);
  transition: background var(--trans);
}
.bubble__plus {
  position: absolute; z-index: 4;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%) scale(0.6);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--trans);
}
.bubble:hover .bubble__circle { transform: translateY(-8px); box-shadow: var(--shadow); }
.bubble:hover .bubble__circle::before { background: rgba(71,63,56,0.28); }
.bubble:hover .bubble__plus { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.bubble__label { font-family: var(--serif); font-size: 1.45rem; color: var(--brown); transition: color var(--trans); }
.bubble:hover .bubble__label { color: var(--accent); }

/* =================================================================
   LIGHTBOX (galerie pop-up)
   ================================================================= */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox__overlay { position: absolute; inset: 0; background: rgba(45,39,34,0.86); backdrop-filter: blur(5px); }
.lightbox__dialog {
  position: relative; z-index: 1;
  width: 92%; max-width: 1000px; max-height: 88vh;
  overflow-y: auto;
  background: var(--bg);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
  animation: popin 0.4s cubic-bezier(0.22,0.61,0.36,1);
}
@keyframes popin { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.lightbox__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.lightbox__title { font-size: 2rem; margin: 0; }
.lightbox__title + p { margin: 4px 0 0; color: var(--muted); font-size: 0.95rem; }
.lightbox__close { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--brown); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.lightbox__close:hover { background: var(--brown); color: var(--white); border-color: var(--brown); transform: rotate(90deg); }
.lightbox__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lightbox__grid .ph { aspect-ratio: 1 / 1; border-radius: var(--radius); }
.lightbox__empty { text-align: center; color: var(--muted); font-style: italic; padding: 10px 0 4px; }

/* =================================================================
   TARIFS — bandeaux colorés (texte + photo)
   ================================================================= */
.band { padding: 0; }
.band__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 380px; }
.band__text { padding: 64px clamp(26px, 5vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.band__media { position: relative; min-height: 320px; }
.band__media .ph { position: absolute; inset: 0; }
.band--reverse .band__text { order: 2; }
.band__kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-d); margin-bottom: 12px; }
.band__name { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 12px; }
.band__price { font-family: var(--serif); font-size: 2.4rem; color: var(--accent-d); line-height: 1; margin-bottom: 4px; }
.band__from { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.band__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.band__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; }
.band__list svg { flex-shrink: 0; width: 17px; height: 17px; color: var(--accent-d); margin-top: 5px; }
.band .btn { align-self: flex-start; }

/* Couleurs de bandeaux */
.band--cream  { background: var(--cream); }
.band--greige { background: var(--greige); }
.band--mauve  { background: var(--mauve); }
.band--taupe  { background: var(--taupe); }
.band--taupe .band__name, .band--taupe .band__kicker { color: var(--brown); }
.band--taupe .band__price, .band--taupe .band__list svg { color: var(--white); }
.band--taupe .band__price { color: #fff; }

.price-note { text-align: center; font-size: 0.95rem; color: var(--muted); font-style: italic; max-width: 760px; margin: 56px auto 0; }

/* Options supplémentaires */
.addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 40px; max-width: 760px; margin: 0 auto; }
.addon { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.addon span:last-child { font-family: var(--serif); font-size: 1.25rem; color: var(--accent); white-space: nowrap; }

/* =================================================================
   AVIS (Google)
   ================================================================= */
.grating { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 56px; }
.grating__score { font-family: var(--serif); font-size: 3.4rem; color: var(--brown); line-height: 1; }
.stars { display: inline-flex; gap: 3px; color: #E7B65A; }
.stars svg { width: 22px; height: 22px; }
.grating__count { font-size: 0.92rem; color: var(--muted); }
.gbadge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.gbadge svg { width: 18px; height: 18px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.review__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--mauve); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.3rem; }
.review__name { font-family: var(--serif); font-size: 1.2rem; color: var(--brown); }
.review__meta { font-size: 0.78rem; color: var(--muted); }
.review .stars { margin-bottom: 12px; }
.review .stars svg { width: 17px; height: 17px; }
.review__text { font-size: 0.97rem; color: var(--brown); margin: 0; }
.review__g { margin-top: 16px; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.review__g svg { width: 15px; height: 15px; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group label { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.form-group input, .form-group textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--brown);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; transition: var(--trans);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(174,145,127,0.14); }
.form-group textarea { resize: vertical; min-height: 150px; }

.info-card { background: var(--white); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-soft); }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.info-item__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.info-item__icon svg { width: 20px; height: 20px; }
.info-item h4 { font-size: 1.15rem; margin-bottom: 2px; }
.info-item p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.info-item a:hover { color: var(--accent); }

.socials { display: flex; gap: 14px; margin-top: 8px; }
.social-btn { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; color: var(--brown); transition: var(--trans); }
.social-btn:hover { background: var(--accent-d); color: var(--white); transform: translateY(-3px); }
.social-btn svg { width: 20px; height: 20px; }

.form-status { font-size: 0.95rem; }

/* =================================================================
   RÉSERVATION
   ================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 60px; }
.step { background: var(--white); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-soft); text-align: center; }
.step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--mauve); color: #fff; font-family: var(--serif); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.reservation-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.form-group select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--brown);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; transition: var(--trans); cursor: pointer;
}
.form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(174,145,127,0.14); }

.callout { background: var(--bg-2); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 26px 28px; }
.callout + .callout { margin-top: 20px; }
.callout h4 { font-size: 1.25rem; margin-bottom: 8px; }
.callout p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.callout strong { color: var(--accent-d); }

/* =================================================================
   ESPACE CLIENT — galeries privées
   ================================================================= */
.access-box { max-width: 520px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 42px 38px; box-shadow: var(--shadow-soft); text-align: center; }
.access-box h2 { margin-bottom: 6px; }
.access-box > p { color: var(--muted); margin-bottom: 26px; }
.access-box .form-group { text-align: left; margin-bottom: 0; }
.access-row { display: flex; gap: 12px; }
.access-row input { flex: 1; text-transform: uppercase; letter-spacing: 0.12em; }
.access-row .btn { flex-shrink: 0; }
.access-msg { margin-top: 16px; font-size: 0.92rem; min-height: 1.2em; }
.access-hint { margin-top: 18px; font-size: 0.82rem; color: var(--muted); font-style: italic; }

.client-gallery__head { text-align: center; margin-bottom: 30px; }
.client-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.client-photo { position: relative; display: block; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.client-photo .ph { position: absolute; inset: 0; }
.client-photo img { width: 100%; height: 100%; object-fit: cover; }
.client-photo__dl { position: absolute; right: 10px; bottom: 10px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.94); color: var(--accent-d); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(6px); transition: var(--trans); }
.client-photo:hover .client-photo__dl { opacity: 1; transform: none; }

/* =================================================================
   ARTICLE LÉGAL
   ================================================================= */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.7rem; margin: 40px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--brown); }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 1.1em; }
.legal .muted-box { background: var(--bg-2); border-left: 3px solid var(--accent); padding: 16px 20px; border-radius: var(--radius); font-size: 0.92rem; color: var(--muted); }

/* =================================================================
   BANDEAU CTA
   ================================================================= */
.cta { background: linear-gradient(160deg, var(--mauve), var(--taupe) 82%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.24), transparent 45%), radial-gradient(circle at 80% 70%, rgba(71,63,56,0.28), transparent 50%); }
.cta__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta h2 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); }
.cta p { color: rgba(255,255,255,0.92); margin-bottom: 30px; }

/* =================================================================
   PIED DE PAGE
   ================================================================= */
.footer { background: var(--brown); color: rgba(244,239,232,0.7); padding: 70px 0 30px; font-size: 0.92rem; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid rgba(244,239,232,0.12); }
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand .brand__name { font-size: 1.7rem; }
.footer__brand p { max-width: 320px; color: rgba(244,239,232,0.6); }
.footer h4 { color: var(--bg); font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { color: rgba(244,239,232,0.7); transition: color var(--trans); }
.footer__links a:hover { color: var(--mauve); }
.footer .socials { margin-top: 4px; }
.footer .social-btn { background: rgba(244,239,232,0.08); color: var(--bg); }
.footer .social-btn:hover { background: var(--accent-d); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 0.82rem; color: rgba(244,239,232,0.5); }
.footer__bottom a:hover { color: var(--mauve); }

/* =================================================================
   ANIMATIONS D'APPARITION
   ================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .bubbles { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80%, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: var(--brown); padding: 40px;
    transform: translateX(100%); transition: transform var(--trans);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.6);
  }
  .nav.is-open { transform: none; }
  .nav__link { color: rgba(255,255,255,0.92) !important; font-size: 1.05rem; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split__media { order: 0; }
  .band__inner { grid-template-columns: 1fr; }
  .band--reverse .band__text { order: 0; }
  .band__media { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .lightbox__grid { grid-template-columns: repeat(2, 1fr); }
  .reservation-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .client-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .bubbles { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .reviews, .addons { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .split__badge { left: 0; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .lightbox__dialog { padding: 26px 18px; }
  .client-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .access-row { flex-direction: column; }
}
