/* =============================================
   LA LOGE DE LA DOLARDE — Luxury CSS
   ============================================= */

/* ---------- Custom properties ---------- */
:root {
  --gold:         #B89A6A;
  --gold-light:   #D4B896;
  --gold-dark:    #8C7248;
  --forest:       #1A2B1A;
  --forest-mid:   #2A4229;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D5;
  --charcoal:     #1A1A1A;
  --text:         #2E2E2E;
  --text-mid:     #555;
  --text-light:   #888;
  --white:        #FFFFFF;

  --font-serif:   'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-sans:    'Montserrat', system-ui, -apple-system, sans-serif;

  --nav-h:        80px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft:  0 4px 30px rgba(0,0,0,0.08);
  --shadow-med:   0 8px 40px rgba(0,0,0,0.14);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Typography shared ---------- */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--forest-mid);
}

.section__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 54ch;
}

.section__header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__header--center .section__desc { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184,154,106,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.nav.nav--scrolled {
  background: rgba(26, 43, 26, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  height: 68px;
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-pre {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.85rem;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--gold-light); }

.nav__link--cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  margin-left: 0.5rem;
}
.nav__link--cta:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Couche de base : assombrit l'ensemble */
  background: linear-gradient(to bottom,
    rgba(5,12,5,0.62) 0%,
    rgba(5,12,5,0.45) 35%,
    rgba(5,12,5,0.60) 65%,
    rgba(5,12,5,0.78) 100%
  );
}

/* Voile sombre concentré là où se trouve le texte */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* assombrit fortement la zone centrale haute (titre) */
    radial-gradient(
      ellipse 80% 55% at 50% 38%,
      rgba(5,12,5,0.58) 0%,
      transparent 100%
    ),
    /* assombrit le haut (eyebrow) */
    linear-gradient(to bottom,
      rgba(5,12,5,0.30) 0%,
      transparent 25%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
  animation: fadeUp 1.2s ease both;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero__title em {
  display: block;
  font-style: italic;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 4px 40px rgba(0,0,0,0.4);
}
.hero__title span {
  display: block;
  font-size: clamp(1.1rem, 2.8vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-top: 0.4rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.75);
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem auto;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}

.hero__desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__badges {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
  z-index: 2;
}
.hero__badge {
  text-align: right;
  color: var(--white);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.hero__badge span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero__badge-sep {
  color: var(--gold);
  font-size: 0.7rem;
  text-align: right;
}

/* =============================================
   STRIP
   ============================================= */
.strip {
  background: var(--forest);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}
.strip__track {
  display: inline-flex;
  gap: 2rem;
  animation: stripScroll 35s linear infinite;
}
.strip__track span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.strip__sep { color: var(--gold) !important; }

/* =============================================
   NOTRE HISTOIRE
   ============================================= */
.histoire {
  padding: 7rem 0;
  background: var(--white);
}

.histoire__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.histoire__image-col { position: relative; }

.histoire__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.histoire__frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.histoire__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.histoire__frame:hover .histoire__img { transform: scale(1.03); }

.histoire__ornement {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 110px;
  height: 110px;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.histoire__ornement span {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.histoire__ornement p {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.histoire__content { padding: 1rem 0; }

.histoire__divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.8rem;
}

.histoire__lead {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.histoire__body {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.histoire__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.histoire__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.histoire__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.histoire__feature strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.histoire__feature span {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* =============================================
   CITATION
   ============================================= */
.citation {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}
.citation__bg {
  position: absolute;
  inset: 0;
}
.citation__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.citation__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,26,0.88), rgba(10,18,10,0.82));
}
.citation__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.citation__ornement {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.citation blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.citation cite {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

/* =============================================
   NOS ESPACES
   ============================================= */
.espaces {
  padding: 7rem 0;
  background: var(--cream);
}

.espaces__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.espaces__container .section__header { margin-bottom: 4rem; }

.espaces__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5px;
}

.espace-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.espace-card--large {
  grid-column: 1 / 3;
}

.espace-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.espace-card--large .espace-card__img-wrap { aspect-ratio: 16/9; }

.espace-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.espace-card:hover .espace-card__img { transform: scale(1.05); }

.espace-card__body {
  padding: 1.8rem;
  flex-grow: 1;
}

.espace-card__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--cream-dark);
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.8rem;
}
.espace-card__tag--gold {
  color: var(--gold-dark);
  border-color: var(--gold-light);
}

.espace-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}

.espace-card__body p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.espace-card__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color var(--transition), letter-spacing var(--transition);
}
.espace-card__cta:hover {
  color: var(--gold);
  letter-spacing: 0.2em;
}

.espace-card--accent { background: var(--forest); }
.espace-card--accent .espace-card__body h3 { color: var(--white); }
.espace-card--accent .espace-card__body p { color: rgba(255,255,255,0.7); }
.espace-card--accent .espace-card__cta { color: var(--gold-light); }
.espace-card--accent .espace-card__cta:hover { color: var(--gold); }
.espace-card--accent .espace-card__tag { color: var(--gold-light); border-color: rgba(255,255,255,0.2); }

/* =============================================
   GALERIE
   ============================================= */
.galerie {
  background: var(--charcoal);
  padding-bottom: 5rem;
}

.galerie__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.galerie__header .section__title { color: var(--white); }
.galerie__header .section__title em { color: var(--gold-light); }
.galerie__header .section__eyebrow { color: var(--gold); }
.galerie__header .section__desc { color: rgba(255,255,255,0.5); }

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 3px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3px;
}

.galerie__item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  background: #111;
}
.galerie__item--tall { grid-row: span 2; }
.galerie__item--wide { grid-column: span 2; }

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.4s ease;
  opacity: 0.85;
}
.galerie__item:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.galerie__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.galerie__item:hover .galerie__overlay { opacity: 1; }
.galerie__overlay span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.3s ease;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.lightbox__caption {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 7rem 0;
  background: var(--white);
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services__container .section__header { margin-bottom: 4rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 4rem;
}

.service-item {
  padding: 2.5rem 2rem;
  border: 1px solid var(--cream-dark);
  text-align: center;
  transition: var(--transition);
  background: var(--white);
}
.service-item:hover {
  background: var(--cream);
  border-color: var(--gold-light);
}
.service-item--highlight {
  background: var(--forest);
  border-color: var(--forest);
}
.service-item--highlight:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
}
.service-item--highlight .service-item__icon { color: var(--gold); }
.service-item--highlight h3 { color: var(--white); }
.service-item--highlight p { color: rgba(255,255,255,0.65); }

.service-item__icon {
  color: var(--gold);
  margin: 0 auto 1.2rem;
  width: fit-content;
}

.service-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.services__note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.8rem 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.services__note p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
}
.services__note strong { color: var(--forest-mid); font-style: normal; }

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.temoignages {
  padding: 7rem 0;
  background: var(--cream);
}

.temoignages__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.temoignages__container .section__header { margin-bottom: 1rem; }

.temoignages__stars {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  text-align: center;
}

.temoignages__viewport {
  overflow: hidden;
  margin-bottom: 2rem;
}

.temoignages__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.temoignage-card {
  min-width: 100%;
  padding: 3rem 4rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--cream-dark);
}

.temoignage-card__stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.temoignage-card__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 660px;
  margin: 0 auto 2rem;
}

.temoignage-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.temoignage-card__name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.temoignage-card__source {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--text-light);
  padding-left: 0.75rem;
  border-left: 1px solid var(--cream-dark);
}

.temoignages__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.temoignages__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
}
.temoignages__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.temoignages__dots {
  display: flex;
  gap: 0.5rem;
}
.temoignage-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.temoignage-dot.active { background: var(--gold); transform: scale(1.3); }

.temoignages__cta-row {
  text-align: center;
}
.temoignages__ext-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color var(--transition);
}
.temoignages__ext-link:hover { color: var(--gold); }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 7rem 0;
  background: var(--white);
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact__divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
}

.contact__intro {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

.contact__block {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact__block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.contact__block h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.contact__tel {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
}
.contact__tel:hover { color: var(--gold); }

.contact__email {
  display: block;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color var(--transition);
  margin-top: 0.2rem;
}
.contact__email:hover { color: var(--gold); }

.contact__sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.contact__block address {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.contact__map-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color var(--transition);
}
.contact__map-link:hover { color: var(--gold); }

.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.contact__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.55rem 1rem;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.contact__social:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Form */
.contact__form-wrap {
  background: var(--cream);
  padding: 3rem;
}

.contact__form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d8d0c4;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8b0a4;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.contact__form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.contact__form-success {
  text-align: center;
  padding: 3rem;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.contact__form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.contact__form-success p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  padding-top: 5rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer__logo-pre {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}
.footer__logo-main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.footer__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__nav h4,
.footer__contact-col h4,
.footer__services-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold-light); }

.footer__contact-col address {
  font-size: 0.82rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.footer__contact-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  margin-bottom: 0.25rem;
}
.footer__contact-col a:hover { color: var(--gold-light); }

.footer__services-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__services-col li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding-left: 1rem;
  position: relative;
}
.footer__services-col li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 0.3rem;
}

.footer__bottom {
  text-align: center;
  padding: 1.5rem 2rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer__credits { margin-top: 0.2rem; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.15); opacity: 1; }
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .histoire__container { gap: 3rem; }
  .espaces__grid { grid-template-columns: 1fr 1fr; }
  .espace-card--large { grid-column: 1 / 3; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(26,43,26,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links.nav__links--open { transform: translateY(0); }
  .nav__link { padding: 0.85rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav__link--cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
  .nav__toggle { display: flex; }

  .hero__badges { display: none; }
  .histoire__container { grid-template-columns: 1fr; gap: 3rem; }
  .histoire__ornement { right: 0; }
  .contact__container { grid-template-columns: 1fr; gap: 3rem; }
  .galerie__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .temoignage-card { padding: 2.5rem 2rem; }
}

@media (max-width: 640px) {
  .espaces__grid { grid-template-columns: 1fr; }
  .espace-card--large { grid-column: 1; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .footer__container { grid-template-columns: 1fr; gap: 2rem; }
  .galerie__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .galerie__item--tall { grid-row: span 1; }
  .galerie__item--wide { grid-column: span 2; }
  .contact__form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero__title em { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .temoignage-card { padding: 2rem 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .histoire__ornement { display: none; }
}
