/* ============================================================
   LE TEMPS D'UN TANTRA — MAIN CSS
   ============================================================ */

/* ── 0. FONT FACES ─────────────────────────────────────────── */
@font-face {
  font-family: "Neue Montreal";
  src: url("../assets/NeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../assets/NeueMontreal-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../assets/NeueMontreal-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../assets/NeueMontreal-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../assets/NeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../assets/NeueMontreal-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../assets/NeueMontreal-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../assets/NeueMontreal-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── 1. CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  --bg-primary: #141414;
  --text-light: #fbfbfb;
  --gold: #fbb646;
  --gold-light: #ffd07a;
  --gold-dark: #c98a1a;
  --border-gold: rgba(251, 182, 70, 0.3);

  --font-heading: "the-seasons", serif;
  --font-body: "Neue Montreal", sans-serif;

  --nav-height: 80px;
  --section-pad: 80px;
  --section-pad-lg: 120px;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --max-width: 1280px;
  --gutter: 24px;
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Fixed texture background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../assets/Group\ 13.png");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

/* All direct children above texture */
body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  text-transform: uppercase;
}
h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
}
h4 {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
}

p {
  font-family: var(--font-body);
  font-size: clamp(0.93rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: rgba(251, 251, 251, 0.82);
}

.tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}

/* ── 4. LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.section--lg {
  padding: var(--section-pad-lg) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  opacity: 0.8;
}

.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}

/* ── 5. CTA BUTTONS ─────────────────────────────────────────── */
.cta-1,
.cta-2,
.cta-3,
.cta-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 12px 32px;
  min-height: 44px;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

/* CTA-1: filled white */
.cta-1 {
  background-color: var(--text-light);
  border-color: var(--text-light);
  color: #141414;
}
.cta-1:hover {
  background-color: transparent;
  color: var(--text-light);
}

/* CTA-2: ghost white */
.cta-2 {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}
.cta-2:hover {
  background-color: var(--text-light);
  color: #141414;
}

/* CTA-3: filled gold */
.cta-3 {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #141414;
}
.cta-3:hover {
  background-color: transparent;
  color: var(--gold);
}

/* CTA-4: ghost gold */
.cta-4 {
  background-color: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.cta-4:hover {
  background-color: var(--gold);
  color: #141414;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ── 6. NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background-color: rgba(20, 20, 20, 0.9);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color var(--transition-slow);
}

.navbar.scrolled {
  background-color: rgba(20, 20, 20, 0.98);
}

.navbar__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 34px;
  width: auto;
}

/* Center nav */
.navbar__nav {
  display: none;
  justify-content: center;
}

.navbar__nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__nav a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.navbar__nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--gold);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  width: 100%;
}

/* Right CTA */
.navbar__right {
  display: none;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 2px;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transition:
    transform var(--transition),
    opacity var(--transition),
    width var(--transition);
  transform-origin: center;
}

.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100dvh;
  background-color: #1a1a1a;
  border-left: 1px solid var(--border-gold);
  z-index: 1001;
  padding: calc(var(--nav-height) + 40px) 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  visibility: hidden;
}

/* Drawer close button */
.nav-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  border-radius: 2px;
}

.nav-drawer__close:hover {
  background-color: var(--gold);
  color: #141414;
}

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nav-drawer__links a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
}

.nav-drawer__links a:hover {
  color: var(--gold);
}

.nav-drawer__cta {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--border-gold);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity var(--transition);
}

/* Desktop nav display */
@media (min-width: 1024px) {
  .navbar__inner {
    grid-template-columns: 1fr auto 1fr;
  }
  .navbar__nav {
    display: flex;
  }
  .navbar__right {
    display: flex;
  }
  .navbar__hamburger {
    display: none;
  }
}

/* ── 7. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0); /* prevent mobile zoom/repaint on scroll */
  will-change: auto;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh; /* static viewport — ignores address bar resize */
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 20, 20, 0.78) 0%,
    rgba(20, 20, 20, 0.55) 50%,
    rgba(20, 20, 20, 0.82) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 60px var(--gutter);
  width: 100%;
}

.hero__content h1 {
  color: var(--text-light);
  margin-bottom: 28px;
  letter-spacing: 0.14em;
}

.hero__content p {
  font-size: clamp(0.97rem, 1.8vw, 1.1rem);
  max-width: 580px;
  margin: 0 auto;
  color: rgba(251, 251, 251, 0.86);
}

.hero__content .cta-group {
  justify-content: center;
}

/* Compact hero (inner pages) */
.hero--compact {
  min-height: 52vh;
  align-items: flex-end;
}

.hero--compact .hero__content {
  padding-bottom: 60px;
  text-align: left;
}

/* Hero placeholder (pages without specific hero images) */
.hero-placeholder {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

.hero-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(251, 182, 70, 0.03) 50%,
    rgba(251, 182, 70, 0.07) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-placeholder__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--gutter);
}

.hero-placeholder__content h1 {
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.hero-placeholder__content p {
  max-width: 520px;
  font-size: 1rem;
  color: rgba(251, 251, 251, 0.72);
}

.hero-gold-line {
  display: block;
  width: 56px;
  height: 1px;
  background-color: var(--gold);
  margin-top: 28px;
  opacity: 0.7;
}

/* ── 8. CAROUSEL ─────────────────────────────────────────────── */
.carousel-section {
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}

.carousel-section__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 var(--gutter);
}

.carousel-section__header h2 {
  margin-bottom: 10px;
}

.carousel-section__header p {
  color: rgba(251, 251, 251, 0.6);
  font-size: 0.92rem;
}

.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 8px 0;
  width: max-content;
  will-change: transform;
}

/* Review cards */
.review-card {
  flex-shrink: 0;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: rgba(251, 182, 70, 0.6);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__google-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.review-card__author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-light);
}

.review-card__stars {
  display: flex;
  gap: 3px;
}

.review-card__stars span {
  color: var(--gold);
  font-size: 0.85rem;
}

.review-card__text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(251, 251, 251, 0.72);
  font-style: italic;
  flex: 1;
}

/* Team cards */
.team-card {
  flex-shrink: 0;
  width: 260px;
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: border-color var(--transition);
}

.team-card:hover {
  border-color: var(--gold);
}

.team-card__image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card__image {
  transform: scale(1.03);
}

.team-card__body {
  padding: 18px 18px 22px;
  text-align: center;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ── 9. TWO-COLUMN SECTIONS ─────────────────────────────────── */
.two-col {
  padding: var(--section-pad) 0;
}

.two-col__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.two-col__image {
  position: relative;
  overflow: hidden;
}

.two-col__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.two-col__image:hover img {
  transform: scale(1.02);
}

.two-col__image-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: 1;
}

.two-col__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.two-col__text h2,
.two-col__text h3 {
  color: var(--text-light);
}

@media (min-width: 768px) {
  .two-col__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .two-col--reversed .two-col__image {
    order: 2;
  }

  .two-col--reversed .two-col__text {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .two-col__inner {
    gap: 80px;
  }
}

/* ── 10. ADVANTAGES (3-COL) ─────────────────────────────────── */
.advantages {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.advantages__header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 var(--gutter);
}

.advantages__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.advantage-item__line {
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 4px;
}

.advantage-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.advantage-item__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(251, 251, 251, 0.68);
  flex: 1;
}

.advantage-item__link {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  transition:
    opacity var(--transition),
    gap var(--transition);
}

.advantage-item__link:hover {
  gap: 14px;
  opacity: 0.8;
}

.advantage-item__link::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--gold);
  flex-shrink: 0;
  transition: width var(--transition);
}

.advantage-item__link:hover::before {
  width: 28px;
}

@media (min-width: 768px) {
  .advantages__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .advantages__grid .advantage-item + .advantage-item {
    border-left: 1px solid var(--border-gold);
    padding-left: 40px;
  }
}

@media (min-width: 1024px) {
  .advantages__grid {
    gap: 64px;
  }
}

/* ── 11. FAQ ACCORDION ──────────────────────────────────────── */
.faq {
  padding: var(--section-pad) 0;
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 var(--gutter);
}

.faq__header h2 {
  margin-bottom: 12px;
}

.faq__header p {
  font-size: 0.92rem;
  color: rgba(251, 251, 251, 0.58);
  max-width: 460px;
  margin: 0 auto;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.faq-item {
  border-bottom: 1px solid var(--border-gold);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-gold);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  transition:
    transform var(--transition),
    border-color var(--transition);
  line-height: 1;
  font-family: var(--font-body);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}

.faq-item__answer {
  overflow: hidden;
  height: 0;
}

.faq-item__answer-inner {
  padding: 0 0 24px;
}

.faq-item__answer-inner p {
  font-size: 0.93rem;
  line-height: 1.78;
  color: rgba(251, 251, 251, 0.7);
}

/* ── 12. SERVICES & PRICING ─────────────────────────────────── */
.services-section {
  padding: var(--section-pad) 0;
}

.services-section + .services-section {
  border-top: 1px solid var(--border-gold);
}

.services-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.services-section__header {
  margin-bottom: 48px;
}

.services-section__header h2 {
  margin-bottom: 16px;
  color: var(--text-light);
}

.services-section__description {
  max-width: 640px;
  font-size: 0.96rem;
  line-height: 1.8;
  color: rgba(251, 251, 251, 0.72);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pricing-card {
  border: 1px solid var(--border-gold);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background-color: rgba(251, 182, 70, 0.02);
  transition:
    border-color var(--transition),
    background-color var(--transition);
}

.pricing-card:hover {
  border-color: var(--gold);
  background-color: rgba(251, 182, 70, 0.05);
}

.pricing-card__info {
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.pricing-card__duration {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(251, 251, 251, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Bienfaits section */
.bienfaits-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border-gold);
}

.bienfaits-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.bienfaits-inner h2 {
  margin-bottom: 24px;
  color: var(--text-light);
}

.bienfaits-inner p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(251, 251, 251, 0.72);
}

/* Highlights */
.highlights-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border-gold);
}

.highlights-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.highlights-section__header {
  margin-bottom: 40px;
}

.highlights-section__header h2 {
  color: var(--text-light);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.highlight-card {
  border: 1px solid var(--border-gold);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background-color: rgba(251, 182, 70, 0.025);
  transition: border-color var(--transition);
}

.highlight-card:hover {
  border-color: var(--gold);
}

.highlight-card__icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1.2;
  margin-top: 1px;
}

.highlight-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 6px;
}

.highlight-card__text {
  font-size: 0.88rem;
  color: rgba(251, 251, 251, 0.7);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 13. SALON PAGE ─────────────────────────────────────────── */
.editorial-section {
  padding: var(--section-pad) 0;
}

.editorial-section + .editorial-section {
  border-top: 1px solid var(--border-gold);
}

.editorial-section__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Split layout for salon page (text + image placeholder) */
.editorial-section__inner--split {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.editorial-section__inner--reverse {
  direction: rtl;
}
.editorial-section__inner--reverse > * {
  direction: ltr;
}

.editorial-section__image-placeholder {
  aspect-ratio: 4/3;
  background: rgba(251, 182, 70, 0.06);
  border: 1px dashed rgba(251, 182, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.editorial-section__image-placeholder span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251, 182, 70, 0.4);
}

@media (max-width: 768px) {
  .editorial-section__inner--split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editorial-section__inner--reverse {
    direction: ltr;
  }
  .editorial-section__image-placeholder {
    order: -1;
  }
}

.editorial-section__inner h2 {
  margin-bottom: 32px;
  color: var(--text-light);
}

.editorial-section__inner h3 {
  margin-bottom: 24px;
  color: var(--text-light);
}

.editorial-section__inner p {
  font-size: 1rem;
  line-height: 1.88;
  color: rgba(251, 251, 251, 0.76);
  margin-bottom: 20px;
}

.editorial-section__inner p:last-child {
  margin-bottom: 0;
}

.editorial-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(251, 251, 251, 0.62);
  line-height: 1.75;
}

/* ── 14. CHARTE PAGE ─────────────────────────────────────────── */
.charte-section {
  padding: var(--section-pad) 0;
}

.charte-section + .charte-section {
  border-top: 1px solid var(--border-gold);
}

.charte-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.charte-section__number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: rgba(251, 182, 70, 0.1);
  line-height: 1;
  letter-spacing: -0.02em;
}

.charte-section__content h2 {
  margin-bottom: 20px;
  color: var(--text-light);
}

.charte-section__content p {
  font-size: 0.96rem;
  line-height: 1.82;
  color: rgba(251, 251, 251, 0.73);
}

@media (min-width: 768px) {
  .charte-section__inner {
    grid-template-columns: 100px 1fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .charte-section__inner {
    grid-template-columns: 140px 1fr;
    max-width: 900px;
  }
}

/* ── 15. CONTACT PAGE ───────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad-lg) 0;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.contact-block {
  margin-bottom: 48px;
}

.contact-block__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  display: block;
  margin-bottom: 12px;
}

.contact-block__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 5vw, 3rem);
  color: var(--text-light);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

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

.contact-block__subtext {
  font-size: 0.88rem;
  color: rgba(251, 251, 251, 0.5);
  margin-top: 8px;
  font-style: italic;
}

.contact-divider {
  width: 1px;
  height: 56px;
  background-color: var(--border-gold);
  margin: 0 auto 48px;
}

.contact-message {
  font-size: 0.97rem;
  line-height: 1.82;
  color: rgba(251, 251, 251, 0.65);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hours {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border-gold);
  margin: 24px auto 40px;
}

.contact-hours__item {
  text-align: center;
  padding: 18px 32px;
}

.contact-hours__item + .contact-hours__item {
  border-left: 1px solid var(--border-gold);
}

.contact-hours__season {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
}

.contact-hours__time {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── 16. MEMBRE DETAIL ──────────────────────────────────────── */
.member-hero {
  padding-top: var(--nav-height);
  padding-bottom: var(--section-pad);
}

.member-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.member-hero__image-wrap {
  position: relative;
  overflow: hidden;
}

.member-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  pointer-events: none;
}

#member-image {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}

.member-hero__info h1 {
  color: var(--text-light);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .member-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Stats grid */
.stats-grid-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter) 0;
}

.stats-grid-wrapper h2 {
  margin-bottom: 32px;
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--border-gold);
  border: 1px solid var(--border-gold);
}

.stat-card {
  background-color: var(--bg-primary);
  padding: 20px 20px;
  text-align: center;
}

.stat-card__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 251, 251, 0.42);
  display: block;
  margin-bottom: 8px;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

@media (min-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Gallery grid */
.gallery-section {
  padding: var(--section-pad) 0;
}

.gallery-section__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 32px;
}

.gallery-section__header h2 {
  color: var(--text-light);
}

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition:
    transform var(--transition-slow),
    opacity var(--transition);
}

.gallery-grid img:hover {
  opacity: 0.85;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Comments section */
.comments-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border-gold);
}

.comments-section__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 36px;
}

.comments-section__header h2 {
  color: var(--text-light);
}

.comments-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.comment-item {
  border: 1px solid var(--border-gold);
  padding: 22px 26px;
  background-color: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition);
}

.comment-item:hover {
  border-color: rgba(251, 182, 70, 0.5);
}

.comment-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}

.comment-item__author {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold);
}

.comment-item__date {
  font-size: 0.76rem;
  color: rgba(251, 251, 251, 0.38);
  letter-spacing: 0.08em;
}

.comment-item__text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(251, 251, 251, 0.7);
  font-style: italic;
}

@media (min-width: 768px) {
  .comments-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 17. FOOTER ─────────────────────────────────────────────── */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--gold);
  padding: 56px 0 36px;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
}

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

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-hours {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}

.footer__contact-item {
  font-size: 0.86rem;
  color: rgba(251, 251, 251, 0.6);
}

.footer__contact-item a {
  color: inherit;
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.76rem;
  color: rgba(251, 251, 251, 0.28);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .footer__nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: center;
  }
}

/* ── 18. MISC UTILITIES ─────────────────────────────────────── */
.gold-line {
  display: block;
  width: 44px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 20px;
}

.gold-separator {
  border: none;
  height: 1px;
  background: var(--border-gold);
  margin: var(--section-pad) 0;
}

/* Scroll animation initial states */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* Page fade-in */
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: pageFadeIn 0.45s ease forwards;
}

/* No-scroll utility */
body.no-scroll {
  overflow: hidden;
}

/* Equipe page intro */
.equipe-intro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 64px) var(--gutter) 56px;
  text-align: center;
}

.equipe-intro h1 {
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.equipe-intro p {
  font-size: 1rem;
  color: rgba(251, 251, 251, 0.68);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 var(--gutter);
}

.section-header h2 {
  color: var(--text-light);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 0.92rem;
  color: rgba(251, 251, 251, 0.58);
  max-width: 480px;
  margin: 0 auto;
}

/* Loader state */
.loading-state {
  text-align: center;
  padding: 48px;
  color: rgba(251, 251, 251, 0.4);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 64px var(--gutter);
  color: rgba(251, 251, 251, 0.38);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
