/* THE LUXURY CONCIERGERIE — charte haut de gamme */
@import url("fonts.css");

:root {
  /* Fond crème (blanc cassé) — évite les zones qui tirent sur le blanc pur */
  --bg-void: #f3ede4;
  --bg-deep: #ede6db;
  --bg-elevated: #e9e2d7;
  --bg-card: #e3dcd0;
  /* Pour les stops de dégradés : même teinte que --bg-void (#f3ede4) */
  --bg-fade-rgb: 243, 237, 228;
  --border-subtle: rgba(160, 120, 50, 0.15);
  --border-accent: rgba(160, 120, 50, 0.4);
  --gold: #a07832;
  --gold-bright: #7a5a20;
  --gold-dim: #c9a962;
  --text: #14110e;
  --text-soft: rgba(20, 17, 14, 0.94);
  --text-muted: rgba(20, 17, 14, 0.78);
  --header-bg: rgba(var(--bg-fade-rgb), 0.92);
  --nav-panel-bg: rgba(var(--bg-fade-rgb), 0.98);
  --footer-bg: #ebe4d8;
  --shadow-color: rgba(0, 0, 0, 0.12);
  --font-display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.5rem;
  --max: 72rem;
  --max-narrow: 40rem;
  --pad-x: clamp(1rem, 4vw + 0.35rem, 2.5rem);
  --measure: min(42rem, 65ch);
  /* Blocs éditoriaux larges (ex. page Services, grille 2 colonnes) : aligné sur la largeur utile du site */
  --measure-wide: min(var(--max), 94vw);
  /* Prose / À propos : colonne un peu plus aérée que l’ancien alignement sur --measure */
  --measure-prose: min(50rem, 76ch);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.28vw + 0.96rem, 1.075rem);
  line-height: clamp(1.62, 0.12vw + 1.56, 1.72);
  color: var(--text-soft);
  background: var(--bg-void);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

p {
  color: #000000;
}

body.lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.48;
  /* Stops en rgba(fond, 0) au lieu de transparent : fusion homogène, sans halos trop clairs */
  background:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(201, 169, 98, 0.09), rgba(var(--bg-fade-rgb), 0) 56%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(90, 70, 40, 0.07), rgba(var(--bg-fade-rgb), 0) 52%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(210, 190, 155, 0.06), rgba(var(--bg-fade-rgb), 0) 50%);
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease-out), opacity 0.25s;
}

a:hover {
  color: var(--gold-bright);
}

:focus-visible {
  outline: 1px solid var(--gold-dim);
  outline-offset: 3px;
}

.nav-toggle:focus-visible {
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skip-link:focus {
  left: 0.5rem;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  /* Grille : logo | navigation (alignée à droite de la zone centrale) | langue — évite d’écarter réseaux et FR sur grands écrans */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: clamp(0.85rem, 2vw, 1.35rem);
  padding: 0 max(var(--pad-x), env(safe-area-inset-right, 0px)) 0 max(var(--pad-x), env(safe-area-inset-left, 0px));
  transition: background 0.45s var(--ease-out), border-color 0.45s, backdrop-filter 0.45s;
  border-bottom: 1px solid transparent;
}

.site-header > .brand {
  grid-column: 1;
}

.site-header > .nav-panel {
  grid-column: 2;
  justify-self: end;
  min-width: 0;
}

.site-header > .header-tools {
  grid-column: 3;
}

.site-header.is-scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-subtle);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.15rem;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.25s;
}

.lang-btn:hover {
  color: var(--gold);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand:focus-visible {
  outline: 1px solid var(--gold-dim);
  outline-offset: 6px;
}

.brand__mark {
  flex-shrink: 0;
  width: clamp(2.65rem, 5.2vw, 3.25rem);
  height: clamp(2.65rem, 5.2vw, 3.25rem);
  padding: 1px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #e4d4a5, #c9a962 45%, #8a7548);
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}

.brand__mark-inner {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  background: var(--bg-void);
}

.brand__mark-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand__wordmark {
  height: clamp(2.35rem, 4.5vw, 2.85rem);
  width: auto;
  aspect-ratio: 400 / 60;
  min-width: 10.5rem;
}

.brand__wordmark .wl1 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.32em;
  fill: var(--gold-bright);
}

.brand__wordmark .wl2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.22em;
  fill: var(--text);
}

@media (max-width: 480px) {
  .brand__mark {
    width: clamp(2.35rem, 12vw, 2.85rem);
    height: clamp(2.35rem, 12vw, 2.85rem);
  }

  .brand__wordmark {
    min-width: 0;
    max-width: 58vw;
  }

  .brand__wordmark .wl2 {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .brand__wordmark .wl1 {
    font-size: 13px;
    letter-spacing: 0.24em;
  }
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 201;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border-radius: 2px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.125rem;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-links a.is-active {
  color: var(--gold-bright);
}

.nav-social {
  display: flex;
  gap: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border-subtle);
}

.nav-social a {
  color: var(--text-muted);
  display: flex;
  opacity: 0.85;
}

.nav-social a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-social svg {
  width: 1.125rem;
  height: 1.125rem;
}

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    column-gap: 0;
  }

  .site-header > .brand,
  .site-header > .nav-panel,
  .site-header > .header-tools {
    grid-column: auto;
    justify-self: auto;
    min-width: unset;
  }

  .nav-toggle {
    display: flex;
  }

  .header-tools {
    margin-inline-end: 0.75rem;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 2rem var(--pad-x) 2.5rem;
    background: var(--nav-panel-bg);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease-out), opacity 0.35s;
  }

  body.nav-open .nav-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .nav-social {
    border-left: none;
    border-top: 1px solid var(--border-subtle);
    padding: 1.5rem 0 0;
    margin-top: 1.5rem;
    justify-content: center;
  }
}

/* ——— Layout ——— */
main {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
}

.section {
  padding: clamp(3.25rem, 10vw, 8rem) var(--pad-x);
}

.section--tight {
  padding-top: clamp(2rem, 6vw, 3.5rem);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

h1,
h2,
h3,
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.1rem, 6.5vw + 0.5rem, 4.75rem);
  margin: 0 0 1rem;
  font-weight: 400;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.65rem, 4vw + 0.35rem, 3.25rem);
  margin: 0 0 1.25rem;
  font-weight: 400;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw + 0.65rem, 1.75rem);
  margin: 0 0 0.75rem;
  text-wrap: balance;
}

.lead {
  font-size: clamp(1rem, 1.1vw + 0.88rem, 1.2rem);
  font-weight: 300;
  color: var(--text-soft);
  max-width: min(36rem, 58ch);
  margin: 0 auto;
  line-height: clamp(1.65, 0.15vw + 1.58, 1.78);
  text-wrap: pretty;
  padding-inline: 0.25rem;
}

.divider {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem auto;
}

.divider--left {
  margin-left: 0;
  margin-right: auto;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(88vh, 56rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(3.5rem, 9vw, 7rem) var(--pad-x) clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Carrousel hero : images en fondu, rotation pilotée par JS (5 s) */
.hero__slideshow {
  background: var(--bg-deep);
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 2, 0.52) 0%, rgba(8, 5, 2, 0.68) 50%, var(--bg-void) 100%),
    radial-gradient(ellipse 80% 60% at 50% 20%, transparent 0%, rgba(8, 5, 2, 0.55) 100%);
  z-index: 1;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: min(52rem, 92vw);
  margin-inline: auto;
}

.hero__content h1 {
  background: linear-gradient(
    155deg,
    #e4c96a 0%,
    #fff8dc 18%,
    #c9a962 32%,
    #fff5c0 48%,
    #e4c96a 62%,
    #fff8dc 76%,
    #c9a962 88%,
    #fff5c0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero__content .eyebrow {
  color: var(--gold-bright);
  opacity: 0.95;
}

.hero__content .lead {
  color: rgba(255, 248, 220, 0.82);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw + 0.4rem, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 248, 220, 0.92);
  margin: 0 0 0.5rem;
  line-height: clamp(1.38, 0.2vw + 1.32, 1.5);
  text-wrap: balance;
  padding-inline: 0.35rem;
}

.hero__line {
  display: block;
  width: 1px;
  height: clamp(3rem, 8vw, 5rem);
  margin: 1.75rem auto 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.6;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border-accent);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  transition: background 0.35s var(--ease-out), color 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.btn:hover {
  background: rgba(201, 169, 98, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201, 169, 98, 0.08);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.22), rgba(201, 169, 98, 0.06));
  border-color: var(--gold);
  color: var(--text);
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.35), rgba(201, 169, 98, 0.12));
  color: var(--text);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ——— Values ——— */
.values {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  margin-top: 3rem;
}

.value-cell {
  background: var(--bg-elevated);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  transition: background 0.4s var(--ease-out);
}

.value-cell:hover {
  background: var(--bg-card);
}

.value-cell__icon {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--gold-bright);
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.value-cell p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

/* ——— Testimonials ——— */
.testimonials {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 3.5rem;
}

.quote-card {
  position: relative;
  padding: 0;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}

.quote-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.quote-card__body {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.quote-card blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.6vw + 0.88rem, 1.125rem);
  font-style: italic;
  font-weight: 400;
  line-height: clamp(1.52, 0.12vw + 1.46, 1.62);
  color: var(--text-soft);
  text-wrap: pretty;
}

.quote-card__author {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-card__stars {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

/* ——— Vocation / CTA block ——— */
.vocation {
  text-align: center;
}

.vocation .wrap {
  max-width: var(--max);
}

/* Classe dédiée + !important : surcharge toute autre règle sur .lead (cache / ordre CSS) */
.vocation .vocation__lead {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: none !important;
  width: 100% !important;
  text-wrap: balance;
  white-space: normal;
  font-size: clamp(0.98rem, 0.35vw + 0.92rem, 1.08rem);
  line-height: 1.55;
  padding-inline: 0 !important;
}

.vocation .bullet-elegant {
  max-width: min(52rem, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1rem, 2.5vw, 2rem);
  row-gap: 0;
  justify-items: center;
}

.bullet-elegant {
  list-style: none;
  padding: 0;
  margin: 2rem auto 2.5rem;
  max-width: min(36rem, 94vw);
  text-align: left;
}

.bullet-elegant li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.vocation .bullet-elegant li {
  width: min(100%, 22rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 700px) {
  .vocation .bullet-elegant {
    grid-template-columns: 1fr;
    max-width: min(36rem, 94vw);
  }
}

.bullet-elegant li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

@media (min-width: 901px) {
  .section.vocation {
    padding-inline: clamp(0.75rem, 2vw, 1.5rem);
  }
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  padding: clamp(4rem, 12vw, 9rem) var(--pad-x) clamp(2.75rem, 7vw, 5rem);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 98, 0.08), rgba(var(--bg-fade-rgb), 0) 62%);
}

.page-hero .lead {
  max-width: var(--measure);
  margin-inline: auto;
}

.page-hero h1 {
  color: var(--gold);
}

/* ——— Prose / content ——— */
.prose {
  max-width: var(--measure-prose);
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.25rem, 5.5vw, 4rem) var(--pad-x) clamp(3.25rem, 9vw, 6rem);
}

.prose p {
  margin: 0 0 1.15rem;
  color: var(--text-soft);
  line-height: clamp(1.62, 0.1vw + 1.58, 1.74);
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
}

.prose h2 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.85rem;
  color: var(--gold);
  line-height: 1.2;
}

.prose h2:first-child {
  margin-top: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0;
  justify-content: center;
}

.pill {
  padding: 0.5rem 1.1rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
  margin: clamp(1.75rem, 4vw, 2.5rem) 0;
}

.feature-box {
  padding: clamp(1.15rem, 3vw, 1.5rem);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  font-size: clamp(0.9rem, 0.4vw + 0.82rem, 0.95rem);
  color: var(--text-soft);
  line-height: 1.62;
}

.feature-box strong {
  color: var(--text);
  font-weight: 500;
}

.gallery-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.gallery-premium figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.gallery-premium__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.gallery-premium__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.gallery-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}

.gallery-premium figure:hover img,
.gallery-premium__trigger:hover img {
  transform: scale(1.06);
}

/* ——— Lightbox galerie ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 4, 0.92);
  cursor: pointer;
}

.lightbox__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: min(100%, 92vw);
  max-height: 100%;
}

.lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: min(85vh, 100%);
}

.lightbox__img {
  max-width: 100%;
  max-height: min(82vh, 90vw);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.lightbox__img.is-loaded {
  opacity: 1;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text-soft);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--border-accent);
  color: var(--gold-bright);
}

.lightbox__close {
  top: clamp(0.75rem, 2vw, 1.25rem);
  right: clamp(0.75rem, 2vw, 1.25rem);
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  font-size: 1.35rem;
  line-height: 1;
}

.lightbox__prev {
  left: clamp(0.35rem, 2vw, 1rem);
}

.lightbox__next {
  right: clamp(0.35rem, 2vw, 1rem);
}

@media (max-width: 640px) {
  .lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.15rem;
  }
}

.lightbox--single .lightbox__nav {
  display: none;
}

.lightbox__counter {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ——— Services ——— */
.services-wrap {
  max-width: var(--measure-wide);
  width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) var(--pad-x) clamp(3.25rem, 9vw, 6rem);
}

.service-block {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-block--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
  min-height: 26rem;
}

.service-block--split:last-of-type {
  border-bottom: none;
}

.service-block--reverse {
  direction: rtl;
}

.service-block--reverse > * {
  direction: ltr;
}

.service-block__img {
  overflow: hidden;
  position: relative;
}

.service-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.service-block--split:hover .service-block__img img {
  transform: scale(1.04);
}

.service-block__body {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-elevated);
}

.service-block h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-block ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
  line-height: clamp(1.58, 0.1vw + 1.52, 1.68);
}

.service-block li {
  margin-bottom: 0.55rem;
  padding-right: 0.25rem;
}

@media (max-width: 768px) {
  .service-block--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-block--reverse {
    direction: ltr;
  }

  .service-block__img {
    aspect-ratio: 16 / 9;
  }
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.services-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

@media (max-width: 700px) {
  .services-showcase {
    grid-template-columns: 1fr;
  }
}

/* ——— Contact ——— */
.contact-split {
  max-width: min(56rem, 94vw);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 5vw, 4rem);
  padding: clamp(2.25rem, 5.5vw, 4rem) var(--pad-x) clamp(3.25rem, 9vw, 6rem);
  align-items: start;
}

@media (max-width: 800px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-field {
  margin-bottom: 1.35rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: max(1rem, 0.95rem);
  font-weight: 300;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.15);
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-note {
  font-size: clamp(0.8rem, 0.35vw + 0.74rem, 0.8125rem);
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.62;
}

.contact-blurb {
  color: var(--text-soft);
  line-height: clamp(1.62, 0.12vw + 1.55, 1.75);
  font-size: clamp(0.95rem, 0.4vw + 0.88rem, 1.02rem);
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
  margin: 0;
}

/* ——— Legal ——— */
.legal {
  max-width: var(--measure);
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.25rem, 5.5vw, 4rem) var(--pad-x) clamp(4rem, 11vw, 8rem);
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--gold);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.2rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.legal p,
.legal li {
  color: var(--text-soft);
  font-size: clamp(0.92rem, 0.35vw + 0.85rem, 0.98rem);
  line-height: clamp(1.58, 0.1vw + 1.52, 1.68);
  hyphens: auto;
  -webkit-hyphens: auto;
}

.legal ul {
  padding-left: 1.2rem;
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(2.75rem, 7vw, 5rem) var(--pad-x) max(clamp(1.35rem, 3.2vw, 2.25rem), env(safe-area-inset-bottom, 0px));
  background: var(--footer-bg);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3.5vw, 2.75rem);
  align-items: center;
}

.footer-grid .footer-brand {
  padding: 0;
  margin: 0;
  width: auto;
  max-width: none;
  justify-self: center;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: stretch;
  }

  .footer-grid .footer-brand {
    justify-self: center;
    padding: 0.25rem 0;
  }
}

.footer-grid h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--gold);
}

.footer-grid .tag {
  font-size: 0.8125rem;
  color: var(--text-soft);
  max-width: 28rem;
  line-height: 1.7;
}

.footer-contact {
  text-align: right;
}

@media (max-width: 700px) {
  .footer-contact {
    text-align: left;
  }
}

.footer-contact a {
  display: block;
  font-size: clamp(0.78rem, 0.4vw + 0.7rem, 0.8125rem);
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-brand {
  text-align: center;
}

.footer-brand__link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.35s var(--ease-out);
}

.footer-brand__link:hover {
  opacity: 1;
}

.footer-brand__link:focus-visible {
  outline: 1px solid var(--gold-dim);
  outline-offset: 8px;
}

.footer-brand__img {
  width: auto;
  height: clamp(7.75rem, 20vw, 11rem);
  max-width: min(100%, 16rem);
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: none;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
}

.footer-brand__link:hover .footer-brand__img {
  transform: scale(1.03);
  filter: drop-shadow(0 5px 18px rgba(0, 0, 0, 0.4));
}

@media (max-width: 480px) {
  .footer-brand__img {
    height: clamp(6.75rem, 38vw, 9rem);
    max-width: min(100%, 14rem);
  }
}

.footer-bar {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-bar a {
  color: var(--gold-dim);
}

.footer-bar a:hover {
  color: var(--gold);
}

/* ——— WhatsApp ——— */
.wa-float {
  position: fixed;
  z-index: 150;
  right: max(clamp(1rem, 3vw, 1.5rem), env(safe-area-inset-right, 0px));
  bottom: max(clamp(1rem, 3vw, 1.5rem), env(safe-area-inset-bottom, 0px));
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #1a7a45;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.wa-float svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: #fff;
}

/* ——— Finitions mobile (lisibilité & encombrement) ——— */
@media (max-width: 480px) {
  .footer-bar {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }

  .btn {
    min-height: 2.75rem;
    padding-inline: 1.25rem;
  }

  .eyebrow {
    letter-spacing: 0.22em;
  }

  .footer-grid h3 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .footer-grid .tag {
    font-size: 0.8rem;
    line-height: 1.65;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .hero__content h1 {
    font-size: clamp(1.75rem, 12vw, 2.35rem);
  }
}

/* ——— Reveal ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  /* Disparition instantanée, apparition animée */
  transition: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-reveal].is-visible[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal].is-visible[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal].is-visible[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal].is-visible[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal].is-visible[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ——— Notification formulaire contact ——— */
.form-notice {
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--bg-elevated);
  animation: noticeIn 0.5s var(--ease-out) both;
}

.form-notice--error {
  border-color: #b04040;
  background: rgba(176, 64, 64, 0.06);
}

@keyframes noticeIn {
  from { opacity: 0; transform: translateY(-0.75rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-notice__title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.15rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-notice__body {
  font-size: clamp(0.9rem, 0.4vw + 0.78rem, 0.95rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
