/* =====================================================================
   Gabrielle Oliveira — Nails & Lashes
   Identidade: ../../identidade.md (marfim pra ler, noir pra mostrar
   foto, ouro pra assinar). Tudo que é cor mora nas variáveis abaixo.
   ===================================================================== */

:root {
  /* cores */
  --ivory: #F3EEE6;
  --sand: #E8DFD3;
  --sand-2: #DDD2C3;
  --noir: #121010;
  --noir-2: #1C1917;
  --noir-3: #2A2522;
  --gold: #C8A15A;
  --gold-light: #D9BC7F;
  --gold-text: #7A5C2A;      /* único ouro que vira texto sobre marfim */
  --ink: #1A1614;
  --ink-2: #6B615A;
  --on-dark: #EDE6DA;
  --on-dark-2: #A89F94;
  --line-light: rgba(26, 22, 20, .14);
  --line-dark: rgba(237, 230, 218, .14);

  /* tipografia */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* ritmo */
  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(88px, 12vw, 176px);
  --nav-h: 76px;
  --max: 1480px;

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --t: .5s;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (min-width: 1100px) { html { font-size: 17px; } }
@media (min-width: 1440px) { html { font-size: 18px; } }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
figure { margin: 0; }
h1, h2, h3, p, dl, dd { margin: 0; }
section { position: relative; scroll-margin-top: var(--nav-h); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
::selection { background: var(--gold); color: var(--noir); }

.skip {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  padding: 10px 16px; background: var(--noir); color: var(--on-dark);
  transform: translateY(-200%); transition: transform .2s;
}
.skip:focus { transform: none; }

/* ---------- tipografia ---------- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 400; }
h1.display { font-size: clamp(2.9rem, 6vw, 6rem); }
h2.display { font-size: clamp(2.4rem, 5.2vw, 4.9rem); }
.display--xl { font-size: clamp(2.8rem, 8vw, 7.6rem) !important; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; display: inline-block; flex: none; }
.eyebrow > span { white-space: nowrap; }
[data-theme="dark"] .eyebrow { color: var(--gold); }

.lead {
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.55;
  max-width: 34em;
  color: var(--ink-2);
}
[data-theme="dark"] .lead { color: var(--on-dark-2); }

.section-head {
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.section-head .display { max-width: 12em; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--sans); font-weight: 400; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  position: relative; isolation: isolate; overflow: hidden;
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease);
  min-height: 48px;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform var(--t) var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover, .btn:focus-visible { color: var(--ivory); }
.btn svg { transition: transform var(--t) var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--ink); color: var(--ivory); }
.btn--primary::before { background: var(--gold); }
.btn--primary:hover, .btn--primary:focus-visible { color: var(--noir); border-color: var(--gold); }

.btn--gold { border-color: var(--gold); color: var(--gold); }
.btn--gold::before { background: var(--gold); }
.btn--gold:hover, .btn--gold:focus-visible { color: var(--noir); }

.btn--ghost { border-color: var(--line-dark); color: var(--on-dark); }
.btn--ghost::before { background: var(--on-dark); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--noir); }

.btn--small { padding: 12px 20px; font-size: .74rem; min-height: 44px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  padding: 12px 0; min-height: 44px;
  color: var(--ink);
}
.link-arrow::after {
  content: ""; width: 28px; height: 1px; background: currentColor;
  transition: width var(--t) var(--ease);
}
.link-arrow:hover::after { width: 44px; }
.link-arrow--light { color: var(--on-dark); }

/* ---------- abertura ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--noir);
  display: grid; place-items: center;
}
.loader-inner { display: grid; justify-items: center; gap: 22px; }
.loader-mark { width: clamp(72px, 9vw, 110px); height: auto; opacity: 0; }
.loader-line { width: 120px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.loader.is-done { display: none; }

/* ---------- cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: grid; place-items: center;
    position: fixed; top: 0; left: 0; z-index: 90;
    width: 40px; height: 40px; margin: -20px 0 0 -20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background .35s var(--ease), opacity .3s;
  }
  .cursor.is-visible { opacity: .9; }
  .cursor.is-active { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(200, 161, 90, .16); }
  .cursor.has-label { width: 84px; height: 84px; margin: -42px 0 0 -42px; background: var(--gold); border-color: var(--gold); }
  .cursor-label {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
    color: var(--noir); opacity: 0; transition: opacity .25s;
  }
  .cursor.has-label .cursor-label { opacity: 1; }
}

/* ---------- menu ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  color: var(--ink);
  transition: transform .55s var(--ease), background .4s, color .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav[data-theme="dark"] { color: var(--on-dark); }
.nav.is-scrolled { background: rgba(243, 238, 230, .86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-color: var(--line-light); }
.nav.is-scrolled[data-theme="dark"] { background: rgba(18, 16, 16, .82); border-color: var(--line-dark); }
.nav.is-hidden { transform: translateY(-100%); }
.nav.is-open { transform: none; background: transparent; border-color: transparent; color: var(--on-dark); }

.nav-brand { display: inline-flex; align-items: center; gap: 14px; min-height: 44px; }
.nav-mark { width: 34px; height: auto; }
.nav-name { display: grid; line-height: 1.05; }
.nav-name > span { font-family: var(--serif); font-size: 1.1rem; letter-spacing: .04em; font-weight: 400; }
.nav-name small { font-family: var(--sans); font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-text); margin-top: 3px; font-weight: 400; }
.nav[data-theme="dark"] .nav-name small { color: var(--gold); }
.nav-links { display: flex; gap: clamp(20px, 2.6vw, 40px); }
.nav-links a {
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  padding: 12px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 8px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform var(--t) var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav .btn--small { border-color: currentColor; }
.nav[data-theme="dark"] .btn--small::before { background: var(--on-dark); }
.nav[data-theme="dark"] .btn--small:hover { color: var(--noir); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 1px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--noir); color: var(--on-dark);
  padding: calc(var(--nav-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-io);
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu[hidden] { display: none; }
.menu-links { display: grid; gap: 6px; }
.menu-links a {
  font-family: var(--serif); font-size: clamp(2.4rem, 9vw, 3.6rem); line-height: 1.15; font-weight: 300;
  display: flex; align-items: baseline; gap: 18px;
  padding: 4px 0; border-bottom: 1px solid var(--line-dark);
}
.menu-links small { font-family: var(--sans); font-size: .7rem; letter-spacing: .2em; color: var(--gold); }
.menu-foot { display: flex; gap: 28px; }
.menu-foot a { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; padding: 12px 0; }

/* ---------- hero ---------- */
.hero {
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 0;
  display: flex; flex-direction: column;
}
.hero-grid {
  flex: 1;
  max-width: var(--max); width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 96px);
  align-items: center;
  padding-bottom: 40px;
}
.hero-text { display: grid; gap: 30px; align-content: center; }
.hero-text .eyebrow { margin-bottom: 6px; }
.hero-sub { font-size: clamp(1.05rem, 1.35vw, 1.28rem); color: var(--ink-2); line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 32px; }

.line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.line > span { display: block; }

.hero-media { position: relative; justify-self: end; width: min(100%, 560px); }
.hero-photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-video {
  position: absolute; left: -12%; bottom: 8%;
  width: 34%; aspect-ratio: 9 / 16; overflow: hidden;
  background: var(--noir); box-shadow: 0 30px 60px -30px rgba(18, 16, 16, .5);
}
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-video figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; white-space: nowrap;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--on-dark);
  background: linear-gradient(to top, rgba(18, 16, 16, .75), transparent);
}

.hero-bar {
  max-width: var(--max); width: 100%; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 24px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line-light);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); font-weight: 400;
}
.hero-bar li { display: flex; align-items: center; gap: 12px; }
.hero-bar li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- faixa ---------- */
.marquee {
  background: var(--noir); color: var(--gold);
  overflow: hidden; height: 56px; display: flex; align-items: center;
  border-top: 1px solid var(--noir-3);
}
.marquee-track {
  display: flex; align-items: center; gap: 36px; white-space: nowrap;
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 400;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- serviços ---------- */
.services { padding: var(--section) 0; background: var(--ivory); }
.svc-groups {
  max-width: var(--max); margin: clamp(48px, 6vw, 88px) auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.svc-title {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  padding-bottom: 16px; border-bottom: 1px solid var(--ink);
}
.svc-title small { font-family: var(--sans); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); }
.svc-list li { border-bottom: 1px solid var(--line-light); }
.svc-row {
  width: 100%; text-align: left;
  display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: "thumb name price" "thumb desc price";
  column-gap: 22px; row-gap: 4px; align-items: start;
  padding: 18px 8px;
  transition: background .35s var(--ease), padding .35s var(--ease);
}
.svc-row:hover, .svc-row:focus-visible, li.is-open .svc-row { background: var(--sand); padding-left: 18px; padding-right: 18px; }
.svc-thumb {
  grid-area: thumb; align-self: center;
  width: 64px; aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: 999px 999px 10px 10px;
  background: var(--sand-2);
}
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.svc-row:hover .svc-thumb img, li.is-open .svc-thumb img { transform: scale(1.08); }
.svc-name { grid-area: name; font-family: var(--serif); font-size: clamp(1.3rem, 1.8vw, 1.7rem); font-weight: 400; line-height: 1.15; }
.svc-desc { grid-area: desc; font-size: .92rem; color: var(--ink-2); max-width: 30em; line-height: 1.5; }
.svc-price {
  grid-area: price; align-self: start; text-align: right;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--gold-text);
  font-variant-numeric: lining-nums tabular-nums; white-space: nowrap;
  display: grid; justify-items: end;
}
.svc-price small { font-family: var(--sans); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.svc-panel {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease);
}
.svc-panel img { min-height: 0; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; opacity: 0; transition: opacity .5s .1s; }
li.is-open .svc-panel { grid-template-rows: 1fr; }
li.is-open .svc-panel img { opacity: 1; }
.svc-panel > * { overflow: hidden; }

.svc-preview {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .svc-preview {
    display: block; position: fixed; top: 0; left: 0; z-index: 40;
    width: 240px; aspect-ratio: 3 / 4; overflow: hidden;
    pointer-events: none; opacity: 0;
    transition: opacity .3s;
    box-shadow: 0 40px 80px -30px rgba(18, 16, 16, .5);
  }
  .svc-preview.is-visible { opacity: 1; }
  .svc-preview img { width: 100%; height: 100%; object-fit: cover; }
  /* no desktop a foto já acompanha o mouse; o painel inline fica pro toque */
  .svc-panel { display: none; }
}
.svc-note {
  max-width: var(--max); margin: clamp(40px, 5vw, 64px) auto 0; padding: 0 var(--gutter);
  color: var(--ink-2); font-size: .95rem;
}
.svc-note a { color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ---------- galeria ---------- */
.gallery { padding: var(--section) 0; background: var(--noir); color: var(--on-dark); }
.section-head--dark .display { color: var(--on-dark); }
.g-grid {
  max-width: var(--max); margin: clamp(48px, 6vw, 88px) auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 28px);
  align-items: start;
}
.g-col { display: grid; gap: clamp(14px, 2vw, 28px); }
.g-col:nth-child(2) { margin-top: clamp(60px, 9vw, 140px); }
.g-col:nth-child(3) { margin-top: clamp(24px, 4vw, 60px); }
.g-item { display: block; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: var(--noir-2); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), opacity .6s; }
.g-item:hover img { transform: scale(1.04); }
.g-foot {
  max-width: var(--max); margin: clamp(40px, 5vw, 64px) auto 0; padding: 0 var(--gutter);
  color: var(--on-dark-2); font-size: .95rem;
}
.g-foot a { color: var(--on-dark); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ---------- cílios (vídeos) ---------- */
.lashes { padding: 0 0 var(--section); background: var(--noir); color: var(--on-dark); }
.lashes::before {
  content: ""; display: block; height: 1px; margin: 0 var(--gutter) var(--section);
  background: var(--line-dark);
}
.lash-row {
  max-width: min(var(--max), 1280px); margin: clamp(48px, 6vw, 88px) auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 28px);
}
.lash-card { position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: var(--noir-2); }
.lash-card video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.lash-card:hover video { transform: scale(1.03); }
.lash-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 22px;
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--on-dark);
  background: linear-gradient(to top, rgba(18, 16, 16, .8), transparent);
}
.lash-card figcaption small { font-family: var(--sans); font-size: .66rem; letter-spacing: .2em; color: var(--gold); }
.lash-card:nth-child(even) { transform: translateY(clamp(20px, 4vw, 56px)); }
.lash-foot {
  max-width: var(--max); margin: clamp(56px, 7vw, 96px) auto 0; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px;
  color: var(--on-dark-2);
}
.lash-foot p { max-width: 36em; }

/* ---------- estúdio ---------- */
.studio { padding: var(--section) 0; background: var(--sand); }
.studio-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
.studio-text { display: grid; gap: 26px; }
.values { display: grid; margin-top: 16px; border-top: 1px solid var(--ink); }
.values li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.values-n { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-text); font-weight: 400; font-variant-numeric: lining-nums; }
.values strong { display: block; font-weight: 400; font-size: 1.05rem; margin-bottom: 4px; }
.values p { color: var(--ink-2); font-size: .95rem; max-width: 32em; }

.studio-media { position: relative; padding-bottom: 20%; }
.studio-photo { aspect-ratio: 3 / 4; overflow: hidden; width: 82%; margin-left: auto; background: var(--sand-2); }
.studio-photo img { width: 100%; height: 100%; object-fit: cover; }
.studio-portrait {
  position: absolute; left: 0; bottom: 0; width: 44%;
  overflow: visible;
}
.studio-portrait img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; box-shadow: 0 40px 80px -40px rgba(18, 16, 16, .5); }
.studio-portrait figcaption {
  margin-top: 14px; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; line-height: 1.2;
}
.studio-portrait figcaption small { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); margin-top: 4px; white-space: nowrap; }

/* ---------- como funciona ---------- */
.how { padding: var(--section) 0; background: var(--ivory); }
.steps {
  max-width: var(--max); margin: clamp(48px, 6vw, 88px) auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 64px);
}
.step { border-top: 1px solid var(--ink); padding-top: 26px; display: grid; gap: 14px; align-content: start; }
.step-n { font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: 1; color: var(--gold-text); font-weight: 300; font-variant-numeric: lining-nums; }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 1.9vw, 1.8rem); line-height: 1.15; }
.step p { color: var(--ink-2); font-size: .95rem; max-width: 28em; }

/* ---------- cta ---------- */
.cta { padding: var(--section) 0; background: var(--noir); color: var(--on-dark); }
.cta-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 26px; justify-items: start; }
.cta .display { color: var(--on-dark); max-width: 10em; }
.cta-line { width: min(420px, 70%); height: 12px; color: var(--gold); margin-top: -12px; }
.cta-line path { stroke-dasharray: 420; stroke-dashoffset: 420; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 36px; margin-top: 8px; }
.cta-info {
  width: 100%; margin-top: clamp(48px, 6vw, 88px); padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cta-info dt { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 400; }
.cta-info dd { font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; font-weight: 400; font-variant-numeric: lining-nums; }

/* ---------- rodapé ---------- */
.footer {
  background: var(--noir); color: var(--on-dark-2);
  padding: clamp(56px, 7vw, 96px) var(--gutter) 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-logo { width: min(360px, 70%); margin: 0 auto clamp(40px, 5vw, 72px); }
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 24px 48px; align-items: start;
}
.footer-nav, .footer-social { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.footer-nav a, .footer-social a { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark); padding: 10px 0; }
.footer-legal { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid var(--line-dark); font-size: .8rem; display: grid; gap: 6px; }
.footer-legal a { border-bottom: 1px solid var(--gold); }

/* ---------- botão flutuante ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display: inline-flex; align-items: center; gap: 0;
  height: 56px; padding: 0 16px;
  background: var(--noir); color: var(--gold); border: 1px solid var(--gold);
  border-radius: 999px;
  transform: translateY(120px); opacity: 0;
  transition: transform .6s var(--ease), opacity .4s, gap .4s var(--ease), padding .4s var(--ease);
}
.fab.is-visible { transform: none; opacity: 1; }
.fab span {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
  transition: max-width .45s var(--ease);
}
.fab:hover, .fab:focus-visible { gap: 12px; padding-right: 22px; }
.fab:hover span, .fab:focus-visible span { max-width: 120px; }

/* ---------- lightbox ---------- */
.lightbox {
  border: 0; padding: 0; margin: 0; max-width: 100vw; max-height: 100dvh; width: 100vw; height: 100dvh;
  background: rgba(18, 16, 16, .96); color: var(--on-dark);
  display: none; place-items: center;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: transparent; }
.lb-figure { max-width: min(92vw, 720px); max-height: 100dvh; display: grid; justify-items: center; gap: 14px; padding: 60px 0; }
.lb-figure img { max-height: calc(100dvh - 160px); width: auto; max-width: 92vw; object-fit: contain; }
.lb-figure figcaption { font-size: .7rem; letter-spacing: .2em; color: var(--gold); }
.lb-close { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; display: grid; place-items: center; color: var(--on-dark); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; display: grid; place-items: center; color: var(--on-dark); }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-close:hover, .lb-nav:hover { color: var(--gold); }

/* =====================================================================
   ESTADOS INICIAIS DAS ANIMAÇÕES
   Só valem quando o JS carregou (html.js). Sem JS, nada fica escondido.
   ===================================================================== */
.js [data-reveal] { opacity: 0; transform: translateY(26px); }
.js [data-split] .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.js [data-split] .w > span { display: inline-block; transform: translateY(110%); }
.js .hero .line > span { transform: translateY(110%); }
.js [data-media] { clip-path: inset(0 0 100% 0); }
.js [data-media] > img, .js [data-media] > video { transform: scale(1.14); }
.js .hero-bar { opacity: 0; transform: none; }

/* ---------- movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .marquee-track { animation: none; transform: none; }
  .loader { display: none; }
  .js [data-reveal], .js .hero-bar { opacity: 1; transform: none; }
  .js [data-split] .w > span, .js .hero .line > span { transform: none; }
  .js [data-media] { clip-path: none; }
  .js [data-media] > img, .js [data-media] > video { transform: none; }
  .cta-line path { stroke-dashoffset: 0; }
  .cursor { display: none; }
}

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1100px) {
  .hero-grid { gap: 40px; }
  .hero-media { width: min(100%, 460px); }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav .btn--small { display: none; }
  .nav-name > span { font-size: 1rem; }
  .nav-name small { font-size: .52rem; }

  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 20px); }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 60px; }
  .hero-text { order: 1; gap: 22px; }
  .hero-media { order: 2; width: 100%; justify-self: stretch; }
  .hero-photo { aspect-ratio: 4 / 5; }
  .hero-video { left: auto; right: -4%; bottom: -8%; width: 38%; }
  .hero-bar { flex-direction: column; gap: 10px; padding: 20px 0 24px; margin-top: 12px; }

  .svc-groups { grid-template-columns: 1fr; gap: 56px; }
  .g-grid { grid-template-columns: 1fr 1fr; }
  .g-col:nth-child(3) { display: none; }
  .g-col:nth-child(2) { margin-top: 48px; }

  .lash-row {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 72%;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .lash-row::-webkit-scrollbar { display: none; }
  .lash-card { scroll-snap-align: start; }
  .lash-card:nth-child(even) { transform: none; }

  .studio-grid { grid-template-columns: 1fr; gap: 48px; }
  .studio-media { order: -1; padding-bottom: 34%; }
  .studio-photo { width: 84%; }
  .studio-portrait { width: 46%; }

  .steps { grid-template-columns: 1fr; gap: 28px; }
  .cta-info { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero .eyebrow { display: block; line-height: 1.9; }
  .hero .eyebrow .dot { display: none; }
  .hero .eyebrow > span { display: block; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .svc-row { grid-template-columns: auto 1fr; grid-template-areas: "thumb name" "thumb desc" "thumb price"; column-gap: 16px; padding: 18px 4px; }
  .svc-thumb { width: 56px; align-self: start; }
  .svc-row:hover, .svc-row:focus-visible, li.is-open .svc-row { padding-left: 12px; padding-right: 12px; }
  .svc-price { text-align: left; justify-items: start; margin-top: 4px; }
  .svc-price small { display: inline; margin-right: 8px; }
  .g-grid { gap: 10px; }
  .g-col { gap: 10px; }
  .g-col:nth-child(2) { margin-top: 32px; }
  .lash-row { grid-auto-columns: 82%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .fab { right: 14px; bottom: 14px; }
  .lb-nav { width: 48px; height: 48px; }
}

/* mobile: cursor e preview do serviço não existem; garante */
@media (hover: none) {
  .svc-preview, .cursor { display: none !important; }
}
