:root {
  --black: #0a0608;
  --black-soft: #14101a;
  --ink: #1a1316;
  --rose: #f4a8c1;
  --rose-deep: #d8678f;
  --rose-hot: #e83e8c;
  --rose-pale: #fde7ee;
  --gold: #d9b282;
  --gold-deep: #b8915f;
  --sand: #f6ead8;
  --sand-warm: #f3dfc6;
  --peach: #fce5d4;
  --leopard-base: #f6d8a4;
  --leopard-spot: #6b3a1a;
  --paper: #fbf7f8;
  --muted: #8a7a82;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Caveat', cursive;
  --bubble: 'Pacifico', 'Caveat', cursive;

  --leopard-pattern: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><rect width='220' height='220' fill='%23f6d8a4'/><g fill='%236b3a1a'><ellipse cx='30' cy='30' rx='10' ry='7' transform='rotate(20 30 30)'/><ellipse cx='90' cy='20' rx='9' ry='6' transform='rotate(-15 90 20)'/><ellipse cx='150' cy='40' rx='11' ry='7' transform='rotate(35 150 40)'/><ellipse cx='200' cy='80' rx='10' ry='6' transform='rotate(-20 200 80)'/><ellipse cx='50' cy='90' rx='12' ry='8' transform='rotate(10 50 90)'/><ellipse cx='120' cy='100' rx='10' ry='7' transform='rotate(-30 120 100)'/><ellipse cx='180' cy='150' rx='11' ry='7' transform='rotate(25 180 150)'/><ellipse cx='40' cy='160' rx='9' ry='6' transform='rotate(-10 40 160)'/><ellipse cx='100' cy='180' rx='12' ry='8' transform='rotate(15 100 180)'/><ellipse cx='160' cy='200' rx='10' ry='6' transform='rotate(-25 160 200)'/></g><g fill='none' stroke='%23000' stroke-width='2.2'><path d='M22,24 q3,-4 8,-3 q4,1 5,5 q1,3 -2,5 q-3,2 -6,1 q-4,-1 -5,-4 q-1,-2 0,-4'/><path d='M83,16 q3,-3 7,-2 q4,1 5,4 q1,3 -2,5 q-3,2 -6,1 q-3,-1 -4,-4'/><path d='M143,34 q3,-4 8,-3 q5,1 6,5 q1,3 -2,5 q-3,2 -7,1 q-4,-1 -5,-4 q-1,-2 0,-4'/><path d='M193,73 q3,-3 7,-2 q5,1 6,5 q1,3 -2,5 q-3,2 -6,1 q-4,-1 -5,-4'/><path d='M42,82 q4,-4 9,-3 q5,1 6,6 q1,4 -3,6 q-4,2 -8,0 q-4,-2 -5,-5 q-1,-3 1,-4'/><path d='M112,94 q3,-4 8,-3 q4,1 5,5 q1,3 -3,5 q-3,2 -7,1 q-3,-1 -4,-4'/><path d='M173,144 q3,-3 8,-2 q5,1 6,5 q1,3 -2,5 q-3,2 -7,1 q-4,-1 -5,-4'/><path d='M33,154 q3,-3 7,-2 q4,1 5,4 q1,3 -2,5 q-3,2 -6,1 q-3,-1 -4,-4'/><path d='M93,174 q4,-4 9,-3 q5,1 6,6 q1,4 -3,6 q-4,2 -8,0 q-4,-2 -5,-5'/><path d='M153,194 q3,-3 8,-2 q5,1 6,5 q1,3 -2,5 q-3,2 -7,1 q-4,-1 -5,-4'/></g></svg>");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  background: var(--paper);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--peach) 50%, var(--sand) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ========= HEADER (discret & classe) ========= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 1.5rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 0.65rem 0.55rem 1.6rem;
  background: rgba(10, 6, 8, 0.28);
  border: 1px solid rgba(255, 200, 220, 0.10);
  border-radius: 100px;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 12px 36px -12px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled .nav {
  background: rgba(10, 6, 8, 0.78);
  border-color: rgba(255, 200, 220, 0.14);
  box-shadow:
    0 14px 40px -10px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0.15rem;
}
.brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  padding-left: 0.1rem;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  position: relative;
  color: rgba(251, 247, 248, 0.82);
  font-size: 0.87rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  font-family: var(--serif);
  font-style: italic;
  padding-bottom: 2px;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--paper);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--paper) !important;
  font-style: normal;
  font-family: var(--sans, 'Inter', sans-serif);
  background: linear-gradient(135deg, var(--rose-hot) 0%, var(--rose-deep) 100%);
  padding: 0.55rem 1.05rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow:
    0 6px 18px -6px rgba(232, 62, 140, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta::after {
  content: '→';
  transition: transform 0.25s ease;
}
.nav-links a.nav-cta::after { background: none; height: auto; width: auto; position: static; }
.nav-cta:hover {
  color: var(--paper) !important;
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px -6px rgba(232, 62, 140, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.nav-cta:hover::after { transform: translateX(3px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--paper);
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ========= HERO ========= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(232, 95, 158, 0.35) 0%, rgba(160, 50, 110, 0.18) 35%, transparent 70%),
    radial-gradient(circle at 50% 110%, rgba(232, 62, 140, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #1a0d18 0%, #0c0610 55%, #050307 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90vw;
  height: 90vw;
  max-width: 1100px;
  max-height: 1100px;
  transform: translate(-50%, -55%);
  background:
    radial-gradient(circle at center,
      rgba(248, 200, 220, 0.16) 0%,
      rgba(232, 95, 158, 0.10) 30%,
      transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  mix-blend-mode: screen;
  opacity: 0.85;
  z-index: 0;
}
.hero-orb--1 {
  top: -10%;
  left: -8%;
  width: 38vw;
  height: 38vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle at 35% 35%, #ff8bbf 0%, #d8678f 45%, transparent 70%);
  animation: float-orb 18s ease-in-out infinite alternate;
}
.hero-orb--2 {
  bottom: -12%;
  right: -10%;
  width: 42vw;
  height: 42vw;
  max-width: 640px;
  max-height: 640px;
  background: radial-gradient(circle at 60% 40%, #ffa8d0 0%, #c84c87 50%, transparent 72%);
  animation: float-orb 24s ease-in-out infinite alternate-reverse;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 80% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 0;
}

@keyframes float-orb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-orb--1,
  .hero-orb--2 { animation: none; }
}

/* ========= TRANSITIONS DOUCES ENTRE SECTIONS ========= */
.section-alt::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, var(--paper) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 920px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 12vw, 10rem);
  line-height: 0.95;
  font-weight: 500;
  margin-bottom: 1.8rem;
  letter-spacing: -0.035em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2em;
}
.hero-title span {
  font-weight: 600;
  font-style: normal;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-hot) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.05em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(251, 247, 248, 0.82);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-title--fluffy {
  display: block;
  margin: 0 auto 2rem;
  padding: 0;
  text-align: center;
  line-height: 0;
  transform: rotate(-2deg);
}
.hero-title-img {
  display: inline-block;
  width: clamp(280px, 75vw, 820px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(232, 62, 140, 0.35));
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(251, 247, 248, 0.92);
  margin: 0 auto 2.5rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: rgba(251, 247, 248, 0.2);
  overflow: hidden;
}
.hero-scroll span {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--rose);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 2.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-hot) 100%);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(232, 62, 140, 0.2);
}
.btn-primary:hover {
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 62, 140, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251, 247, 248, 0.25);
}
.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: rgba(216, 103, 143, 0.35);
}
.btn-ghost-light:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
  background: rgba(216, 103, 143, 0.05);
}
.btn-xl {
  padding: 1.25rem 2.8rem;
  font-size: 0.95rem;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0;
  color: var(--rose-deep);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--rose-deep);
  border-radius: 0;
  margin-top: 1.5rem;
  text-transform: none;
  transition: gap 0.25s ease, color 0.25s ease;
}
.btn-link:hover {
  color: var(--rose-hot);
  border-color: var(--rose-hot);
  gap: 0.8rem;
}

/* ========= SECTIONS ========= */
.section {
  padding: 7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Accents beach diffus sur sections claires */
#prestations::before,
#apropos::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(244, 168, 193, 0.25) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
#prestations::after,
#apropos::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(217, 178, 130, 0.2) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(25px);
}
#prestations > *,
#apropos > * { position: relative; z-index: 1; }

.section-alt {
  background:
    radial-gradient(ellipse 80% 60% at top right, rgba(232, 62, 140, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at bottom left, rgba(217, 178, 130, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--peach) 0%, var(--rose-pale) 100%);
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.section-alt > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.section-dark {
  background: var(--black);
  color: var(--paper);
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--leopard-pattern);
  background-size: 220px 220px;
  opacity: 0.04;
  pointer-events: none;
}
.section-dark > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-eyebrow--light { color: var(--rose); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--rose-deep);
  margin: 1.2rem auto 0;
}
.section-title--left { text-align: left; }
.section-title--left::after { margin-left: 0; }
.section-title--light { color: var(--paper); }
.section-title--light::after { background: var(--rose); }
.section-title em {
  font-style: italic;
  color: var(--rose-deep);
}
.section-title--light em {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.section-sub--light { color: rgba(251, 247, 248, 0.7); }

/* ========= SERVICES ========= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.service-card {
  background: var(--paper);
  padding: 2.2rem 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(216, 103, 143, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-hot) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  width: 120px;
  height: 120px;
  background-image: var(--leopard-pattern);
  background-size: 180px 180px;
  opacity: 0;
  border-radius: 50%;
  mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--rose-deep);
  box-shadow: 0 18px 40px rgba(216, 103, 143, 0.18);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 0.18; }
.service-icon {
  font-size: 1.8rem;
  color: var(--rose-deep);
  margin-bottom: 1rem;
  line-height: 1;
}
.service-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.service-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
  min-height: 3em;
}
.service-price {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.service-price strong {
  color: var(--rose-deep);
  font-weight: 600;
  font-size: 1.15rem;
  font-family: var(--serif);
  margin-left: 0.3rem;
}
.service-price a {
  color: var(--rose-deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.25s ease;
}
.service-price a:hover { color: var(--rose-hot); }
.services-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 1.5rem;
}
.services-combo {
  text-align: center;
  margin-top: 2.8rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink, #1a0d18);
}
.services-combo strong {
  font-weight: 600;
  font-style: normal;
  color: var(--rose-deep);
}
.services-combo a {
  display: inline-block;
  margin-left: 0.4rem;
  color: var(--rose-deep);
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.25s ease;
}
.services-combo a:hover { color: var(--rose-hot); }
.services-cta {
  text-align: center;
  margin-top: 1.6rem;
}

/* ========= GALERIE (avec vraies images) ========= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item::after {
  content: '↗';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(251, 247, 248, 0.92);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.04); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-cta { text-align: center; }

/* ========= ABOUT (avec vraie image) ========= */
.about {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin: 0 auto;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px 200px 14px 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 40px rgba(10, 6, 8, 0.12);
}
.about-text p {
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-size: 1.05rem;
}
.about-text p strong {
  color: var(--rose-deep);
  font-weight: 600;
}

/* ========= FORMATION ========= */
.section-formation {
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(244, 168, 193, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(217, 178, 130, 0.25) 0%, transparent 55%),
    linear-gradient(180deg, var(--sand) 0%, var(--sand-warm) 100%);
  max-width: none;
  margin: 0;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.section-formation > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.module-card {
  background: var(--paper);
  padding: 2.2rem 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(217, 178, 130, 0.25);
  position: relative;
  transition: all 0.3s ease;
}
.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(217, 178, 130, 0.2);
}
.module-card--highlight {
  background: linear-gradient(180deg, var(--paper) 0%, #fff5e9 100%);
  border-color: var(--gold);
}

.module-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--gold);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.module-icon {
  font-size: 1.8rem;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  line-height: 1;
}

.module-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.module-desc {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 1.4rem;
  min-height: 4em;
}

.module-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.module-meta .dot { opacity: 0.5; }

.formation-cta {
  text-align: center;
  margin-top: 1rem;
}
.formation-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ========= CONTACT ========= */
.contact-cta-main {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: rgba(251, 247, 248, 0.04);
  border: 1px solid rgba(244, 168, 193, 0.15);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: var(--rose);
  background: rgba(244, 168, 193, 0.06);
  transform: translateY(-4px);
}
.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.contact-card p {
  color: rgba(251, 247, 248, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-card .muted {
  color: rgba(251, 247, 248, 0.5);
  font-size: 0.85rem;
  font-style: italic;
}
.contact-link {
  color: var(--rose);
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-link:hover { color: var(--rose-hot); }

/* ========= FOOTER ========= */
.site-footer {
  background: var(--black);
  color: rgba(251, 247, 248, 0.6);
  padding: 4rem 2rem 1.5rem;
  border-top: 1px solid rgba(217, 178, 130, 0.1);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.65rem;
  color: var(--paper);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.footer-tag {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a {
  color: rgba(251, 247, 248, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--rose); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(217, 178, 130, 0.08);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(251, 247, 248, 0.4);
}

/* ========= REVEAL ========= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= RESPONSIVE ========= */

/* Tablet & medium */
@media (max-width: 1024px) {
  .section { padding: 6rem 1.8rem; }
  .section-formation { padding: 6rem 1.8rem; }
  .hero-content { padding: 0 1rem; }
  .modules-grid { gap: 1.2rem; }
  .module-desc { min-height: auto; }
  .service-desc { min-height: auto; }
}

/* Tablet portrait → mobile */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85%;
    max-width: 340px;
    background: var(--black);
    flex-direction: column;
    padding: 5rem 1.8rem 2rem;
    gap: 1.4rem;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease, visibility 0s linear 0.4s;
    border-left: 1px solid rgba(217, 178, 130, 0.15);
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s ease, visibility 0s linear 0s;
  }
  .nav-links a { font-size: 1.1rem; }
  .nav-links .nav-cta {
    padding: 0.65rem 1.1rem;
    align-self: flex-start;
    margin-top: 0.4rem;
  }

  .site-header { padding: 0.85rem 0.9rem 0; }
  .nav {
    padding: 0.5rem 0.55rem 0.5rem 1.1rem;
    gap: 0.5rem;
  }
  .brand-name { font-size: 1.05rem; }
  .brand-tag { font-size: 0.5rem; letter-spacing: 0.28em; }

  .hero { padding: 6rem 1.3rem 2rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; margin-bottom: 1.2rem; }
  .hero-cta { gap: 0.7rem; }
  .hero-orb { filter: blur(40px); }
  .hero-orb--1, .hero-orb--2 { width: 70vw; height: 70vw; }

  .section, .section-formation { padding: 5rem 1.3rem; }
  .section-head { margin-bottom: 3rem; }

  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo { max-width: 280px; }
  .about-text p { font-size: 1rem; }

  .module-card { padding: 1.8rem 1.5rem; }
  .module-name { font-size: 1.35rem; }

  .service-card { padding: 1.8rem 1.5rem; }
  .service-name { font-size: 1.45rem; }

  .contact-card { padding: 1.8rem 1.4rem; }
  .contact-title { font-size: 1.3rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }
}

/* Small phone */
@media (max-width: 540px) {
  .site-header { padding: 0.75rem 0.75rem 0; }
  .nav {
    padding: 0.45rem 0.5rem 0.45rem 1rem;
    gap: 0.4rem;
  }
  .brand-tag { display: none; }
  .brand-name { font-size: 1rem; }

  .hero {
    padding: 5rem 1.2rem 4rem;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero-title { letter-spacing: -0.04em; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.8rem; }
  .hero-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-scroll { bottom: 1rem; height: 36px; }

  .section, .section-formation { padding: 4rem 1.1rem; }
  .section-head { margin-bottom: 2.5rem; }

  .services-grid, .modules-grid, .contact-grid, .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-combo { font-size: 1rem; line-height: 1.55; }
  .services-combo a {
    display: block;
    margin-left: 0;
    margin-top: 0.4rem;
  }

  .hero-tagline { font-size: 1.15rem; }
  .hero-title-img { width: clamp(240px, 82vw, 480px); }

  .about-photo { max-width: 240px; }

  .btn { padding: 0.85rem 1.6rem; font-size: 0.8rem; letter-spacing: 0.08em; }
  .btn-xl { padding: 1.05rem 2rem; font-size: 0.88rem; }

  .contact-cta-main { margin-bottom: 3rem; }

  .site-footer { padding: 3rem 1.2rem 1.2rem; }
}

