/* ============================================
   Les Coulisses d'Aurélie — Stylesheet
   ============================================ */

:root {
  --bg: #FAF6F1;
  --bg-soft: #F2EAE0;
  --ink: #2A1F1A;
  --ink-soft: #5C4A40;
  --muted: #8A7A6F;
  --line: #E5D9CC;
  --rose: #B07D62;
  --rose-deep: #8E5E47;
  --rose-soft: #E8D5C4;
  --gold: #C9A875;
  --shadow-sm: 0 2px 12px rgba(58, 38, 28, 0.06);
  --shadow-md: 0 12px 40px rgba(58, 38, 28, 0.10);
  --shadow-lg: 0 30px 80px rgba(58, 38, 28, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Pinyon Script', cursive;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; }

.italic, em { font-style: italic; color: var(--rose-deep); font-family: var(--serif); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .35s var(--ease);
  white-space: nowrap;
  font-family: var(--sans);
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-link {
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-link:hover { color: var(--rose-deep); border-color: var(--rose-deep); }

/* ============================================
   Custom cursor (desktop)
   ============================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: transform .15s var(--ease), opacity .25s, width .25s var(--ease), height .25s var(--ease);
  mix-blend-mode: multiply;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--rose-deep);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--rose-deep);
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), width .25s, height .25s, opacity .25s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  background: rgba(176,125,98,0.08);
}
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (hover: hover) and (min-width: 901px) {
  body, body * { cursor: none !important; }
  body input, body textarea, body select { cursor: text !important; }
}

/* ============================================
   Scroll progress
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  z-index: 1000;
  transition: width .1s linear;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .3s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  line-height: 1.05;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--rose-deep);
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  opacity: 0.4;
  transform: rotate(-15deg) scaleX(1.05);
}
.brand-name {
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-name em { color: var(--rose-deep); font-size: 1rem; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--rose-deep);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 10px 22px; font-size: 0.82rem; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all .3s var(--ease);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav.menu-open .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: -1;
    font-family: var(--serif);
    font-size: 2rem;
    gap: 24px;
  }
}

/* ============================================
   Sticky booking pill
   ============================================ */
.sticky-book {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-lg);
  transform: translateY(120px);
  opacity: 0;
  transition: all .5s var(--ease);
}
.sticky-book.visible { transform: translateY(0); opacity: 1; }
.sticky-book:hover { background: var(--rose-deep); transform: translateY(-3px); }
.sticky-book svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
  .sticky-book { right: 16px; bottom: 16px; padding: 12px 18px; }
  .sticky-book span { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--rose-soft), transparent 70%);
  top: -100px; left: -120px;
  animation: float 14s ease-in-out infinite;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #F4D9C4, transparent 70%);
  bottom: -80px; right: -80px;
  animation: float 16s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
.hero-swirl {
  position: absolute;
  top: 50%; right: -120px;
  transform: translateY(-50%);
  width: 760px; height: 760px;
  opacity: 0.18;
  animation: spin 60s linear infinite;
}
@keyframes spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}
.hero h1 {
  margin: 16px 0 28px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 600px;
  margin: 0 auto;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stats strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--rose-deep);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.2px solid var(--ink-soft);
  border-radius: 12px;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 2px; height: 8px;
  background: var(--ink-soft);
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrolldown 1.8s ease-in-out infinite;
}
@keyframes scrolldown {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: 0; }
  61% { transform: translate(-50%, 0); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-stats strong { font-size: 1.8rem; }
}

/* ============================================
   CONCEPT / Pillars
   ============================================ */
.concept { padding: 140px 0 80px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pillar {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--rose-soft) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: 0;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.pillar:hover::before { opacity: 0.4; }
.pillar > * { position: relative; z-index: 1; }

.pillar-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  color: var(--rose-deep);
}
.pillar h3 { margin-bottom: 12px; font-family: var(--serif); font-weight: 500; }
.pillar p { font-size: 0.96rem; color: var(--ink-soft); }

/* ============================================
   TRANSFORMATION (Avant/Après)
   ============================================ */
.transformation {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.ba-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: none;
  background: var(--ink);
}
.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-image svg { width: 100%; height: 100%; display: block; }
.ba-before {
  width: 50%;
  overflow: hidden;
  border-right: 2px solid #fff;
  z-index: 2;
}
.ba-before svg {
  width: calc(100% / 0.5);
  /* SVG spans full original width; container clips */
}
/* Use clip approach instead: give before full size, clip-path the container */
.ba-before {
  width: 100%;
  clip-path: inset(0 50% 0 0);
  border-right: none;
  transition: clip-path .05s linear;
}
.ba-before svg { width: 100%; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.85);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #fff 30%, #fff 70%, transparent);
}
.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.ba-knob:hover, .ba-handle:active .ba-knob {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}
.ba-hint {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.ba-disclaimer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 120px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all .4s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-feature {
  background: linear-gradient(135deg, #fff 0%, #FBF1E8 100%);
  border-color: var(--rose);
}
.service-tag {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-card h3 {
  font-family: var(--serif);
  margin-bottom: 14px;
}
.service-desc { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 24px; }

.service-includes {
  list-style: none;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.service-includes li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rose-deep);
  font-size: 0.8rem;
  top: 9px;
}

.price-list {
  list-style: none;
  margin-top: 8px;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.94rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li span:first-child { color: var(--ink-soft); }
.price-list li span:last-child { font-weight: 500; color: var(--rose-deep); font-family: var(--serif); font-size: 1.05rem; }

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.service-meta .duration { font-size: 0.86rem; color: var(--muted); letter-spacing: 0.06em; }
.service-meta .price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--rose-deep);
  font-weight: 500;
}
.service-note { display: block; margin-top: 16px; font-size: 0.8rem; color: var(--muted); font-style: italic; }

/* ============================================
   COLORIMETRIE QUIZ
   ============================================ */
.colorimetrie {
  padding: 120px 0;
  background: var(--bg-soft);
}
.quiz {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  min-height: 460px;
}
.quiz-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width .5s var(--ease);
}

.quiz-step {
  display: none;
  text-align: center;
  animation: fadeUp .5s var(--ease);
}
.quiz-step.active { display: block; }
.quiz-result.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-q {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 36px;
  color: var(--ink);
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.quiz-opt {
  padding: 18px 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  color: var(--ink);
  transition: all .3s var(--ease);
  text-align: center;
}
.quiz-opt:hover {
  border-color: var(--rose);
  background: var(--rose-soft);
  transform: translateY(-2px);
}

.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; animation: fadeUp .6s var(--ease); }
.result-card h3 {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin: 8px 0 18px;
  color: var(--rose-deep);
}
.result-card p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 28px;
}
.result-palette {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.swatch {
  width: 56px; height: 56px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .3s var(--ease);
  position: relative;
}
.swatch:hover { transform: translateY(-4px) scale(1.08); }
.result-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .quiz { padding: 40px 24px; }
  .quiz-options { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 120px 0; }
.testi-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: all .4s var(--ease);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--rose-soft);
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-card blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  line-height: 1.5;
}
.testi-card figcaption {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-lead {
  color: var(--ink-soft);
  margin: 18px 0 32px;
  max-width: 480px;
}

.contact-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease);
}
.contact-block:hover:not(.contact-block-static) {
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-block svg {
  width: 26px; height: 26px;
  color: var(--rose-deep);
  flex-shrink: 0;
}
.contact-block strong {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}
.contact-block span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.hours-card {
  background: var(--ink);
  color: var(--bg);
  padding: 40px 36px;
  border-radius: var(--radius);
}
.hours-card h3 {
  color: var(--bg);
  font-family: var(--serif);
  margin-bottom: 24px;
}
.hours {
  list-style: none;
  margin-bottom: 24px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.94rem;
}
.hours li:last-child { border-bottom: none; }
.hours .closed { color: rgba(255,255,255,0.4); font-style: italic; }
.hours-note {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand .brand-mark {
  border-color: rgba(255,255,255,0.4);
  color: var(--rose-soft);
}
.footer-brand .brand-mark::before { border-color: rgba(255,255,255,0.2); }
.footer-brand strong { color: #fff; display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.footer-brand span { font-size: 0.82rem; }
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--rose-soft); }
.footer-credit {
  flex-basis: 100%;
  text-align: center;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   Concept — partners line
   ============================================ */
.partners-line {
  margin-top: 18px !important;
  font-size: 0.92rem !important;
  color: var(--muted) !important;
  font-style: italic;
}
.partners-line strong { color: var(--rose-deep); font-style: normal; font-weight: 500; }

/* ============================================
   Services — feature row in price list
   ============================================ */
.services-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.price-list-feature {
  margin-top: 8px;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  border-top: 1px solid var(--rose) !important;
  border-bottom: none !important;
  background: linear-gradient(90deg, rgba(232,213,196,0.4), transparent);
  margin-left: -12px; margin-right: -12px;
  padding-left: 12px !important; padding-right: 12px !important;
  border-radius: 8px;
}
.price-list-feature span:first-child small {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 2px;
}
.price-list-feature span:last-child {
  font-size: 1.4rem !important;
}

/* ============================================
   SIGNATURES section
   ============================================ */
.signatures {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.signatures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.signature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 36px 40px;
  border: 1px solid var(--line);
  position: relative;
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.signature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.signature-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--rose-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}
.signature-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 8px;
  max-width: 80%;
}
.signature-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
  margin-bottom: 20px;
  font-size: 1rem;
}
.signature-card > p:not(.signature-tag) {
  color: var(--ink-soft);
  font-size: 0.96rem;
  flex-grow: 1;
  margin-bottom: 28px;
}
.signature-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--rose-deep);
  font-weight: 500;
  align-self: flex-start;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  width: 100%;
}

/* ============================================
   TENDANCES Été 2025
   ============================================ */
.tendances {
  padding: 120px 0;
}
.trends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.trend-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 28px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all .4s var(--ease);
}
.trend-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--trend-color);
}
.trend-swatch {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--trend-color);
  margin: 0 auto 22px;
  position: relative;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--trend-color) 35%, transparent);
}
.trend-swatch::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--trend-color);
  opacity: 0.3;
  transition: all .4s var(--ease);
}
.trend-card:hover .trend-swatch::after {
  inset: -14px;
  opacity: 0.5;
}
.trend-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.trend-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.trends-cta {
  text-align: center;
  margin-top: 50px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.trends-cta a {
  color: var(--rose-deep);
  border-bottom: 1px solid var(--rose-deep);
  font-style: normal;
}

/* ============================================
   PSYCHOLOGIE des couleurs
   ============================================ */
.psycho-couleurs {
  padding: 120px 0;
  background: var(--bg-soft);
}
.psycho-wrapper {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 56px;
  box-shadow: var(--shadow-md);
}
.psycho-circles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.psycho-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all .35s var(--ease);
  position: relative;
  padding: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.psycho-circle:hover { transform: scale(1.1); }
.psycho-circle.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--ink), 0 8px 22px rgba(0,0,0,0.14);
  transform: scale(1.08);
}
.psycho-panel {
  min-height: 180px;
}
.psycho-panel h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--rose-deep);
  transition: opacity .25s;
}
.psycho-panel p {
  color: var(--ink-soft);
  line-height: 1.7;
  transition: opacity .25s;
}
.psycho-fade { opacity: 0; }

@media (max-width: 700px) {
  .psycho-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 32px;
  }
  .psycho-circles {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .psycho-circle { width: 52px; height: 52px; }
}

/* ============================================
   MAGAZINE
   ============================================ */
.magazine {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #F4E9DD 100%);
}
.magazine-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}
.magazine-cover {
  position: relative;
  perspective: 1200px;
}
.magazine-cover img {
  width: 100%;
  border-radius: 6px;
  box-shadow:
    0 20px 50px rgba(58,38,28,0.25),
    -8px 0 20px rgba(58,38,28,0.08);
  transform: rotate(-3deg);
  transition: transform .6s var(--ease);
}
.magazine-cover:hover img {
  transform: rotate(0deg) scale(1.02);
}
.magazine-badge {
  position: absolute;
  top: -18px; right: -18px;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  transform: rotate(8deg);
  z-index: 2;
}
.magazine-badge sup { font-size: 0.6rem; }
.magazine-text h2 { margin: 16px 0 24px; }
.magazine-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}
.magazine-toc {
  list-style: none;
  margin-bottom: 36px;
  padding-left: 0;
}
.magazine-toc li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px dashed var(--line);
  position: relative;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}
.magazine-toc li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rose-deep);
  font-style: normal;
}
.magazine-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 900px) {
  .magazine-grid { grid-template-columns: 1fr; gap: 56px; }
  .magazine-cover { max-width: 360px; margin: 0 auto; }
}

/* ============================================
   Testimonials — stars
   ============================================ */
.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-family: var(--sans);
}
.testi-card blockquote { font-size: 1rem; line-height: 1.55; }
.testi-track {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
