/* ============================================================
   ELBEAUTY 77 — Design System & Styles
   Palette : vert forêt, beige chaud (couleurs du logo officiel)
   Mobile-first | Premium | Féminin | Conversion-oriented
   ============================================================ */

/* ── Variables ── */
:root {
  /* Couleurs primaires — vert forêt (tiré du logo) */
  --rose:       #3A5230;
  --rose-light: #7A9A72;
  --rose-pale:  #EBF2E8;
  --rose-dark:  #2A3D22;

  /* Neutres chauds — beige logo */
  --creme:      #F8F2E6;
  --beige:      #EDE0C8;
  --brun:       #6B5A3A;
  --brun-light: #A89070;

  /* Textes */
  --text-dark:  #1E2A1A;
  --text-mid:   #4A5A3A;
  --text-light: #7A8A6A;

  /* Surfaces */
  --white:      #FFFFFF;
  --surface:    #FAF6ED;

  /* Accents dorés */
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;

  /* Typographies */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans:  'DM Sans', 'Inter', system-ui, sans-serif;

  /* Tailles */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  /* Espacements */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Rayons */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 999px;

  /* Ombres */
  --shadow-sm:  0 1px 3px rgba(42,32,32,0.08), 0 1px 2px rgba(42,32,32,0.06);
  --shadow-md:  0 4px 16px rgba(42,32,32,0.10), 0 2px 6px rgba(42,32,32,0.06);
  --shadow-lg:  0 8px 32px rgba(42,32,32,0.12), 0 4px 12px rgba(42,32,32,0.08);
  --shadow-rose: 0 4px 20px rgba(201,123,138,0.25);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--creme);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--creme); }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: var(--radius-full); }

/* ── Typography helpers ── */
.serif      { font-family: var(--font-serif); }
.text-rose  { color: var(--rose); }
.text-brun  { color: var(--brun); }
.text-light { color: var(--text-light); }

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}
.section--alt { background: var(--beige); }
.section--dark { background: var(--text-dark); color: var(--white); }
.section--rose { background: var(--rose-pale); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-3);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--rose);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(201,123,138,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(42,32,32,0.20);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--rose);
  color: var(--rose);
}

.btn-ghost {
  background: transparent;
  color: var(--rose);
  padding: 0.875rem 1.5rem;
}
.btn-ghost:hover { text-decoration: underline; }

/* ── Badge / Tags ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  background: var(--rose-pale);
  color: var(--rose-dark);
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,244,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,123,138,0.12);
  padding: var(--space-4) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 52px;
  width: 52px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-mid);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--rose);
  background: var(--rose-pale);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-6) var(--space-6);
  background: var(--creme);
  border-bottom: 1px solid var(--beige);
}
.nav-mobile a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-mid);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-mobile a:hover { color: var(--rose); background: var(--rose-pale); }
.nav-mobile .btn { margin-top: var(--space-3); align-self: flex-start; }
.nav-mobile.open { display: flex; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--creme) 0%, var(--rose-pale) 60%, var(--beige) 100%);
  padding: var(--space-24) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,123,138,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--white);
  border: 1px solid var(--rose-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.hero-badge::before {
  content: '✦';
  font-size: 10px;
  color: var(--rose);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-light);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-trust-item svg { flex-shrink: 0; }

.hero-visual {
  position: relative;
}
.hero-visual-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--rose-pale), var(--beige));
}
.hero-visual-card .placeholder-img {
  text-align: center;
  color: var(--brun-light);
}
.hero-visual-card .placeholder-img .icon { font-size: 4rem; margin-bottom: var(--space-3); }
.hero-visual-card .placeholder-img p { font-size: var(--text-sm); font-weight: 500; }

.hero-floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-floating-1 { bottom: 32px; left: -28px; }
.hero-floating-2 { top: 28px; right: -24px; }
.hero-floating-icon { font-size: 1.5rem; }
.hero-floating-text { line-height: 1.3; }
.hero-floating-text strong { font-size: var(--text-sm); font-weight: 700; display: block; }
.hero-floating-text span { font-size: var(--text-xs); color: var(--text-light); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--text-dark);
  padding: var(--space-8) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  text-align: center;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(6, 1fr); }
}
.stat-value {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--rose-light);
  display: block;
  margin-bottom: 2px;
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ── Services / Pricing ── */
.services-intro {
  text-align: center;
  margin-bottom: var(--space-12);
}
.services-intro .section-label { justify-content: center; }
.services-intro .section-subtitle { margin: 0 auto; }

.pricing-note {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--white);
  border: 1px solid var(--rose-light);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-10);
  font-size: var(--text-sm);
  color: var(--text-mid);
  max-width: 700px;
}
.pricing-note-icon { color: var(--rose); flex-shrink: 0; margin-top: 1px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,123,138,0.10);
  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), var(--rose-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(201,123,138,0.25);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}
.service-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.service-price {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--rose);
  white-space: nowrap;
  margin-left: var(--space-4);
}
.service-desc {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.service-card--depose {
  background: var(--beige);
  border-style: dashed;
}
.service-card--depose .service-price { color: var(--brun); }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.extra-card {
  background: var(--rose-pale);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  border: 1px solid var(--rose-light);
}
.extra-icon { font-size: 1.5rem; flex-shrink: 0; }
.extra-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-dark);
  margin-bottom: 2px;
}
.extra-detail {
  font-size: var(--text-xs);
  color: var(--text-mid);
  line-height: 1.5;
}

.acompte-notice {
  margin-top: var(--space-8);
  background: var(--white);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.acompte-notice strong { color: var(--text-dark); }

/* ── Entretien ── */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.care-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige);
  transition: all 0.25s;
}
.care-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}
.care-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.care-title {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text-dark);
  margin-bottom: 4px;
}
.care-desc {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Infos ── */
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 768px) {
  .infos-grid { grid-template-columns: 1fr; }
}
.info-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.info-block-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1.5px solid var(--beige);
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.6;
}
.info-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 6px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  background: var(--surface);
  color: var(--text-mid);
}
.payment-chip span { font-size: 1.1rem; }

/* ── Galerie ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--rose-pale);
  position: relative;
  cursor: pointer;
}
.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--brun-light);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-item-inner {
  background: rgba(201,123,138,0.15);
}
.gallery-item-icon { font-size: 2.5rem; }
.gallery-item-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
  padding: 0 var(--space-4);
  color: var(--brun);
}
.gallery-cta {
  text-align: center;
}
.gallery-insta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, #E1306C, #833AB4, #F56040);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  box-shadow: 0 4px 16px rgba(225,48,108,0.30);
  transition: all 0.25s;
}
.gallery-insta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(225,48,108,0.40);
}

/* ── Avis / Reviews ── */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  gap: var(--space-6);
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.reviews-score {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.reviews-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.star { color: var(--gold); font-size: 1.1rem; }
.reviews-count {
  font-size: var(--text-sm);
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow 0.25s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; }
.review-text {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.7;
  flex-grow: 1;
  font-style: italic;
}
.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--beige);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--rose-dark);
  flex-shrink: 0;
}
.review-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
}
.review-verified {
  font-size: var(--text-xs);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-verified::before {
  content: '✓';
  color: #4CAF50;
  font-weight: 700;
}

.reviews-cta { text-align: center; }

/* ── Artist ── */
.artist-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 768px) {
  .artist-section { grid-template-columns: 1fr; }
}
.artist-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--rose-pale), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-3);
  color: var(--brun-light);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.artist-photo-icon { font-size: 4rem; }
.artist-photo-label { font-size: var(--text-sm); font-weight: 500; }

.artist-content {}
.artist-desc {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.artist-qualities {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.quality-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.quality-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.quality-title { font-weight: 600; font-size: var(--text-base); margin-bottom: 2px; }
.quality-desc { font-size: var(--text-sm); color: var(--text-mid); }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.80); margin: 0 auto var(--space-8); }
.cta-section .btn-primary {
  background: var(--white);
  color: var(--rose-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover { background: var(--creme); }
.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.70); }

/* ── Footer ── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.80);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: var(--space-8);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
  color: rgba(255,255,255,0.80);
}
.social-btn:hover { background: var(--rose); color: var(--white); }

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: var(--space-5);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.40);
}
.footer-bottom a { color: rgba(255,255,255,0.40); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.80); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .section { padding: var(--space-16) 0; }
  .nav-links, .nav-actions .btn:not(.btn-primary) { display: none; }
  .nav-actions .btn-primary { font-size: var(--text-xs); padding: 0.625rem 1rem; }
  .nav-burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .extras-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.gap-3 { gap: var(--space-3); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.hidden { display: none; }
