/* =========================================
   SALON ÉLÉGANCE — Maison de coiffure
   Palette : aubergine profond + champagne + blush
   ========================================= */
:root {
  --bg: #f6f1ea;
  --paper: #fbf8f3;
  --ink: #1f1419;
  --ink-deep: #2a1820;
  --ink-soft: #6a5b62;
  --muted: #978d92;
  --line: #e8dfd4;
  --gold: #c8a464;
  --gold-light: #d4b896;
  --gold-soft: rgba(200, 164, 100, .12);
  --blush: #d9a8a8;
  --blush-soft: rgba(217, 168, 168, .18);
  --shadow: 0 14px 40px -18px rgba(42, 24, 32, .3);
  --shadow-lg: 0 32px 64px -24px rgba(42, 24, 32, .35);
  --display: 'Cormorant Infant', Georgia, serif;
  --body: 'Manrope', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1240px, 92%); margin: 0 auto; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* === TOPBAR === */
.topbar { background: var(--ink-deep); color: rgba(246, 241, 234, .8); padding: 12px 0; font-size: 12.5px; letter-spacing: 1px; }
.topbar__row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--gold); }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { color: var(--gold); }

/* === NAV === */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(246, 241, 234, .94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__row { display: flex; align-items: center; gap: 30px; padding: 22px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark { width: 46px; height: 46px; background: var(--ink-deep); color: var(--gold-light); display: grid; place-items: center; font-family: var(--display); font-weight: 500; font-style: italic; font-size: 18px; border-radius: 50%; }
.brand__name { font-family: var(--display); font-size: 24px; font-weight: 500; letter-spacing: .5px; line-height: 1; }
.brand__name em { font-style: italic; color: var(--gold); font-weight: 600; }
.nav__links { display: flex; gap: 32px; margin-left: auto; }
.nav__links a { font-size: 12px; color: var(--ink-soft); letter-spacing: 2px; text-transform: uppercase; transition: color .2s; }
.nav__links a:hover { color: var(--gold); }
.nav__back { font-size: 12px; color: var(--ink-soft); padding: 8px 12px; letter-spacing: 1px; text-transform: uppercase; transition: all .2s; }
.nav__back:hover { color: var(--gold); }
.nav__cta { background: var(--ink-deep); color: var(--gold-light); padding: 12px 24px; border-radius: 99px; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; transition: all .2s; }
.nav__cta:hover { background: var(--gold); color: var(--ink-deep); }

@media (max-width: 880px) { .nav__links { display: none; } .nav__back { display: none; } }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 99px; font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; transition: all .25s; cursor: pointer; border: 1.5px solid transparent;
}
.btn--gold { background: var(--gold); color: var(--ink-deep); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost-light { background: transparent; color: var(--bg); border-color: rgba(246, 241, 234, .4); }
.btn--ghost-light:hover { background: rgba(246, 241, 234, .1); border-color: var(--bg); }
.btn--block { width: 100%; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  padding: 80px 0;
  /* photo: Unsplash license */
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=2000&q=80');
  background-size: cover; background-position: center;
  color: var(--bg);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 20, 25, .85) 0%, rgba(42, 24, 32, .55) 50%, rgba(31, 20, 25, .85) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__eyebrow { display: inline-block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 30px; font-weight: 500; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(48px, 7vw, 96px); line-height: 1.05;
  letter-spacing: -.5px; margin-bottom: 32px;
}
.hero__title em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero__lead { font-size: 18px; color: rgba(246, 241, 234, .8); max-width: 540px; margin-bottom: 40px; font-weight: 300; line-height: 1.7; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 70px; }
.hero__stats { display: flex; gap: 50px; padding-top: 30px; border-top: 1px solid rgba(246, 241, 234, .15); }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats b { font-family: var(--display); font-size: 38px; color: var(--gold-light); font-weight: 500; font-style: italic; line-height: 1; }
.hero__stats span { font-size: 11px; color: rgba(246, 241, 234, .6); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

@media (max-width: 880px) { .hero { min-height: auto; padding: 60px 0; } .hero__stats { gap: 28px; flex-wrap: wrap; } }

/* === SECTION HEADS === */
.sec__head { margin-bottom: 60px; }
.sec__head--center { text-align: center; }
.sec__eyebrow { display: inline-block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.sec__title { font-family: var(--display); font-weight: 400; font-size: clamp(38px, 5vw, 64px); line-height: 1.1; letter-spacing: -.5px; max-width: 800px; }
.sec__title em { font-style: italic; color: var(--gold); font-weight: 500; }

/* === PRESTATIONS === */
.pres { padding: 120px 0; background: var(--paper); border-top: 1px solid var(--line); }
.pres__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .pres__grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--bg);
  padding: 36px 30px 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: all .25s;
  display: flex; flex-direction: column; gap: 14px;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.svc--featured { background: linear-gradient(160deg, var(--ink-deep) 0%, #3a222c 100%); color: var(--bg); border-color: var(--gold); }
.svc--featured h3 { color: var(--gold-light); }
.svc--featured p { color: rgba(246, 241, 234, .75); }
.svc--featured .svc__num { color: var(--gold); }
.svc__num { font-family: var(--display); font-size: 36px; color: var(--gold); font-style: italic; font-weight: 500; line-height: 1; }
.svc h3 { font-family: var(--display); font-size: 26px; font-weight: 500; letter-spacing: -.3px; }
.svc p { font-size: 14.5px; line-height: 1.6; flex: 1; }
.svc__foot { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.08); font-size: 13px; }
.svc--featured .svc__foot { border-top-color: rgba(246, 241, 234, .15); }
.svc__dur { color: var(--muted); }
.svc--featured .svc__dur { color: rgba(246, 241, 234, .5); }
.svc__price b { color: var(--ink); font-weight: 500; font-family: var(--display); font-size: 16px; font-style: italic; }
.svc--featured .svc__price b { color: var(--gold-light); }

/* === GALERIE INSPIRATION === */
.gal { padding: 120px 0; background: var(--bg); }
.gal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 880px) { .gal__grid { grid-template-columns: 1fr; gap: 40px; } }
.gal__item { background: transparent; }
.gal__photo {
  width: 100%; aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .35s ease;
  position: relative;
}
.gal__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 24, 32, .35) 100%);
  border-radius: 8px;
}
.gal__item:hover .gal__photo { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gal__item figcaption { margin-top: 18px; display: flex; flex-direction: column; gap: 4px; }
.gal__item b { font-family: var(--display); font-size: 22px; font-weight: 600; font-style: italic; color: var(--ink); letter-spacing: -.3px; }
.gal__item span { font-size: 11.5px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

/* === TEAM === */
.team { padding: 120px 0; background: var(--paper); border-top: 1px solid var(--line); }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 880px) { .team__grid { grid-template-columns: 1fr; } }
.member figcaption { text-align: center; padding-top: 20px; }
.member__photo { width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center; border-radius: 8px; filter: grayscale(40%) contrast(1.05); transition: filter .3s; }
.member:hover .member__photo { filter: grayscale(0%) contrast(1); }
.member h3 { font-family: var(--display); font-size: 24px; font-weight: 500; font-style: italic; margin-bottom: 4px; }
.member p { font-size: 13px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.member span { font-size: 12px; color: var(--muted); }

/* === CONTACT === */
.contact { padding: 120px 0; background: var(--ink-deep); color: var(--bg); }
.contact .sec__eyebrow { color: var(--gold-light); }
.contact .sec__title em { color: var(--gold-light); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; gap: 50px; } }
.contact__list { list-style: none; margin: 28px 0 36px; }
.contact__list li { padding: 12px 0; font-size: 15px; display: flex; align-items: center; gap: 14px; color: rgba(246, 241, 234, .85); }
.contact__list svg { color: var(--gold-light); flex-shrink: 0; }
.contact__list a { color: var(--gold-light); border-bottom: 1px solid rgba(200, 164, 100, .3); }
.contact__list a:hover { border-color: var(--gold-light); }
.contact__form { background: rgba(246, 241, 234, .04); padding: 40px; border-radius: 8px; border: 1px solid rgba(200, 164, 100, .15); }
.contact__form h3 { font-family: var(--display); font-size: 28px; font-weight: 500; font-style: italic; margin-bottom: 24px; color: var(--gold-light); }
.contact__form label { display: block; margin-bottom: 16px; }
.contact__form .contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact__form span { display: block; font-size: 10px; color: rgba(246, 241, 234, .55); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; }
.contact__form input, .contact__form select, .contact__form textarea {
  width: 100%; padding: 13px 14px; background: rgba(246, 241, 234, .05); color: var(--bg);
  border: 1px solid rgba(200, 164, 100, .2); border-radius: 6px; font: inherit; font-size: 14px;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { outline: none; border-color: var(--gold); }
.contact__form .thanks { color: var(--gold-light); font-size: 13px; margin-top: 14px; display: flex; align-items: center; gap: 6px; }

/* === FOOTER === */
.footer { padding: 32px 0; background: var(--ink-deep); color: rgba(246, 241, 234, .6); border-top: 1px solid rgba(200, 164, 100, .15); }
.footer__row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer p { font-size: 12px; letter-spacing: 1px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); transition: color .2s; }
.footer__links a:hover { color: var(--bg); }

/* === FLOAT WHATSAPP === */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white;
  display: grid; place-items: center;
  z-index: 60; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .5);
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.08); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}