﻿/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:       #9C755D;
  /* --navy:       #1f0f01; */
  --navy-mid:   #8b634a;
  --navy-light: #5C4035;
  --cream:      #FAF7F2;
  --cream-dark: #F0E8DA;
  --gold:       #C9A96E;
  --gold-light: #E2C99A;
  --white:      #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --text-mid:   rgba(255,255,255,0.78);
  --navy-text:  #3D2B1A;
  --body-text:  #6B5744;
  --muted-text: #8A7560;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);

  /* SPACING — mobile base */
  --px: 24px;
  --section-py: 80px;
  --section-py-lg: 120px;
}

/* ============================================================
   BASE RESET — mobile first
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* base font-size mobile */
  font-size: 16px;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

main.site-main {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  top: 0;
}

main.site-main > :first-child {
  margin-top: 0 !important;
}

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

/* ============================================================
   CUSTOM CURSOR — desktop only
   ============================================================ */
.cursor, .cursor-ring { display: none; }

@media (pointer: fine) {
  body { cursor: none; }
  a, button, [data-hover] { cursor: none; }

  .cursor {
    display: block;
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out);
  }
  .cursor-ring {
    display: block;
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
  }
  .cursor-ring.hover { width: 56px; height: 56px; border-color: var(--gold); }
}

/* ============================================================
   NOISE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ============================================================
   NAV — mobile first
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s;
}
#nav.scrolled {
  background: var(--navy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  z-index: 210;
  position: relative;
}
.nav-logo span { color: var(--gold); }
body.home #nav:not(.scrolled) .nav-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.home #nav.scrolled .nav-logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* BURGER */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 210;
  position: relative;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), opacity 0.35s, width 0.35s;
  transform-origin: center;
}
.nav-burger span:nth-child(1) { width: 28px; }
.nav-burger span:nth-child(2) { width: 20px; }
.nav-burger span:nth-child(3) { width: 24px; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 28px; }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 28px; }

/* MOBILE MENU OVERLAY */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 205;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  padding: 80px var(--px) 40px;
}
.nav-mobile-menu.open { transform: translateX(0); }
.nav-mobile-close {
  position: absolute;
  top: 22px;
  right: var(--px);
  z-index: 220;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.28);
  color: var(--white);
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.nav-mobile-close span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: currentColor;
}
.nav-mobile-close span:first-child { transform: rotate(45deg); }
.nav-mobile-close span:last-child { transform: rotate(-45deg); }
.nav-mobile-close:hover {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.54);
  transform: rotate(90deg);
}
.nav-mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 12px 0;
  transition: color 0.3s;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out), color 0.3s;
}
.nav-mobile-menu.open a { opacity: 1; transform: translateX(0); }
.nav-mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-lang {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  opacity: 0;
  transition: opacity 0.4s 0.35s;
}
.nav-mobile-menu.open .nav-mobile-lang { opacity: 1; }
.nav-mobile-lang a,
.nav-mobile-lang span {
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  padding: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}
.nav-mobile-lang a.active,
.nav-mobile-lang a:hover,
.nav-mobile-lang span.active { color: var(--gold) !important; }
.nav-mobile-cta {
  margin-top: 24px;
  opacity: 0;
  transition: opacity 0.4s 0.4s;
}
.nav-mobile-menu.open .nav-mobile-cta { opacity: 1; }

/* DESKTOP NAV */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav-desktop ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-desktop ul a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-desktop ul a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-desktop ul a:hover { color: var(--white); }
.nav-desktop ul a:hover::after { width: 100%; }
.nav-lang {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-lang a,
.nav-lang span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-lang a { text-decoration: none; }
.nav-lang a.active, .nav-lang a:hover, .nav-lang span.active { color: var(--gold); }
.nav-lang > span:not(.active) { color: rgba(255,255,255,0.2); }

.btn-nav {
  background-color: rgba(92, 64, 53, 0.4);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { box-shadow: 0 16px 48px rgba(201,169,110,0.35); transform: translateY(-2px); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--text-mid);
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 20px;
}

/* ============================================================
   HERO — mobile first
   ============================================================ */
.hero {
  min-height: 100dvh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 var(--px) 28px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,10,18,0.96) 0%, rgba(7,10,18,0.92) 16%, rgba(7,10,18,0.78) 30%, rgba(7,10,18,0.52) 44%, rgba(7,10,18,0.22) 60%, rgba(7,10,18,0.06) 76%, rgba(7,10,18,0) 100%),
    linear-gradient(180deg, rgba(61,43,26,0.22) 0%, rgba(61,43,26,0.05) 48%, rgba(61,43,26,0.18) 100%),
    url('../images/hero-lobby.jpg') center/cover no-repeat,
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #3D2B1A 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 88px);
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
  margin-bottom: 8px;
}
.hero-brand-monogram {
  position: relative;
  width: 80px;
  margin-bottom: 6px;
}
.hero-brand-monogram img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-brand-separator {
  width: 146px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,169,110,0), rgba(201,169,110,0.92), rgba(201,169,110,0));
  margin: 14px 0 12px;
}
.hero-brand-location {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 8.8vw, 5.2rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero-title .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: lineReveal 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.7s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.9s; }
.hero-title .line:nth-child(4) .line-inner { animation-delay: 1.1s; }
.hero-title em { font-style: italic; color: var(--gold-light); }

@keyframes lineReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp    { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
  background: rgba(7,10,18,0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 10px 12px;
  border-radius: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.35s forwards;
}
.hero-highlight {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
}
.hero-highlight-icon {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-highlight-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(201,169,110,0.76);
  background: rgba(61,43,26,0.16);
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 500;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out), gap 0.35s;
}
.btn-hero:hover {
  background: rgba(201,169,110,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
  gap: 22px;
}

.hero-stats,
.hero-scroll {
  display: none;
}

@media (min-width: 1024px) {
  .hero-stats,
  .hero-scroll {
    display: flex;
    position: absolute;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1.7s forwards;
  }

  .hero-stats {
    right: var(--px);
    bottom: 36px;
    align-items: stretch;
    gap: 14px;
  }

  .hero-stat {
    min-width: 140px;
    padding: 16px 18px;
    border: 1px solid rgba(201,169,110,0.16);
    background: rgba(7,10,18,0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    color: var(--gold-light);
    margin-bottom: 8px;
  }

  .hero-stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
  }

  /* .hero-scroll {
    right: var(--px);
    bottom: 44px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.72);
  }

  .hero-scroll-line {
    width: 1px;
    height: 72px;
    background: linear-gradient(180deg, rgba(201,169,110,0), rgba(201,169,110,0.92), rgba(201,169,110,0));
  }

  .hero-scroll-text {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--gold-light);
  } */
}

/* ============================================================
   APPROCHE
   ============================================================ */
.approche {
  background: var(--cream);
  padding: var(--section-py) var(--px);
}
.approche-intro {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}
.approche-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy-text);
}
/* .approche-title em { font-style: italic; color: var(--gold); } */
.approche-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-text);
  font-weight: 300;
}
.piliers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 4px;
}
.pilier {
  background: var(--white);
  padding: 36px 32px;
  display: grid;
  border-left: 2px solid var(--gold);
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
}
.pilier:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(61,43,26,0.07);
  z-index: 1;
}
.pilier-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  padding-top: 2px;
}
.pilier-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy-text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.pilier-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-text);
  font-weight: 300;
}
.approche-separator {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px 0 48px;
}
.approche-separator-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--navy-text);
  opacity: 0.4;
  white-space: nowrap;
}
.approche-separator-line {
  flex: 1;
  height: 1px;
  background: rgba(61,43,26,0.12);
}
.approche-steps-wrap {
  background: var(--navy-light);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.approche-steps-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(201,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.approche-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
.approche-step {
  border-left: 1px solid rgba(201,169,110,0.25);
  padding: 0 0 44px 36px;
  position: relative;
}
.approche-step:last-child { padding-bottom: 0; border-left-color: transparent; }
.approche-step::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 22px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.approche-step-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.approche-step-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.approche-step-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 14px;
}
.approche-step-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.approche-step-cta:hover { gap: 14px; }
.approche-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============================================================
   PRESTATIONS
   ============================================================ */
.prestations {
  background: var(--navy-mid);
  padding: var(--section-py) var(--px);
}
.prestations-header { margin-bottom: 52px; }
.prestations-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.prestations-title em { font-style: italic; color: var(--gold-light); }
.prestations-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

/* ----- TABS PRESTATIONS — mobile first ----- */
.prestations-tabs {
  width: 100%;
}

.ptabs-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(201,169,110,0.2);
  gap: 0;
  margin-bottom: 40px;
}

.ptab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  white-space: normal;
  line-height: 1.45;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: -1px;
}
.ptab:hover,
.ptab:focus-visible {
  color: rgba(250,247,242,0.8);
}
.ptab.active {
  color: #C9A96E;
  border-bottom-color: #C9A96E;
}

.ptab-panel {
  display: none;
}
.ptab-panel.active {
  display: block;
}

.ptab-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ptab-media {
  width: 100%;
  aspect-ratio: 16 / 5.8;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.ptab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.ptab-panel.active .ptab-media img {
  transform: scale(1);
}
.ptab-media--svg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
}
.ptab-media--svg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ptab-content {
  padding: 32px 24px;
  background: rgba(0,0,0,0.15);
}

.ptab-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C9A96E;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 4px 10px;
  margin-bottom: 16px;
}

.ptab-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #FAF7F2;
  margin: 0 0 16px;
}

.ptab-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,0.78);
  margin: 0 0 24px;
}

.ptab-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ptab-points li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250,247,242,0.75);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ptab-points li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #C9A96E;
  flex-shrink: 0;
}

.ptab-panel.active .ptab-content {
  animation: ptabFadeUp 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes ptabFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.prestations-note {
  position: relative;
}
.prestations-note-line {
  width: 100%;
  height: 1px;
  background: rgba(201,169,110,0.18);
  margin-bottom: 18px;
}
.prestations-note-text {
  /* max-width: 980px; */
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gold-light);
  font-weight: 300;
}

/* ============================================================
   EXIGENCE
   ============================================================ */
.exigence {
  --exigence-parallax: 0px;
  background: var(--navy);
  padding: 40px var(--px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.exigence::before {
  content: '';
  position: absolute;
  inset: -18%;
  background:
    url('../images/exigence-nice.jpg') center center / cover no-repeat;
  transform: translate3d(0, var(--exigence-parallax), 0) scale(1.16);
  transform-origin: center center;
  will-change: transform;
  z-index: 0;
}
.exigence::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 19, 34, 0.22) 0%, rgba(10, 19, 34, 0.48) 100%),
    linear-gradient(90deg, rgba(18, 29, 42, 0.74) 0%, rgba(18, 29, 42, 0.5) 34%, rgba(18, 29, 42, 0.3) 100%),
    radial-gradient(circle at 18% 50%, rgba(12, 21, 33, 0.55), transparent 42%),
    radial-gradient(circle at 78% 18%, rgba(201,169,110,0.18), transparent 26%);
  pointer-events: none;
  z-index: 0;
}
.exigence__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.exigence > .section-eyebrow {
  display: block;
  text-align: left;
  width: min(100%, 1200px);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.76);
}
.exigence-ornament {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(226,201,154,0.92);
  display: block;
  position: relative;
  margin: 18px auto 18px;
  text-align: center;
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}
.exigence-quote {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 28px;
  position: relative;
}
.exigence-quote-line {
  display: block;
}
.exigence-quote .gold { color: var(--gold-light); }
.exigence-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  /* max-width: 540px; */
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
  text-shadow: 0 1px 18px rgba(8, 14, 22, 0.28);
}

/* ============================================================
   POURQUOI
   ============================================================ */
.pourquoi {
  background: var(--cream);
  padding: var(--section-py) var(--px);
}
.pourquoi-header { margin-bottom: 52px; }
.pourquoi-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy-text);
  margin-bottom: 16px;
}
.pourquoi-title em { font-style: italic; color: var(--gold); }
.pourquoi-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted-text);
  font-weight: 300;
}

/* mobile: 1 col */
.pourquoi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.pourquoi-card {
  background: var(--white);
  padding: 44px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.pourquoi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(61,43,26,0.1);
  z-index: 1;
  position: relative;
}
.pourquoi-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy-text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.pourquoi-card-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted-text);
  font-weight: 300;
}

/* ============================================================
   VALEURS & ENGAGEMENTS
   ============================================================ */

/* Section wrapper globale */
.valeurs-engagements {
  background: var(--cream-dark);
  padding: var(--section-py) var(--px);
}

/* Titre chapeau */
.ve-header { margin-bottom: 64px; }
.ve-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy-text);
  margin-bottom: 16px;
}
.ve-main-title em { font-style: italic; color: var(--gold); }
.ve-main-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted-text);
  font-weight: 300;
  /* max-width: 560px; */
}

/* Séparateur de bloc */
.ve-block { margin-bottom: 64px; }
.ve-block:last-child { margin-bottom: 0; }
.ve-block-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.ve-block-label-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--navy-text);
  opacity: 0.45;
}
.ve-block-label-line {
  flex: 1;
  height: 1px;
  background: rgba(61,43,26,0.12);
}

/* GRILLE VALEURS — cards sur fond navy */
.valeurs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.valeur-card {
  background: var(--navy);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease-out);
  border-bottom: 2px solid transparent;
}
.valeur-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.valeur-card:hover { background: var(--navy-light); }
.valeur-card:hover::before { transform: scaleX(1); }

/* Icône valeur */
.valeur-icon {
  width: 44px; height: 44px;
  background: rgba(201,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.valeur-num {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.valeur-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.valeur-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

/* GRILLE ENGAGEMENTS — cards sur fond blanc */
.engagements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.engagement-card {
  background: var(--white);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
  border-top: 2px solid transparent;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.engagement-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -24px; right: 16px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 300;
  color: rgba(61,43,26,0.04);
  line-height: 1;
  pointer-events: none;
}
.engagement-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--gold);
  z-index: 1;
  position: relative;
  box-shadow: 0 20px 40px rgba(61,43,26,0.08);
}
.engagement-num {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.engagement-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--navy-text);
  margin-bottom: 14px;
}
.engagement-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-text);
  font-weight: 300;
}

/* ============================================================
   REALISATIONS
   ============================================================ */
.realisations {
  background: var(--navy);
  padding: var(--section-py) var(--px);
}
.realisations-header { margin-bottom: 48px; }
.realisations-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.realisations-title em { font-style: italic; color: var(--gold-light); }
.realisations-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}
.realisations-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.realisation-card {
  background: var(--navy-mid);
  padding: 52px 36px;
  border: 1px solid rgba(201,169,110,0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}
.realisation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-out);
}
.realisation-card:hover::before { height: 100%; }
.realisation-card:hover { border-color: rgba(201,169,110,0.25); }
.realisation-card--placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 36px;
}
.realisation-placeholder-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--gold);
}
.realisation-placeholder-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 24px;
}
.realisation-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.realisation-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.realisation-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.realisations-note {
  margin-top: 40px;
  padding: 28px 36px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.15);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.realisations-note-icon { font-size: 1.4rem; flex-shrink: 0; }
.realisations-note-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}
.realisations-note-text strong { color: var(--gold-light); font-weight: 500; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--cream);
  padding: var(--section-py) var(--px);
}
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy-text);
  margin-bottom: 20px;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted-text);
  font-weight: 300;
  margin-bottom: 40px;
}
.contact-infos { display: flex; flex-direction: column; gap: 18px; }
.contact-info { display: flex; align-items: center; gap: 14px; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(201,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-text { font-size: 0.95rem; color: var(--body-text); font-weight: 300; }
.contact-info-text strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

/* FORM */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-honeypot { display: none; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-text);
}
.form-input, .form-select, .form-textarea {
  background: var(--white);
  border: 1px solid rgba(61,43,26,0.15);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--navy-text);
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--white);
  padding-right: 44px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: #B5A090; }

/* VALIDATION */
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #C0785A;
  box-shadow: 0 0 0 3px rgba(180,80,40,0.1);
}
.form-error-msg {
  font-size: 0.75rem;
  color: #C0785A;
  font-weight: 400;
  margin-top: 2px;
  display: none;
}
.form-error-msg.visible { display: block; }

.form-row { display: contents; }

.btn-submit {
  grid-column: 1 / -1;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 20px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
  width: 100%;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit:hover { color: var(--navy); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(61,43,26,0.2); }
.btn-submit span, .btn-submit svg { position: relative; z-index: 1; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit:disabled::before { display: none; }

.form-reassurance {
  grid-column: 1 / -1;
  text-align: center;
}
.form-reassurance-text {
  font-size: 0.78rem;
  color: #B5A090;
  font-weight: 300;
}
.form-reassurance-text span { margin: 0 6px; }

/* FORM SUCCESS / ERROR messages */
.form-alert {
  grid-column: 1 / -1;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  display: none;
}
.form-alert.success {
  background: rgba(72,187,120,0.1);
  border: 1px solid rgba(72,187,120,0.4);
  color: #5C4A35;
  display: block;
}
.form-alert.error-global {
  background: rgba(180,80,40,0.08);
  border: 1px solid #C0785A;
  color: #8B3A1A;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 48px var(--px);
  border-top: 1px solid rgba(201,169,110,0.15);
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.22); }
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,169,110,0.3);
  padding: 10px 20px;
  transition: background 0.3s, color 0.3s;
}
.footer-contact-btn:hover { background: var(--gold); color: var(--navy); }
.footer-zone {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fallback-page {
  min-height: 100vh;
  padding: 160px var(--px) 96px;
  background: var(--navy);
}
.fallback-page__inner {
  width: min(860px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.18);
  padding: 40px;
}
.fallback-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 24px;
}
.fallback-page__content {
  color: var(--text-mid);
  line-height: 1.8;
}
.fallback-page__content a { color: var(--gold-light); }

/* ============================================================
   BREAKPOINTS
   ============================================================ */
@media (min-width: 600px) {
  .pourquoi-grid { grid-template-columns: 1fr 1fr; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .engagements-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .btn-primary { padding: 18px 36px; }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding: 0 var(--px) 28px;
    justify-content: flex-start;
  }
  .hero-bg {
    background:
      linear-gradient(90deg, rgba(7,10,18,0.96) 0%, rgba(7,10,18,0.92) 16%, rgba(7,10,18,0.78) 30%, rgba(7,10,18,0.52) 44%, rgba(7,10,18,0.22) 60%, rgba(7,10,18,0.06) 76%, rgba(7,10,18,0) 100%),
      linear-gradient(180deg, rgba(61,43,26,0.22) 0%, rgba(61,43,26,0.05) 48%, rgba(61,43,26,0.18) 100%),
      url('../images/hero-lobby.jpg') center/cover no-repeat,
      linear-gradient(135deg, rgba(201,169,110,0.04), rgba(0,0,0,0));
  }
  .hero-content { max-width: 600px; padding-top: 56px; gap: 22px; }
  .hero-brand-wordmark { font-size: 1.4rem; }
  .hero-brand-monogram { width: 100px; }
  .hero-title {
    font-size: clamp(3rem, 6vw, 4.8rem);
    max-width: 560px;
  }
  .hero-sub {
    font-size: 0.96rem;
    max-width: 560px;
    margin-bottom: 16px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
  }
  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 18px;
  }
  .hero-highlight-text { font-size: 0.66rem; }
  .btn-hero {
    padding: 16px 22px;
    font-size: 0.72rem;
  }

  .piliers-grid { grid-template-columns: repeat(3, 1fr); }

  .prestations { padding: 100px var(--px); }
  .prestations-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }
  .prestations-title { margin-bottom: 0; }
  .ptabs-nav {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ptabs-nav::-webkit-scrollbar { display: none; }
  .ptab {
    flex-shrink: 0;
    padding: 16px 20px;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    white-space: nowrap;
    min-height: 0;
    display: block;
  }
  .ptab-content {
    padding: 34px 32px;
  }
  .ptab-media {
    aspect-ratio: 16 / 6.4;
  }
}

@media (min-width: 1024px) {
  .nav-burger { display: none; }
  .nav-desktop { display: flex; }
  .nav-mobile-menu { display: none; }
  .nav-mobile-close { display: none; }

  .approche,
  .prestations,
  .pourquoi,
  .valeurs-engagements,
  .realisations,
  .contact {
    padding-top: var(--section-py-lg);
    padding-bottom: var(--section-py-lg);
  }

  .prestations-note {
    margin-top: 0;
    padding: 40px 32px 0;
  }
  .ptab-panel.active {
    display: block;
  }
  .ptab-panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 455px) minmax(0, 1fr);
    align-items: center;
    /* column-gap: 42px; */
    min-height: 320px;
  }
  .ptab-media {
    aspect-ratio: unset;
    width: 100%;
    max-width: 455px;
    height: 100%;
    min-height: 320px;
    align-self: stretch;
  }
  .ptab-content {
    width: 100%;
    min-height: 100%;
    padding: 28px 34px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ptab {
    padding: 18px 28px;
    font-size: 0.7rem;
  }

  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 56px var(--px);
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}

/* @media (min-width: 1280px) {
  .ptab-panel-inner {
    grid-template-columns: 55% 45%;
  }
} */

@media (max-width: 1023px) {
  .exigence {
    padding: 104px var(--px);
  }
}
