:root {
  --bg: #FAF8F6;
  --landing-photo-bg: #F3F0EC;
  --landing-photo-bg-rgb: 243, 240, 236;
  --surface: #FFFFFF;
  --surface-soft: #F5F2EE;
  --surface-muted: #EDE9E4;
  --ink: #1C1917;
  --ink-soft: #57534E;
  --ink-faint: #A8A29E;
  --line: #E7E5E4;
  --line-strong: #D6D3D1;
  --accent: #B8976A;
  --accent-strong: #9A7B52;
  --accent-soft: rgba(184, 151, 106, 0.10);
  --accent-soft-2: rgba(184, 151, 106, 0.05);
  --gold: #B8976A;
  --shadow-sm: 0 4px 20px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 12px 40px rgba(28, 25, 23, 0.10);
  --max: 1200px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --motion-fast: 180ms;
  --motion-base: 320ms;
  --motion-slow: 620ms;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-decelerate: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-y: 16px;
  --hover-lift: -2px;
  --transition: var(--motion-base) var(--ease-standard);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(184, 151, 106, 0.04), transparent 28%),
    radial-gradient(circle at bottom right, rgba(184, 151, 106, 0.04), transparent 24%),
    var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

.page-landing {
  --bg: #E8E8E6;
  --landing-photo-bg: #120919;
  --landing-photo-bg-rgb: 18, 9, 25;
  --surface: #F6F6F3;
  --surface-soft: #EEEEEA;
  --surface-muted: #D9D9D4;
  --ink: #070609;
  --ink-soft: #3C3940;
  --ink-faint: #77757B;
  --line: #D2D2CD;
  --line-strong: #BEBDB7;
  --accent: #C6A15A;
  --accent-strong: #A98236;
  --accent-soft: rgba(198, 161, 90, 0.14);
  --accent-soft-2: rgba(198, 161, 90, 0.07);
  --royal-purple: #24122F;
  --royal-purple-mid: #39204A;
  --royal-purple-strong: #120919;
  --cta-purple-strong: #D2B06C;
  --cta-purple-shadow: rgba(198, 161, 90, 0.30);
  --gold: #C6A15A;
  --shadow-sm: 0 4px 20px rgba(27, 14, 37, 0.06);
  --shadow-md: 0 12px 40px rgba(27, 14, 37, 0.10);
  background:
    radial-gradient(circle at top left, rgba(36, 18, 47, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(198, 161, 90, 0.08), transparent 24%),
    var(--bg);
}

body.nav-open {
  overflow: hidden;
}

main {
  overflow: clip;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'DM Serif Display', Georgia, serif;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(250, 248, 246, 0.92);
  border-bottom: 1px solid rgba(184, 151, 106, 0.08);
  transition:
    transform var(--motion-base) var(--ease-decelerate),
    background-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
  will-change: transform;
}

.site-header.is-condensed {
  background: rgba(250, 248, 246, 0.97);
  border-color: rgba(184, 151, 106, 0.10);
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.04);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 10px));
}

.header-shell,
.section-shell,
.footer-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.header-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(184, 151, 106, 0.12);
  padding: 4px;
}

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

.brand-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-meta {
  color: var(--ink-faint);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(184, 151, 106, 0.06);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-cta {
  white-space: nowrap;
}

.site-header--landing {
  background: linear-gradient(90deg, rgba(18, 9, 25, 0.96), rgba(36, 18, 47, 0.94));
  border-bottom-color: rgba(198, 161, 90, 0.20);
}

.site-header--landing.is-condensed {
  background: linear-gradient(90deg, rgba(18, 9, 25, 0.98), rgba(36, 18, 47, 0.97));
  border-bottom-color: rgba(198, 161, 90, 0.28);
}

.header-shell--landing {
  width: min(1680px, calc(100% - clamp(48px, 7.5vw, 168px)));
  min-height: 88px;
  justify-content: space-between;
}

.site-header--landing .brand-name {
  color: #F4F4F1;
}

.landing-brand-short {
  display: none;
}

.site-header--landing .brand-meta {
  color: rgba(232, 232, 230, 0.62);
}

.site-header--landing .brand-mark {
  background: rgba(246, 246, 243, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(198, 161, 90, 0.28),
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.site-header--landing .brand {
  flex: 0 1 auto;
  overflow: hidden;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(184, 151, 106, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard);
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  opacity: 0;
  transition:
    opacity var(--motion-base) var(--ease-standard),
    transform var(--motion-base) var(--ease-standard);
  transform: translateX(-24%);
  z-index: -1;
}

.btn:hover {
  transform: translateY(var(--hover-lift));
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.btn-arrow {
  display: inline-flex;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 38px rgba(184, 151, 106, 0.18);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.page-landing .btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--cta-purple-strong));
  color: var(--royal-purple-strong);
  box-shadow:
    0 18px 38px var(--cta-purple-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.page-landing .btn-primary:hover {
  background: linear-gradient(135deg, #D4B572, var(--accent));
  box-shadow:
    0 22px 46px rgba(198, 161, 90, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.30);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border: 1px solid rgba(184, 151, 106, 0.20);
  box-shadow: 0 10px 24px rgba(28, 25, 23, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(184, 151, 106, 0.40);
  background: rgba(255, 255, 255, 0.90);
}

.section {
  padding: 108px 0;
  position: relative;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.85));
}

.section--trust {
  padding-top: 0;
}

.section--faq {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70)),
    var(--surface);
}

.section--cta-inline {
  padding: 28px 0 0;
}

/* ── Dark inverted sections ── */
.section--dark {
  background: #1C1917;
  color: rgba(255, 255, 255, 0.90);
}

.page-landing .section--dark {
  background:
    radial-gradient(circle at 8% 0%, rgba(198, 161, 90, 0.13), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(58, 32, 74, 0.42), transparent 34%),
    linear-gradient(135deg, var(--royal-purple-strong), #111014 82%);
}

.page-landing .section--dark .faq-item {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(198, 161, 90, 0.16);
}

.page-landing .section--dark .faq-answer p {
  color: rgba(246, 246, 243, 0.78);
}

.section--dark .eyebrow,
.section--dark .card-eyebrow {
  color: var(--accent);
}

.section--dark .section-header h2,
.section--dark h2,
.section--dark h3 {
  color: #FFFFFF;
}

.section--dark .section-lead,
.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section--dark a:not(.btn) {
  color: var(--accent);
}

.section--dark .content-card,
.section--dark .treatment-group-card,
.section--dark .feature-panel,
.section--dark .intent-card,
.section--dark .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .content-card:hover,
.section--dark .treatment-group-card:hover,
.section--dark .feature-panel:hover,
.section--dark .intent-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--dark .pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.80);
}

.section--dark .credential-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .btn--primary {
  background: var(--accent);
  color: #FFFFFF;
}

.section--dark .btn--ghost {
  border-color: rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.90);
}

.section--dark .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.30);
}

.section--dark .journey-step {
  border-color: rgba(255, 255, 255, 0.10);
}

.section--dark .journey-step-number {
  background: rgba(184, 151, 106, 0.15);
  color: var(--accent);
}

.section--dark .journey-step h3 {
  color: #FFFFFF;
}

.section--dark .journey-step p {
  color: rgba(255, 255, 255, 0.65);
}

.section--dark .testimonial-card,
.section--dark .proof-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .star-rating {
  color: var(--accent);
}

.section--dark .icon-circle {
  background: rgba(184, 151, 106, 0.12);
}

.section-header {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.card-eyebrow,
.trust-label,
.footer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-header h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  max-width: 28ch;
}

.section-lead {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 64ch;
}

.media-figure {
  width: min(100%, var(--media-max-width, 100%));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.media-tip {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(184, 151, 106, 0.08);
  border: 1px solid rgba(184, 151, 106, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70));
  box-shadow: inset 0 0 0 1px rgba(184, 151, 106, 0.08);
  aspect-ratio: 4 / 3;
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--motion-slow) var(--ease-standard),
    filter var(--motion-slow) var(--ease-standard);
}

.media-frame--hero {
  aspect-ratio: 5 / 6;
}

.media-frame--panel {
  aspect-ratio: 4 / 3;
}

.media-frame--landscape {
  aspect-ratio: 16 / 10;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
}

.media-frame--detail {
  aspect-ratio: 5 / 4;
}

.media-frame--cover img {
  object-fit: cover;
}

.media-frame--contain {
  background: rgba(255, 255, 255, 0.70);
}

.media-frame--contain img {
  object-fit: contain;
  padding: 14px;
}

.media-caption {
  color: var(--ink-faint);
  font-size: 0.9rem;
  line-height: 1.6;
}

.media-figure:hover .media-frame img {
  transform: scale(1.02);
  filter: saturate(1.02);
}

.media-figure--hero-support,
.media-figure--journey,
.media-figure--feature,
.media-figure--cta,
.media-figure--service-detail {
  justify-self: center;
}

.media-figure--hero-support .media-frame {
  aspect-ratio: 4 / 5;
}

.media-figure--card .media-frame {
  aspect-ratio: 16 / 11;
}

.media-figure--journey .media-frame,
.media-figure--feature .media-frame,
.media-figure--service-detail .media-frame {
  aspect-ratio: 16 / 10;
}

.media-figure--cta .media-frame {
  aspect-ratio: 4 / 3;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--reveal-y), 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes floatGentle {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes gradientDrift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

[data-parallax] {
  --parallax-offset: 0px;
}

.motion-media {
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  transition: transform var(--motion-slow) var(--ease-standard);
  will-change: transform;
}

html.has-motion body.motion-enabled [data-float='gentle'] .motion-media {
  animation: floatGentle 7.5s ease-in-out infinite;
}

html.has-motion body.motion-enabled [data-reveal][data-reveal-state='ready'] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0) scale(0.985);
  transition:
    opacity var(--motion-slow) var(--ease-decelerate),
    transform var(--motion-slow) var(--ease-decelerate),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
  transition-delay: calc(var(--reveal-index, 0) * var(--stagger-step, 82ms));
  will-change: opacity, transform;
}

html.has-motion body.motion-enabled [data-reveal='hero-photo'][data-reveal-state='ready'] {
  transform: translate3d(18px, 26px, 0) scale(0.97);
}

html.has-motion body.motion-enabled [data-reveal='hero-illustration'][data-reveal-state='ready'] {
  transform: translate3d(0, 34px, 0) scale(0.96);
}

html.has-motion body.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero {
  position: relative;
  padding: 72px 0 56px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 151, 106, 0.10), transparent 26%),
    linear-gradient(180deg, rgba(250, 248, 246, 0.12), rgba(237, 233, 228, 0.04));
  background-size: 140% 140%;
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}

html.has-motion body.motion-enabled .hero::before {
  animation: gradientDrift 20s ease-in-out infinite alternate;
}

.hero-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.hero--split .hero-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  min-height: calc(100svh - 140px);
}

.hero--immersive {
  padding: 0 0 32px;
}

.hero--immersive::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(184, 151, 106, 0.10), transparent 24%),
    radial-gradient(circle at 76% 22%, rgba(184, 151, 106, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(250, 248, 246, 0.15), rgba(237, 233, 228, 0.08));
}

.hero--immersive .hero-shell {
  width: min(1660px, calc(100% - 28px));
  min-height: min(680px, calc(100svh - 120px));
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 0;
}

.hero--compact .hero-shell {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.hero-copy {
  max-width: 720px;
}

.hero--immersive .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: clamp(48px, 12vh, 140px) 0 clamp(24px, 4vh, 48px) clamp(24px, 4vw, 64px);
}

.hero-copy .eyebrow {
  white-space: nowrap;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 22ch;
  margin-top: 18px;
  text-wrap: balance;
  color: var(--ink);
}

.hero-title-line {
  display: block;
}

.hero--immersive .hero-copy h1 {
  max-width: none;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.10;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero--cutout {
  padding: 6px 0 40px;
}

.hero--cutout::before {
  background:
    radial-gradient(circle at 8% 13%, rgba(184, 151, 106, 0.06), transparent 18%),
    radial-gradient(circle at 82% 76%, rgba(184, 151, 106, 0.03), transparent 16%),
    linear-gradient(180deg, rgba(250, 248, 246, 0.20), rgba(237, 233, 228, 0.12));
}

.hero--cutout .hero-shell {
  width: min(1500px, calc(100% - 64px));
  min-height: calc(100svh - 92px);
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(0px, 0.8vw, 12px);
}

.hero--cutout .hero-copy {
  max-width: none;
  padding: 8px clamp(10px, 1.5vw, 24px) clamp(10px, 2vh, 18px) 0;
}

.hero--cutout .hero-copy h1 {
  max-width: none;
  font-size: clamp(2.9rem, 4.75vw, 5rem);
  line-height: 0.97;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero--cutout .hero-lead {
  max-width: 52ch;
  margin-top: 18px;
  font-size: clamp(1rem, 1.24vw, 1.1rem);
  color: var(--ink);
}

.hero--cutout .hero-actions {
  margin-top: 26px;
}

.hero-lead {
  max-width: 58ch;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
}

.hero--immersive .hero-lead {
  max-width: 52ch;
  font-size: clamp(1.01rem, 1.35vw, 1.1rem);
  color: var(--ink);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.12);
  box-shadow: 0 14px 28px rgba(28, 25, 23, 0.05);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.hero-visual {
  position: relative;
  min-height: 440px;
}

.hero--immersive .hero-visual {
  position: relative;
  min-height: calc(100svh - 150px);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  margin-left: -40px;
  margin-right: calc(-1 * (100vw - min(1660px, calc(100vw - 28px))) / 2);
  z-index: 1;
  pointer-events: auto;
}

.hero--cutout .hero-visual {
  min-height: clamp(500px, 68svh, 700px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
  padding: 0 28px 22px 0;
}

.hero-cutout {
  position: relative;
  width: min(100%, var(--cutout-max-width, 620px));
  max-width: none;
  min-height: clamp(500px, 64svh, 680px);
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-cutout::before {
  content: '';
  position: absolute;
  inset: auto 10% 10% auto;
  width: 70%;
  height: 28%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 151, 106, 0.10), rgba(250, 248, 246, 0) 74%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.hero-cutout img {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 22px 38px rgba(28, 25, 23, 0.12));
}

.hero--split .hero-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  min-height: 560px;
}

.hero-photo-card,
.hero-illustration-card {
  position: absolute;
  inset: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-photo-card {
  inset: 0 24px 0 0;
  background: linear-gradient(180deg, rgba(237, 233, 228, 0.2), rgba(184, 151, 106, 0.12));
}

.hero-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(237, 233, 228, 0.18), rgba(237, 233, 228, 0));
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform var(--motion-slow) var(--ease-standard),
    filter var(--motion-slow) var(--ease-standard);
}

.hero-photo-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.02);
}

.hero-photo-card--immersive {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.hero-photo-card--immersive::after {
  background:
    linear-gradient(
      90deg,
      rgba(250, 248, 246, 1) 0%,
      rgba(250, 248, 246, 0.92) 6%,
      rgba(250, 248, 246, 0.72) 16%,
      rgba(250, 248, 246, 0.42) 28%,
      rgba(250, 248, 246, 0.18) 40%,
      rgba(250, 248, 246, 0.06) 52%,
      rgba(250, 248, 246, 0) 64%
    ),
    linear-gradient(0deg, rgba(250, 248, 246, 0.35) 0%, rgba(250, 248, 246, 0) 25%),
    linear-gradient(180deg, rgba(250, 248, 246, 0.15) 0%, rgba(250, 248, 246, 0) 15%);
}

.hero-photo-card--immersive img {
  filter: saturate(0.97) contrast(1.02);
  transform: scale(1.0);
  transform-origin: 50% 20%;
  object-position: 50% 20%;
}

.hero-illustration-card:hover .motion-media {
  transform: translate3d(0, calc(var(--parallax-offset, 0px) - 4px), 0);
}

.hero-illustration-card {
  right: 0;
  bottom: 22px;
  width: min(82%, 380px);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.1);
  padding: 18px;
  display: flex;
  align-items: stretch;
}

.hero-illustration-card .media-figure {
  justify-self: center;
}

.hero--split .hero-photo-card,
.hero--split .hero-illustration-card {
  position: relative;
}

.hero--split .hero-photo-card {
  inset: auto;
  min-height: 440px;
}

.hero--split .hero-illustration-card {
  inset: auto;
  right: auto;
  bottom: auto;
  width: min(72%, 320px);
  margin-left: auto;
  transform: none;
}

.hero--compact .hero-illustration-card {
  inset: 24px 0 24px 24px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero--compact .hero-illustration-card .media-frame img {
  width: 100%;
  max-height: 100%;
}

.page-home .hero-copy h1 {
  max-width: 16ch;
}

.page-home .hero--immersive .hero-copy h1 {
  max-width: none;
}

.page-landing .hero--immersive {
  --landing-hero-max: 1680px;
  --landing-hero-gutter: clamp(48px, 7.5vw, 168px);
  padding: 0;
  background:
    linear-gradient(
      90deg,
      #120919 0%,
      #24122F 44%,
      #5E4A67 57%,
      #D9D9D4 70%,
      #F6F6F3 82%,
      #FFFFFF 100%
    );
}

.page-landing .hero--immersive::before {
  background:
    radial-gradient(circle at 10% 18%, rgba(198, 161, 90, 0.18), transparent 22%),
    radial-gradient(circle at 43% 10%, rgba(198, 161, 90, 0.08), transparent 18%),
    radial-gradient(circle at 72% 22%, rgba(246, 246, 243, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(18, 9, 25, 0), rgba(18, 9, 25, 0.12));
}

.page-landing .hero--immersive .hero-shell {
  width: min(var(--landing-hero-max), calc(100% - var(--landing-hero-gutter)));
  min-height: clamp(600px, calc(100svh - 88px), 760px);
  grid-template-columns: minmax(0, 0.98fr) minmax(440px, 0.78fr);
  gap: clamp(48px, 5.2vw, 92px);
  align-items: start;
}

.page-landing .hero--immersive .hero-copy {
  max-width: 760px;
  align-self: start;
  padding: clamp(62px, 8vh, 96px) 0 clamp(34px, 5vh, 56px);
}

.page-landing .hero--immersive .eyebrow {
  letter-spacing: 0.16em;
  color: var(--gold);
}

.page-landing .hero--immersive .hero-copy h1 {
  max-width: min(740px, 100%);
  font-size: clamp(2.85rem, 3.05vw, 4.05rem);
  line-height: 1;
  margin-top: 18px;
  color: #F6F6F3;
}

.page-landing .hero--immersive .hero-lead {
  max-width: 52ch;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.18vw, 1.18rem);
  line-height: 1.62;
  color: rgba(246, 246, 243, 0.82);
}

.page-landing .hero--immersive .hero-actions {
  margin-top: 24px;
}

.page-landing .hero--immersive .hero-microauthority {
  max-width: 58ch;
  margin-top: 22px;
  padding-left: 16px;
  border-left: 2px solid rgba(198, 161, 90, 0.68);
  color: rgba(246, 246, 243, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-landing .hero--immersive .hero-visual {
  min-height: clamp(600px, calc(100svh - 88px), 760px);
  margin-left: clamp(-92px, -4vw, -46px);
  margin-right: calc(-1 * (100vw - min(var(--landing-hero-max), calc(100vw - var(--landing-hero-gutter)))) / 2);
}

.page-landing .hero--immersive .hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 18px;
}

.page-landing .hero--immersive .hero-pill {
  min-height: 42px;
  padding: 0 16px;
  background: rgba(246, 246, 243, 0.08);
  border-color: rgba(198, 161, 90, 0.34);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  color: rgba(246, 246, 243, 0.92);
  font-size: 0.92rem;
}

.page-landing .hero--immersive .hero-photo-card--immersive {
  max-width: 760px;
  margin-left: auto;
  background:
    radial-gradient(circle at 72% 8%, rgba(198, 161, 90, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(246, 246, 243, 0.84), rgba(246, 246, 243, 0.60));
}

.page-landing .hero--immersive .hero-photo-card--immersive::after {
  background:
    linear-gradient(
      90deg,
      rgba(246, 246, 243, 1) 0%,
      rgba(246, 246, 243, 0.96) 8%,
      rgba(246, 246, 243, 0.76) 17%,
      rgba(246, 246, 243, 0.46) 28%,
      rgba(246, 246, 243, 0.18) 40%,
      rgba(246, 246, 243, 0.04) 52%,
      rgba(246, 246, 243, 0) 64%
    ),
    linear-gradient(0deg, rgba(246, 246, 243, 0.20) 0%, rgba(246, 246, 243, 0) 24%),
    linear-gradient(180deg, rgba(246, 246, 243, 0.10) 0%, rgba(246, 246, 243, 0) 16%);
}

.page-landing .hero--immersive .hero-photo-card--immersive img {
  filter: saturate(0.96) contrast(1.05) brightness(0.98);
}

.page-home .hero--cutout .hero-copy h1 {
  max-width: 16ch;
}

.page-home .hero--cutout::before {
  background:
    radial-gradient(circle at 6% 12%, rgba(184, 151, 106, 0.06), transparent 16%),
    radial-gradient(circle at 76% 74%, rgba(184, 151, 106, 0.03), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(237, 233, 228, 0.18));
}

.page-home .hero--cutout .hero-shell {
  width: min(1520px, calc(100% - 72px));
  min-height: clamp(480px, calc(100svh - 340px), 580px);
  grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.85fr);
  align-items: center;
}

.page-home .hero--cutout .hero-copy {
  max-width: 920px;
  padding-top: 22px;
}

.page-home .hero--cutout .hero-lead {
  max-width: 48ch;
}

.page-home .hero--cutout .hero-actions {
  max-width: 460px;
}

.page-home .hero--cutout .hero-visual {
  align-self: end;
  padding-right: 54px;
  padding-bottom: 64px;
}

.page-home .hero-cutout {
  min-height: clamp(520px, 64svh, 690px);
}

.page-home .hero-cutout img {
  width: min(100%, 690px);
}

.page-home .floating-wa {
  right: 26px;
  bottom: 24px;
}

.page-landing .hero-copy h1 {
  max-width: 28ch;
}

.page-landing .hero--cutout .hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.9rem, 3.6vw, 4.4rem);
  line-height: 0.94;
  margin-top: 10px;
}

.page-landing .hero--cutout .hero-lead {
  max-width: 56ch;
  margin-top: 16px;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--ink-soft);
}

.page-landing .hero--cutout {
  --landing-hero-image-height: clamp(650px, 72svh, 820px);
  --landing-hero-image-shift: -44px;
  --landing-hero-visual-min-height: var(--landing-hero-image-height);
  padding: 18px 0 20px;
  background: var(--landing-photo-bg);
}

.page-landing .hero--cutout::before {
  background: none;
}

.page-landing .hero--cutout .hero-shell {
  width: min(1480px, calc(100% - 48px));
  min-height: clamp(680px, calc(100svh - 220px), 860px);
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
}

.page-landing .hero--cutout .hero-copy {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  align-self: center;
  padding: 0;
}

.page-landing .hero--cutout .eyebrow {
  margin-bottom: 4px;
}

.page-landing .hero-pills {
  max-width: 760px;
}

.page-landing .hero-actions {
  margin-top: 24px;
}

.page-landing .hero--cutout .hero-visual {
  min-height: var(--landing-hero-visual-min-height);
  align-self: end;
  justify-content: flex-start;
  padding: 0;
  margin-left: clamp(-160px, -8vw, -60px);
}

.page-landing .hero-cutout {
  width: auto;
  min-height: var(--landing-hero-visual-min-height);
}

.page-landing .hero-cutout img {
  width: auto;
  height: var(--landing-hero-image-height);
  transform: translateX(calc(var(--landing-hero-image-shift) - 26px));
}

.page-landing #quando-avaliar .section-header {
  max-width: 980px;
}

.page-landing #quando-avaliar .section-header h2 {
  max-width: 24ch;
  font-size: clamp(2.1rem, 3.15vw, 3.55rem);
  line-height: 1.04;
}

.page-landing .section {
  padding: 84px 0;
}

.page-landing #quando-avaliar {
  padding-top: 64px;
}

.page-landing .section--cta-inline {
  padding: 28px 0 0;
}

.page-landing .section--cta-subtle {
  padding: 48px 0;
}

.page-landing #relatos {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.85));
}

.page-landing .section-header {
  margin-bottom: 48px;
}

.page-landing #quando-avaliar .section-lead {
  max-width: 70ch;
  font-size: 1.02rem;
}

.trust-grid,
.intent-grid,
.support-grid,
.content-grid,
.credentials-grid,
.benefit-grid,
.blog-grid,
.video-grid,
.lp-problem-grid,
.lp-benefit-grid {
  display: grid;
  gap: 22px;
}

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

.intent-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid,
.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.trust-card,
.credential-card,
.blog-card,
.video-card a,
.benefit-card,
.lp-problem-card,
.lp-benefit-card,
.lp-final-cta-card,
.service-summary-card,
.service-panel,
.recovery-card,
.related-card,
.empty-card,
.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    background-color var(--motion-base) var(--ease-standard);
}

.content-card,
.trust-card,
.credential-card,
.blog-card,
.empty-card,
.lp-problem-card,
.lp-benefit-card {
  padding: 28px;
}

.content-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
}

.content-card .media-figure {
  gap: 10px;
}

.content-card .media-tip {
  font-size: 0.74rem;
}

.content-card .media-caption {
  font-size: 0.82rem;
}

.card-icon,
.group-icon,
.mini-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition:
    transform var(--motion-base) var(--ease-standard),
    opacity var(--motion-base) var(--ease-standard);
}

.content-card h3,
.credential-card h3,
.blog-card h3,
.lp-problem-card h3,
.lp-benefit-card h3,
.service-summary-card h2,
.service-panel h3,
.recovery-card h2,
.related-card h3,
.empty-card h3 {
  font-size: 1.34rem;
}

.content-card p,
.credential-card p,
.blog-card p,
.service-summary-card p,
.service-panel p,
.recovery-card p,
.related-card p,
.empty-card p,
.trust-value,
.journey-step p,
.feature-panel p,
.timeline-content p,
.testimonial-card footer span,
.video-body p,
.lp-section-action-copy p,
.lp-final-cta-lead,
.prose p,
.prose li {
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
}

.text-link::after {
  content: '→';
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(2px);
}

.content-card:hover,
.trust-card:hover,
.credential-card:hover,
.blog-card:hover,
.video-card a:hover,
.benefit-card:hover,
.lp-problem-card:hover,
.lp-benefit-card:hover,
.lp-final-cta-card:hover,
.service-summary-card:hover,
.service-panel:hover,
.recovery-card:hover,
.related-card:hover,
.testimonial-card:hover,
.feature-panel:hover,
.timeline-item:hover,
.journey-step:hover,
.treatment-group-card:hover {
  transform: translateY(var(--hover-lift));
  border-color: rgba(184, 151, 106, 0.18);
  box-shadow: 0 20px 52px rgba(28, 25, 23, 0.12);
}

.content-card:hover .card-icon,
.treatment-group-card:hover .group-icon,
.journey-step:hover .mini-icon {
  transform: translate3d(0, -3px, 0) scale(1.04);
}

.trust-card {
  min-height: 160px;
  display: grid;
  gap: 12px;
}

.lp-problem-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70)),
    rgba(255, 255, 255, 0.85);
}

.lp-problem-card:first-child {
  grid-column: 1 / -1;
  border-color: rgba(184, 151, 106, 0.22);
  border-width: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70)),
    rgba(255, 255, 255, 0.85);
}

.page-landing #quando-avaliar .lp-problem-card:first-child {
  grid-column: auto;
  border-width: 1px;
}

.page-landing #quando-avaliar .lp-problem-card {
  min-height: 320px;
  border-color: rgba(198, 161, 90, 0.18);
}

.lp-clinical-note {
  max-width: 880px;
  margin: 28px auto 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.lp-standalone-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.lp-clinical-context {
  overflow: clip;
  background:
    radial-gradient(circle at 12% 20%, rgba(198, 161, 90, 0.16), transparent 28%),
    radial-gradient(circle at 86% 70%, rgba(94, 74, 103, 0.42), transparent 34%),
    linear-gradient(135deg, var(--royal-purple-strong), var(--royal-purple));
  color: rgba(246, 246, 243, 0.94);
}

.lp-context-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.lp-clinical-context .section-header {
  margin-bottom: 0;
}

.lp-clinical-context .eyebrow {
  color: var(--gold);
}

.lp-clinical-context h2 {
  color: #F6F6F3;
}

.lp-context-copy {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(198, 161, 90, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(246, 246, 243, 0.06);
}

.lp-context-copy p {
  color: rgba(246, 246, 243, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
}

.lp-problem-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-problem-index,
.lp-benefit-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.trust-value {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
}

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

.treatment-group-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 320px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(184, 151, 106, 0.1);
  box-shadow: var(--shadow-sm);
}

.treatment-group-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.treatment-group-top h3 {
  font-size: 1.46rem;
}

.group-icon {
  width: 82px;
  height: 82px;
}

.service-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(184, 151, 106, 0.08);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background-color var(--transition);
}

.service-pill:hover {
  background: rgba(184, 151, 106, 0.14);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 28px;
  align-items: start;
}

.journey-grid {
  display: grid;
  gap: 18px;
}

.journey-step {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.1);
  box-shadow: var(--shadow-sm);
}

[data-scene='journey'] .journey-grid {
  position: relative;
}

[data-scene='journey'] .journey-step.is-active {
  transform: translateY(-8px);
  border-color: rgba(184, 151, 106, 0.22);
  box-shadow: 0 28px 68px rgba(28, 25, 23, 0.14);
}

[data-scene='journey'] .journey-step.is-active .journey-index {
  color: var(--accent);
  opacity: 1;
}

.journey-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.journey-index {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: rgba(184, 151, 106, 0.32);
  letter-spacing: -0.05em;
  transition:
    color var(--motion-base) var(--ease-standard),
    transform var(--motion-base) var(--ease-standard);
}

.mini-icon {
  width: 48px;
  height: 48px;
}

.journey-step h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.journey-art {
  position: sticky;
  top: 108px;
  display: grid;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(184, 151, 106, 0.1);
  box-shadow: var(--shadow-sm);
}

[data-scene='journey'] .journey-art {
  transition:
    transform var(--motion-slow) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
}

[data-scene='journey'] .journey-art.is-active {
  box-shadow: 0 28px 66px rgba(28, 25, 23, 0.14);
  border-color: rgba(184, 151, 106, 0.18);
}

.feature-stack {
  display: grid;
  gap: 22px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.1);
  box-shadow: var(--shadow-sm);
}

.feature-copy {
  display: grid;
  gap: 14px;
}

.feature-copy h3 {
  font-size: 1.76rem;
  max-width: 18ch;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.feature-art {
  display: grid;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.70);
  overflow: hidden;
}

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

.credential-card {
  min-height: 196px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(184, 151, 106, 0.1);
  box-shadow: var(--shadow-sm);
}

.timeline-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(184, 151, 106, 0.1);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.timeline-content {
  display: grid;
  gap: 10px;
}

.timeline-content h3 {
  font-size: 1.38rem;
}

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

.testimonial-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.testimonial-card p {
  font-size: 1.04rem;
  line-height: 1.8;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
}

.testimonial-card footer strong {
  font-size: 0.92rem;
}

.proof-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.proof-stars {
  display: inline-flex;
  gap: 3px;
  color: #f5a623;
}

.proof-stars svg {
  width: 22px;
  height: 22px;
}

.proof-score {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.proof-count {
  color: var(--ink-faint);
  font-size: 0.92rem;
}

.proof-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.proof-note {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.88rem;
}

.lp-public-ratings {
  width: min(980px, 100%);
  min-width: 0;
  margin: 0 auto 32px;
}

.lp-public-ratings h3 {
  margin-bottom: 18px;
  color: #17141A;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  text-align: center;
}

.lp-public-ratings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
}

.page-landing .lp-public-rating {
  --public-rating-source: #006F6B;
  min-width: 0;
  height: 100%;
  padding: 20px 22px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #C8C7C2;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(27, 14, 37, 0.07);
}

.page-landing .lp-public-rating--google {
  --public-rating-source: #1A5FC4;
}

.lp-public-rating h4 {
  margin: 0;
  color: var(--public-rating-source);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.lp-public-rating-metrics {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.lp-public-rating-score {
  color: #211D24;
  font-size: 0.94rem;
  line-height: 1.5;
}

.lp-public-rating-score-visual {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
}

.lp-public-rating-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-public-rating-score strong {
  color: #17141A;
  font-size: 1.08rem;
}

.lp-public-rating-star {
  color: #A65F00;
}

.lp-public-rating-count {
  color: #59545C;
  font-size: 0.9rem;
  line-height: 1.5;
}

.lp-public-rating-link {
  min-width: 44px;
  min-height: 44px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  align-self: end;
  justify-self: start;
  gap: 7px;
  color: var(--public-rating-source);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
  transition:
    color var(--transition),
    text-decoration-color var(--transition);
}

.lp-public-rating-link:hover {
  text-decoration-color: currentColor;
}

.lp-public-rating-link:focus-visible {
  outline: 3px solid rgba(36, 18, 47, 0.35);
  outline-offset: 3px;
  text-decoration-color: currentColor;
}

.lp-public-rating-external {
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1;
}

.lp-proof-carousel,
.lp-proof-viewport,
.lp-proof-track {
  min-width: 0;
  max-width: 100%;
}

.lp-proof-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.page-landing .lp-proof-slide {
  --proof-brand: #006F6B;
  --proof-brand-soft: #E1F3F1;
  --proof-star: #006F6B;
  min-width: 0;
  min-height: 370px;
  margin: 0;
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-self: stretch;
  gap: 24px;
  background: #FFFFFF;
  border: 1px solid #CBCAC5;
  border-top: 4px solid var(--proof-brand);
  box-shadow: 0 12px 32px rgba(27, 14, 37, 0.10);
  color: #17141A;
}

.page-landing .lp-proof-slide--google {
  --proof-brand: #1A5FC4;
  --proof-brand-soft: #E8F0FE;
  --proof-star: #A65F00;
}

.page-landing .lp-proof-slide:hover {
  transform: none;
  border-color: #B8B6B0;
  border-top-color: var(--proof-brand);
  box-shadow: 0 16px 38px rgba(27, 14, 37, 0.13);
}

.lp-proof-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.lp-proof-wordmark {
  color: var(--proof-brand);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lp-proof-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--proof-star);
  font-size: 1.08rem;
  line-height: 1;
}

.page-landing .lp-proof-slide .lp-proof-quote {
  color: #211D24;
  font-size: clamp(1.125rem, 1.35vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}

.page-landing .lp-proof-card-footer {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #DDDCD7;
}

.lp-proof-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  overflow: hidden;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  background: var(--proof-brand-soft);
  box-shadow: 0 0 0 1px #C9C8C3;
}

.lp-proof-avatar-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--proof-brand);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1;
}

.lp-proof-avatar img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.lp-proof-avatar.is-fallback img {
  display: none;
}

.lp-proof-person {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 5px;
}

.page-landing .lp-proof-person strong {
  color: #17141A;
  font-size: 0.94rem;
  line-height: 1.35;
}

.lp-proof-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 6px;
  color: #59545C;
  font-size: 0.8rem;
  line-height: 1.45;
}

.lp-proof-badge {
  width: fit-content;
  margin-top: 3px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--proof-brand-soft);
  color: var(--proof-brand);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.35;
}

.lp-proof-controls {
  display: none;
}

.lp-proof-carousel.is-enhanced .lp-proof-viewport {
  overflow: hidden;
}

.lp-proof-carousel.is-enhanced .lp-proof-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  transform: translate3d(0, 0, 0);
  transition: transform var(--motion-base) var(--ease-standard);
  will-change: transform;
}

.lp-proof-carousel.is-enhanced .lp-proof-slide {
  flex: 0 0 calc((100% - 44px) / 3);
}

.lp-proof-carousel.is-enhanced .lp-proof-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lp-carousel-button {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(198, 161, 90, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.lp-carousel-button:hover,
.lp-carousel-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(198, 161, 90, 0.52);
  background: #FFFFFF;
}

.lp-carousel-button:focus-visible {
  outline: 3px solid rgba(198, 161, 90, 0.30);
  outline-offset: 3px;
}

.lp-carousel-button:disabled {
  cursor: default;
  opacity: 0.45;
  transform: none;
}

.lp-carousel-toggle {
  min-width: 112px;
}

.lp-proof-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.lp-carousel-indicator {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.lp-carousel-indicator span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line-strong);
  transition:
    width var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.lp-carousel-indicator[aria-current='true'] span {
  width: 24px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(198, 161, 90, 0.12);
}

.lp-carousel-indicator:focus-visible {
  outline: 3px solid rgba(198, 161, 90, 0.30);
  outline-offset: 1px;
}

.lp-proof-status {
  min-width: 82px;
  color: var(--ink-faint);
  font-size: 0.88rem;
  text-align: center;
}

.page-landing .proof-note,
.page-landing .lp-proof-status {
  color: #5D5961;
}

.lp-proof-live-region {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── V2 editorial inspirada na referência Shanina ───────────────── */

.page-shanina-v2 {
  --v2-ink: #171411;
  --v2-ink-soft: #4d453b;
  --v2-night: #151310;
  --v2-night-deep: #0b0a08;
  --v2-cream: #eee2bd;
  --v2-cream-soft: #f4edda;
  --v2-gold: #c9a24a;
  --v2-gold-bright: #ecd991;
  --v2-gold-soft: #d8bb67;
  --v2-gold-deep: #8e671d;
  --v2-gold-muted: #806a47;
  --v2-gold-glow: rgba(205, 161, 59, 0.18);
  --v2-gold-gradient: linear-gradient(118deg, #9a7020 0%, #d1ad50 28%, #ecd991 49%, #b9892b 72%, #d4b45a 100%);
  --v2-wine: #4a0a15;
  --v2-line-dark: rgba(242, 223, 145, 0.18);
  --v2-line-light: rgba(23, 20, 17, 0.2);
  --v2-gutter: clamp(20px, 2.2vw, 38px);
  --v2-display: 'Helvetica Neue', 'Arial Nova', Helvetica, Arial, sans-serif;
  min-width: 0;
  background: var(--v2-night);
  color: var(--v2-cream-soft);
  font-family: var(--v2-display);
  font-weight: 400;
  line-height: 1.35;
}

.page-shanina-v2 main {
  overflow: clip;
}

.page-shanina-v2 h1,
.page-shanina-v2 h2,
.page-shanina-v2 h3,
.page-shanina-v2 strong {
  font-family: var(--v2-display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.page-shanina-v2 h1,
.page-shanina-v2 h2,
.page-shanina-v2 h3 {
  color: inherit;
}

.page-shanina-v2 picture,
.page-shanina-v2 .v2-cover-image {
  width: 100%;
  height: 100%;
}

.page-shanina-v2 picture {
  display: block;
}

.page-shanina-v2 .v2-cover-image {
  display: block;
  max-width: none;
  object-fit: cover;
}

.v2-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  color: var(--v2-gold-soft);
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.62), transparent);
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.v2-site-header.is-condensed {
  color: var(--v2-cream-soft);
  background: rgba(15, 13, 11, 0.88);
  border-color: transparent;
  box-shadow: 0 1px rgba(242, 223, 145, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.v2-header-shell {
  min-height: 68px;
  padding: 0 var(--v2-gutter);
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 3fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 54px);
}

.v2-mini-brand,
.v2-header-cta,
.v2-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.v2-mini-brand {
  white-space: nowrap;
}

.v2-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.v2-nav a {
  position: relative;
  padding: 9px 0;
  color: inherit;
  opacity: 0.76;
  transition: opacity 180ms ease;
}

.v2-nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.v2-nav a:hover,
.v2-nav a:focus-visible {
  opacity: 1;
}

.v2-nav a:hover::after,
.v2-nav a:focus-visible::after {
  transform: scaleX(1);
}

.v2-header-cta {
  min-width: 92px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease;
}

.v2-header-cta:hover,
.v2-header-cta:focus-visible {
  color: var(--v2-night);
  background: var(--v2-gold-gradient);
  box-shadow: 0 0 24px var(--v2-gold-glow);
}

.v2-scroll-progress {
  position: absolute;
  inset: auto 0 0;
  width: var(--v2-scroll-progress, 0%);
  height: 1px;
  background: var(--v2-gold-gradient);
  box-shadow: 0 0 12px var(--v2-gold-glow);
}

.v2-experience {
  background: var(--v2-night);
}

.v2-kicker {
  color: inherit;
  font-size: clamp(0.68rem, 0.76vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.v2-circle-action {
  width: clamp(132px, 11vw, 176px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--v2-night);
  background:
    radial-gradient(circle at 31% 25%, rgba(255, 246, 205, 0.46) 0%, rgba(255, 246, 205, 0) 32%),
    var(--v2-gold-gradient);
  border: 1px solid rgba(236, 217, 145, 0.46);
  border-radius: 50%;
  box-shadow:
    0 0 34px var(--v2-gold-glow),
    0 14px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 247, 218, 0.42);
  font-size: clamp(0.72rem, 0.78vw, 0.88rem);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 200ms ease,
    box-shadow 200ms ease;
}

.v2-circle-action:hover,
.v2-circle-action:focus-visible {
  transform: rotate(-7deg) scale(1.04);
  filter: brightness(1.08);
  box-shadow:
    0 0 44px rgba(205, 161, 59, 0.24),
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 247, 218, 0.52);
}

.v2-hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #17120d;
}

.v2-hero-wallpaper,
.v2-hero-media,
.v2-hero-shade,
.v2-pointer-glow {
  position: absolute;
  inset: 0;
}

.v2-hero-wallpaper {
  z-index: -4;
  inset: 0;
  overflow: hidden;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  will-change: transform;
}

.v2-hero-wallpaper .v2-hero-wallpaper-image {
  object-fit: contain;
  object-position: 66% 64% !important;
  opacity: 0.82;
  filter: brightness(0.38) saturate(0.54) contrast(1.08);
  transform: translate3d(4%, 5%, 0) scale(0.84);
  transform-origin: center;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 15%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 15%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 86%, transparent 100%);
  mask-composite: intersect;
}

.v2-hero-media {
  z-index: -3;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.035);
  will-change: transform;
}

.v2-hero-media--portrait {
  z-index: -1;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
}

.v2-hero-media--portrait picture {
  position: absolute;
  right: var(--v2-gutter);
  bottom: 58px;
  width: clamp(340px, min(35vw, 56vh), 620px);
  height: auto;
  aspect-ratio: 1092 / 1280;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-composite: intersect;
}

.v2-hero-media--portrait .v2-hero-portrait-image {
  object-fit: cover;
  object-position: center 28% !important;
  filter: brightness(0.96) saturate(0.88) contrast(0.98);
}

.v2-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.8) 0%, rgba(8, 7, 5, 0.35) 44%, rgba(8, 7, 5, 0.06) 74%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.38), transparent 32%, rgba(8, 7, 5, 0.66));
}

.v2-hero--portrait .v2-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.78) 0%, rgba(8, 7, 5, 0.6) 44%, rgba(8, 7, 5, 0.32) 72%, rgba(8, 7, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.38), transparent 38%, rgba(8, 7, 5, 0.62));
}

.v2-pointer-glow {
  z-index: -1;
  left: var(--v2-pointer-x, 65%);
  top: var(--v2-pointer-y, 40%);
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.14), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.v2-hero-shell {
  min-height: inherit;
  padding: 80px var(--v2-gutter) 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px 32px;
}

.v2-hero--portrait .v2-hero-shell {
  grid-template-columns: minmax(0, 1fr) auto clamp(340px, min(35vw, 56vh), 620px);
}

.v2-wordmark {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--v2-gold);
  background: var(--v2-gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 26px rgba(205, 161, 59, 0.14);
  font-size: clamp(4rem, 8.7vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.8;
  white-space: nowrap;
}

.v2-hero-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 10px 0 12px;
  color: var(--v2-gold-soft);
  border-bottom: 1px solid rgba(201, 162, 74, 0.24);
  font-size: 0.66rem;
  font-weight: 500;
}

.v2-hero--portrait .v2-hero-index {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
}

.v2-hero-copy {
  align-self: end;
  max-width: min(560px, 45vw);
  padding-bottom: clamp(28px, 5vh, 62px);
}

.v2-hero-copy h1 {
  max-width: 16ch;
  margin: 14px 0 22px;
  color: var(--v2-cream-soft);
  font-size: clamp(2.55rem, 4.35vw, 5rem);
  font-weight: 300;
  line-height: 0.95;
}

.v2-hero-copy > p:last-child {
  max-width: 48ch;
  color: rgba(244, 237, 218, 0.86);
  font-size: clamp(0.95rem, 1.12vw, 1.18rem);
  line-height: 1.35;
}

.v2-hero-action {
  align-self: center;
  margin: 2vh 4vw 0 0;
}

.v2-hero--portrait .v2-hero-action {
  position: static;
  grid-column: 2;
  grid-row: 3;
  align-self: center;
  justify-self: center;
  margin: 0;
}

.v2-hero--portrait .v2-hero-copy {
  grid-column: 1;
  grid-row: 3;
  align-self: center;
  padding-bottom: 0;
}

.v2-hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 223, 145, 0.2);
}

.v2-hero-stats div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(244, 237, 218, 0.58);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.v2-hero-stats strong {
  color: var(--v2-cream-soft);
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
}

.v2-registration {
  color: var(--v2-cream-soft);
  background: #0c0b09;
  border-top: 1px solid var(--v2-line-dark);
  border-bottom: 1px solid var(--v2-line-dark);
}

.v2-registration-shell {
  width: calc(100% - (2 * var(--v2-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2.28fr);
  align-items: stretch;
}

.v2-registration-name {
  margin: 0;
  padding: 28px clamp(20px, 2.6vw, 42px) 28px 0;
  display: flex;
  align-items: center;
  color: var(--v2-gold);
  border-right: 1px solid var(--v2-line-dark);
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-transform: uppercase;
}

.v2-registration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-registration-grid > div {
  min-width: 0;
  padding: 24px clamp(18px, 2.1vw, 34px);
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 1px solid var(--v2-line-dark);
}

.v2-registration-grid > div:last-child {
  border-right: 0;
}

.v2-registration-grid span {
  color: rgba(244, 237, 218, 0.48);
  font-size: 0.68rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.v2-registration-grid strong {
  color: var(--v2-cream-soft);
  font-size: clamp(0.9rem, 1.1vw, 1.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.v2-recognition {
  position: relative;
  min-height: 1280px;
  padding: clamp(150px, 17vw, 260px) 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.v2-recognition-media,
.v2-recognition-overlay {
  position: absolute;
  inset: 0;
}

.v2-recognition-media {
  z-index: -3;
  background: url('/assets/v2-flavia-cuidado-editorial.webp') 64% center / cover no-repeat;
}

.v2-recognition-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.84), rgba(9, 8, 6, 0.2) 58%, rgba(9, 8, 6, 0.5)),
    linear-gradient(180deg, rgba(9, 8, 6, 0.82), transparent 35%, rgba(9, 8, 6, 0.9));
}

.v2-scene-shell,
.v2-section-shell,
.v2-authority-shell,
.v2-final-shell {
  position: relative;
  width: calc(100% - (2 * var(--v2-gutter)));
  margin: 0 auto;
}

.v2-section-intro {
  position: relative;
  z-index: 2;
}

.v2-section-intro h2 {
  max-width: 13ch;
  margin-top: 18px;
  color: var(--v2-ink);
  font-size: clamp(3.5rem, 7.7vw, 9rem);
  font-weight: 300;
  line-height: 0.84;
}

.v2-section-intro--inverted h2 {
  color: var(--v2-cream-soft);
}

.v2-section-lead {
  max-width: 54ch;
  margin: clamp(26px, 4vw, 58px) 0 0 auto;
  color: var(--v2-ink-soft);
  font-size: clamp(1rem, 1.32vw, 1.3rem);
  line-height: 1.36;
}

.v2-section-intro--inverted .v2-section-lead {
  color: rgba(244, 237, 218, 0.74);
}

.v2-recognition .v2-section-intro {
  max-width: 1100px;
}

.v2-recognition .v2-section-intro h2 {
  max-width: 11ch;
}

.v2-marquee {
  position: absolute;
  z-index: -1;
  top: 48%;
  left: 0;
  width: max-content;
  display: flex;
  color: rgba(242, 223, 145, 0.23);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.8;
  white-space: nowrap;
  animation: v2-marquee 28s linear infinite;
}

@keyframes v2-marquee {
  to { transform: translateX(-50%); }
}

.v2-recognition-grid {
  width: min(860px, 68vw);
  margin: clamp(190px, 25vw, 390px) 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 237, 218, 0.2);
  border-left: 1px solid rgba(244, 237, 218, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.v2-glass-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 44px);
  display: grid;
  align-content: start;
  gap: 28px;
  color: var(--v2-cream-soft);
  background: rgba(26, 20, 15, 0.48);
  border-right: 1px solid rgba(244, 237, 218, 0.2);
  border-bottom: 1px solid rgba(244, 237, 218, 0.2);
}

.v2-card-number {
  color: var(--v2-gold);
  font-size: 0.75rem;
}

.v2-glass-card h3 {
  max-width: 18ch;
  font-size: clamp(1.4rem, 2vw, 2.15rem);
  line-height: 1;
}

.v2-glass-card p {
  max-width: 40ch;
  color: rgba(244, 237, 218, 0.68);
  font-size: 0.92rem;
  line-height: 1.4;
}

.v2-editorial-action {
  margin-top: clamp(54px, 7vw, 110px);
  padding-top: clamp(26px, 3vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-top: 1px solid var(--v2-line-light);
}

.v2-editorial-action--light {
  border-color: rgba(244, 237, 218, 0.2);
}

.v2-editorial-action > p {
  max-width: 50ch;
  color: var(--v2-ink-soft);
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 1.2;
}

.v2-editorial-action--light > p {
  color: rgba(244, 237, 218, 0.8);
}

.v2-reassurance {
  padding: clamp(110px, 13vw, 190px) 0;
  color: var(--v2-ink);
  background: var(--v2-cream-soft);
}

.v2-reassurance .v2-section-intro h2 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 7.2vw, 8.6rem);
}

.v2-reassurance-grid {
  margin-top: clamp(72px, 9vw, 132px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--v2-line-light);
  border-left: 1px solid var(--v2-line-light);
}

.v2-reassurance-grid article {
  min-height: 320px;
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 34px;
  border-right: 1px solid var(--v2-line-light);
  border-bottom: 1px solid var(--v2-line-light);
}

.v2-reassurance-grid span {
  color: var(--v2-gold-muted);
  font-size: 0.72rem;
}

.v2-reassurance-grid h3 {
  max-width: 15ch;
  align-self: center;
  font-size: clamp(2.2rem, 4.1vw, 5.1rem);
  line-height: 0.9;
}

.v2-reassurance-grid p {
  max-width: 46ch;
  color: var(--v2-ink-soft);
  font-size: clamp(1rem, 1.16vw, 1.16rem);
  line-height: 1.45;
}

.v2-method {
  padding: clamp(110px, 13vw, 200px) var(--v2-gutter);
  color: var(--v2-cream-soft);
  background: #12110f;
}

.v2-method-title-wrap {
  margin-bottom: clamp(70px, 10vw, 150px);
}

.v2-method-title-wrap .v2-section-intro h2 {
  max-width: 12ch;
  font-size: clamp(4rem, 9.1vw, 10.5rem);
}

.v2-method-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(52px, 8vw, 130px);
  align-items: start;
}

.v2-method-visual {
  position: sticky;
  top: 90px;
  height: min(76vh, 820px);
  overflow: hidden;
  background: url('/assets/v2-flavia-fechamento.webp') center / cover no-repeat;
}

.v2-method-visual picture {
  height: 100%;
}

.v2-method-visual > p {
  position: absolute;
  inset: auto 18px 18px;
  color: var(--v2-cream-soft);
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.v2-method-list {
  border-top: 1px solid var(--v2-line-dark);
}

.v2-method-step {
  border-bottom: 1px solid var(--v2-line-dark);
}

.v2-method-step summary {
  min-height: 118px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}

.v2-method-step summary::-webkit-details-marker,
.v2-faq-item summary::-webkit-details-marker {
  display: none;
}

.v2-method-step summary:focus-visible,
.v2-faq-item summary:focus-visible,
.v2-carousel-controls button:focus-visible {
  outline: 1px solid var(--v2-gold);
  outline-offset: 4px;
}

.v2-method-number {
  color: rgba(244, 237, 218, 0.5);
  font-size: 0.72rem;
}

.v2-method-step summary strong {
  color: var(--v2-cream-soft);
  font-size: clamp(1.45rem, 2.2vw, 2.65rem);
  line-height: 1;
}

.v2-method-toggle,
.v2-faq-item summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(244, 237, 218, 0.26);
  border-radius: 50%;
}

.v2-method-toggle::before,
.v2-method-toggle::after,
.v2-faq-item summary i::before,
.v2-faq-item summary i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.v2-method-toggle::after,
.v2-faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.v2-method-step[open] .v2-method-toggle::after,
.v2-faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.v2-method-answer {
  max-width: 48ch;
  padding: 0 60px 40px 90px;
  color: rgba(244, 237, 218, 0.64);
  font-size: 1rem;
  line-height: 1.45;
}

.v2-method-scope {
  max-width: 1020px;
  margin: clamp(72px, 9vw, 140px) 0 0 auto;
  padding: clamp(28px, 4vw, 54px) 0 0;
  display: grid;
  grid-template-columns: 0.45fr minmax(0, 1.55fr);
  gap: clamp(28px, 5vw, 86px);
  border-top: 1px solid var(--v2-line-dark);
}

.v2-method-scope span {
  color: var(--v2-gold);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.v2-method-scope p {
  max-width: 62ch;
  color: rgba(244, 237, 218, 0.78);
  font-size: clamp(1.05rem, 1.42vw, 1.45rem);
  line-height: 1.42;
}

.v2-benefits {
  padding: clamp(110px, 13vw, 200px) 0;
  color: var(--v2-ink);
  background: var(--v2-cream);
}

.v2-benefits .v2-section-intro h2 {
  max-width: 12ch;
}

.v2-benefit-list {
  margin-top: clamp(76px, 10vw, 150px);
  border-top: 1px solid var(--v2-line-light);
}

.v2-benefit-row {
  min-height: 190px;
  padding: clamp(28px, 4vw, 58px) 0;
  display: grid;
  grid-template-columns: 0.3fr 1.05fr 1.35fr;
  gap: clamp(22px, 4vw, 70px);
  align-items: start;
  border-bottom: 1px solid var(--v2-line-light);
}

.v2-benefit-row > span {
  color: var(--v2-gold-muted);
  font-size: 0.72rem;
}

.v2-benefit-row h3 {
  max-width: 16ch;
  font-size: clamp(1.75rem, 3.2vw, 4rem);
  line-height: 0.94;
}

.v2-benefit-row p {
  max-width: 46ch;
  color: var(--v2-ink-soft);
  font-size: clamp(1rem, 1.22vw, 1.2rem);
  line-height: 1.42;
}

.v2-benefits .v2-circle-action {
  color: var(--v2-cream-soft);
  background: var(--v2-night);
}

.v2-benefits .v2-circle-action:hover,
.v2-benefits .v2-circle-action:focus-visible {
  color: var(--v2-night);
  background: var(--v2-cream-soft);
}

.v2-proof {
  padding: clamp(110px, 13vw, 200px) 0;
  color: var(--v2-cream-soft);
  background: var(--v2-night-deep);
}

.v2-proof .v2-section-intro h2 {
  max-width: 12ch;
  font-size: clamp(4rem, 8.5vw, 10rem);
}

.v2-rating-strip {
  margin-top: clamp(68px, 9vw, 135px);
  padding: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid var(--v2-line-dark);
  border-bottom: 1px solid var(--v2-line-dark);
}

.v2-rating-stars {
  color: var(--v2-gold);
  letter-spacing: 0.14em;
}

.v2-rating-strip strong {
  color: var(--v2-gold);
  font-size: 2rem;
}

.v2-rating-strip > span:last-child {
  color: rgba(244, 237, 218, 0.56);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.v2-testimonial-carousel {
  margin-top: 52px;
}

.v2-testimonial-track {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  outline: none;
}

.v2-testimonial-track::-webkit-scrollbar {
  display: none;
}

.v2-testimonial-card {
  min-width: min(43vw, 610px);
  min-height: 420px;
  margin: 0;
  padding: clamp(30px, 4vw, 58px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 44px;
  color: var(--v2-cream-soft);
  background: #211e1a;
  border: 1px solid var(--v2-line-dark);
  scroll-snap-align: start;
}

.v2-testimonial-index {
  color: var(--v2-gold);
  font-size: 0.72rem;
}

.v2-testimonial-card > p {
  max-width: 18ch;
  align-self: center;
  font-size: clamp(1.7rem, 3vw, 3.35rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.v2-testimonial-card footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 237, 218, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.v2-testimonial-card footer strong {
  color: var(--v2-cream-soft);
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
}

.v2-carousel-controls {
  padding: 18px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--v2-line-dark);
}

.v2-carousel-controls button {
  padding: 8px 0;
  color: var(--v2-cream-soft);
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(244, 237, 218, 0.44);
  font: inherit;
  font-size: 0.72rem;
  text-transform: uppercase;
  cursor: pointer;
}

.v2-carousel-controls p {
  color: rgba(244, 237, 218, 0.54);
  font-size: 0.72rem;
}

.v2-proof-actions {
  margin-top: clamp(58px, 8vw, 118px);
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
}

.v2-proof-note {
  max-width: 78ch;
  margin: 28px 0 0;
  color: rgba(244, 237, 218, 0.56);
  font-size: 0.85rem;
  line-height: 1.5;
}

.v2-proof-source-links {
  display: grid;
  gap: 18px;
}

.v2-proof-source-links a {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(244, 237, 218, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.v2-authority {
  position: relative;
  min-height: 1480px;
  padding: clamp(120px, 14vw, 220px) 0 100px;
  overflow: hidden;
  isolation: isolate;
  color: var(--v2-cream-soft);
}

.v2-authority-backdrop,
.v2-authority-shade {
  position: absolute;
  inset: 0;
}

.v2-authority-backdrop {
  z-index: -3;
  background: url('/assets/v2-flavia-cuidado-editorial.webp') 70% center / cover no-repeat;
}

.v2-authority-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.92), rgba(8, 7, 5, 0.38) 58%, rgba(8, 7, 5, 0.62)),
    linear-gradient(180deg, rgba(8, 7, 5, 0.74), transparent 40%, rgba(8, 7, 5, 0.96));
}

.v2-authority-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(40px, 6vw, 96px);
}

.v2-authority-name {
  grid-column: 1 / -1;
  margin: 0 0 clamp(70px, 10vw, 150px);
  color: var(--v2-gold);
  font-size: clamp(4rem, 8.8vw, 10rem);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-align: right;
}

.v2-authority-copy {
  max-width: 670px;
  padding: clamp(28px, 4vw, 56px);
  align-self: end;
  background: rgba(18, 13, 10, 0.64);
  border: 1px solid rgba(244, 237, 218, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.v2-authority-copy h2 {
  margin: 16px 0 26px;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  line-height: 0.88;
}

.v2-authority-copy .v2-section-lead {
  margin: 0;
  color: rgba(244, 237, 218, 0.78);
}

.v2-authority-statement {
  margin: 34px 0 0;
  padding: 0 0 0 24px;
  color: var(--v2-gold);
  border-left: 1px solid currentColor;
  font-size: clamp(1.22rem, 1.8vw, 1.8rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.v2-authority-copy ul {
  margin-top: 38px;
  border-top: 1px solid rgba(244, 237, 218, 0.18);
}

.v2-authority-copy li {
  padding: 15px 0;
  color: rgba(244, 237, 218, 0.7);
  border-bottom: 1px solid rgba(244, 237, 218, 0.18);
  font-size: 0.95rem;
  line-height: 1.4;
}

.v2-doctor-card {
  min-height: 500px;
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(244, 237, 218, 0.35);
  background: url('/assets/dra-flavia-tristao-consultorio-escritorio-curitiba--hero.webp') 50% 30% / cover no-repeat;
}

.v2-credentials {
  grid-column: 1 / -1;
  margin-top: clamp(68px, 9vw, 135px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244, 237, 218, 0.2);
  border-left: 1px solid rgba(244, 237, 218, 0.2);
}

.v2-credentials article {
  min-height: 210px;
  padding: clamp(22px, 2.4vw, 36px);
  display: grid;
  align-content: start;
  gap: 20px;
  background: rgba(14, 10, 8, 0.5);
  border-right: 1px solid rgba(244, 237, 218, 0.2);
  border-bottom: 1px solid rgba(244, 237, 218, 0.2);
}

.v2-credentials span,
.v2-credentials p {
  color: rgba(244, 237, 218, 0.54);
  font-size: 0.78rem;
  line-height: 1.35;
}

.v2-credentials span {
  text-transform: uppercase;
}

.v2-credentials strong {
  color: var(--v2-cream-soft);
  font-size: clamp(1.15rem, 1.65vw, 1.75rem);
  line-height: 1;
}

.v2-authority .v2-editorial-action {
  grid-column: 1 / -1;
}

.v2-faq {
  padding: clamp(110px, 13vw, 200px) 0;
  color: var(--v2-cream-soft);
  background: #11100e;
}

.v2-faq .v2-section-intro h2 {
  max-width: 13ch;
  font-size: clamp(4rem, 8.4vw, 9.8rem);
}

.v2-faq-list {
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--v2-line-dark);
}

.v2-faq-item {
  border-bottom: 1px solid var(--v2-line-dark);
}

.v2-faq-item summary {
  min-height: 112px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 2fr) 32px;
  gap: 26px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.v2-faq-item summary > span {
  color: rgba(244, 237, 218, 0.44);
  font-size: 0.72rem;
}

.v2-faq-item summary strong {
  font-size: clamp(1.4rem, 2.45vw, 3rem);
  line-height: 1;
}

.v2-faq-item > div {
  max-width: none;
  padding: 0 50px 40px calc(17.5% + 6px);
  color: rgba(244, 237, 218, 0.65);
  font-size: 1rem;
  line-height: 1.5;
}

.v2-faq-item > div p {
  max-width: 58ch;
}

.v2-subtle-cta {
  margin-top: 64px;
  color: rgba(244, 237, 218, 0.55);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
}

.v2-subtle-cta a {
  color: var(--v2-gold);
  border-bottom: 1px solid currentColor;
}

.v2-final {
  position: relative;
  min-height: max(760px, 100svh);
  padding: 120px 0 44px;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  color: var(--v2-cream-soft);
  background: var(--v2-night-deep);
}

.v2-final-media,
.v2-final-shade {
  position: absolute;
  inset: 0;
}

.v2-final-media {
  z-index: -3;
  background: url('/assets/v2-flavia-fechamento.webp') 66% center / cover no-repeat;
}

.v2-final-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.93) 0%, rgba(9, 8, 6, 0.72) 44%, rgba(9, 8, 6, 0.12) 76%),
    linear-gradient(180deg, rgba(9, 8, 6, 0.26), rgba(9, 8, 6, 0.72));
}

.v2-final-shell {
  min-height: calc(max(760px, 100svh) - 164px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.v2-final-copy {
  max-width: 820px;
}

.v2-final-copy h2 {
  max-width: 11ch;
  margin: 18px 0 32px;
  color: var(--v2-gold);
  font-size: clamp(3.75rem, 7.2vw, 8rem);
  font-weight: 300;
  line-height: 0.8;
}

.v2-final-copy > p {
  max-width: 48ch;
  color: rgba(244, 237, 218, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.4;
}

.v2-final-pills {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-final-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(244, 237, 218, 0.3);
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.v2-final-actions {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.v2-final-actions > a:last-child {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(244, 237, 218, 0.45);
  font-size: 0.82rem;
}

.page-shanina-v2 .site-footer--compact {
  color: rgba(244, 237, 218, 0.68);
  background: #090806;
  border-top: 1px solid var(--v2-line-dark);
}

.page-shanina-v2 .site-footer--compact .footer-name {
  color: var(--v2-gold);
  font-family: var(--v2-display);
  font-weight: 300;
}

.page-shanina-v2 .site-footer--compact .footer-specialty,
.page-shanina-v2 .site-footer--compact .landing-footer-notice {
  max-width: 70ch;
  line-height: 1.45;
}

.page-shanina-v2 .site-footer--compact a:hover {
  color: var(--v2-gold);
}

@media (max-width: 1080px) {
  .v2-header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .v2-nav {
    grid-template-columns: repeat(3, auto);
    justify-content: center;
  }

  .v2-nav a:nth-child(3),
  .v2-nav a:nth-child(5),
  .v2-nav a:nth-child(6) {
    display: none;
  }

  .v2-wordmark {
    font-size: 9vw;
  }

  .v2-recognition-grid {
    width: min(880px, 82vw);
  }

  .v2-method-layout {
    grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
    gap: 46px;
  }

  .v2-credentials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .page-shanina-v2 {
    --v2-gutter: 16px;
  }

  .v2-site-header {
    background: linear-gradient(180deg, rgba(10, 8, 6, 0.74), transparent);
  }

  .v2-header-shell {
    min-height: 58px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .v2-mini-brand {
    font-size: 0.62rem;
  }

  .v2-nav {
    display: none;
  }

  .v2-header-cta {
    min-width: 78px;
    padding: 8px 12px;
    font-size: 0.62rem;
  }

  .v2-circle-action {
    width: 126px;
  }

  .v2-registration-shell {
    grid-template-columns: 1fr;
  }

  .v2-registration-name {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--v2-line-dark);
  }

  .v2-registration-grid {
    grid-template-columns: 1fr;
  }

  .v2-registration-grid > div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--v2-line-dark);
  }

  .v2-registration-grid > div:last-child {
    border-bottom: 0;
  }

  .v2-registration-grid strong {
    font-size: 1rem;
  }

  .v2-hero {
    min-height: max(820px, 100svh);
  }

  .v2-hero--portrait {
    min-height: max(900px, 100svh);
  }

  .v2-hero--portrait .v2-hero-media picture {
    top: 218px;
    right: 10px;
    bottom: auto;
    width: min(70vw, 270px);
    height: auto;
    aspect-ratio: 1092 / 1280;
    box-shadow: none;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 8%, #000 91%, transparent 100%);
    mask-image:
      linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 8%, #000 91%, transparent 100%);
  }

  .v2-hero-wallpaper {
    inset: 0;
  }

  .v2-hero-wallpaper .v2-hero-wallpaper-image {
    object-fit: contain;
    object-position: 68% 18% !important;
    opacity: 0.8;
    filter: brightness(0.32) saturate(0.5) contrast(1.08);
    transform: translate3d(-14%, -2%, 0) scale(1.18);
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 10%, #000 42%, transparent 55%);
    mask-image:
      linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 10%, #000 42%, transparent 55%);
  }

  .v2-hero-media .v2-cover-image {
    object-position: 62% center !important;
  }

  .v2-hero-media--portrait .v2-hero-portrait-image {
    object-position: center 28% !important;
  }

  .v2-hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 7, 5, 0.16), rgba(8, 7, 5, 0.15) 30%, rgba(8, 7, 5, 0.88) 72%, rgba(8, 7, 5, 0.96)),
      linear-gradient(90deg, rgba(8, 7, 5, 0.42), transparent 75%);
  }

  .v2-hero--portrait .v2-hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 7, 5, 0.56) 0%, rgba(8, 7, 5, 0.46) 46%, rgba(8, 7, 5, 0.62) 72%, rgba(8, 7, 5, 0.84) 100%),
      linear-gradient(90deg, rgba(8, 7, 5, 0.34), rgba(8, 7, 5, 0.2) 76%, rgba(8, 7, 5, 0.32));
  }

  .v2-pointer-glow {
    display: none;
  }

  .v2-hero-shell {
    min-height: inherit;
    padding-top: 86px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 12px;
  }

  .v2-hero--portrait .v2-hero-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto clamp(285px, calc(248px + 8.8vw), 315px) auto auto;
  }

  .v2-wordmark {
    font-size: clamp(3.4rem, 15.6vw, 4.9rem);
    line-height: 0.82;
    white-space: normal;
  }

  .v2-hero-index {
    grid-template-columns: repeat(3, auto);
    gap: 8px;
    justify-content: space-between;
    font-size: 0.55rem;
  }

  .v2-hero-copy {
    max-width: none;
    align-self: end;
    padding: 0;
  }

  .v2-hero-copy h1 {
    max-width: 13ch;
    margin: 10px 0 16px;
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .v2-hero-copy > p:last-child {
    max-width: 52ch;
    font-size: 0.95rem;
  }

  .v2-hero-action {
    justify-self: center;
    margin: 12px 0;
  }

  .v2-hero--portrait .v2-hero-action {
    position: absolute;
    inset: 410px auto auto var(--v2-gutter);
    width: 110px;
    margin: 0;
  }

  .v2-hero--portrait .v2-hero-copy {
    grid-column: 1;
    grid-row: 4;
    align-self: start;
    padding: 0;
  }

  .v2-hero--portrait .v2-hero-stats {
    grid-row: 5;
  }

  @media (min-width: 560px) {
    .v2-hero-copy h1 {
      font-size: clamp(2.55rem, 9vw, 3.85rem);
    }
  }

  .v2-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    padding-top: 12px;
  }

  .v2-hero-stats div {
    display: grid;
    gap: 6px;
    font-size: 0.55rem;
  }

  .v2-section-intro h2,
  .v2-method-title-wrap .v2-section-intro h2,
  .v2-proof .v2-section-intro h2,
  .v2-faq .v2-section-intro h2,
  .v2-final-copy h2 {
    font-size: clamp(3.3rem, 16.5vw, 5.6rem);
    line-height: 0.82;
  }

  .v2-section-lead {
    margin: 28px 0 0;
  }

  .v2-recognition {
    min-height: 0;
    padding: 110px 0 72px;
  }

  .v2-recognition-media .v2-cover-image {
    object-position: 70% center !important;
  }

  .v2-marquee {
    top: 34%;
    font-size: 5rem;
  }

  .v2-recognition-grid {
    width: 100%;
    margin-top: 200px;
    grid-template-columns: 1fr;
  }

  .v2-glass-card {
    min-height: 0;
    gap: 18px;
  }

  .v2-editorial-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-editorial-action .v2-circle-action {
    align-self: flex-end;
  }

  .v2-reassurance {
    padding: 96px 0;
  }

  .v2-reassurance .v2-section-intro h2 {
    font-size: clamp(3.3rem, 16.5vw, 5.6rem);
    line-height: 0.82;
  }

  .v2-reassurance-grid {
    margin-top: 68px;
    grid-template-columns: 1fr;
  }

  .v2-reassurance-grid article {
    min-height: 0;
  }

  .v2-reassurance-grid h3 {
    max-width: none;
    font-size: 2.55rem;
  }

  .v2-method {
    padding: 96px var(--v2-gutter);
  }

  .v2-method-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .v2-method-visual {
    position: relative;
    top: auto;
    height: min(118vw, 650px);
  }

  .v2-method-step summary {
    min-height: 96px;
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    gap: 12px;
  }

  .v2-method-step summary strong {
    font-size: 1.55rem;
  }

  .v2-method-answer {
    padding: 0 0 32px 56px;
  }

  .v2-method-scope {
    margin-top: 68px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .v2-benefits,
  .v2-proof,
  .v2-faq {
    padding: 96px 0;
  }

  .v2-benefit-list,
  .v2-faq-list {
    margin-top: 68px;
  }

  .v2-benefit-row {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .v2-benefit-row h3 {
    max-width: none;
    font-size: 2.2rem;
  }

  .v2-benefit-row p {
    grid-column: 2;
  }

  .v2-rating-strip {
    margin-top: 66px;
  }

  .v2-testimonial-card {
    min-width: 88vw;
    min-height: 390px;
  }

  .v2-testimonial-card > p {
    font-size: 2.25rem;
  }

  .v2-carousel-controls {
    justify-content: space-between;
  }

  .v2-proof-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-proof-source-links {
    width: 100%;
  }

  .v2-authority {
    min-height: 0;
    padding: 108px 0 82px;
  }

  .v2-authority-backdrop .v2-cover-image {
    object-position: 68% center !important;
  }

  .v2-authority-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v2-authority-name {
    grid-column: 1;
    margin-bottom: 66px;
    font-size: 15.8vw;
    text-align: left;
  }

  .v2-authority-copy {
    padding: 26px 20px;
  }

  .v2-authority-statement {
    padding-left: 18px;
  }

  .v2-doctor-card {
    min-height: 430px;
  }

  .v2-credentials {
    grid-column: 1;
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .v2-credentials article {
    min-height: 0;
  }

  .v2-authority .v2-editorial-action {
    grid-column: 1;
  }

  .v2-faq-item summary {
    min-height: 96px;
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    gap: 12px;
  }

  .v2-faq-item summary strong {
    font-size: 1.55rem;
  }

  .v2-faq-item > div {
    padding: 0 0 32px 54px;
  }

  .v2-final {
    min-height: 880px;
    padding: 100px 0 34px;
  }

  .v2-final-media .v2-cover-image {
    object-position: 58% center !important;
  }

  .v2-final-shade {
    background: linear-gradient(180deg, rgba(9, 8, 6, 0.12), rgba(9, 8, 6, 0.66) 42%, rgba(9, 8, 6, 0.98) 74%);
  }

  .v2-final-shell {
    min-height: 746px;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .v2-final-copy h2 {
    max-width: 10ch;
  }

  .v2-final-actions {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-proof-carousel.is-enhanced .lp-proof-track {
    transition: none;
  }
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.1);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding-right: 34px;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  transition:
    transform var(--motion-base) var(--ease-standard),
    color var(--motion-base) var(--ease-standard);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--motion-base) var(--ease-standard);
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item p {
  min-height: 0;
  overflow: hidden;
  padding: 0 0 24px;
  color: var(--ink-soft);
}

.lp-authority {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: center;
}

.lp-authority-copy {
  display: grid;
  gap: 16px;
}

.lp-authority-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 22ch;
}

.lp-authority-identity {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 161, 90, 0.20);
}

.lp-authority-identity h3 {
  font-size: 1.3rem;
}

.lp-authority-identity p {
  color: var(--ink-soft);
}

.lp-authority-formation-label {
  margin-top: 30px;
  font-weight: 700;
  color: var(--ink);
}

.lp-authority-credentials {
  margin-top: 14px;
}

.lp-section-closing {
  max-width: 820px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.72;
}

.lp-authority-closing {
  max-width: 900px;
}

.lp-indicators {
  overflow: clip;
  background:
    radial-gradient(circle at 12% 0%, rgba(198, 161, 90, 0.18), transparent 30%),
    radial-gradient(circle at 90% 72%, rgba(94, 74, 103, 0.42), transparent 34%),
    linear-gradient(135deg, var(--royal-purple-strong), var(--royal-purple));
  color: #F6F6F3;
}

.lp-indicators .eyebrow {
  color: var(--gold);
}

.lp-indicators .section-header h2 {
  color: #F6F6F3;
}

.lp-indicator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(198, 161, 90, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(246, 246, 243, 0.05);
  overflow: hidden;
}

.lp-indicator-card {
  min-width: 0;
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid rgba(198, 161, 90, 0.18);
}

.lp-indicator-card:last-child {
  border-right: 0;
}

.lp-indicator-card strong {
  color: #F6F6F3;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.lp-indicator-card span {
  max-width: 20ch;
  color: rgba(246, 246, 243, 0.70);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lp-section-action {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.1);
}

.lp-section-action-copy {
  max-width: 56ch;
  text-align: center;
}

.lp-section-action .hero-actions {
  margin-top: 0;
  justify-content: center;
}

.lp-subtle-cta {
  text-align: center;
  font-size: 1.04rem;
  color: var(--ink-soft);
}

.lp-subtle-cta .text-link {
  font-weight: 700;
}

.section--cta-subtle {
  padding: 48px 0;
}

.lp-final-cta {
  padding-top: 18px;
}

.lp-final-cta-card {
  display: grid;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(198, 161, 90, 0.13), transparent 48%),
    radial-gradient(circle at 50% 100%, rgba(43, 23, 56, 0.06), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70));
  border-color: rgba(198, 161, 90, 0.24);
  border-width: 2px;
}

.lp-final-cta-card .eyebrow,
.lp-final-cta-card .hero-pills,
.lp-final-cta-card .hero-actions {
  justify-content: center;
}

.lp-final-cta-card h2 {
  max-width: 18ch;
  margin: 0 auto;
  line-height: 1.04;
}

.lp-final-cta-lead {
  max-width: 46ch;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.lp-final-cta-card .hero-actions {
  margin-top: 2px;
  gap: 16px;
}

.lp-final-microcopy {
  max-width: 56ch;
  margin: -4px auto 0;
  color: var(--ink-faint);
  font-size: 0.9rem;
}

.lp-final-contact {
  display: grid;
  gap: 4px;
  max-width: 620px;
  width: 100%;
  margin: 2px auto 0;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-style: normal;
}

.lp-final-contact strong {
  margin-bottom: 4px;
  color: var(--ink);
}

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

.blog-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
}

.blog-card h3 {
  font-size: 1.34rem;
}

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

.video-card a {
  display: block;
  overflow: hidden;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--surface-soft);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--motion-slow) var(--ease-standard),
    filter var(--motion-slow) var(--ease-standard);
}

.video-play {
  position: absolute;
  inset: auto auto 14px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent);
  font-size: 1.1rem;
  box-shadow: 0 18px 36px rgba(28, 25, 23, 0.16);
  transition:
    transform var(--motion-base) var(--ease-standard),
    background-color var(--motion-base) var(--ease-standard);
}

.video-card a:hover .video-thumb img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.video-card a:hover .video-play {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 255, 255, 0.70);
}

.video-body {
  padding: 20px;
  display: grid;
  gap: 8px;
}

.video-body h3 {
  font-size: 1.02rem;
  line-height: 1.38;
}

.video-body p {
  font-size: 0.88rem;
}

.service-summary-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  margin-bottom: 22px;
}

.service-media-detail {
  margin: 0 0 22px;
  display: grid;
  justify-items: center;
}

.service-media-detail .media-figure {
  justify-self: center;
}

.service-summary-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  max-width: 24ch;
}

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

.service-panel,
.recovery-card,
.related-card {
  padding: 28px;
}

.service-panel {
  display: grid;
  gap: 14px;
}

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

.lp-benefit-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 200px;
}

.lp-benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(184, 151, 106, 0.1);
}

.benefit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
}

.benefit-dot {
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(184, 151, 106, 0.1);
}

.recovery-card,
.related-card {
  margin-top: 22px;
}

.related-card {
  display: grid;
  gap: 14px;
}

.empty-card {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.1);
  box-shadow: var(--shadow-sm);
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.prose p + p {
  margin-top: 16px;
}

.prose ul,
.prose ol {
  margin: 18px 0;
  padding-left: 22px;
}

.prose li + li {
  margin-top: 8px;
}

.prose img,
.prose video {
  border-radius: var(--radius-md);
  margin: 28px 0;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  position: relative;
  padding: 112px 0;
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70));
  border-top: 1px solid rgba(184, 151, 106, 0.08);
  overflow: clip;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 151, 106, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(237, 233, 228, 0), rgba(184, 151, 106, 0.12));
  background-size: 140% 140%;
  opacity: 0.92;
  pointer-events: none;
}

html.has-motion body.motion-enabled .cta-band::before {
  animation: gradientDrift 22s ease-in-out infinite alternate;
}

.cta-band-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-copy {
  display: grid;
  gap: 18px;
  max-width: 700px;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 24ch;
}

.cta-copy p:last-of-type {
  color: var(--ink-soft);
  max-width: 54ch;
}

.cta-art {
  display: grid;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 151, 106, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.site-footer {
  padding: 56px 0 40px;
  border-top: 1px solid rgba(184, 151, 106, 0.08);
  background: rgba(255, 255, 255, 0.70);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.footer-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-specialty {
  color: var(--ink-faint);
}

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

.footer-col {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 151, 106, 0.08);
  color: var(--ink-faint);
  font-size: 0.88rem;
}

/* ── Compact footer (LPs) ────────────────────────────── */
.site-footer--compact .footer-bottom {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  text-align: center;
}

.page-landing .site-footer--compact {
  background: #111014;
  border-top-color: rgba(198, 161, 90, 0.20);
}

.page-landing .site-footer--compact .footer-name {
  color: #F6F6F3;
}

.page-landing .site-footer--compact .footer-specialty,
.page-landing .site-footer--compact .landing-footer-contact,
.page-landing .site-footer--compact .landing-footer-notice,
.page-landing .site-footer--compact .footer-bottom {
  color: rgba(246, 246, 243, 0.62);
}

.landing-footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: start;
}

.landing-footer-contact {
  display: grid;
  gap: 4px;
}

.landing-footer-contact a:hover {
  color: var(--gold);
}

.landing-footer-notice {
  max-width: 860px;
  margin-top: 28px;
  font-size: 0.88rem;
  line-height: 1.65;
}

.page-landing .site-footer--compact .footer-bottom {
  margin-top: 28px;
  border-top-color: rgba(198, 161, 90, 0.16);
}

.footer-legal {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal a {
  color: var(--ink-faint);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-standard);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ── Skip navigation ─────────────────────────────────── */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-nav:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  outline: 3px solid var(--accent-strong);
  outline-offset: 2px;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.28);
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
}

  .floating-wa:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 54px rgba(37, 211, 102, 0.32);
  }

@media (max-width: 1080px) {
  .trust-grid,
  .credentials-grid,
  .blog-grid,
  .benefit-grid,
  .video-grid,
  .lp-problem-grid,
  .lp-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-problem-card:first-child {
    grid-column: 1 / -1;
  }

  .lp-indicator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-indicator-card {
    border-bottom: 1px solid rgba(198, 161, 90, 0.18);
  }

  .lp-indicator-card:nth-child(2n) {
    border-right: 0;
  }

  .lp-indicator-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .support-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero--split .hero-shell,
  .hero--compact .hero-shell,
  .journey-layout,
  .feature-panel,
  .cta-band-shell,
  .lp-authority {
    grid-template-columns: 1fr;
  }

  .hero--split .hero-shell {
    min-height: auto;
  }

  .hero--immersive .hero-shell {
    min-height: auto;
  }

  .hero--immersive .hero-copy {
    max-width: 100%;
    padding: 0;
  }

  .hero--immersive .hero-copy h1 {
    max-width: 8.8ch;
    font-size: clamp(3rem, 8vw, 5.2rem);
  }

  .page-landing .hero--immersive .hero-shell {
    width: min(var(--max), calc(100% - 32px));
    min-height: clamp(540px, calc(100svh - 120px), 680px);
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
    gap: clamp(20px, 3vw, 36px);
  }

  .page-landing .hero--immersive .hero-copy {
    max-width: 600px;
    padding: 38px 0 32px;
  }

  .page-landing .hero--immersive .hero-copy h1 {
    max-width: min(560px, 100%);
    font-size: clamp(2.35rem, 4vw, 3.1rem);
    line-height: 1.02;
  }

  .page-landing .hero--immersive .hero-lead {
    max-width: 42ch;
  }

  .page-landing .hero--immersive .hero-visual {
    min-height: clamp(540px, calc(100svh - 120px), 680px);
    margin-left: 0;
  }

  .lp-context-shell,
  .landing-footer-content {
    grid-template-columns: 1fr;
  }

  .hero--cutout .hero-shell {
    width: min(1560px, calc(100% - 24px));
    min-height: calc(100svh - 112px);
    grid-template-columns: minmax(0, 1.58fr) minmax(270px, 1fr);
    gap: 16px;
  }

  .page-landing .hero--cutout .hero-shell {
    width: min(1320px, calc(100% - 40px));
    min-height: clamp(620px, calc(100svh - 180px), 760px);
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 1fr);
    align-items: center;
    gap: 16px;
  }

  .page-landing .hero--cutout {
    --landing-hero-image-height: 610px;
    --landing-hero-image-shift: -28px;
    --landing-hero-visual-min-height: var(--landing-hero-image-height);
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .page-landing .hero--cutout .hero-copy {
    max-width: 600px;
    padding-top: 0;
  }

  .page-landing .hero--cutout .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.55rem, 4.1vw, 3.7rem);
  }

  .page-landing .hero--cutout .hero-lead {
    max-width: 38ch;
  }

  .page-landing .hero--cutout .hero-visual {
    min-height: var(--landing-hero-visual-min-height);
    justify-content: flex-start;
    margin-left: -100px;
  }

  .page-landing .hero-cutout {
    min-height: var(--landing-hero-visual-min-height);
  }

  .hero--cutout .hero-copy h1 {
    max-width: 9.6ch;
    font-size: clamp(2.95rem, 6.1vw, 4.7rem);
  }

  .hero--cutout .hero-lead {
    max-width: 40ch;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero--immersive .hero-visual {
    position: relative;
    inset: auto;
    min-height: 390px;
    margin-top: 0;
    margin-left: 0;
    pointer-events: auto;
  }

  .hero--split .hero-visual {
    min-height: auto;
  }

  .hero--immersive .hero-photo-card--immersive {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 390px;
    border-radius: 38px;
    box-shadow: var(--shadow-md);
  }

  .hero--immersive .hero-photo-card--immersive::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 251, 0.96) 0%, rgba(255, 253, 251, 0.42) 22%, rgba(255, 253, 251, 0) 46%),
      linear-gradient(180deg, rgba(237, 233, 228, 0.14), rgba(237, 233, 228, 0));
  }

  .hero--cutout .hero-visual {
    min-height: 470px;
  }

  .hero-cutout {
    min-height: 470px;
  }

  .hero-cutout img {
    width: min(100%, 500px);
  }

  .journey-art {
    position: static;
  }

  .service-detail-grid,
  .treatment-group-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-shell {
    min-height: 74px;
  }

  .brand-meta,
  .header-cta {
    display: none;
  }

  .site-header--landing .header-cta {
    display: inline-flex;
    width: auto;
    min-height: 48px;
    padding: 0 18px;
  }

  .site-header--landing .header-shell {
    justify-content: space-between;
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 74px 18px auto 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(184, 151, 106, 0.1);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    clip-path: inset(0 0 100% 0 round 24px);
    transition:
      opacity var(--motion-fast) var(--ease-standard),
      transform var(--motion-base) var(--ease-standard),
      clip-path var(--motion-base) var(--ease-standard),
      visibility 0s linear var(--motion-base);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 24px);
    transition:
      opacity var(--motion-fast) var(--ease-standard),
      transform var(--motion-base) var(--ease-standard),
      clip-path var(--motion-base) var(--ease-standard);
  }

  .nav-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-link {
    min-height: 48px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
  }

  .trust-grid,
  .intent-grid,
  .support-grid,
  .content-grid,
  .credentials-grid,
  .testimonial-grid,
  .blog-grid,
  .benefit-grid,
  .video-grid,
  .footer-grid,
  .lp-problem-grid,
  .lp-benefit-grid {
    grid-template-columns: 1fr;
  }

  .lp-public-ratings-grid {
    grid-template-columns: 1fr;
  }

  .lp-proof-track {
    grid-template-columns: 1fr;
  }

  .lp-proof-carousel.is-enhanced .lp-proof-slide {
    flex-basis: 100%;
  }

  .page-landing .lp-proof-slide {
    min-height: 360px;
    padding: 24px;
    gap: 22px;
  }

  .page-landing .lp-proof-slide .lp-proof-quote {
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-shell,
  .header-shell,
  .section-shell,
  .footer-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 10vw, 4rem);
  }

  .hero--cutout {
    padding-top: 18px;
  }

  .hero--cutout .hero-shell {
    width: min(var(--max), calc(100% - 32px));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-landing .hero--cutout {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .page-landing .hero--cutout .hero-shell {
    width: min(var(--max), calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero--immersive .hero-copy {
    max-width: 100%;
    padding: 0;
  }

  .hero--immersive .hero-copy h1 {
    max-width: 8.2ch;
    font-size: clamp(2.9rem, 12vw, 4.6rem);
  }

  .page-landing .hero--immersive {
    padding-top: 12px;
    padding-bottom: 28px;
    background:
      linear-gradient(
        180deg,
        #120919 0%,
        #24122F 58%,
        #3B2747 70%,
        #E8E8E6 84%,
        #F6F6F3 100%
      );
  }

  .page-landing .hero--immersive::before {
    background:
      radial-gradient(circle at 18% 8%, rgba(198, 161, 90, 0.14), transparent 28%),
      radial-gradient(circle at 82% 80%, rgba(246, 246, 243, 0.36), transparent 30%),
      linear-gradient(180deg, rgba(18, 9, 25, 0), rgba(18, 9, 25, 0.08));
  }

  .page-landing .hero--immersive .hero-shell {
    width: min(var(--max), calc(100% - 32px));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-landing .hero--immersive .hero-copy {
    max-width: none;
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .page-landing .hero--immersive .hero-copy h1 {
    max-width: min(540px, 100%);
    width: 100%;
    margin: 2px 0 0;
    font-size: clamp(1.95rem, 6.8vw, 2.55rem);
    line-height: 1.02;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .page-landing .hero--immersive .eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .page-landing .hero--immersive .hero-lead {
    max-width: min(520px, 100%);
    margin-top: 10px;
    font-size: clamp(0.94rem, 2.8vw, 1rem);
    line-height: 1.52;
  }

  .page-landing .hero--immersive .hero-actions {
    margin-top: 16px;
  }

  .page-landing .hero--immersive .hero-microauthority {
    max-width: min(520px, 100%);
    margin-top: 18px;
    font-size: 0.86rem;
  }

  .page-landing .hero--immersive .hero-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .page-landing .hero--immersive .hero-pill {
    justify-content: flex-start;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .page-landing .hero--immersive .hero-visual {
    min-height: 0;
    justify-content: center;
    margin: 0;
  }

  .page-landing .hero--immersive .hero-photo-card--immersive {
    width: calc(100vw - 32px);
    max-width: 520px;
    min-height: clamp(230px, 58vw, 340px);
    height: clamp(230px, 58vw, 340px);
    margin: 0 auto;
    justify-self: center;
    border-radius: 28px;
  }

  .page-landing .hero--immersive .hero-photo-card--immersive::after {
    background:
      linear-gradient(180deg, rgba(18, 9, 25, 0.76) 0%, rgba(18, 9, 25, 0.24) 26%, rgba(18, 9, 25, 0) 52%),
      linear-gradient(0deg, rgba(7, 6, 9, 0.32), rgba(7, 6, 9, 0));
  }

  .page-landing .hero--immersive .hero-photo-card--immersive img {
    filter: saturate(0.96) contrast(1.05) brightness(0.98);
  }

  .hero--cutout .hero-copy {
    padding: 0;
  }

  .hero--cutout .hero-copy h1 {
    max-width: 8.9ch;
    font-size: clamp(2.7rem, 11.2vw, 4.2rem);
  }

  .page-landing .hero--cutout .hero-copy h1 {
    max-width: 9.2ch;
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .page-landing .hero--cutout .hero-lead {
    max-width: 100%;
  }

  .page-home .hero--cutout .hero-shell {
    width: min(var(--max), calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-home .hero--cutout .eyebrow {
    white-space: nowrap;
    letter-spacing: 0.12em;
  }

  .page-home .hero--cutout .hero-copy h1 {
    max-width: 9.6ch;
    font-size: clamp(2.55rem, 10.8vw, 3.8rem);
  }

  .page-home .hero--cutout .hero-copy {
    max-width: none;
    width: 100%;
  }

  .page-home .hero--cutout .hero-title-line {
    display: inline;
  }

  .page-home .hero--cutout .hero-title-line + .hero-title-line::before {
    content: ' ';
  }

  .page-home .hero--cutout .hero-lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.62;
  }

  .page-home .hero--cutout .hero-actions {
    margin-top: 22px;
  }

  .page-landing .hero-pills {
    gap: 10px;
  }

  .page-landing .hero--cutout .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .page-landing .hero--cutout .hero-lead {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-top: 12px;
  }

  .page-landing .hero--cutout .hero-actions {
    margin-top: 18px;
  }

  .page-landing .hero--cutout .hero-copy {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .page-landing .hero--cutout .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 0.96;
    margin-top: 8px;
  }

  .page-landing .hero--cutout .hero-visual {
    min-height: 0;
    justify-content: center;
    padding-right: 0;
    margin-left: 0;
  }

  .page-landing #quando-avaliar .section-header h2 {
    max-width: 100%;
    font-size: clamp(2rem, 6.2vw, 2.75rem);
    line-height: 1.05;
  }

  .page-landing .hero-cutout {
    width: auto;
    min-height: 0;
    margin: 6px auto 0;
  }

  .page-landing .hero-cutout img {
    width: auto;
    height: 240px;
    transform: none;
  }

  .hero--cutout .hero-lead {
    max-width: 34ch;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero--immersive .hero-visual {
    min-height: 320px;
  }

  .hero--cutout .hero-visual {
    min-height: 0;
    justify-content: center;
  }

  .hero-cutout {
    width: min(100%, 390px);
    min-height: 310px;
    margin: 6px auto 0;
  }

  .hero-cutout::before {
    inset: auto 50% 8% auto;
    width: 82%;
    transform: translateX(18%);
  }

  .hero-cutout img {
    width: min(100%, 370px);
  }

  .page-home .hero--cutout .hero-visual {
    margin-top: 6px;
    padding: 0;
  }

  .page-home .hero-cutout {
    margin-top: 0;
  }

  .hero-photo-card {
    inset: 0;
  }

  .hero--immersive .hero-photo-card--immersive {
    min-height: 320px;
    border-radius: 32px;
  }

  .hero--split .hero-photo-card {
    min-height: 320px;
  }

  .hero-illustration-card {
    width: min(72%, 300px);
    bottom: 0;
  }

  .hero--split .hero-illustration-card {
    width: min(78%, 280px);
    margin-left: auto;
  }

  .hero--compact .hero-illustration-card {
    inset: 12px 0 12px 12px;
  }

  .media-caption {
    font-size: 0.84rem;
  }

  .lp-problem-card,
  .lp-benefit-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .page-landing .section {
    padding: 68px 0;
  }

  .page-landing #quando-avaliar {
    padding-top: 56px;
  }

  .lp-indicator-grid {
    grid-template-columns: 1fr;
  }

  .lp-indicator-card,
  .lp-indicator-card:nth-child(2n),
  .lp-indicator-card:nth-last-child(-n + 2) {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(198, 161, 90, 0.18);
  }

  .lp-indicator-card:last-child {
    border-bottom: 0;
  }

  .lp-proof-status {
    flex-basis: 100%;
  }

  .site-header--landing .header-shell {
    width: calc(100% - 24px);
  }

  .site-header--landing .brand {
    gap: 10px;
  }

  .site-header--landing .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .site-header--landing .brand-copy {
    min-width: 0;
  }

  .site-header--landing .brand-name {
    max-width: none;
    overflow: visible;
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .site-header--landing .landing-brand-full {
    display: none;
  }

  .site-header--landing .landing-brand-short {
    display: inline;
  }

  .site-header--landing .header-cta {
    min-height: 44px;
    padding: 0 13px;
    font-size: 0.84rem;
  }

  .section,
  .cta-band {
    padding: 68px 0;
  }

  .hero-copy h1,
  .section-header h2,
  .cta-copy h2 {
    max-width: 100%;
  }

  .content-card,
  .trust-card,
  .credential-card,
  .blog-card,
  .lp-problem-card,
  .lp-benefit-card,
  .lp-final-cta-card,
  .service-summary-card,
  .service-panel,
  .recovery-card,
  .related-card,
  .prose,
  .testimonial-card,
  .journey-step,
  .treatment-group-card,
  .feature-panel,
  .empty-card {
    padding: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .timeline-marker {
    width: 52px;
    height: 52px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header--landing .btn,
  .site-header--landing .header-cta {
    width: auto;
  }

  .site-header--landing .brand-name {
    font-size: 0.94rem;
  }

  .lp-section-action {
    padding: 22px;
  }

  .lp-benefit-card {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .group-icon,
  .card-icon {
    width: 64px;
    height: 64px;
  }

  .media-tip {
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .media-caption {
    font-size: 0.8rem;
  }

  .floating-wa {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .floating-wa svg {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
