:root {
  --bg: #060606;
  --bg-soft: #0b0a09;
  --panel: rgba(16, 14, 12, 0.82);
  --panel-soft: rgba(20, 17, 14, 0.74);
  --stroke: rgba(209, 166, 94, 0.2);
  --stroke-strong: rgba(232, 194, 128, 0.38);
  --gold: #d1a65e;
  --gold-soft: #f2ddb6;
  --text: #f7f1e7;
  --muted: rgba(247, 241, 231, 0.74);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: min(1180px, calc(100vw - 40px));
  --scroll-y: 0px;
  --topbar-space: 92px;
  --topbar-glow: rgba(209, 166, 94, 0.2);
  --topbar-highlight: rgba(255, 255, 255, 0.18);
  --topbar-panel-top: rgba(18, 22, 28, 0.8);
  --topbar-panel-bottom: rgba(18, 22, 28, 0.48);
  --topbar-pill: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(170, 119, 56, 0.22), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(209, 166, 94, 0.08), transparent 16%),
    linear-gradient(180deg, #050505 0%, #090807 34%, #070707 100%);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  z-index: -3;
}

body::before {
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.88'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

body::after {
  opacity: 0.18;
  background-image:
    linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.05) 48%, transparent 50%),
    linear-gradient(18deg, transparent 0%, rgba(255, 255, 255, 0.025) 48%, transparent 50%);
  background-size: 840px 440px, 720px 320px;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.ambient-background {
  position: fixed;
  inset: -10vh -8vw;
  z-index: -4;
  overflow: hidden;
}

.ambient-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.ambient-gold {
  background:
    radial-gradient(circle at 20% 18%, rgba(209, 166, 94, 0.24), transparent 20%),
    radial-gradient(circle at 80% 26%, rgba(209, 166, 94, 0.11), transparent 16%),
    radial-gradient(circle at 60% 84%, rgba(93, 58, 23, 0.2), transparent 18%);
  transform: translate3d(0, calc(var(--scroll-y) * 0.08), 0);
}

.ambient-smoke {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.038), transparent 24%),
    radial-gradient(circle at 72% 56%, rgba(255, 255, 255, 0.026), transparent 18%);
  filter: blur(50px);
  transform: translate3d(0, calc(var(--scroll-y) * -0.04), 0) scale(1.08);
}

.ambient-marble {
  opacity: 0.16;
  background-image:
    linear-gradient(104deg, transparent 0%, rgba(255, 255, 255, 0.04) 48%, transparent 50%),
    linear-gradient(154deg, transparent 0%, rgba(209, 166, 94, 0.08) 49%, transparent 51%);
  background-size: 740px 480px, 920px 560px;
  transform: translate3d(0, calc(var(--scroll-y) * 0.03), 0);
}

.site-shell {
  position: relative;
  overflow: hidden;
  padding-top: var(--topbar-space);
}

.section,
.topbar {
  width: var(--container);
  margin: 0 auto;
}

main section[id] {
  scroll-margin-top: calc(var(--topbar-space) + 22px);
}

.topbar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, var(--topbar-glow), transparent 26%),
    linear-gradient(180deg, var(--topbar-highlight), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, var(--topbar-panel-top), var(--topbar-panel-bottom));
  backdrop-filter: blur(26px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 42px var(--topbar-glow);
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

body.is-scrolled .topbar {
  gap: 0;
  padding-block: 8px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(12, 14, 18, 0.9), rgba(8, 10, 13, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.22);
}

.topbar::after {
  position: absolute;
  inset: 0;
  height: 1px;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  width: 100%;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    max-height 220ms ease,
    margin 220ms ease;
  transform-origin: top center;
  max-height: 72px;
  overflow: hidden;
}

body.is-scrolled .brand {
  opacity: 0;
  transform: translateY(-14px);
  max-height: 0;
  margin: 0;
  pointer-events: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(209, 166, 94, 0.18));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small,
.topnav a,
.eyebrow {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.brand-copy small {
  color: rgba(242, 221, 182, 0.78);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  line-height: 1.1;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(15, 19, 24, 0.34);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 30px rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 1;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.topnav-home {
  min-width: 58px;
  padding: 0 8px;
}

.topnav-home img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-inline: auto;
}

.topnav a:hover {
  color: var(--gold-soft);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.topnav a.is-active {
  color: var(--gold-soft);
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    var(--topbar-pill);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.12);
}

.hero {
  position: relative;
  min-height: min(960px, 88vh);
  padding: 0;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.78) 34%, rgba(6, 6, 6, 0.34) 60%, rgba(6, 6, 6, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.12), rgba(6, 6, 6, 0.54));
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(132deg, transparent 0%, rgba(255, 255, 255, 0.05) 48%, transparent 52%),
    radial-gradient(circle at 12% 22%, rgba(209, 166, 94, 0.18), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: min(960px, 88vh);
  width: min(560px, calc(100% - 64px));
  padding: 92px 0 92px 56px;
}

.hero h1,
.section-heading h2,
.booking h2 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 6.6rem);
  max-width: 7.4ch;
  text-wrap: balance;
  margin-inline: 0;
}

.hero h1 span {
  display: block;
}

.lead,
.section-heading p,
.service-card p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.hero .lead {
  max-width: 36ch;
  color: rgba(247, 241, 231, 0.82);
  margin-inline: 0;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-signature span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #cc9f53 0%, #f4e0b9 55%, #d7ad67 100%);
  color: #111111;
  box-shadow: 0 18px 50px rgba(209, 166, 94, 0.24);
}

.button-secondary {
  border-color: var(--stroke-strong);
  background: rgba(10, 10, 10, 0.28);
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.specialist,
.services,
.results,
.booking {
  padding-top: 168px;
}

.specialist-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.specialist-portrait {
  margin: 0;
  min-height: 100%;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.specialist-portrait img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  will-change: transform;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid rgba(209, 166, 94, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(209, 166, 94, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%),
    rgba(14, 17, 22, 0.88);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 280ms ease,
    box-shadow 280ms ease;
  overflow: hidden;
}

.benefit-card::after {
  display: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(209, 166, 94, 0.65);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(209, 166, 94, 0.2);
}

.benefit-mark {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(209, 166, 94, 0.4);
  border-radius: 18px;
  color: var(--gold-soft);
  background:
    linear-gradient(135deg, rgba(209, 166, 94, 0.2), rgba(209, 166, 94, 0.05)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.35);
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.benefit-card:hover .benefit-mark {
  transform: scale(1.06);
  border-color: rgba(209, 166, 94, 0.8);
  box-shadow: 0 0 20px rgba(209, 166, 94, 0.35);
}

.benefit-mark__icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-label {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.benefit-card p {
  color: rgba(240, 240, 240, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 38px;
}

.section-heading h2,
.booking h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 18ch;
}

.services .section-heading h2 {
  max-width: 18ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card,
.result-card,
.booking {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card img,
.result-card img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.service-visual {
  aspect-ratio: 0.92;
  overflow: hidden;
  position: relative;
}

.service-stamp {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(10, 10, 10, 0.34);
  backdrop-filter: blur(16px);
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-content {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.service-content p {
  color: rgba(247, 241, 231, 0.82);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-meta span {
  color: var(--muted);
}

.service-meta strong {
  color: var(--gold-soft);
  font-size: 1.08rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.result-card {
  min-height: 420px;
  position: relative;
}

.result-card-large {
  min-height: 520px;
}

.result-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(9, 10, 12, 0.48);
  backdrop-filter: blur(18px);
}

.result-card figcaption span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.result-card figcaption strong {
  font-size: 1.06rem;
  line-height: 1.35;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.instagram-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(209, 166, 94, 0.28);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(8, 8, 8, 0.95);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  aspect-ratio: 9 / 16;
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
  cursor: pointer;
}

.instagram-player:hover {
  transform: translateY(-5px);
  border-color: rgba(209, 166, 94, 0.65);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(209, 166, 94, 0.2);
}

.instagram-player video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-sound-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(12, 14, 18, 0.7);
  backdrop-filter: blur(12px);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.video-sound-btn:hover {
  transform: scale(1.1);
  background: rgba(209, 166, 94, 0.9);
  border-color: var(--gold-soft);
  color: #000000;
}

.video-sound-btn svg {
  width: 18px;
  height: 18px;
}

.booking {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  padding: 42px;
  margin-bottom: 96px;
}

.booking-checks {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.booking-checks li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.booking-checks li::before {
  position: absolute;
  left: 0;
  top: 0.22em;
  content: "✓";
  color: var(--gold-soft);
  font-weight: 800;
}

.booking-card {
  display: grid;
  gap: 24px;
  align-content: center;
}

.whatsapp-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 32;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 58px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(232, 194, 128, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, #bf9148 0%, #f2ddb6 52%, #d1a65e 100%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 10px 26px rgba(209, 166, 94, 0.24);
  color: #121212;
  transition:
    width 220ms ease,
    gap 220ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.whatsapp-drawer:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 194, 128, 0.46);
}

.whatsapp-drawer.is-open {
  gap: 10px;
  width: 254px;
}

.whatsapp-drawer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}

.whatsapp-drawer__icon svg {
  width: 22px;
  height: 22px;
}

.whatsapp-drawer__label {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.whatsapp-drawer.is-open .whatsapp-drawer__label {
  opacity: 1;
  transform: translateX(0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ambient-layer,
  .hero-background img,
  .service-card img,
  .result-card img {
    transform: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .button,
  .benefit-card,
  .service-card,
  .result-card,
  .whatsapp-drawer,
  .whatsapp-drawer__label {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .specialist-layout,
  .benefits,
  .service-grid,
  .results-grid,
  .instagram-grid,
  .booking {
    grid-template-columns: 1fr;
  }

  .result-card,
  .result-card-large {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 8px;
    align-items: stretch;
    padding: 10px 11px;
    gap: 10px;
    border-color: rgba(255, 255, 255, 0.16);
    background:
      radial-gradient(circle at 12% 10%, var(--topbar-glow), transparent 26%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
      linear-gradient(180deg, rgba(28, 34, 42, 0.8), rgba(18, 23, 30, 0.5));
    backdrop-filter: blur(28px) saturate(170%);
  }

  .topnav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    padding: 6px 8px;
  }

  .topnav a {
    min-width: 0;
    min-height: 32px;
    padding: 0 6px;
    font-size: 0.58rem;
    letter-spacing: 0.11em;
    text-align: center;
  }

  .brand {
    gap: 10px;
  }

  .brand-copy {
    text-align: center;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .brand-copy small {
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }

  .topnav-home {
    min-width: 0;
    padding: 0;
  }

  .topnav-home img {
    width: 24px;
    height: 24px;
  }

  .hero {
    min-height: 760px;
    margin-top: 8px;
    border-radius: 30px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.74) 0%, rgba(6, 6, 6, 0.48) 38%, rgba(6, 6, 6, 0.7) 100%),
      linear-gradient(90deg, rgba(6, 6, 6, 0.7), rgba(6, 6, 6, 0.18));
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin-inline: auto;
    min-height: 760px;
    padding: 44px 18px 42px;
    gap: 18px;
    align-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 10.8vw, 4.35rem);
    max-width: 7.1ch;
    margin-inline: auto;
  }

  .hero .lead {
    max-width: 17ch;
    margin-inline: auto;
  }

  .hero .eyebrow {
    width: 100%;
    text-align: center;
  }

  .hero-signature {
    width: 100%;
    justify-content: center;
  }

  .hero-signature span {
    text-align: center;
  }

  .hero-background img {
    object-position: 76% center;
  }

  .hero-actions {
    width: min(320px, 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
  }

  .hero-actions .button {
    width: 100%;
  }

  .instagram-grid {
    grid-auto-flow: column;
    grid-auto-columns: 78vw;
    grid-template-columns: none;
    gap: 12px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 12px;
  }

  .instagram-player {
    aspect-ratio: 9 / 15.5;
    scroll-snap-align: start;
  }

  .specialist,
  .services,
  .results,
  .booking {
    padding-top: 112px;
  }

  .section-heading h2,
  .booking h2 {
    font-size: clamp(2.1rem, 7.8vw, 3.2rem);
    max-width: 15ch;
  }

  .results-grid {
    grid-auto-flow: column;
    grid-auto-columns: 78vw;
    grid-template-columns: none;
    gap: 12px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 16px;
    perspective: 1000px;
  }

  .results-grid::-webkit-scrollbar {
    display: none;
  }

  .result-card img {
    object-position: center 15%;
  }

  .result-card,
  .result-card-large {
    min-height: 420px;
    max-height: 490px;
    scroll-snap-align: start;
    transition:
      transform 350ms cubic-bezier(0.25, 1, 0.5, 1),
      opacity 350ms ease,
      filter 350ms ease,
      box-shadow 350ms ease,
      border-color 350ms ease;
    transform: scale(0.96);
    opacity: 0.8;
    filter: brightness(0.88);
  }

  .result-card.is-active,
  .results-grid:not(.is-scrolling) .result-card:first-child {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
    border-color: rgba(209, 166, 94, 0.7);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.65),
      0 0 28px rgba(209, 166, 94, 0.3);
  }

  .specialist-portrait,
  .benefit-card,
  .service-content,
  .booking {
    padding: 24px;
  }

  .specialist-portrait {
    padding: 0;
  }

  .booking {
    gap: 24px;
  }

  .whatsapp-drawer {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-height: 54px;
    padding: 0 16px 0 13px;
  }

  .whatsapp-drawer.is-open {
    width: min(230px, calc(100vw - 28px));
  }

  .whatsapp-drawer__label {
    font-size: 0.82rem;
  }

  .service-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  body.is-scrolled .topbar {
    gap: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      linear-gradient(180deg, rgba(13, 16, 19, 0.92), rgba(8, 10, 13, 0.82));
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px auto 6px;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 600ms ease, visibility 600ms ease, transform 600ms ease;
    pointer-events: none;
    user-select: none;
  }

  .swipe-hint.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
  }

  .swipe-hand {
    display: flex;
    align-items: center;
    animation: swipeHand 1.8s ease-in-out infinite;
  }

  .swipe-hand svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 8px rgba(209, 166, 94, 0.4));
  }

  @keyframes swipeHand {
    0%, 100% {
      transform: translateX(8px) rotate(0deg);
    }
    50% {
      transform: translateX(-14px) rotate(-10deg);
    }
  }
}

.swipe-hint {
  display: none;
}

/* --- Testimonials Section (Vertical Marquee) --- */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
  max-height: 640px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 360px;
}

.testimonials-column-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  animation: marqueeVertical var(--marquee-duration, 18s) linear infinite;
}

.testimonials-column-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeVertical {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  padding: 26px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--panel-soft);
  box-shadow: var(--shadow-soft);
  transition:
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 300ms ease,
    box-shadow 300ms ease;
  user-select: none;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(209, 166, 94, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(209, 166, 94, 0.18);
}

.testimonial-text {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 18px 0;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(209, 166, 94, 0.4);
}

.testimonial-meta cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}

.testimonial-meta span {
  display: block;
  font-size: 0.78rem;
  color: var(--gold-soft);
}

/* Responsive columns for testimonials */
@media (max-width: 900px) {
  .testimonials-column.hidden-mobile {
    display: none;
  }
}

/* Social Links & Footer */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.social-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.social-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer {
  padding: 50px 20px 36px;
  border-top: 1px solid var(--stroke);
  margin-top: 60px;
  background: var(--bg-dark);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  width: 48px;
  height: 48px;
}

.footer-copy {
  color: var(--fg-muted);
  font-size: 0.82rem;
}


