/* ===================================================
   guillem.dermo — Clínica Dermoestética
   styles.css v20260703
   =================================================== */

/* ── Tokens ──────────────────────────────────────── */
:root {
  --bg:        #f8f3ed;
  --bg-2:      #ede5d8;
  --bg-3:      #e4d8c8;
  --bg-dark:   #2a1f1a;
  --ink:       #2a1f1a;
  --ink-mute:  #9a8070;
  --ink-light: #c8b8a8;
  --accent:    #c4896d;
  --accent-2:  #8b6050;
  --gold:      #b8957a;
  --serif:     "Cormorant Garamond", Georgia, serif;
  --sans:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-h:     72px;
  --radius:    16px;
  --radius-sm: 8px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Custom sparkle cursor ───────────────────────── */
html.has-cursor { cursor: none; }
html.has-cursor a,
html.has-cursor button,
html.has-cursor [data-magnetic],
html.has-cursor .tcard,
html.has-cursor .rcard { cursor: none; }

.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
}
.cursor-star-el {
  position: fixed; top: 0; left: 0;
  width: 22px; height: 22px;
  margin-left: -11px; margin-top: -11px;
  pointer-events: none;
  color: var(--accent);
  opacity: 0;
  will-change: transform;
  filter: drop-shadow(0 0 5px rgba(196,137,109,.55));
  transition: opacity .4s;
}
.cursor-star-el svg {
  width: 100%; height: 100%;
  animation: starSpin 5s linear infinite;
  transform-origin: center;
  transition: transform .25s var(--ease-out);
}
.cursor.is-ready .cursor-star-el { opacity: 1; }
.cursor.is-hovering .cursor-star-el {
  filter: drop-shadow(0 0 10px rgba(196,137,109,.9));
}
.cursor.is-hovering .cursor-star-el svg {
  transform: scale(1.9);
  animation-duration: 1.5s;
}
@keyframes starSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Sparkle particles trail */
.sparkle-particle {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  width: 8px; height: 8px;
  color: var(--accent);
  animation: sparkleOut .65s var(--ease-out) forwards;
  transform-origin: center;
}
.sparkle-particle svg { width: 100%; height: 100%; }
@keyframes sparkleOut {
  0%   { opacity: .9; transform: translate(0,0) scale(1) rotate(0deg); }
  100% { opacity: 0;  transform: translate(var(--dx,0px), var(--dy,0px)) scale(.05) rotate(180deg); }
}

/* ── Skip link ───────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 1rem;
  background: var(--accent); color: #fff;
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  z-index: 10000;
}
.skip-link:focus { left: 1rem; }

/* ── Scroll progress ─────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 9000; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: left; transform: scaleX(0);
}

/* ── Float CTA (mobile) ──────────────────────────── */
.float-cta {
  display: none;
  position: fixed; bottom: 1.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  background: var(--ink); color: #fff;
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  padding: .875rem 2rem; border-radius: 100px;
  box-shadow: 0 8px 30px rgba(42,31,26,.25);
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.float-cta:hover { background: var(--accent); transform: translateX(-50%) translateY(-2px); }
@media (max-width: 768px) { .float-cta { display: flex; align-items: center; } }

/* ── Navigation ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 700;
  height: var(--nav-h);
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.is-scrolled {
  background: rgba(248,243,237,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(42,31,26,.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--ink);
  font-style: italic;
  transition: color .2s;
}
.nav-logo:hover .nav-wordmark { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-mute); position: relative; transition: color .2s;
}
.nav-link::after {
  content: ""; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; padding: 4px 0;
}
.nav-burger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--ink); transition: transform .3s, opacity .3s;
}

.nav-mobile {
  position: fixed; inset: 0; z-index: 690;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
}
.nav-mobile[aria-hidden="false"] { transform: none; }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--ink-mute); transition: color .2s;
}
.nav-mobile-close:hover { color: var(--accent); }
.nav-mobile ul { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300; letter-spacing: .02em;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans);
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  padding: .875rem 1.75rem; border-radius: 100px;
  cursor: pointer; text-decoration: none; border: none;
  transition: background .25s, color .25s, box-shadow .25s, transform .2s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,.12); opacity: 0; transition: opacity .2s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 4px 20px rgba(42,31,26,.2);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(42,31,26,.22); }
.btn-outline {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-nav {
  background: var(--accent); color: #fff;
  padding: .625rem 1.375rem; font-size: .8rem;
  box-shadow: 0 3px 12px rgba(196,137,109,.3);
}
.btn-nav:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 20px rgba(184,149,122,.35);
}
.btn-gold:hover { background: var(--accent); transform: translateY(-1px); }

.has-magnetic { overflow: visible; }
.magnetic-inner { display: contents; }

/* ── Reveals ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: .1s; }
[data-reveal]:nth-child(3) { transition-delay: .18s; }
[data-reveal]:nth-child(4) { transition-delay: .26s; }
[data-reveal]:nth-child(5) { transition-delay: .34s; }
[data-reveal]:nth-child(6) { transition-delay: .42s; }
.split-word { display: inline-block; will-change: transform; }

/* ── Layout ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-kicker {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  margin-top: 1rem;
  font-size: 1rem; color: var(--ink-mute); line-height: 1.7;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 60% 0%, #e8d5c0 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, #dfc9b0 0%, transparent 55%),
              var(--bg);
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(196,137,109,.15) 0%, transparent 55%),
              radial-gradient(ellipse at 25% 65%, rgba(184,149,122,.12) 0%, transparent 50%);
  animation: meshDrift 20s ease-in-out infinite alternate;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 200px; pointer-events: none; mix-blend-mode: multiply;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0; filter: blur(60px);
}
.hero-orb--1 {
  width: 400px; height: 400px;
  background: rgba(196,137,109,.12);
  top: -80px; right: -80px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero-orb--2 {
  width: 350px; height: 350px;
  background: rgba(184,149,122,.1);
  bottom: -60px; left: -60px;
  animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}
@keyframes meshDrift {
  0%   { transform: translate(0,0)    scale(1); }
  50%  { transform: translate(3%,2%)  scale(1.03); }
  100% { transform: translate(-2%,3%) scale(0.97); }
}
@keyframes orbFloat {
  0%   { transform: translate(0,0); }
  100% { transform: translate(20px,-25px); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  max-width: 720px;
}
.hero-logo-wrap { margin-bottom: -3.5rem; }
.hero-logo {
  height: 240px; width: auto; max-width: 320px; object-fit: contain;
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero-kicker {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-weight: 400;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.02em;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--ink-mute); max-width: 440px;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-top: .5rem;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero-scroll-line {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top;    opacity:1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity:1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity:1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

/* ── Stats ───────────────────────────────────────── */
.stats { background: var(--bg-dark); padding: 4.5rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300; color: #fff; line-height: 1;
  margin-bottom: .5rem;
  display: flex; align-items: baseline; justify-content: center; gap: .05em;
}
.stat-suf { font-size: .55em; color: var(--accent); }
.stat-label {
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4) { border-right: none; }
}

/* ── Manifesto ───────────────────────────────────── */
.manifesto { padding: 8rem 0; }
.manifesto-inner {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 3rem; align-items: start;
  max-width: 900px; margin: 0 auto;
}
.manifesto-num {
  font-family: var(--serif);
  font-size: 5rem; font-weight: 300; line-height: 1;
  color: var(--bg-3); padding-top: .5rem; user-select: none;
}
.manifesto-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.18; letter-spacing: -.01em;
  margin-bottom: 1.75rem;
}
.manifesto-title em { font-style: italic; color: var(--accent); }
.manifesto-body {
  font-size: 1.05rem; line-height: 1.85; color: var(--ink-mute);
  margin-bottom: 2rem;
}
.manifesto-pills { display: flex; flex-wrap: wrap; gap: .625rem; }
.pill {
  font-size: .78rem; letter-spacing: .04em;
  padding: .4rem 1rem;
  border: 1.5px solid var(--bg-3); border-radius: 100px;
  color: var(--ink-mute);
  transition: border-color .2s, color .2s;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 640px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 1rem; }
  .manifesto-num { font-size: 3rem; }
}

/* ── Marquee ─────────────────────────────────────── */
.marquee-wrap {
  background: var(--bg-2);
  border-top: 1px solid var(--bg-3); border-bottom: 1px solid var(--bg-3);
  padding: 1.25rem 0; overflow: hidden;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem;
  white-space: nowrap; width: max-content;
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 300; letter-spacing: .04em;
  color: var(--ink-mute);
}
.marquee-sep { color: var(--accent); font-size: .7rem; }

/* ── Treatment cards ─────────────────────────────── */
.treatments { padding: 8rem 0; }
.treatments-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.tcard {
  background: #fff; border: 1px solid var(--bg-2);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out), border-color .35s;
  transform: perspective(800px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  will-change: transform; position: relative; overflow: hidden;
}
.tcard::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,137,109,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.tcard:hover { box-shadow: 0 20px 60px rgba(42,31,26,.12); border-color: var(--bg-3); }
.tcard:hover::before { opacity: 1; }

.tcard--accent { background: var(--ink); border-color: var(--ink); color: #fff; }
.tcard--accent .tcard-icon { color: var(--accent); }
.tcard--accent .tcard-num { color: rgba(255,255,255,.12); }
.tcard--accent .tcard-desc { color: rgba(255,255,255,.55); }
.tcard--accent .tcard-link { color: var(--accent); }
.tcard--accent .tcard-link:hover { color: #fff; }

.tcard-top { display: flex; align-items: flex-start; justify-content: space-between; }
.tcard-icon { color: var(--accent); }
.tcard-num {
  font-family: var(--serif);
  font-size: 2.5rem; font-weight: 300; line-height: 1;
  color: var(--bg-2); user-select: none;
}
.tcard-title {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 400; line-height: 1.25; letter-spacing: -.01em;
}
.tcard-desc { font-size: .9rem; line-height: 1.7; color: var(--ink-mute); flex: 1; }
.tcard-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  margin-top: auto; padding-top: .5rem;
  transition: gap .2s, color .2s;
}
.tcard-link:hover { gap: .8rem; }

@media (max-width: 900px) { .treatments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .treatments-grid { grid-template-columns: 1fr; } }

/* ── Results ─────────────────────────────────────── */
.results { padding: 8rem 0; background: var(--bg-2); }

.results-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.rcard-ed--large {
  grid-row: span 1;
}

.rcard-ed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}

.rcard-ed-img-wrap {
  position: relative;
  width: 100%; height: 100%;
  min-height: 260px;
  overflow: hidden;
}
.rcard-ed--large .rcard-ed-img-wrap { min-height: 540px; }

.rcard-ed-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease-out);
}
.rcard-ed:hover .rcard-ed-img { transform: scale(1.04); }

.rcard-ed-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,31,26,.45) 0%, transparent 35%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 1.5rem;
  gap: .4rem;
  opacity: 0;
  transition: opacity .4s;
}
.rcard-ed:hover .rcard-ed-overlay { opacity: 1; }
.rcard-ed-badge {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  padding: .25rem .65rem; border-radius: 100px;
}
.rcard-ed-label {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 300; color: #fff;
  line-height: 1.2;
}
.rcard-ed--large .rcard-ed-label { font-size: 1.8rem; }

/* Placeholder slots */
.rcard-ed--placeholder .rcard-ed-img-wrap {
  border: 1.5px dashed var(--bg-3);
  background: rgba(255,255,255,.4);
}
.rcard-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  color: var(--ink-light); text-align: center; padding: 1.5rem;
  min-height: 260px;
}
.rcard-placeholder p { font-size: .85rem; color: var(--ink-mute); font-weight: 400; }
.rcard-placeholder code { font-size: .68rem; color: var(--ink-light); font-family: monospace; }

.results-legal { text-align: center; font-size: .78rem; color: var(--ink-light); max-width: 480px; margin: 0 auto; line-height: 1.6; }

@media (max-width: 640px) {
  .results-editorial { grid-template-columns: 1fr; }
  .rcard-ed--large { grid-row: span 1; }
  .rcard-ed--large .rcard-ed-img-wrap { min-height: 320px; }
}

/* ── Pricing ─────────────────────────────────────── */
.pricing { padding: 8rem 0; }
.pricing-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.pricing-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.2; letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}
.pricing-title em { font-style: italic; color: var(--accent); }
.pricing-body { font-size: 1rem; line-height: 1.8; color: var(--ink-mute); margin-bottom: 2rem; }
.pricing-highlights {
  display: flex; flex-direction: column; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 30px rgba(42,31,26,.08);
}
.pricing-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; background: #fff;
  border-bottom: 1px solid var(--bg-2);
  transition: background .2s;
}
.pricing-item:hover { background: var(--bg); }
.pricing-item:last-child { border-bottom: none; }
.pricing-name { font-size: .95rem; font-weight: 400; }
.pricing-more { font-size: .78rem; color: var(--accent); letter-spacing: .04em; transition: color .2s; }
.pricing-more:hover { color: var(--accent-2); }
.pricing-item--cta { background: var(--bg-2); justify-content: center; }
.pricing-item--cta a {
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500; transition: color .2s;
}
.pricing-item--cta a:hover { color: var(--accent); }
@media (max-width: 800px) { .pricing-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ── Testimonials ────────────────────────────────── */
.testimonials { padding: 8rem 0; background: var(--bg-dark); }
.testimonials .section-head .section-title { color: #fff; }
.testimonials .section-kicker { color: var(--accent); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .3s, border-color .3s, transform .3s;
}
.testi-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(196,137,109,.3);
  transform: translateY(-4px);
}
.testi-stars { font-size: .65rem; letter-spacing: .2em; color: var(--accent); }
.testi-text {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.8); font-style: italic; flex: 1;
}
.testi-footer { display: flex; align-items: center; gap: .875rem; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 500; flex-shrink: 0;
}
.testi-name { display: block; font-size: .9rem; color: #fff; font-weight: 500; }
.testi-treatment { font-size: .75rem; color: rgba(255,255,255,.4); display: block; margin-top: .1rem; }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 641px) and (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── FAQ ─────────────────────────────────────────── */
.faq { padding: 8rem 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--bg-2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0;
  font-size: 1.05rem; font-weight: 400; color: var(--ink);
  cursor: pointer; list-style: none;
  transition: color .2s; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; color: var(--ink-mute);
  flex-shrink: 0;
  transition: transform .35s var(--ease-out), background .3s, border-color .3s, color .3s;
}
details[open] .faq-icon {
  transform: rotate(45deg); background: var(--accent);
  border-color: var(--accent); color: #fff;
}
.faq-a { overflow: hidden; padding-bottom: 1.5rem; }
.faq-a p { font-size: .95rem; line-height: 1.8; color: var(--ink-mute); }

/* ── Contact ─────────────────────────────────────── */
.contact { padding: 8rem 0; background: var(--bg-2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.2; letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}
.contact-title em { font-style: italic; color: var(--accent); }
.contact-body { font-size: 1rem; line-height: 1.8; color: var(--ink-mute); margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: .875rem; }
.contact-row { display: flex; align-items: center; gap: 1rem; }
.contact-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-light); min-width: 70px; }
.contact-value { font-size: .95rem; color: var(--accent); transition: color .2s; }
.contact-value:hover { color: var(--accent-2); }

.contact-form-wrap { position: relative; }
.contact-form {
  display: flex; flex-direction: column; gap: 1.25rem;
  background: #fff; border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(42,31,26,.08);
  transition: opacity .4s, transform .4s;
}
.contact-form.is-sent { opacity: 0; pointer-events: none; transform: translateY(-10px); }

.field { position: relative; }
.field input,
.field select,
.field textarea {
  width: 100%; padding: 1rem .875rem .4rem;
  background: var(--bg); border: 1.5px solid var(--bg-2);
  border-radius: var(--radius-sm);
  color: var(--ink); font-size: .95rem;
  transition: border-color .2s, background .2s; appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field label {
  position: absolute; left: .875rem; top: .75rem;
  font-size: .78rem; color: var(--ink-light); letter-spacing: .04em;
  pointer-events: none; transition: all .2s;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: .25rem; font-size: .68rem; color: var(--accent);
}
.field--select select { padding: .75rem .875rem; }
.field--textarea textarea { resize: none; min-height: 90px; padding-top: .875rem; }

.btn-submit { width: 100%; justify-content: center; margin-top: .5rem; position: relative; }
.form-spinner {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .8s linear infinite;
}
.btn-submit.is-loading .form-label { opacity: 0; }
.btn-submit.is-loading .form-spinner { display: inline-block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center;
  background: #fff; border-radius: var(--radius);
  padding: 3.5rem 2rem;
  position: absolute; inset: 0;
  transition: opacity .4s .1s, transform .4s .1s;
  opacity: 0; pointer-events: none; transform: translateY(8px);
}
.contact-success[aria-hidden="false"] { opacity: 1; pointer-events: auto; transform: none; }
.success-check { color: var(--accent); }
.contact-success h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 300; }
.contact-success p { color: var(--ink-mute); font-size: .95rem; }
@media (max-width: 800px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--bg-dark); padding: 4rem 0 3rem; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: .625rem; }
.footer-logo { height: 36px; width: auto; object-fit: contain; opacity: .9; }
.footer-tagline { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.footer-nav { display: flex; flex-direction: column; gap: .625rem; align-items: center; }
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-legal { text-align: right; font-size: .75rem; line-height: 1.7; color: rgba(255,255,255,.25); }
.footer-legal small { display: block; margin-top: .375rem; opacity: .7; }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-legal { text-align: center; }
}

/* ── Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh, .hero-orb--1, .hero-orb--2,
  .hero-logo, .hero-scroll-line,
  .cursor-star-el svg { animation: none !important; }
  .sparkle-particle { display: none !important; }
}
