/* ============================================================
   GlowHair — Premium Landing Page
   Design system
   ============================================================ */

:root {
  /* Brand palette */
  --wine:        #5A0018;
  --wine-deep:   #3d0011;
  --wine-soft:   #7a0a2a;
  --black:       #0A0A12;
  --nude:        #E7D7C9;
  --nude-deep:   #d4bfad;
  --off:         #F5EFE8;

  /* Functional */
  --ink:         #0A0A12;
  --ink-60:      rgba(10, 10, 18, 0.60);
  --ink-40:      rgba(10, 10, 18, 0.40);
  --paper:       #F5EFE8;
  --line:        rgba(90, 0, 24, 0.12);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 22px;
  --radius-sm: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 10px 30px -18px rgba(10, 10, 18, 0.45);
  --shadow:    0 30px 70px -40px rgba(10, 10, 18, 0.55);
  --shadow-wine: 0 26px 60px -28px rgba(90, 0, 24, 0.55);
}

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--wine); color: var(--off); }

/* ---------- Texture / grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 9001;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--wine), var(--wine-soft), var(--nude));
}

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--wine);
}
.display--light { color: var(--off); }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine-soft);
  margin-bottom: 1.1rem;
}
.eyebrow--center { color: var(--wine-soft); }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
}
.muted { color: var(--ink-60); margin-top: 1.1rem; font-size: 1.05rem; }
.muted strong { color: var(--wine); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: var(--btn-pad);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.4s, background 0.4s;
  will-change: transform;
}
.btn--primary {
  color: var(--off);
  box-shadow: var(--shadow-wine);
  /* sheen animado via posição do gradiente — não cobre o texto */
  background: linear-gradient(115deg, var(--wine-deep) 0%, var(--wine) 38%, var(--wine-soft) 58%, var(--wine) 78%, var(--wine-deep) 100%);
  background-size: 220% 100%;
  background-position: 88% 0;
  transition: background-position 0.6s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.btn--primary:hover {
  background-position: 8% 0;
  transform: translateY(-3px);
  box-shadow: 0 34px 70px -26px rgba(90, 0, 24, 0.7);
}

.btn--ghost {
  background: transparent;
  color: var(--wine);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--wine);
  color: var(--off);
  border-color: var(--wine);
  transform: translateY(-3px);
}
.btn--lg { --btn-pad: 1.25rem 2.8rem; font-size: 0.86rem; }
.btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, box-shadow 0.5s, padding 0.4s;
  padding: 1.4rem 0;
}
.nav.is-scrolled {
  background: rgba(245, 239, 232, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.85rem 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__logo {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.nav.is-scrolled .brand__logo { height: 42px; }
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--off);
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--wine);
}
.brand__name em { font-style: italic; font-weight: 500; color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  transition: color 0.3s;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width 0.4s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--wine); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--wine);
  border-radius: 100px;
  color: var(--wine) !important;
  transition: all 0.4s var(--ease);
}
.nav__cta:hover { background: var(--wine); color: var(--off) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--wine);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav.is-open .nav__burger span:first-child { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__burger span:last-child { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section__head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section__intro {
  max-width: 640px;
  margin: 1.5rem auto 0;
  color: var(--ink-60);
  font-size: 1.08rem;
}

/* ---------- Glass ---------- */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0.25));
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
}

/* ---------- Orbs (decorative) ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}
.orb--wine {
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle at 30% 30%, rgba(122,10,42,0.9), rgba(90,0,24,0.1));
}
.orb--nude {
  width: 38vw; height: 38vw;
  max-width: 520px; max-height: 520px;
  background: radial-gradient(circle at 50% 50%, rgba(231,215,201,0.9), rgba(231,215,201,0));
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(231,215,201,0.5), transparent 60%),
    linear-gradient(180deg, var(--off), #efe4d8);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg .orb--wine { top: -12%; right: -8%; opacity: 0.4; }
.hero__bg .orb--nude { bottom: -16%; left: -10%; opacity: 0.7; }
.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  fill: none;
  stroke: rgba(90,0,24,0.10);
  stroke-width: 1.2;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--wine);
  margin: 0.4rem 0 1.6rem;
}
.hero__title em { font-style: italic; color: var(--ink); }
.hero__sub {
  max-width: 30rem;
  color: var(--ink-60);
  font-size: 1.12rem;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-60);
}
.trust li { display: inline-flex; align-items: center; gap: 0.55rem; }
.trust__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 4px rgba(90,0,24,0.12);
}

/* Hero visual */
.hero__visual { position: relative; }
.hero__frame {
  position: relative;
  border-radius: 260px 260px 28px 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-wine);
  margin: 0;
}
.hero__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.04);
}
.hero__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(90,0,24,0.28));
  mix-blend-mode: multiply;
}
.hero__frame-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(231,215,201,0.35);
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  left: -1.5rem; bottom: 2rem;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero__badge strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--wine);
  font-weight: 600;
}
.hero__badge span { font-size: 0.72rem; color: var(--ink-60); max-width: 9rem; }

.hero__scroll {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid rgba(90,0,24,0.3);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  z-index: 3;
}
.hero__scroll span {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--wine);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================================
   PAIN
   ============================================================ */
.pain {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(180deg, #efe4d8, var(--off));
}
.pain__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.pain__text { max-width: 28rem; }
.pain__list { display: grid; gap: 0.6rem; }
.pain__list li {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.4);
  transition: transform 0.5s var(--ease), background 0.5s, border-color 0.5s, box-shadow 0.5s;
}
.pain__list li:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.75);
  border-color: rgba(90,0,24,0.25);
  box-shadow: var(--shadow-sm);
}
.pain__index {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--nude-deep);
  line-height: 1;
  min-width: 2.2rem;
}
.pain__list h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 0.2rem;
}
.pain__list p { font-size: 0.96rem; color: var(--ink-60); }

/* ============================================================
   SOLUTION / SERVICES
   ============================================================ */
.solution { padding: clamp(5rem, 10vw, 9rem) 0; }
.services {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.service {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 3 / 4;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  transform-style: preserve-3d;
}
.service:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.service__media { position: absolute; inset: 0; }
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.9s var(--ease), filter 0.6s;
  filter: saturate(0.95);
}
.service:hover .service__media img { transform: scale(1.08); filter: saturate(1.05); }
.service::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,18,0) 30%, rgba(10,10,18,0.5) 60%, rgba(58,0,17,0.92));
}
.service__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.6rem;
  color: var(--off);
}
.service__no {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--nude);
  opacity: 0.8;
}
.service__body h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0.3rem 0 0.5rem;
}
.service__body p {
  font-size: 0.9rem;
  color: rgba(245,239,232,0.78);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.6s var(--ease), opacity 0.5s, transform 0.6s var(--ease);
}
.service:hover .service__body p { max-height: 6rem; opacity: 1; transform: translateY(0); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(180deg, var(--off), #efe4d8);
}
.diff__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.diff__item {
  padding: 2.2rem 2rem;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}
.diff__item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--nude-deep));
  border-radius: 3px;
  margin: 1.6rem 0 0 2rem;
  transition: width 0.5s var(--ease);
}
.diff__item:hover { transform: translateY(-6px); }
.diff__item:hover::before { width: 70px; }
.diff__item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wine);
  margin: 1.6rem 0 0.6rem;
}
.diff__item p { color: var(--ink-60); font-size: 0.98rem; }

/* ============================================================
   TRUST SECTION (objeção)
   ============================================================ */
.trust-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--black);
  color: var(--off);
  overflow: hidden;
}
.trust-section__media { position: relative; min-height: 560px; }
.trust-section__media img {
  position: absolute; inset: 0;
  width: 100%; height: 110%;
  object-fit: cover;
}
.trust-section__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,10,18,0.1), rgba(10,10,18,0.5) 60%, var(--black));
}
.trust-section__copy {
  padding: clamp(3.5rem, 7vw, 6.5rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.trust-section__copy .eyebrow { color: var(--nude); }
.trust-section__copy p {
  color: rgba(245,239,232,0.72);
  font-size: 1.08rem;
  margin-top: 1.4rem;
  max-width: 30rem;
}
.trust-section__copy .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--nude);
  line-height: 1.3;
  margin-top: 2rem;
  border-left: 2px solid var(--wine-soft);
  padding-left: 1.4rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: clamp(5rem, 10vw, 9rem) 0; }
.gallery__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.2rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58,0,17,0.7));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery__item figcaption {
  position: absolute;
  left: 1.3rem; bottom: 1.1rem;
  z-index: 2;
  color: var(--off);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0;
  background:
    radial-gradient(120% 120% at 50% 0%, var(--wine-soft), var(--wine) 35%, var(--wine-deep) 75%, var(--black));
  overflow: hidden;
  text-align: center;
}
.cta-final__bg { position: absolute; inset: 0; }
.cta-final__bg .orb--wine { top: -30%; left: -10%; opacity: 0.5; }
.cta-final__bg .orb--nude { bottom: -40%; right: -10%; opacity: 0.25; }
.cta-final__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-final__inner p {
  color: rgba(245,239,232,0.8);
  font-size: 1.15rem;
  margin: 1.4rem auto 2.4rem;
  max-width: 30rem;
}

/* ============================================================
   AGENDAMENTO ONLINE (CTA)
   ============================================================ */
.book-cta {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(180deg, var(--off), #efe4d8);
}
.book-cta__panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius);
  text-align: center;
}
.book-cta__panel .display { margin: 0.6rem 0 1.2rem; }
.book-cta__panel > p {
  color: var(--ink-60);
  font-size: 1.08rem;
  max-width: 38rem;
  margin: 0 auto;
}
.book-cta__steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.6rem;
  margin: 2.4rem 0 2.6rem;
  padding: 0;
}
.book-cta__steps li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.96rem;
  color: var(--ink);
}
.book-cta__steps span {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--off);
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.book-cta__note { font-size: 0.78rem; color: var(--ink-40); margin-top: 1.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(245,239,232,0.7);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,239,232,0.1);
}
.footer__brand .brand__name { color: var(--off); }
.footer__brand .brand__name em { color: var(--nude); }
.footer__brand p { margin-top: 0.8rem; max-width: 22rem; font-size: 0.95rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h4 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer__cols a, .footer__cols span {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.footer__cols a:hover { color: var(--off); }
.footer__base {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(245,239,232,0.45);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 1000;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 36px -10px rgba(37,211,102,0.6);
  transition: transform 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* ============================================================
   REVEAL (GSAP fallback baseline)
   ============================================================ */
[data-reveal], [data-reveal-lines] .line-inner { will-change: transform, opacity; }
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(245,239,232,0.96);
    backdrop-filter: blur(18px);
    padding: 1.6rem var(--gutter) 2rem;
    gap: 1.4rem;
    box-shadow: var(--shadow);
  }

  .hero { padding-top: 7rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .hero__scroll { display: none; }

  .pain__grid { grid-template-columns: 1fr; }
  .pain__text { max-width: none; }

  .trust-section { grid-template-columns: 1fr; }
  .trust-section__media { min-height: 380px; }

  .booking__panel { grid-template-columns: 1fr; }
  .booking__col--calendar {
    border-left: none; border-right: none;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 1.8rem 0;
  }
  .booking__col--service .booking__label:not(:first-child) { margin-top: 1.6rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; }
  .service { aspect-ratio: 4 / 3; }
  .service__body p { max-height: 6rem; opacity: 1; transform: none; }
  .diff__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item figcaption { opacity: 1; transform: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__badge { left: 0.5rem; }
  .btn { width: 100%; }
  .hero__actions { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-lines] .line-inner { opacity: 1 !important; transform: none !important; }
}
