/* ============================================================
   DRA ELLEN LIMA · Fisioterapia Estética
   Design system: luxo editorial em creme, rosé e ouro
   Mobile first
   ============================================================ */

:root {
  --creme: #FAF6F1;
  --creme-2: #F3EAE3;
  --blush: #F0CFD5;
  --blush-soft: #F8E7EA;
  --rose: #B79FA3;
  --rose-deep: #9A7F84;
  --mauve-ink: #6E565A;
  --gold: #C9A46B;
  --gold-deep: #A97F45;
  --gold-light: #EBD5A9;
  --ink: #41302C;
  --ink-soft: #7A6660;
  --white: #FFFDFB;

  --grad-gold: linear-gradient(115deg, #A97F45 0%, #E9D3A8 38%, #C9A46B 62%, #F0DFB6 100%);
  --grad-rose: linear-gradient(160deg, #C4ACB0 0%, #B79FA3 45%, #A98F93 100%);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Avenir Next", "Century Gothic", sans-serif;
  --font-script: "Pinyon Script", cursive;

  --ease-lux: cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 18px 50px -18px rgba(110, 86, 90, .35);
  --shadow-card: 0 24px 60px -30px rgba(65, 48, 44, .35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--creme);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--blush); color: var(--ink); }

/* ---------- utilitários ---------- */

.wrap {
  width: min(100% - 3.1rem, 1180px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--grad-gold);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
}

.h-display em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.script-note {
  font-family: var(--font-script);
  color: var(--gold-deep);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  transform: rotate(-2deg);
  display: inline-block;
}

.lead {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 56ch;
}

/* ---------- botões ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.02rem 2.1rem;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: transform .5s var(--ease-lux), box-shadow .5s var(--ease-lux);
  overflow: hidden;
  isolation: isolate;
}

.btn-gold {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(169, 127, 69, .65);
}
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-lux);
  z-index: -1;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(169, 127, 69, .75); }
.btn-gold:hover::after { transform: translateX(120%); }

.btn-ghost {
  border: 1px solid rgba(169, 127, 69, .5);
  color: var(--gold-deep);
  background: transparent;
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(201, 164, 107, .08);
  box-shadow: 0 16px 30px -18px rgba(169, 127, 69, .5);
}

/* ---------- header ---------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  transition: background .45s ease, box-shadow .45s ease, padding .45s ease;
  padding: .9rem 0;
}
.header.scrolled {
  background: rgba(250, 246, 241, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -20px rgba(65, 48, 44, .25);
  padding: .45rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img { height: 52px; width: auto; transition: height .45s ease; }
.header.scrolled .brand img { height: 44px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.2rem;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: .3rem 0;
  color: var(--mauve-ink);
  transition: color .3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-lux);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }

.burger {
  width: 46px; height: 46px;
  border: 1px solid rgba(169,127,69,.4);
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  display: grid;
  place-items: center;
  gap: 0;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--gold-deep);
  margin: 2.5px 0;
  transition: transform .4s var(--ease-lux), opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: linear-gradient(170deg, #F8EFEA 0%, #F2DFE2 60%, #EBD3D8 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2.2rem 3rem;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path .8s var(--ease-lux);
  visibility: hidden;
}
.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  visibility: visible;
}
.mobile-menu a.mm-link {
  font-family: var(--font-display);
  font-size: 2rem;
  padding: .55rem 0;
  color: var(--ink);
  border-bottom: 1px solid rgba(169,127,69,.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .6s var(--ease-lux);
}
.mobile-menu a.mm-link i { font-style: normal; color: var(--gold); font-size: 1.2rem; }
.mobile-menu.open a.mm-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open a.mm-link:nth-child(1) { transition-delay: .15s; }
.mobile-menu.open a.mm-link:nth-child(2) { transition-delay: .22s; }
.mobile-menu.open a.mm-link:nth-child(3) { transition-delay: .29s; }
.mobile-menu.open a.mm-link:nth-child(4) { transition-delay: .36s; }
.mobile-menu.open a.mm-link:nth-child(5) { transition-delay: .43s; }
.mobile-menu .mm-foot {
  margin-top: 2.4rem;
  opacity: 0;
  transition: opacity .6s ease .55s;
}
.mobile-menu.open .mm-foot { opacity: 1; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 85% 0%, rgba(240, 207, 213, .55) 0%, transparent 60%),
    radial-gradient(90% 60% at 0% 100%, rgba(201, 164, 107, .14) 0%, transparent 55%),
    var(--creme);
}

.hero-grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-word {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: clamp(5.2rem, 20vw, 15rem);
  color: rgba(183, 159, 163, .16);
  white-space: nowrap;
  z-index: 0;
  animation: floatWord 9s ease-in-out infinite;
}
@keyframes floatWord {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-14px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding-top: 6.5rem;
  flex: 1;
}

.hero-copy {
  padding-bottom: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  z-index: 3;
}

.hero-copy .eyebrow { justify-content: center; }
.hero-copy .eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--grad-gold);
}

.hero-title { font-size: clamp(2.5rem, 9vw, 4.6rem); }

.hero-sub {
  color: var(--ink-soft);
  max-width: 46ch;
  font-size: .98rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: .4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.8rem;
  margin-top: .8rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.hero-badges span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-badges svg { width: 14px; height: 14px; fill: var(--gold); }

/* retrato */
.hero-figure {
  position: relative;
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* aura difusa que respira */
.hero-aura {
  position: absolute;
  bottom: -4%;
  width: min(96vw, 500px);
  aspect-ratio: 1 / 1.02;
  pointer-events: none;
  background:
    radial-gradient(52% 52% at 50% 46%, rgba(244, 214, 220, .95) 0%, rgba(236, 198, 206, .62) 42%, rgba(250, 246, 241, 0) 72%),
    radial-gradient(38% 44% at 68% 62%, rgba(235, 213, 169, .55) 0%, rgba(250, 246, 241, 0) 70%);
  filter: blur(4px);
  animation: auraBreath 11s ease-in-out infinite;
}
@keyframes auraBreath {
  0%, 100% { transform: scale(1) translateY(0); opacity: .95; }
  50% { transform: scale(1.06) translateY(-10px); opacity: 1; }
}

/* halo suave logo atrás dela */
.hero-glow {
  position: absolute;
  bottom: 16%;
  width: min(62vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 253, 251, .92) 0%, rgba(255, 253, 251, .35) 45%, rgba(255,253,251,0) 70%);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.09); opacity: 1; }
}

/* órbitas de ouro */
.hero-orbits {
  position: absolute;
  bottom: 2%;
  width: min(102vw, 540px);
  aspect-ratio: 1;
  pointer-events: none;
  overflow: visible;
}
.hero-orbits g { transform-box: fill-box; transform-origin: center; }
.hero-orbits circle { fill: none; }
.hero-orbits .orb-a {
  stroke: rgba(201, 164, 107, .55);
  stroke-width: .35;
  stroke-dasharray: 2.5 3.5;
  animation: orbitSpin 46s linear infinite;
}
.hero-orbits .orb-b {
  stroke: rgba(183, 159, 163, .5);
  stroke-width: .3;
  stroke-dasharray: 14 8;
  animation: orbitSpin 34s linear infinite reverse;
}
.hero-orbits .orb-c {
  stroke: rgba(201, 164, 107, .28);
  stroke-width: .5;
  animation: orbitDrift 9s ease-in-out infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitDrift {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.03); opacity: .35; }
}

/* pétalas flutuando */
.petal {
  position: absolute;
  z-index: 3;
  width: 12px; height: 16px;
  border-radius: 60% 60% 60% 60% / 70% 70% 40% 40%;
  background: linear-gradient(150deg, rgba(248, 231, 234, .95), rgba(232, 190, 199, .75));
  box-shadow: 0 3px 10px -4px rgba(154, 127, 132, .5);
  opacity: 0;
  pointer-events: none;
  animation: petalRise 12s ease-in-out infinite;
}
.petal.pt2 { width: 9px; height: 12px; background: linear-gradient(150deg, rgba(235, 213, 169, .9), rgba(201, 164, 107, .7)); }
.petal.f1 { left: 8%;  bottom: 6%;  animation-delay: 0s; }
.petal.f2 { left: 20%; bottom: 2%;  animation-delay: 3.4s; }
.petal.f3 { right: 12%; bottom: 4%; animation-delay: 1.7s; }
.petal.f4 { right: 4%;  bottom: 10%; animation-delay: 6.2s; }
.petal.f5 { left: 46%; bottom: 0%;  animation-delay: 8.5s; }
@keyframes petalRise {
  0%   { opacity: 0; transform: translateY(0) translateX(0) rotate(0deg) scale(.7); }
  12%  { opacity: .95; }
  70%  { opacity: .7; }
  100% { opacity: 0; transform: translateY(-320px) translateX(26px) rotate(160deg) scale(1); }
}

.hero-photo {
  position: relative;
  width: min(80vw, 400px);
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(110, 86, 90, .35));
}

.sparkle {
  position: absolute;
  z-index: 3;
  width: 18px; height: 18px;
  pointer-events: none;
  animation: spark 3.6s ease-in-out infinite;
  opacity: 0;
}
.sparkle svg { width: 100%; height: 100%; fill: var(--gold); }
.sparkle.s1 { top: 8%; left: 14%; animation-delay: 0s; }
.sparkle.s2 { top: 22%; right: 12%; width: 12px; height: 12px; animation-delay: 1.2s; }
.sparkle.s3 { top: 48%; left: 6%; width: 10px; height: 10px; animation-delay: 2.1s; }
.sparkle.s4 { top: 36%; right: 4%; width: 22px; height: 22px; animation-delay: 2.8s; }
@keyframes spark {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(90deg); }
}

/* trilho lateral: a sapatilha desce conforme a página rola */
.scroll-rail {
  position: fixed;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  height: min(46vh, 340px);
  width: 26px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}
.scroll-rail.show { opacity: 1; }

.rail-track {
  position: relative;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(183,159,163,0), rgba(183,159,163,.35) 12%, rgba(183,159,163,.35) 88%, rgba(183,159,163,0));
}
.rail-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(201,164,107,0), var(--gold) 30%, var(--gold-deep));
  box-shadow: 0 0 8px rgba(201, 164, 107, .5);
}
.rail-shoe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  margin-left: -11px;
  margin-top: -16px;
  filter: drop-shadow(0 4px 8px rgba(154, 127, 132, .45));
  transition: top .18s linear;
}
.shoe-swing { display: block; animation: shoeSway 3.4s ease-in-out infinite; }
.rail-shoe svg { width: 100%; height: auto; display: block; }
@keyframes shoeSway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(5deg); }
}
.rail-dot {
  position: absolute;
  left: 50%;
  width: 5px; height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: rgba(183,159,163,.45);
  transition: background .4s ease, transform .4s var(--ease-lux), box-shadow .4s ease;
}
.rail-dot.on {
  background: var(--grad-gold);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(201,164,107,.7);
}

/* ---------- marquee ---------- */

.marquee {
  position: relative;
  z-index: 4;
  background: var(--grad-rose);
  color: #FBF3EE;
  overflow: hidden;
  padding: .95rem 0;
  border-top: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 26s linear infinite;
  font-size: .74rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  white-space: nowrap;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track i {
  font-style: normal;
  color: var(--gold-light);
  font-size: .9rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- seções ---------- */

.section { padding: 5rem 0; position: relative; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.8rem;
}
.section-head .h-display { font-size: clamp(2rem, 6.4vw, 3.2rem); }

/* sobre */
.about {
  background:
    radial-gradient(80% 55% at 100% 8%, rgba(240, 207, 213, .4) 0%, transparent 60%),
    var(--creme);
}

.about-grid {
  display: grid;
  gap: 2.6rem;
}

.about-figure { position: relative; margin-inline: auto; width: min(100%, 400px); }
.about-figure .frame {
  border-radius: 999px 999px 12px 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}
.about-figure .frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: inherit;
  pointer-events: none;
}
.about-figure img { width: 100%; }

.about-figure .stamp {
  position: absolute;
  right: -12px;
  bottom: 26px;
  width: 108px; height: 108px;
  animation: spinSlow 18s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.about-figure .stamp text {
  font-size: 9.2px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  fill: var(--gold-deep);
  font-family: var(--font-body);
}
.about-figure .stamp .stamp-core { fill: var(--gold); }

.about-copy { display: flex; flex-direction: column; gap: 1.2rem; }

.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--mauve-ink);
  border-left: 2px solid;
  border-image: var(--grad-gold) 1;
  padding-left: 1.2rem;
  line-height: 1.45;
}

.about-list { display: grid; gap: .85rem; margin-top: .4rem; }
.about-list li {
  display: flex;
  gap: .8rem;
  align-items: baseline;
  color: var(--ink-soft);
  font-size: .95rem;
}
.about-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-gold);
  transform: translateY(-1px);
}

/* contadores */
.stats {
  background: linear-gradient(150deg, #B9A1A5 0%, #A98F93 55%, #97797E 100%);
  color: #FBF3EE;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(235, 213, 169, .3);
}
.stats::after {
  content: "";
  position: absolute;
  bottom: -45%; left: -8%;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 3.8rem);
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: baseline;
}
.stat-num sup { font-size: .5em; margin-left: .1em; }
.stat-label {
  margin-top: .5rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251, 243, 238, .85);
}

/* ---------- divisória ornamental ---------- */

.ornament {
  padding: 3.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: transparent;
}
.ornament .line {
  height: 1px;
  flex: 1;
  max-width: 240px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament .line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament .center {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--gold-deep);
}
.ornament .center svg { display: block; }
.ornament .diamond {
  width: 7px; height: 7px;
  background: var(--grad-gold);
  transform: rotate(45deg);
  animation: diamondGlow 3s ease-in-out infinite;
}
@keyframes diamondGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(201,164,107,0); }
  50% { box-shadow: 0 0 14px rgba(201,164,107,.8); }
}

/* ---------- procedimentos ---------- */

.procs { background: linear-gradient(180deg, var(--creme) 0%, #F6EBE7 100%); }

.procs-grid {
  display: grid;
  gap: 1.3rem;
}

.proc-card {
  position: relative;
  border-radius: 22px;
  background: var(--white);
  padding: 2rem 1.7rem 1.9rem;
  overflow: hidden;
  border: 1px solid rgba(183, 159, 163, .22);
  transition: transform .55s var(--ease-lux), box-shadow .55s var(--ease-lux), border-color .4s ease;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.proc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-lux);
}
.proc-card::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 207, 213, .55) 0%, transparent 70%);
  transition: transform .6s var(--ease-lux);
}
.proc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201, 164, 107, .45);
}
.proc-card:hover::before { transform: scaleX(1); }
.proc-card:hover::after { transform: scale(1.35); }

/* foto do procedimento no card */
.proc-media {
  position: relative;
  margin: -2rem -1.7rem .4rem;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  z-index: 1;
}
.proc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(1.02);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease-lux), filter .8s ease;
}
.proc-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(240, 207, 213, .92) 0%, rgba(201, 164, 107, .78) 100%);
  mix-blend-mode: color;
  transition: opacity .8s ease;
}
.proc-media::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(65,48,44,.06) 0%, transparent 40%, rgba(255,253,251,.9) 100%);
}
/* essa foto é bem mais escura que as outras, equilibra o conjunto */
.proc-media img[src*="criolipolise"],
.ph-frame img[src*="criolipolise"] { filter: grayscale(1) contrast(.92) brightness(1.5); }

.proc-card:hover .proc-media img { transform: scale(1.09); filter: grayscale(.1) contrast(1.02); }
.proc-card:hover .proc-media::after { opacity: .35; }

.proc-icon {
  position: absolute;
  left: 1.7rem;
  bottom: 14px;
  z-index: 3;
  width: 62px; height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #FFFDFB, #F8E7EA);
  border: 1px solid rgba(201, 164, 107, .4);
  box-shadow: 0 12px 26px -14px rgba(110, 86, 90, .6);
  transition: transform .55s var(--ease-lux);
}
.proc-card:hover .proc-icon { transform: rotate(-8deg) scale(1.06); }
.proc-card h3 { margin-top: .3rem; }
.proc-icon svg { width: 30px; height: 30px; stroke: var(--gold-deep); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }

.proc-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  position: relative; z-index: 1;
}
.proc-card p {
  color: var(--ink-soft);
  font-size: .92rem;
  position: relative; z-index: 1;
}
.proc-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  position: relative; z-index: 1;
}
.proc-link .arr { transition: transform .4s var(--ease-lux); }
.proc-card:hover .proc-link .arr { transform: translateX(6px); }

/* ---------- experiência / diferenciais ---------- */

.exp { background: var(--creme); overflow: hidden; }

.exp-grid { display: grid; gap: 2.4rem; }
.exp-sticky .h-display { margin: .9rem 0 1rem; }

/* linha do tempo que se desenha ao rolar */
.exp-items {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding-left: 3.6rem;
  counter-reset: exp;
}

.exp-rail {
  position: absolute;
  left: 1.25rem;
  top: 1.6rem;
  bottom: 1.6rem;
  width: 1px;
  background: rgba(183, 159, 163, .28);
}
.exp-rail-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 40%, var(--gold-deep));
  box-shadow: 0 0 12px rgba(201, 164, 107, .55);
  transition: height .25s linear;
}
.exp-rail-fill::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -4px;
  width: 8px; height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 14px rgba(201, 164, 107, .9);
}

.exp-item {
  position: relative;
  counter-increment: exp;
}

.exp-node {
  position: absolute;
  left: -3.6rem;
  top: 1.15rem;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--creme);
  border: 1px solid rgba(201, 164, 107, .45);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
  z-index: 2;
  transition: transform .6s var(--ease-lux), background .5s ease, color .5s ease, box-shadow .5s ease, border-color .5s ease;
}
.exp-item.active .exp-node {
  background: var(--grad-gold);
  border-color: transparent;
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 10px 24px -10px rgba(169, 127, 69, .85);
}

.exp-item::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 2.4rem;
  width: 1.1rem;
  height: 1px;
  background: rgba(183, 159, 163, .35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-lux) .1s, background .5s ease;
}
.exp-item.active::before { transform: scaleX(1); background: var(--grad-gold); }

.exp-card {
  background: rgba(255, 253, 251, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 159, 163, .22);
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
  transition: transform .7s var(--ease-lux), box-shadow .7s var(--ease-lux), border-color .5s ease, background .5s ease;
}
.exp-item.active .exp-card {
  transform: translateX(6px);
  border-color: rgba(201, 164, 107, .45);
  background: rgba(255, 253, 251, .95);
  box-shadow: var(--shadow-soft);
}
.exp-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  margin-bottom: .3rem;
  transition: color .5s ease;
}
.exp-item.active .exp-card h3 { color: var(--gold-deep); }
.exp-card p { color: var(--ink-soft); font-size: .93rem; max-width: 52ch; }

/* ---------- depoimentos ---------- */

.depo {
  background:
    radial-gradient(70% 60% at 12% 20%, rgba(240, 207, 213, .5) 0%, transparent 60%),
    linear-gradient(180deg, #F6EBE7 0%, var(--creme) 100%);
  overflow: hidden;
}

.depo-stars { display: flex; gap: .3rem; margin-bottom: 1rem; }
.depo-stars svg { width: 17px; height: 17px; fill: var(--gold); }

.depo-slider { position: relative; }
.depo-viewport { overflow: hidden; }
.depo-track {
  display: flex;
  transition: transform .7s var(--ease-lux);
}
.depo-slide { flex: 0 0 100%; padding: .4rem .2rem; }

.depo-card {
  background: var(--white);
  border-radius: 26px;
  border: 1px solid rgba(183, 159, 163, .22);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.depo-card::before {
  content: "\201C";
  position: absolute;
  top: -4px; right: 22px;
  font-family: var(--font-display);
  font-size: 6.2rem;
  line-height: 1;
  color: rgba(240, 207, 213, .8);
}
.depo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--mauve-ink);
}
.depo-who { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.depo-ava {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-rose);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.depo-who strong { font-weight: 400; letter-spacing: .06em; font-size: .92rem; display: block; }
.depo-who small { color: var(--ink-soft); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }

.depo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}
.depo-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(169,127,69,.45);
  background: transparent;
  color: var(--gold-deep);
  display: grid; place-items: center;
  transition: background .3s ease, transform .3s ease;
}
.depo-btn:hover { background: rgba(201,164,107,.12); transform: translateY(-2px); }
.depo-dots { display: flex; gap: .5rem; }
.depo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(183, 159, 163, .4);
  transition: width .4s var(--ease-lux), background .3s ease;
  padding: 0;
}
.depo-dot.active { width: 26px; border-radius: 99px; background: var(--grad-gold); }

/* ---------- localização ---------- */

.local { background: var(--creme); }
.local-grid { display: grid; gap: 2rem; }

.local-card {
  background: var(--white);
  border: 1px solid rgba(183, 159, 163, .22);
  border-radius: 26px;
  padding: 2rem 1.7rem;
  display: grid;
  gap: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.local-row { display: flex; gap: 1rem; align-items: flex-start; }
.local-ico {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, #F8E7EA, #F0CFD5);
  border: 1px solid rgba(201,164,107,.3);
}
.local-ico svg { width: 20px; height: 20px; stroke: var(--gold-deep); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.local-row h4 {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 400;
  margin-bottom: .15rem;
}
.local-row p { font-size: .95rem; color: var(--ink); }
.local-row small { color: var(--ink-soft); font-size: .82rem; }

.local-map {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(183,159,163,.25);
}
.local-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: sepia(.22) saturate(.85) hue-rotate(-8deg);
}

/* ---------- CTA final ---------- */

.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #8F7276 0%, #A98F93 45%, #B9A1A5 100%);
  color: #FBF3EE;
  text-align: center;
}
.cta-final::before, .cta-final::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(235, 213, 169, .28);
}
.cta-final::before { width: 460px; height: 460px; top: -220px; left: -160px; }
.cta-final::after { width: 380px; height: 380px; bottom: -190px; right: -120px; }

.cta-final .script-note { color: var(--gold-light); }
.cta-final .h-display { color: #FBF3EE; font-size: clamp(2.1rem, 7vw, 3.4rem); }
.cta-final p.lead { color: rgba(251,243,238,.8); margin-inline: auto; }
.cta-final .btn-gold { margin-top: 1.6rem; }

/* ---------- footer ---------- */

.footer {
  background: #3B2C29;
  color: rgba(251, 243, 238, .75);
  padding: 3.6rem 0 2rem;
  font-size: .88rem;
}
.footer-grid { display: grid; gap: 2.2rem; }
.footer-brand img { height: 66px; margin-bottom: 1rem; }
.footer h5 {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer ul { display: grid; gap: .55rem; }
.footer a { transition: color .3s ease; }
.footer a:hover { color: var(--gold-light); }
.footer-base {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(251,243,238,.14);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .74rem;
  letter-spacing: .08em;
  color: rgba(251,243,238,.5);
  text-align: center;
}

/* ---------- flutuante whatsapp ---------- */

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(150deg, #2EBD5E, #1FA34C);
  display: grid; place-items: center;
  box-shadow: 0 16px 34px -12px rgba(31, 163, 76, .6);
  transition: transform .4s var(--ease-lux);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(46, 189, 94, .5);
  animation: waPing 2.4s ease-out infinite;
}
@keyframes waPing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- páginas de procedimento ---------- */

.page-hero {
  position: relative;
  padding: 9rem 0 4.4rem;
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 90% 0%, rgba(240, 207, 213, .55) 0%, transparent 55%),
    radial-gradient(70% 60% at 0% 100%, rgba(201, 164, 107, .12) 0%, transparent 55%),
    var(--creme);
}
.page-hero .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .6rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.4rem;
}
.page-hero .crumbs i { font-style: normal; color: var(--gold); }
.page-hero .h-display { font-size: clamp(2.4rem, 8vw, 4.2rem); max-width: 16ch; }
.page-hero .lead { margin-top: 1.2rem; }
.page-hero .hero-ctas { justify-content: flex-start; margin-top: 1.8rem; }

.page-hero .wrap { position: relative; z-index: 2; }

.page-hero .ph-orb {
  position: absolute;
  right: -130px;
  top: 6%;
  opacity: .45;
  width: 230px; height: 230px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(240,207,213,.8), rgba(216,171,179,.5));
  filter: blur(2px);
  animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}
.page-hero .ph-ring {
  position: absolute;
  right: -40px;
  top: 46%;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,107,.45);
  animation: orbFloat 9s ease-in-out infinite reverse;
}

/* foto do procedimento no topo da página */
.ph-grid { display: grid; gap: 2.6rem; align-items: center; }
.ph-grid > * { min-width: 0; }

.ph-figure {
  position: relative;
  width: min(100%, 400px);
  margin-inline: auto;
  opacity: 0;
  transform: translateY(40px) scale(.95);
  animation: phIn 1.3s var(--ease-lux) .45s forwards;
}
@keyframes phIn { to { opacity: 1; transform: translateY(0) scale(1); } }

.ph-figure::before {
  content: "";
  position: absolute;
  inset: -14px -14px 14px;
  border: 1px solid rgba(201, 164, 107, .5);
  border-radius: 999px 999px 30px 30px;
  pointer-events: none;
  animation: frameBreath 8s ease-in-out infinite;
}
@keyframes frameBreath {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.02); opacity: .45; }
}

.ph-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 22px 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.ph-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}
.ph-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(240, 207, 213, .9) 0%, rgba(201, 164, 107, .8) 100%);
  mix-blend-mode: color;
}
.ph-frame::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px 999px 14px 14px;
  z-index: 3;
  pointer-events: none;
}

.ph-tag {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  z-index: 4;
  background: var(--white);
  border: 1px solid rgba(201, 164, 107, .4);
  border-radius: 999px;
  padding: .55rem 1.4rem;
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
  box-shadow: 0 14px 30px -18px rgba(110, 86, 90, .7);
}

.proc-info { background: var(--creme); }
.proc-info-grid { display: grid; gap: 2.6rem; }

.info-card {
  background: var(--white);
  border-radius: 26px;
  border: 1px solid rgba(183,159,163,.22);
  padding: 2.1rem 1.8rem;
  box-shadow: var(--shadow-soft);
}
.info-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.info-card h3::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--grad-gold);
}
.check-list { display: grid; gap: .8rem; }
.check-list li {
  display: flex;
  gap: .75rem;
  align-items: baseline;
  color: var(--ink-soft);
  font-size: .95rem;
}
.check-list li svg {
  flex: 0 0 auto;
  width: 15px; height: 15px;
  transform: translateY(2px);
  stroke: var(--gold-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* etapas */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  position: relative;
  padding: 1.4rem 0 1.4rem 3.6rem;
  border-left: 1px solid rgba(201,164,107,.4);
  margin-left: 1.2rem;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: -1.25rem;
  top: 1.3rem;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(201,164,107,.5);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: grid;
  place-items: center;
}
.step:last-child { border-left-color: transparent; }
.step h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: .25rem; }
.step p { color: var(--ink-soft); font-size: .92rem; max-width: 52ch; }

/* faq */
.faq-item {
  border-bottom: 1px solid rgba(183,159,163,.28);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .fx {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,107,.5);
  display: grid; place-items: center;
  color: var(--gold-deep);
  transition: transform .5s var(--ease-lux), background .3s ease;
  font-size: 1rem;
}
.faq-item.open .fx { transform: rotate(45deg); background: rgba(240,207,213,.4); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease-lux);
}
.faq-a p {
  padding: 0 0 1.3rem;
  color: var(--ink-soft);
  font-size: .93rem;
  max-width: 62ch;
}

/* outros procedimentos */
.other-procs { background: linear-gradient(180deg, #F6EBE7, var(--creme)); }
.other-grid { display: grid; gap: 1rem; }
.other-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(183,159,163,.25);
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  transition: transform .45s var(--ease-lux), border-color .3s ease, box-shadow .45s var(--ease-lux);
}
.other-link span.go { color: var(--gold-deep); transition: transform .4s var(--ease-lux); }
.other-link:hover {
  transform: translateY(-3px);
  border-color: rgba(201,164,107,.5);
  box-shadow: var(--shadow-soft);
}
.other-link:hover span.go { transform: translateX(5px); }

/* ---------- animações de revelação ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left { transform: translateX(-40px); }
.reveal-left.in { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.in { transform: translateX(0); }
.reveal-scale { transform: scale(.92); }
.reveal-scale.in { transform: scale(1); }

/* entrada do hero */
.hero .load-up {
  opacity: 0;
  transform: translateY(30px);
  animation: loadUp 1.1s var(--ease-lux) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes loadUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero .hero-photo {
  opacity: 0;
  transform: translateY(60px) scale(.96);
  animation: photoUp 1.4s var(--ease-lux) .5s forwards;
}
@keyframes photoUp {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero .hero-orbits {
  opacity: 0;
  transform: scale(.86);
  animation: orbitsIn 1.5s var(--ease-lux) .3s forwards;
}
@keyframes orbitsIn {
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero .load-up, .hero .hero-photo { opacity: 1; transform: none; animation: none; }
  .hero .hero-orbits { opacity: 1; transform: none; animation: none; }
  .petal { display: none; }
}

/* ============================================================
   DESKTOP
   ============================================================ */

@media (min-width: 900px) {

  .burger, .mobile-menu { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; padding: .8rem 1.7rem; font-size: .72rem; }
  .brand img { height: 60px; }

  .hero-inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 2rem;
    padding-top: 7rem;
    align-items: end;
  }
  .hero-copy {
    text-align: left;
    align-items: flex-start;
    padding-bottom: 7.5rem;
  }
  .hero-copy .eyebrow { justify-content: flex-start; }
  .hero-sub { font-size: 1.05rem; }
  .hero-ctas { justify-content: flex-start; }
  .hero-badges { justify-content: flex-start; }
  .hero-word {
    left: 58%;
    top: 9%;
  }
  .hero-figure { margin-top: 0; }
  .hero-aura { width: min(38vw, 520px); }
  .hero-glow { width: min(24vw, 340px); }
  .hero-orbits { width: min(42vw, 580px); }
  .hero-photo { width: min(31vw, 430px); }

  .section { padding: 7.5rem 0; }

  .about-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 5rem;
    align-items: center;
  }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .procs-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .proc-card { padding: 2.4rem 2.1rem 2.2rem; }

  .exp-grid { grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: start; }
  .exp-sticky { position: sticky; top: 8rem; }

  .depo-slide { flex: 0 0 33.3333%; }

  .local-grid { grid-template-columns: .9fr 1.1fr; align-items: stretch; }
  .local-map { min-height: 100%; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 3rem; }
  .footer-base { flex-direction: row; justify-content: space-between; text-align: left; }

  .proc-info-grid { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
  .proc-info-grid .info-card.full { grid-column: 1 / -1; }

  .other-grid { grid-template-columns: repeat(3, 1fr); }

  .page-hero { padding: 12rem 0 6rem; }
  .page-hero .ph-orb { right: 4%; top: 8%; width: 320px; height: 320px; opacity: .8; }
  .page-hero .ph-ring { right: 2%; top: 52%; }
  .page-hero .h-display { font-size: clamp(2.6rem, 4vw, 3.8rem); }

  .ph-grid { grid-template-columns: 1.08fr .92fr; gap: 4rem; }
  .ph-figure { width: min(100%, 420px); margin-right: 0; }

  .scroll-rail { right: 22px; height: min(52vh, 400px); }
}

@media (min-width: 1400px) {
  .hero-word { font-size: 17rem; }
}
