/* ============================================
   Agathe Beauty — style.css
   Feminine Elegant Esthetician · Nancy
   ============================================ */

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

:root {
  --plum:        #1a0f1f;
  --plum-light:  #2d1535;
  --plum-dark:   #120a17;
  --rose-gold:   #ec4899;
  --rose-light:  #f472b6;
  --rose-dark:   #be185d;
  --cream:       #fdf2f8;
  --cream-dark:  #fce7f3;
  --text-dark:   #1a0f1f;
  --text-mid:    #4a3352;
  --text-light:  #9d6b93;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(26,15,31,.12);
  --shadow-md:   0 6px 24px rgba(26,15,31,.18);
  --shadow-lg:   0 12px 48px rgba(26,15,31,.22);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  .3s ease;
  --font-body:   "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-head:   "Playfair Display", Georgia, "Times New Roman", serif;
}
/* ============================================
   Les L du Bien Etre — style.css
   Luxury Electrolysis Clinic · Montpellier
   ============================================ */

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


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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-dark); }

/* --- Google Fonts import fallback handled in HTML --- */

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--plum);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: .75rem;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container { width: min(1140px, 92%); margin: 0 auto; }
.container--narrow { width: min(780px, 92%); margin: 0 auto; }

section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 600px; margin: .75rem auto 0; color: var(--text-mid); font-size: 1.05rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}
.btn-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(45,27,46,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,136,122,.2);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  color: var(--cream);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--rose-gold);
  background: rgba(201,136,122,.12);
}

.nav-cta {
  background: var(--rose-gold) !important;
  color: var(--white) !important;
  border-radius: 40px !important;
  padding: 9px 22px !important;
}
.nav-cta:hover {
  background: var(--rose-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-salon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,27,46,.92) 0%, rgba(30,16,32,.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-content .section-label { color: var(--rose-light); }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content p {
  color: rgba(253,245,243,.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 32px;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(253,245,243,.8);
  font-size: .88rem;
}
.hero-badge svg { width: 20px; height: 20px; fill: var(--rose-gold); flex-shrink: 0; }

/* ============================================
   INTRO / TRUST BAR
   ============================================ */
.trust-bar { background: var(--plum); padding: 40px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.trust-item { }
.trust-item .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rose-gold);
  display: block;
}
.trust-item p { color: rgba(253,245,243,.75); font-size: .88rem; margin: 0; }

/* ============================================
   TWO-COLUMN SECTIONS
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.two-col-img img { width: 100%; height: 460px; object-fit: cover; }

.two-col-text .section-label { display: block; }
.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p { color: var(--text-mid); margin-bottom: 1rem; }
.two-col-text .btn { margin-top: .5rem; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section { background: var(--plum-dark); }
.services-section h2, .services-section .section-label { color: var(--cream); }
.services-section .section-header p { color: rgba(253,245,243,.7); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,136,122,.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  text-align: center;
}
.service-card:hover {
  background: rgba(201,136,122,.12);
  border-color: var(--rose-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,136,122,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--rose-gold); }
.service-card h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p { color: rgba(253,245,243,.65); font-size: .9rem; margin: 0; }

/* ============================================
   GEOGRAPHIC BANNER (CSS bg)
   ============================================ */
.geo-banner {
  position: relative;
  padding: 100px 0;
  background-image: url('/images/vue-nancy.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.geo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,27,46,.88);
}
.geo-banner-content { position: relative; z-index: 1; }
.geo-banner h2 { color: var(--white); margin-bottom: 1rem; }
.geo-banner p { color: rgba(253,245,243,.8); max-width: 600px; margin: 0 auto 2rem; font-size: 1.05rem; }
.geo-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.geo-tag {
  background: rgba(201,136,122,.2);
  border: 1px solid rgba(201,136,122,.4);
  color: var(--rose-light);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ============================================
   TWO-COL CTA (image + text dark bg)
   ============================================ */
.cta-split { background: var(--cream-dark); }
.cta-split .two-col-text p { color: var(--text-mid); }

/* ============================================
   TARIFS
   ============================================ */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.tarif-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tarif-header {
  background: var(--plum);
  padding: 28px 28px 24px;
  text-align: center;
}
.tarif-header h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 4px; }
.tarif-header .subtitle { color: var(--rose-light); font-size: .82rem; }
.tarif-body { padding: 28px; }
.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: .92rem;
}
.tarif-row:last-child { border-bottom: none; }
.tarif-row .label { color: var(--text-mid); }
.tarif-row .price { font-weight: 700; color: var(--rose-gold); }

/* ============================================
   PROCESS / STEPS
   ============================================ */
.steps-section { background: var(--plum); }
.steps-section h2, .steps-section .section-label { color: var(--cream); }
.steps-section .section-header p { color: rgba(253,245,243,.7); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  counter-reset: steps;
}
.step-item { text-align: center; position: relative; }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-dark));
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.step-item h3 { color: var(--cream); font-size: 1rem; margin-bottom: .5rem; }
.step-item p { color: rgba(253,245,243,.65); font-size: .88rem; margin: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--plum);
  font-size: .98rem;
  gap: 16px;
}
.faq-question .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question .icon::after {
  content: '+';
  color: white;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer p { color: var(--text-mid); padding-bottom: 20px; font-size: .95rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--plum-dark); }
.testimonials-section h2, .testimonials-section .section-label { color: var(--cream); }
.testimonials-section .section-header p { color: rgba(253,245,243,.7); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,136,122,.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.stars { color: var(--rose-gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: rgba(253,245,243,.8); font-style: italic; margin-bottom: 1.25rem; font-size: .95rem; }
.testimonial-author { font-weight: 700; color: var(--rose-light); font-size: .88rem; }

/* ============================================
   BLOG / BEAUTÉ
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { overflow: hidden; height: 220px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: .5rem;
}
.blog-card-body h3 { color: var(--plum); margin-bottom: .75rem; font-size: 1.05rem; }
.blog-card-body p { color: var(--text-mid); font-size: .9rem; flex: 1; margin-bottom: 1.25rem; }
.blog-card-meta { font-size: .8rem; color: var(--text-light); }
.blog-card-link { color: var(--rose-gold); font-weight: 700; font-size: .88rem; text-decoration: none; }
.blog-card-link:hover { color: var(--rose-dark); }

/* Blog Article */
.article-hero {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  margin-top: 76px;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,46,.9) 0%, rgba(45,27,46,.3) 100%);
}
.article-hero-content { position: relative; z-index: 1; padding: 48px 0; }
.article-hero-content .blog-cat { margin-bottom: .75rem; }
.article-hero-content h1 { color: var(--white); }

.article-meta { color: rgba(253,245,243,.7); font-size: .88rem; margin-top: .75rem; }

.article-body { padding: 60px 0 80px; }
.article-body h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.article-body h3 { margin: 1.5rem 0 .75rem; font-size: 1.2rem; }
.article-body p { color: var(--text-mid); margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.5rem; color: var(--text-mid); }
.article-body li { margin-bottom: .5rem; }
.article-body a { color: var(--rose-gold); font-weight: 600; }
.article-body a:hover { color: var(--rose-dark); }

.article-mid-img { border-radius: var(--radius-lg); overflow: hidden; margin: 2.5rem 0; }
.article-mid-img img { width: 100%; height: 380px; object-fit: cover; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail svg { width: 22px; height: 22px; fill: var(--rose-gold); flex-shrink: 0; margin-top: 3px; }
.contact-detail h4 { font-size: .9rem; color: var(--plum); margin-bottom: 4px; }
.contact-detail p { color: var(--text-mid); font-size: .92rem; margin: 0; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--plum); margin-bottom: 6px; letter-spacing: .04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose-gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   PAGE INNER HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(253,245,243,.75); max-width: 560px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(253,245,243,.55);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--rose-light); }
.breadcrumb span { color: rgba(253,245,243,.35); }

/* ============================================
   SITEMAP
   ============================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.sitemap-col h3 { color: var(--plum); font-size: 1rem; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--rose-gold); }
.sitemap-col ul { list-style: none; }
.sitemap-col li { margin-bottom: .5rem; }
.sitemap-col a { color: var(--text-mid); font-size: .92rem; }
.sitemap-col a:hover { color: var(--rose-gold); }

/* ============================================
   404
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  text-align: center;
  padding: 40px;
}
.error-page h1 { font-size: clamp(6rem, 20vw, 12rem); color: var(--rose-gold); line-height: 1; margin-bottom: .25rem; }
.error-page h2 { color: var(--cream); margin-bottom: 1rem; }
.error-page p { color: rgba(253,245,243,.7); margin-bottom: 2rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--plum-dark); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,136,122,.15);
}
.footer-brand p { color: rgba(253,245,243,.6); font-size: .88rem; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { color: var(--cream); font-size: .88rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: rgba(253,245,243,.6); font-size: .88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--rose-gold); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: rgba(253,245,243,.4);
  font-size: .8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .main-nav { 
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--plum-dark);
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(201,136,122,.2);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; font-size: .9rem; }
  .nav-toggle { display: flex; }
  
  .two-col, .two-col.reverse { 
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .two-col-img img { height: 300px; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { background-attachment: scroll; }
  .geo-banner { background-attachment: scroll; }
  .hero-badges { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .article-hero { height: 360px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
/* ============================================
   EDITORIAL / CLIENT LINK SECTION
   ============================================ */
.editorial-section { background: var(--white); }
.editorial-section .container--narrow p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.85; }
.editorial-section a { color: var(--rose-gold); font-weight: 600; border-bottom: 1px solid rgba(236,72,153,.3); }
.editorial-section a:hover { color: var(--rose-dark); border-bottom-color: var(--rose-dark); }
