/* ═══════════════════════════════════════════════════════════════════════════
   LIANA COIFFURE — EDITORIAL HAUTE COIFFURE DESIGN SYSTEM
   A design that feels like a Parisian agency built it.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  --c-bg:        #f6f3ef;
  --c-bg-warm:   #ede8e1;
  --c-bg-white:  #ffffff;
  --c-surface:   #faf8f5;

  --c-ink:       #1a1714;
  --c-ink-soft:  #4a4640;
  --c-ink-muted: #8a8580;

  --c-accent:    #9c7c5c;
  --c-accent-light: #c4a882;

  --c-border:    #e2ddd6;
  --c-border-dark: #ccc5bb;

  --ff-serif: 'Cormorant Garamond', 'Georgia', serif;
  --ff-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.85rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2.25rem;
  --fs-2xl:  3rem;
  --fs-3xl:  4rem;
  --fs-hero: clamp(2.8rem, 6vw, 5.5rem);

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  --radius-sm: 4px;
  --radius-md: 8px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.6s;
}

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

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

body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font: inherit; border: none; background: none; cursor: pointer; }
sup { font-size: 0.6em; }

/* ── SHARED TYPOGRAPHIC ELEMENTS ────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-ink);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--c-ink-soft);
  max-width: 520px;
  line-height: 1.6;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-ink);
  color: var(--c-bg);
}

.btn--primary:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 124, 92, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--c-bg);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--dark {
  background: var(--c-ink);
  color: var(--c-bg);
}

.btn--dark:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* ══════════════════════════════════════════════════════════════════════════
   RIBBON
   ══════════════════════════════════════════════════════════════════════════ */
.ribbon {
  background: var(--c-ink);
  color: var(--c-bg);
  text-align: center;
  padding: 10px var(--space-sm);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--space-lg);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.nav.is-scrolled {
  background: rgba(246, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.nav__brand-name {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--c-ink);
}

.nav__brand-sub {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
}

/* Invert brand color on hero (before scroll) */
.nav:not(.is-scrolled) .nav__brand-name,
.nav:not(.is-scrolled) .nav__links a,
.nav:not(.is-scrolled) .nav__brand-sub {
  color: #fff;
}

.nav:not(.is-scrolled) .nav__hamburger span {
  background: #fff;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink-soft);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 0.35s var(--ease-out);
}

.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border: 1px solid var(--c-ink);
  transition: all 0.35s var(--ease-out);
}

.nav:not(.is-scrolled) .nav__cta {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.nav__cta:hover {
  background: var(--c-ink);
  color: var(--c-bg);
}

.nav:not(.is-scrolled) .nav__cta:hover {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-ink);
  transition: all 0.35s var(--ease-out);
}

/* ── MOBILE DRAWER ──────────────────────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.drawer__link {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--c-bg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}

.drawer.is-open .drawer__link {
  opacity: 1;
  transform: translateY(0);
}

.drawer.is-open .drawer__link:nth-child(1) { transition-delay: 0.05s; }
.drawer.is-open .drawer__link:nth-child(2) { transition-delay: 0.1s; }
.drawer.is-open .drawer__link:nth-child(3) { transition-delay: 0.15s; }
.drawer.is-open .drawer__link:nth-child(4) { transition-delay: 0.2s; }
.drawer.is-open .drawer__link:nth-child(5) { transition-delay: 0.25s; }

.drawer__link:hover { color: var(--c-accent-light); }

.drawer__cta {
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  border: 1px solid var(--c-accent);
  padding: 14px 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out) 0.3s, transform 0.5s var(--ease-out) 0.3s, background 0.3s, color 0.3s;
}

.drawer.is-open .drawer__cta {
  opacity: 1;
  transform: translateY(0);
}

.drawer__cta:hover {
  background: var(--c-accent);
  color: var(--c-ink);
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 8s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,23,20,0.85) 0%,
    rgba(26,23,20,0.4) 40%,
    rgba(26,23,20,0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--space-md);
}

.hero__title-line {
  display: block;
}

.hero__title-italic {
  font-style: italic;
  font-weight: 300;
}

.hero__desc {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  right: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-accent-light);
  animation: scrollPulse 2s var(--ease-smooth) infinite;
}

@keyframes scrollPulse {
  0%   { top: -100%; }
  100% { top: 100%; }
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════════════════════════════════
   EDITORIAL (ASYMMETRIC TEXT + IMAGE)
   ══════════════════════════════════════════════════════════════════════════ */
.editorial {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--c-bg);
}

.editorial__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-xl);
  align-items: center;
}

.editorial__text {
  padding-right: var(--space-lg);
}

.editorial__heading {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-ink);
  margin-bottom: var(--space-md);
}

.editorial__heading em {
  font-style: italic;
  color: var(--c-accent);
}

.editorial__body {
  font-size: var(--fs-base);
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.editorial__visual {
  position: relative;
}

.editorial__img-wrap {
  overflow: hidden;
}

.editorial__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.editorial__img-wrap:hover .editorial__img {
  transform: scale(1.03);
}

.editorial__img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border: 1px solid var(--c-accent-light);
  z-index: -1;
}

/* ══════════════════════════════════════════════════════════════════════════
   NUMBERS BAR
   ══════════════════════════════════════════════════════════════════════════ */
.numbers {
  background: var(--c-ink);
  padding: var(--space-lg) var(--space-lg);
}

.numbers__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.numbers__item {
  text-align: center;
  color: #fff;
}

.numbers__value {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 300;
  line-height: 1;
  display: inline;
}

.numbers__unit {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--c-accent-light);
}

.numbers__label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.numbers__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════════════════════════════════════════
   METHOD STEPS
   ══════════════════════════════════════════════════════════════════════════ */
.method {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--c-surface);
}

.method__header {
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
}

.method__steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.step {
  position: relative;
}

.step__number {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--space-sm);
  display: block;
}

.step__img-wrap {
  overflow: hidden;
  margin-bottom: var(--space-sm);
  aspect-ratio: 3/4;
}

.step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.step:hover .step__img {
  transform: scale(1.05);
}

.step__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.step__desc {
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   PARALLAX IMAGE BREAK
   ══════════════════════════════════════════════════════════════════════════ */
.parallax-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-break__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.parallax-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.55);
}

.parallax-break__quote {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 0 var(--space-md);
}

.parallax-break__quote p {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.parallax-break__quote cite {
  font-size: var(--fs-sm);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent-light);
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES (2-COLUMN ALTERNATING)
   ══════════════════════════════════════════════════════════════════════════ */
.services {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--c-bg);
}

.services__header {
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
}

.services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.svc {
  background: var(--c-bg-white);
  overflow: hidden;
  transition: box-shadow 0.5s var(--ease-out);
}

.svc:hover {
  box-shadow: 0 16px 48px rgba(26,23,20,0.08);
}

.svc__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.svc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.svc:hover .svc__img {
  transform: scale(1.04);
}

.svc__body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.svc__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.svc__desc {
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════════
   BEFORE / AFTER COMPARISON
   ══════════════════════════════════════════════════════════════════════════ */
.compare {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--c-surface);
}

.compare__header {
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
}

.compare__slider-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.compare__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.compare__img {
  position: absolute;
  inset: 0;
}

.compare__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.compare__label {
  position: absolute;
  top: var(--space-md);
  padding: 6px 16px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare__label--before {
  left: var(--space-md);
  background: var(--c-ink);
  color: #fff;
}

.compare__label--after {
  right: var(--space-md);
  background: var(--c-accent);
  color: #fff;
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.compare__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.compare__handle-knob {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  color: var(--c-ink);
}

/* ══════════════════════════════════════════════════════════════════════════
   TARIFS
   ══════════════════════════════════════════════════════════════════════════ */
.tarifs {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--c-bg);
}

.tarifs__inner {
  max-width: 820px;
  margin: 0 auto;
}

.tarifs__header {
  margin-bottom: var(--space-lg);
}

.tarifs__category {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--c-ink);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--c-accent-light);
}

.tarifs__table {
  border-top: 1px solid var(--c-border);
}

.tarifs__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.3s;
}

.tarifs__row:hover:not(.tarifs__row--head) {
  background: var(--c-surface);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  margin: 0 calc(var(--space-sm) * -1);
}

.tarifs__row--head {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  padding-bottom: var(--space-sm);
}

.tarifs__row strong {
  display: block;
  font-weight: 500;
  font-size: var(--fs-base);
}

.tarifs__row small {
  display: block;
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  margin-top: 2px;
}

.tarifs__price {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--c-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.tarifs__cta {
  margin-top: var(--space-xl);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════════
   LE SALON (MAP + INFO)
   ══════════════════════════════════════════════════════════════════════════ */
.salon {
  background: var(--c-bg-warm);
}

.salon__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.salon__info {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  margin-left: auto;
  padding-right: var(--space-xl);
}

.salon__address {
  font-size: var(--fs-md);
  color: var(--c-ink-soft);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.salon__hours h3 {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: var(--space-xs);
}

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

.salon__hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
  border-bottom: 1px solid var(--c-border);
}

.salon__hours li em {
  font-style: italic;
  color: var(--c-accent);
}

.salon__closed span { color: var(--c-ink-muted); }

.salon__contact-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.salon__contact-links a {
  font-size: var(--fs-sm);
  color: var(--c-accent);
  transition: color 0.3s;
}

.salon__contact-links a:hover { color: var(--c-ink); }

.salon__map {
  min-height: 500px;
}

.salon__map iframe {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--c-ink);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer__brand .nav__brand-name {
  color: #fff;
}

.footer__brand .nav__brand-sub {
  color: var(--c-ink-muted);
}

.footer__nav {
  display: flex;
  gap: var(--space-md);
}

.footer__nav a {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer__nav a:hover { color: #fff; }

.footer__copy {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.25);
  margin-top: var(--space-sm);
}

/* ══════════════════════════════════════════════════════════════════════════
   WHATSAPP INTEGRATION
   ══════════════════════════════════════════════════════════════════════════ */
.salon__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.whatsapp-float {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0px 8px 24px rgba(37, 211, 102, 0.3);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .editorial__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .editorial__text { padding-right: 0; }
  .editorial__img { height: 400px; }
  .method__steps { grid-template-columns: repeat(2, 1fr); }
  .salon__grid { grid-template-columns: 1fr; }
  .salon__info { max-width: 100%; padding: var(--space-xl) var(--space-lg); }
  .salon__map { min-height: 350px; }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 32px;
    --space-xl: 64px;
    --space-2xl: 80px;
  }

  .nav { padding: 0 var(--space-md); }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
  }

  .hero__desc { font-size: var(--fs-base); }

  .method__steps { grid-template-columns: 1fr; gap: var(--space-lg); }
  .services__grid { grid-template-columns: 1fr; }
  .numbers__inner {
    flex-direction: column;
    gap: var(--space-md);
  }
  .numbers__divider {
    width: 48px;
    height: 1px;
  }

  .compare__slider { aspect-ratio: 4/5; }

  .tarifs__row {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll-hint { display: none; }
}
