/* ============================================
   BEAUTÉ DES STARS — Design System v2
   Style: Warm Luxury — Light & Animated
   ============================================ */

/* --- Tokens --- */
:root {
  --color-bg:         #FFFAF5;
  --color-bg-warm:    #FFF5EC;
  --color-surface:    #FFFFFF;
  --color-surface-2:  #FBF6F0;
  --color-dark:       #1A1511;
  --color-dark-soft:  #2C2520;
  --color-gold:       #C6993A;
  --color-gold-light: #DEBA5C;
  --color-gold-dark:  #A67C2E;
  --color-gold-glow:  rgba(198,153,58,0.15);
  --color-ivory:      #F5F0EB;
  --color-text:       #2C2520;
  --color-text-soft:  #6B5E54;
  --color-text-muted: #9A8E84;
  --color-white:      #FFFFFF;
  --color-error:      #D94848;
  --color-success:    #3A9E5C;
  --color-border:     rgba(198,153,58,0.12);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', -apple-system, sans-serif;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 50%;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 400ms var(--ease-out);
  --transition-fast: 250ms var(--ease-out);

  --shadow-sm:   0 2px 12px rgba(44,37,32,0.06);
  --shadow-md:   0 8px 30px rgba(44,37,32,0.08);
  --shadow-lg:   0 16px 50px rgba(44,37,32,0.12);
  --shadow-gold: 0 8px 30px rgba(198,153,58,0.18);
  --shadow-card: 0 2px 16px rgba(44,37,32,0.05);

  --max-width: 1200px;
  --header-height: 72px;
}

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

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

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

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Sections --- */
.section { padding: var(--space-4xl) 0; position: relative; }

.section--cream { background: var(--color-bg); }
.section--white { background: var(--color-surface); }
.section--warm  { background: var(--color-bg-warm); }
.section--dark  {
  background: var(--color-dark);
  color: var(--color-ivory);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  position: relative;
}

.section__label::before,
.section__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.4;
}

.section__label::before { right: calc(100% + 12px); }
.section__label::after  { left: calc(100% + 12px); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.section__title em {
  font-style: italic;
  color: var(--color-gold);
}

.section--dark .section__title em { color: var(--color-gold-light); }

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--space-lg) 0;
}

.divider--center { margin-left: auto; margin-right: auto; }

.link--gold {
  color: var(--color-gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
.link--gold:hover { color: var(--color-gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(198,153,58,0.3);
}

.btn--primary:active { transform: translateY(-1px); }

.btn--outline {
  border: 2px solid var(--color-gold);
  color: var(--color-gold-dark);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-gold-glow);
  transform: translateY(-3px);
}

.btn--dark { color: var(--color-white); border-color: var(--color-gold-light); }
.btn--dark:hover { background: rgba(198,153,58,0.15); }

.btn--full { width: 100%; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,250,245,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
}

.nav__logo img {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  transition: transform 0.5s var(--ease-spring);
  box-shadow: var(--shadow-sm);
}

.nav__logo:hover img { transform: scale(1.1) rotate(5deg); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text-soft);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.active { color: var(--color-gold-dark); }

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

.nav__link--cta {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,153,58,0.3); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__toggle-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active .nav__toggle-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active .nav__toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(165deg, var(--color-bg) 0%, var(--color-bg-warm) 50%, #FFF0E0 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(198,153,58,0.12) 0%, transparent 70%);
  top: 10%; left: 50%;
  transform: translate(-50%, 0);
  animation: heroPulse 6s ease-in-out infinite;
}

.hero__bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(198,153,58,0.08) 0%, transparent 70%);
  bottom: 10%; right: 10%;
  animation: heroPulse 8s ease-in-out infinite 2s;
}

@keyframes heroPulse {
  0%, 100% { transform: translate(-50%, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, 0) scale(1.15); opacity: 1; }
}

/* Floating gold dots */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
}

.hero__particle--sm {
  width: 5px; height: 5px;
  background: var(--color-gold);
  box-shadow:
    0 0 8px 2px rgba(198,153,58,0.6),
    0 0 20px 4px rgba(198,153,58,0.25);
  animation: particleFloat linear infinite;
}

.hero__particle--md {
  width: 10px; height: 10px;
  background: var(--color-gold-light);
  box-shadow:
    0 0 14px 4px rgba(222,186,92,0.7),
    0 0 35px 8px rgba(198,153,58,0.3);
  animation: particleFloatWobble linear infinite;
}

.hero__particle--lg {
  width: 16px; height: 16px;
  background: radial-gradient(circle, #FFD96B 0%, var(--color-gold-light) 40%, rgba(198,153,58,0.2) 100%);
  box-shadow:
    0 0 20px 6px rgba(255,217,107,0.6),
    0 0 50px 15px rgba(198,153,58,0.3),
    0 0 80px 25px rgba(198,153,58,0.1);
  animation: particleFloatGlow linear infinite;
}

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(100vh) scale(0.2); }
  3%   { opacity: 1; }
  50%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1.1); }
}

@keyframes particleFloatWobble {
  0%   { opacity: 0; transform: translateY(100vh) translateX(0) scale(0.3); }
  3%   { opacity: 1; }
  25%  { transform: translateY(75vh) translateX(20px) scale(0.7); }
  50%  { opacity: 1; transform: translateY(50vh) translateX(-15px) scale(0.9); }
  75%  { transform: translateY(25vh) translateX(10px) scale(1); }
  90%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-20vh) translateX(-5px) scale(1.1); }
}

@keyframes particleFloatGlow {
  0%   { opacity: 0; transform: translateY(100vh) scale(0.2); filter: brightness(0.8); }
  3%   { opacity: 1; }
  30%  { filter: brightness(1.4); }
  50%  { opacity: 1; transform: translateY(50vh) scale(0.9); filter: brightness(1); }
  70%  { filter: brightness(1.6); }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1.2); filter: brightness(0.6); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-4xl) var(--space-lg);
  max-width: 720px;
}

.hero__logo {
  width: 130px; height: 130px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--space-xl);
  border: 3px solid var(--color-gold-glow);
  box-shadow: 0 0 60px rgba(198,153,58,0.15);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__subtitle {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: 1.0625rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- About --- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about__image img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.8s var(--ease-out);
}

.about__image:hover img { transform: scale(1.04); }

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-gold-glow);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.about__badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: badgePop 0.6s var(--ease-spring) both;
}

.about__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@keyframes badgePop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.about__content p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.stat { text-align: center; }

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat__suffix {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* --- Services --- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198,153,58,0.25);
}

.service:hover::before { opacity: 1; }

.service__icon {
  width: 52px; height: 52px;
  margin: 0 auto var(--space-md);
  color: var(--color-gold);
  transition: transform 0.5s var(--ease-spring);
}

.service:hover .service__icon { transform: scale(1.15) rotate(5deg); }

.service__icon svg { width: 100%; height: 100%; }

.service__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.service__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.service__price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-gold-dark);
}

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%; height: 300px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.gallery__item--wide { grid-column: span 2; }
.gallery__item--wide img { height: 340px; }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-3xl) var(--space-lg) var(--space-md);
  background: linear-gradient(to top, rgba(26,21,17,0.8), transparent);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s var(--ease-out);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__cta {
  text-align: center;
  margin-top: var(--space-2xl);
  font-size: 0.9375rem;
  color: var(--color-text-soft);
}

/* --- Testimonials --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(198,153,58,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease-out);
  backdrop-filter: blur(8px);
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(198,153,58,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
  color: var(--color-gold-light);
}

.testimonial__stars svg { width: 18px; height: 18px; }

.testimonial__text {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(245,240,235,0.85);
  flex: 1;
  margin-bottom: var(--space-lg);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-style: normal;
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial__author strong { display: block; font-size: 0.875rem; }
.testimonial__author span { font-size: 0.75rem; color: var(--color-text-muted); }

/* --- Booking --- */
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.booking__info p {
  color: var(--color-text-soft);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.booking__details { display: flex; flex-direction: column; gap: var(--space-lg); }

.booking__detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.booking__detail:hover { background: var(--color-gold-glow); }

.booking__detail svg {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.booking__detail strong { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.booking__detail span,
.booking__detail a { font-size: 0.8125rem; color: var(--color-text-muted); }
.booking__detail a { display: block; transition: color var(--transition-fast); }
.booking__detail a:hover { color: var(--color-gold-dark); }

/* Form */
.booking__form {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form__group { margin-bottom: var(--space-md); }

.form__group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark-soft);
  margin-bottom: 6px;
}

.form__optional { font-weight: 400; color: var(--color-text-muted); }

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-dark);
  background: var(--color-bg);
  border: 1.5px solid rgba(198,153,58,0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  appearance: none;
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%23C6993A' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px var(--color-gold-glow);
  background: var(--color-white);
}

.form__group textarea { resize: vertical; min-height: 80px; }

.form__error {
  display: none;
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: var(--space-xs);
  font-weight: 500;
}

.form__group.error input,
.form__group.error select { border-color: var(--color-error); }
.form__group.error .form__error { display: block; }

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
  animation: successPop 0.5s var(--ease-spring);
}

.form__success.show { display: block; }

@keyframes successPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.form__success svg {
  width: 56px; height: 56px;
  color: var(--color-success);
  margin: 0 auto var(--space-md);
}

.form__success strong { display: block; font-size: 1.125rem; color: var(--color-dark); margin-bottom: var(--space-sm); }
.form__success p { font-size: 0.875rem; color: var(--color-text-soft); }

/* --- Contact --- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(198,153,58,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all 0.5s var(--ease-out);
}

.contact__card:hover {
  transform: translateY(-4px);
  border-color: rgba(198,153,58,0.3);
  background: rgba(198,153,58,0.06);
}

.contact__card svg {
  width: 28px; height: 28px;
  color: var(--color-gold-light);
  margin-bottom: var(--space-md);
}

.contact__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.contact__card p,
.contact__card a {
  font-size: 0.8125rem;
  color: rgba(245,240,235,0.7);
  line-height: 1.6;
}

.contact__card a { display: block; transition: color var(--transition-fast); }
.contact__card a:hover { color: var(--color-gold-light); }

.contact__meta {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.contact__hours { display: flex; flex-direction: column; gap: var(--space-xs); }

.contact__hour {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(245,240,235,0.7);
}

.contact__hour--closed span:last-child { color: var(--color-error); }

.contact__note {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.5;
}

.booking__note {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-gold) !important;
  line-height: 1.4;
}

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-md);
}

.contact__map iframe { display: block; }

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: var(--color-ivory);
  border-top: 1px solid rgba(198,153,58,0.1);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__logo {
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin-bottom: var(--space-md);
  transition: transform 0.5s var(--ease-spring);
}

.footer__logo:hover { transform: scale(1.1) rotate(5deg); }

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-text-muted);
}

.footer__links h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer__links a {
  display: block;
  font-size: 0.8125rem;
  color: rgba(245,240,235,0.6);
  padding: var(--space-xs) 0;
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245,240,235,0.4);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

/* GSAP takeover: disable CSS fade-up on hero (timeline takes over) */
body.gsap-ready .hero .fade-up {
  animation: none;
}

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

/* Reveal variants */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.64s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .hero__scroll-line, .hero__logo, .hero__bg::before, .hero__bg::after { animation: none; }
  .hero__particle { animation: none !important; display: none; }
}

/* --- Pricing (Coupe Homme) --- */
.pricing {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-2xl);
  box-shadow: var(--shadow-card);
}

.pricing__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.pricing__item {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-dark);
}

.pricing__item + .pricing__item {
  border-top: 1px solid var(--color-border);
}

.pricing__name {
  flex-shrink: 0;
}

.pricing__dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-gold);
  opacity: 0.4;
  min-width: 32px;
  transform: translateY(-4px);
}

.pricing__price {
  flex-shrink: 0;
  color: var(--color-gold);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
}

.pricing__item--highlight {
  margin-top: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, rgba(198,153,58,0.08), rgba(198,153,58,0.02));
  border-radius: var(--radius-md);
  border-top: none !important;
}

.pricing__item--highlight .pricing__name {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; --space-4xl: 64px; }

  .header.scrolled { background: rgba(255,250,245,0.96); }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    background: rgba(255,250,245,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -8px 0 30px rgba(0,0,0,0.08);
    transition: right var(--transition);
  }

  .nav__menu.open { right: 0; }

  .nav__link {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1.0625rem;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-dark);
  }

  .nav__link::after { display: none; }
  .nav__link--cta { margin-top: var(--space-md); text-align: center; border-bottom: none; }

  .hero__logo { width: 100px; height: 100px; }
  .hero__scroll { display: none; }

  .about { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about__image img { height: 280px; }
  .about__stats { gap: var(--space-lg); }

  .services { grid-template-columns: 1fr; gap: var(--space-md); }
  .service {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    gap: 0 var(--space-md);
    text-align: left;
    padding: var(--space-lg);
  }
  .service::before { display: none; }
  .service__icon { grid-row: 1 / 3; margin: 0; align-self: center; }
  .service__title { align-self: end; }
  .service__desc { grid-column: 2; margin-bottom: var(--space-sm); }
  .service__price { grid-column: 2; }

  .pricing { padding: var(--space-xl) var(--space-lg); }
  .pricing__item { font-size: 1.0625rem; flex-wrap: wrap; }
  .pricing__dots { min-width: 20px; }
  .pricing__price { font-size: 1rem; }

  .gallery { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item img { height: 200px; }
  .gallery__item--wide img { height: 220px; }
  .gallery__caption { opacity: 1; transform: none; padding: var(--space-lg) var(--space-md) var(--space-sm); font-size: 0.75rem; }

  .testimonials { grid-template-columns: 1fr; }

  .booking { grid-template-columns: 1fr; gap: var(--space-xl); }
  .form__row { grid-template-columns: 1fr; }

  .contact { grid-template-columns: 1fr; gap: var(--space-xl); }
  .contact__cards { grid-template-columns: 1fr; }
  .contact__map { min-height: 300px; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }

  .section__label::before,
  .section__label::after { width: 16px; }
}

@media (max-width: 400px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .about__stats { flex-direction: column; align-items: center; }
}
