/* ============================================================
   BELLE & CHIC — SINGLE PAGE REDESIGN
   ============================================================ */

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

:root {
  --rose:       #8b5a7d;
  --rose-dark:  #6e4563;
  --rose-mid:   #a87099;
  --rose-light: #e8d5e0;
  --rose-ultra: #f8f0f5;
  --grey:       #e8e8e8;
  --grey-2:     #d0d0d0;
  --text:       #4a4a4a;
  --text-light: #7a7a7a;
  --gold:       #d4af37;
  --gold-dark:  #b8960f;
  --gold-glow:  rgba(212,175,55,0.25);
  --white:      #ffffff;
  --poppins:    'Poppins', -apple-system, sans-serif;
  --inter:      'Inter', -apple-system, sans-serif;
  --radius:     12px;
  --shadow-sm:  0 2px 12px rgba(139,90,125,0.10);
  --shadow-md:  0 6px 28px rgba(139,90,125,0.16);
  --shadow-lg:  0 16px 56px rgba(139,90,125,0.22);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--inter);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--poppins);
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--text);
}

h2 span { color: var(--rose); }

/* ── SECTION LABELS ────────────────────────────────────────── */
.section-label {
  font-family: var(--poppins);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.55rem;
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.8rem;
  border-radius: 2px;
}

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

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease calc(var(--d, 0s)), transform 0.6s ease calc(var(--d, 0s));
}

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

/* ── CTA BUTTONS ────────────────────────────────────────────── */
.cta-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--rose-dark);
  font-family: var(--poppins);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.cta-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--rose);
  font-family: var(--poppins);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: 2px solid var(--rose);
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.cta-outline:hover {
  background: var(--rose);
  color: var(--white);
}

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  background: linear-gradient(135deg, #8b5a7d 0%, #7a4a6c 100%);
  z-index: 200;
  box-shadow: 0 2px 24px rgba(110,69,99,0.25);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
}

.logo-group { flex-shrink: 0; }

.logo {
  font-family: var(--poppins);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.tagline {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 0.85rem; right: 0.85rem; }

.cta-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--rose-dark);
  font-family: var(--poppins);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}

.cta-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: linear-gradient(180deg, #7a4a6c 0%, #6e4563 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open { display: block; }

.mobile-nav ul { padding: 1rem 0; }

.mobile-nav li a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav li a:hover { color: var(--gold); padding-left: 2.6rem; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 76px;
  background: linear-gradient(135deg, #8b5a7d 0%, #7a4a6c 60%, #6e4563 100%);
  overflow: hidden;
}

/* ─ Left: image side ─ */
.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3rem 2rem 0;
  overflow: hidden;
}

.hero-portrait {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  border-radius: 240px 240px 0 0;
  background:
    radial-gradient(ellipse 52% 26% at 50% 31%, rgba(248,220,195,0.90) 0%, rgba(238,205,180,0.45) 55%, transparent 90%),
    radial-gradient(ellipse 40% 16% at 50% 13%, rgba(228,195,168,0.55) 0%, transparent 80%),
    radial-gradient(ellipse 30% 12% at 50% 50%, rgba(240,210,185,0.35) 0%, transparent 80%),
    radial-gradient(ellipse 70% 80% at 8%  55%, rgba(90,35,70,0.82) 0%, rgba(120,55,95,0.55) 40%, transparent 70%),
    radial-gradient(ellipse 70% 80% at 92% 55%, rgba(90,35,70,0.82) 0%, rgba(120,55,95,0.55) 40%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 0%,  rgba(70,25,55,0.95) 0%, rgba(100,45,80,0.65) 50%, transparent 80%),
    radial-gradient(ellipse 90% 60% at 50% 90%, rgba(90,35,70,0.80) 0%, rgba(130,60,105,0.40) 55%, transparent 80%),
    radial-gradient(ellipse 90% 90% at 50% 50%, rgba(200,145,175,0.22) 0%, transparent 70%),
    linear-gradient(155deg, #a06090 0%, #c090b0 45%, #e0c0d0 100%);
  box-shadow:
    0 32px 80px rgba(100,45,80,0.45),
    0  8px 24px rgba(100,45,80,0.25);
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: var(--gold);
  color: var(--rose-dark);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 16px var(--gold-glow);
}

.hb-n { font-family: var(--poppins); font-size: 1.25rem; font-weight: 800; line-height: 1; }
.hb-l { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; margin-top: 2px; }

/* ─ Right: content side ─ */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3rem;
  color: var(--white);
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-family: var(--poppins);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--poppins);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.4rem;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2.2rem;
}

.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.8rem;
}

.hs { display: flex; flex-direction: column; gap: 2px; }
.hs-n { font-family: var(--poppins); font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.hs-l { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* ── À PROPOS ───────────────────────────────────────────────── */
.apropos {
  background: var(--white);
  padding: 7rem 2rem;
}

.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.apropos-text h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 0.3rem; }
.apropos-text p  { font-size: 0.97rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.apropos-text .cta-outline { margin-top: 0.8rem; }

.apropos-visual { position: relative; }

.apropos-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius) var(--radius) 48px 48px;
  background:
    radial-gradient(ellipse 80% 40% at 50% 95%, rgba(160,100,130,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 30% 20% at 20% 30%, rgba(220,190,210,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(240,215,230,0.25) 0%, transparent 60%),
    linear-gradient(155deg, #e8d5e0 0%, #d4b8c8 50%, #c0a0b5 100%);
  box-shadow: var(--shadow-lg);
}

.apropos-bubble {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.ab-n { font-family: var(--poppins); font-size: 1.4rem; font-weight: 800; line-height: 1; }
.ab-l { font-size: 0.52rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.35; margin-top: 2px; opacity: 0.85; }

/* ── SERVICES ───────────────────────────────────────────────── */
.services {
  background: var(--grey);
  padding: 7rem 2rem;
  text-align: center;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--rose-light);
  border-radius: var(--radius);
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #d8c4d0;
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: block;
}

.service-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 0.8rem;
  font-family: var(--poppins);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── GALERIE ────────────────────────────────────────────────── */
.gallery {
  background: var(--rose-ultra);
  padding: 7rem 2rem;
  text-align: center;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 1rem;
  margin-top: 3.5rem;
}

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

.gal-photo {
  width: 100%;
  height: 100%;
  filter: grayscale(60%);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.gallery-item:hover .gal-photo {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* Hair CSS art — 6 styles */
.gp1 {
  background:
    radial-gradient(ellipse 40% 25% at 50% 22%, rgba(248,222,170,0.80) 0%, transparent 65%),
    radial-gradient(ellipse 80% 75% at 20% 60%, rgba(220,185,80,0.75) 0%, transparent 55%),
    radial-gradient(ellipse 80% 75% at 80% 60%, rgba(220,185,80,0.75) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(185,145,50,0.80) 0%, transparent 60%),
    linear-gradient(175deg, #f5dc8a 0%, #e8c860 40%, #c8a030 100%);
}

.gp2 {
  background:
    radial-gradient(ellipse 38% 22% at 50% 20%, rgba(238,208,175,0.75) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 15% 55%, rgba(100,60,20,0.85) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 85% 55%, rgba(100,60,20,0.85) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 85%, rgba(180,120,55,0.90) 0%, transparent 60%),
    linear-gradient(175deg, #8c5020 0%, #b87840 40%, #d8a860 100%);
}

.gp3 {
  background:
    radial-gradient(ellipse 36% 22% at 50% 20%, rgba(252,210,225,0.80) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 15% 55%, rgba(180,60,110,0.80) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 85% 55%, rgba(180,60,110,0.80) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 88%, rgba(220,100,155,0.85) 0%, transparent 60%),
    linear-gradient(175deg, #c04070 0%, #e07090 40%, #f5a0c0 100%);
}

.gp4 {
  background:
    radial-gradient(ellipse 36% 20% at 50% 18%, rgba(228,195,160,0.70) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 18% 48%, rgba(40,20,8,0.90) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 82% 48%, rgba(40,20,8,0.90) 0%, transparent 55%),
    radial-gradient(ellipse 80% 55% at 50% 82%, rgba(70,35,12,0.90) 0%, transparent 60%),
    linear-gradient(175deg, #2a1006 0%, #4a2010 45%, #7a4525 100%);
}

.gp5 {
  background:
    radial-gradient(ellipse 36% 22% at 50% 18%, rgba(238,200,165,0.75) 0%, transparent 60%),
    radial-gradient(ellipse 75% 55% at 20% 50%, rgba(40,18,8,0.92) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 80% 50%, rgba(40,18,8,0.92) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 50% 85%, rgba(185,125,60,0.90) 0%, transparent 60%),
    linear-gradient(175deg, #1e0c04 0%, #7a4018 50%, #c88040 100%);
}

.gp6 {
  background:
    radial-gradient(ellipse 36% 20% at 50% 18%, rgba(235,205,235,0.72) 0%, transparent 60%),
    radial-gradient(ellipse 78% 65% at 18% 53%, rgba(80,20,130,0.85) 0%, transparent 55%),
    radial-gradient(ellipse 78% 65% at 82% 53%, rgba(80,20,130,0.85) 0%, transparent 55%),
    radial-gradient(ellipse 72% 52% at 50% 86%, rgba(160,75,210,0.88) 0%, transparent 60%),
    linear-gradient(175deg, #300060 0%, #7820a8 45%, #b060d8 100%);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(110,69,99,0.88) 0%, rgba(110,69,99,0.2) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gal-overlay { opacity: 1; }

.gal-name {
  font-family: var(--poppins);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.gal-style {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 3px;
}

/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(30,10,25,0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.open { display: flex; }

.lb-img {
  width: min(440px, 80vw);
  height: min(560px, 70vh);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  margin-bottom: 1.4rem;
}

.lb-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
}

#lbName  { font-family: var(--poppins); font-size: 1rem; font-weight: 700; }
#lbStyle { font-size: 0.8rem; color: var(--gold); }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: color var(--transition);
  font-size: 1.6rem;
  line-height: 1;
}

.lb-close { top: 1.5rem; right: 2rem; font-size: 1.2rem; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }

.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }

/* ── ÉQUIPE ─────────────────────────────────────────────────── */
.team {
  background: #f2e8ef;
  padding: 7rem 2rem;
  text-align: center;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.3rem;
  border: 3px solid var(--rose-light);
  box-shadow: 0 4px 16px rgba(139,90,125,0.20);
}

/* Team portrait CSS art */
.tp1 {
  background:
    radial-gradient(ellipse 42% 24% at 50% 38%, rgba(245,215,190,0.88) 0%, transparent 65%),
    radial-gradient(ellipse 68% 55% at 15% 60%, rgba(50,20,10,0.90) 0%, transparent 55%),
    radial-gradient(ellipse 68% 55% at 85% 60%, rgba(50,20,10,0.90) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 50% 0%,  rgba(35,12,6,0.96) 0%, transparent 65%),
    linear-gradient(175deg, #1a0808 0%, #5a3018 55%, #e0c0a0 100%);
}

.tp2 {
  background:
    radial-gradient(ellipse 42% 24% at 50% 36%, rgba(250,225,195,0.90) 0%, transparent 65%),
    radial-gradient(ellipse 68% 55% at 15% 58%, rgba(210,178,80,0.80) 0%, transparent 55%),
    radial-gradient(ellipse 68% 55% at 85% 58%, rgba(210,178,80,0.80) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 50% 0%,  rgba(185,148,50,0.90) 0%, transparent 65%),
    linear-gradient(175deg, #c8a030 0%, #e8c860 55%, #f8e8a0 100%);
}

.tp3 {
  background:
    radial-gradient(ellipse 42% 24% at 50% 37%, rgba(242,212,182,0.88) 0%, transparent 65%),
    radial-gradient(ellipse 68% 55% at 15% 58%, rgba(80,45,15,0.88) 0%, transparent 55%),
    radial-gradient(ellipse 68% 55% at 85% 58%, rgba(80,45,15,0.88) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 50% 0%,  rgba(55,28,8,0.95) 0%, transparent 65%),
    linear-gradient(175deg, #3a1a06 0%, #8a5022 55%, #c08050 100%);
}

.tp4 {
  background:
    radial-gradient(ellipse 42% 24% at 50% 37%, rgba(248,215,188,0.88) 0%, transparent 65%),
    radial-gradient(ellipse 68% 55% at 15% 58%, rgba(160,70,40,0.82) 0%, transparent 55%),
    radial-gradient(ellipse 68% 55% at 85% 58%, rgba(160,70,40,0.82) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 50% 0%,  rgba(120,45,25,0.92) 0%, transparent 65%),
    linear-gradient(175deg, #782010 0%, #c05030 55%, #e09050 100%);
}

.team-card h3 {
  font-family: var(--poppins);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 2px;
}

.role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.team-socials {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.team-socials a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--rose);
  border: 1.5px solid var(--rose-light);
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}

.team-socials a:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* ── TARIFS ─────────────────────────────────────────────────── */
.pricing {
  background: var(--white);
  padding: 7rem 2rem;
  text-align: center;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.5rem;
}

.pricing-card {
  background: var(--white);
  border-top: 3px solid var(--rose);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: block;
}

.pricing-card h3 {
  font-family: var(--poppins);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 0.4rem;
}

.pricing-card .price {
  font-family: var(--poppins);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.pricing-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact {
  background: var(--rose-light);
  padding: 7rem 2rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin-bottom: 0.3rem;
  color: var(--rose-dark);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
}

.info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.info-item a {
  color: var(--rose-dark);
  transition: color var(--transition);
}

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

.hours-block {
  margin-top: 2rem;
  padding: 1.4rem;
  background: rgba(255,255,255,0.55);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.hours-title {
  font-family: var(--poppins);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.hours-block p { font-size: 0.9rem; color: var(--text-light); line-height: 2; }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--white);
  border: none;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
  padding: 0.85rem 0.4rem;
  font-family: var(--inter);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.4rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 2px 0 var(--rose-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey-2); }

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .cta-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
  border: none;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(139,90,125,0.08);
  border: 1px solid var(--rose-light);
  border-left: 3px solid var(--rose);
  border-radius: 4px;
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--rose-dark);
  padding: 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.footer a { color: var(--gold); transition: color var(--transition); }
.footer a:hover { color: var(--gold-dark); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-rows: repeat(2, 280px); }
  .apropos-inner { gap: 3.5rem; }
}

@media (max-width: 900px) {
  .hero          { grid-template-columns: 1fr; min-height: auto; }
  .hero-image    { display: none; }
  .hero-content  { padding: 4rem 2rem 5rem; min-height: 80vh; justify-content: flex-end; }
  .apropos-inner { grid-template-columns: 1fr; gap: 2rem; }
  .apropos-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links     { display: none; }
  .cta-btn       { display: none; }
  .burger        { display: flex; }
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item  { aspect-ratio: 4/3; }
  .gal-photo     { height: 100%; }
  .contact-form  { padding: 1.6rem 1.2rem; }
}
