:root {
  --primary: #7B5BA6;
  --accent: #C74B7F;
  --bg: #F6F1FB;
  --surface: #FBF8FD;
  --text: #2E2438;
  --text-soft: #5D4D6E;
  --white: #FFFFFF;
  --line: rgba(46, 36, 56, 0.12);
  --soft-pink: #EBCFE0;
  --bg-main: var(--bg);
  --text-main: var(--text);
  --accent-soft: rgba(199, 75, 127, 0.16);
  --cta: var(--primary);
  --cta-soft: rgba(123, 91, 166, 0.14);
  --surface-strong: #EFE7F7;
  --surface-glass: rgba(251, 248, 253, 0.84);
  --line-strong: rgba(46, 36, 56, 0.18);
  --shadow-soft: 0 28px 60px rgba(46, 36, 56, 0.08);
  --shadow-card: 0 18px 36px rgba(46, 36, 56, 0.08);
  --container: 1180px;
  --radius-xl: 44px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --transition: 220ms ease;
  --hero-parallax: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 16% 20%, rgba(199, 75, 127, 0.09), transparent 0 24%),
    radial-gradient(circle at 84% 18%, rgba(123, 91, 166, 0.11), transparent 0 19%),
    radial-gradient(circle at 40% 78%, rgba(199, 75, 127, 0.07), transparent 0 20%),
    var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
}

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

body::before {
  opacity: 0.2;
  background-image:
    radial-gradient(rgba(46, 36, 56, 0.08) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.45) 0.9px, transparent 0.9px);
  background-position: 0 0, 12px 10px;
  background-size: 22px 22px, 28px 28px;
  mix-blend-mode: multiply;
}

body::after {
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent 8%, rgba(46, 36, 56, 0.035) 8.15%, transparent 8.3%),
    linear-gradient(90deg, transparent 91.5%, rgba(46, 36, 56, 0.04) 91.65%, transparent 91.8%);
}

::selection {
  background: rgba(199, 75, 127, 0.22);
  color: var(--text-main);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(252, 250, 253, 0.82);
  border-bottom: 1px solid rgba(46, 36, 56, 0.08);
}

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

.header-inner {
  min-height: 82px;
}

.brand-block,
.footer-inner > div {
  display: grid;
  gap: 0.18rem;
}

.brand-name {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.86);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  font-size: 0.96rem;
}

.top-nav a,
.mobile-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.top-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(46, 36, 56, 0.14);
  border-radius: 50%;
  background: rgba(251, 248, 253, 0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-panel {
  border-top: 1px solid rgba(46, 36, 56, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.mobile-nav {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}

.hero-section {
  position: relative;
  padding: 5.4rem 0 4.8rem;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto auto 0 8%;
  width: 160px;
  height: 1px;
  background: rgba(46, 36, 56, 0.2);
}

.hero-backdrop {
  position: absolute;
  inset: 2.8rem 0 auto;
  height: 560px;
  pointer-events: none;
  transform: translateY(var(--hero-parallax));
  background:
    radial-gradient(circle at 22% 35%, rgba(199, 75, 127, 0.16), transparent 0 28%),
    radial-gradient(circle at 76% 28%, rgba(123, 91, 166, 0.16), transparent 0 24%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(239, 231, 247, 0.7));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  padding-right: 1rem;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 1.1rem;
  width: 1px;
  height: 118px;
  background: linear-gradient(to bottom, rgba(46, 36, 56, 0.28), transparent);
}

.hero-copy h1,
.section-heading h2,
.cta-card h2,
.about-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.85rem, 6vw, 5.7rem);
}

.hero-text,
.section-heading p,
.about-copy p,
.mode-card p,
.site-footer p,
.panel-intro,
.photo-note {
  margin: 0;
  font-size: 1.04rem;
  color: var(--text-soft);
}

.hero-text {
  max-width: 57ch;
  margin-top: 1.55rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-primary {
  color: var(--white);
  background: var(--cta);
}

.btn-secondary {
  color: var(--white);
  background: var(--accent);
}

.btn-light {
  color: var(--text-main);
  background: var(--surface);
}

.hero-art {
  display: flex;
  justify-content: flex-end;
}

.hero-art-card {
  position: relative;
  width: min(100%, 430px);
  padding: 2.3rem 2.3rem 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 253, 0.84));
  border: 1px solid rgba(46, 36, 56, 0.1);
  border-radius: 30px 44px 96px 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: translateY(1.4rem);
}

.hero-art-card::before,
.hero-art-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-art-card::before {
  right: 1.2rem;
  top: 1rem;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(235, 207, 224, 0.7);
}

.hero-art-card::after {
  left: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(235, 207, 224, 0.8), transparent 72%);
}

.art-label,
.card-index,
.benefit-number,
.photo-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.art-label {
  color: rgba(46, 36, 56, 0.62);
}

.art-label::before,
.photo-note::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.quote-mark {
  margin: 0.25rem 0 0.9rem;
  color: var(--accent);
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 5.4rem;
  line-height: 0.7;
}

.hero-quote,
.highlight-quote {
  margin: 0;
  font-family: "Cormorant", serif;
  font-style: italic;
}

.statement-text {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: normal;
}

.hero-quote {
  max-width: 11ch;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.hero-art-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.hero-signature {
  display: inline-block;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(46, 36, 56, 0.25), transparent);
}

.content-section,
.statement-section,
.cta-section {
  position: relative;
  padding: 2.4rem 0 6rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
}

.section-heading h2,
.cta-card h2,
.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.identification-section .section-heading {
  max-width: 620px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.4rem;
}

.soft-card,
.list-panel,
.benefit-item,
.mode-card,
.statement-shell,
.about-copy {
  background: rgba(251, 248, 253, 0.86);
  border: 1px solid rgba(46, 36, 56, 0.08);
  box-shadow: var(--shadow-card);
}

.soft-card {
  position: relative;
  min-height: 210px;
  padding: 1.45rem 1.55rem 1.6rem;
  border-radius: 24px 24px 38px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.soft-card::after {
  content: "";
  position: absolute;
  inset: auto 1.55rem 1.2rem;
  height: 1px;
  background: linear-gradient(to right, rgba(46, 36, 56, 0.18), transparent);
}

.soft-card:nth-child(1),
.soft-card:nth-child(2),
.soft-card:nth-child(3) {
  grid-column: span 2;
}

.soft-card:nth-child(2) {
  transform: translateY(1.3rem);
}

.soft-card:nth-child(4),
.soft-card:nth-child(5) {
  grid-column: span 3;
}

.soft-card:nth-child(4) {
  border-radius: 28px 24px 56px 24px;
}

.soft-card:nth-child(5) {
  transform: translateY(-0.8rem);
}

.card-index {
  color: rgba(46, 36, 56, 0.56);
}

.soft-card p,
.session-info,
.professional-id {
  margin: 0;
  font-size: 1.06rem;
}

.centered {
  max-width: 17ch;
  margin: 2.75rem auto 0;
  text-align: center;
}

.highlight-quote {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  color: var(--accent);
}

.therapy-section {
  padding-top: 3.2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 2.2rem;
  align-items: start;
}

.therapy-section .split-layout,
.audience-layout {
  position: relative;
}

.therapy-section .split-layout::before {
  content: "";
  position: absolute;
  inset: -1.25rem 0 -1rem;
  border: 1px solid rgba(46, 36, 56, 0.08);
  border-radius: 34px 34px 80px 34px;
  background: linear-gradient(140deg, rgba(251, 248, 253, 0.56), rgba(239, 231, 247, 0.58));
  z-index: -1;
}

.therapy-copy {
  padding: 1.8rem 1.8rem 1.8rem 0.4rem;
}

.therapy-panel,
.audience-panel {
  position: relative;
  padding: 2rem;
  border-radius: 28px 28px 74px 28px;
}

.therapy-panel {
  transform: translateY(2.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 253, 0.84));
}

.panel-intro {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icon-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  position: relative;
  padding-left: 2.2rem;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: var(--cta);
  box-shadow: 0 0 0 6px rgba(123, 91, 166, 0.12);
}

.icon-list.warm li::before {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(235, 207, 224, 0.58);
}

.statement-section {
  padding-top: 0.8rem;
}

.statement-shell {
  position: relative;
  padding: clamp(2.2rem, 4vw, 4.2rem);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 231, 247, 0.78));
  overflow: hidden;
}

.statement-shell::before,
.statement-shell::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(46, 36, 56, 0.18), transparent);
}

.statement-shell::before {
  top: 1.2rem;
}

.statement-shell::after {
  bottom: 1.2rem;
}

.statement-text {
  text-align: center;
  font-size: clamp(2.35rem, 4.6vw, 4.5rem);
  line-height: 1.14;
}

.benefits-section {
  padding-top: 3rem;
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem 2.4rem;
  align-items: start;
}

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

.benefit-item {
  position: relative;
  min-height: 172px;
  padding: 1.4rem 1.4rem 1.5rem;
  border-radius: 28px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  overflow: hidden;
}

.benefit-item::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.15rem;
  height: 1px;
  background: linear-gradient(to right, rgba(46, 36, 56, 0.18), transparent);
}

.benefit-item:nth-child(1),
.benefit-item:nth-child(4) {
  transform: translateY(1rem);
}

.benefit-item:nth-child(1),
.benefit-item:nth-child(5) {
  grid-column: span 2;
}

.benefit-number {
  color: rgba(46, 36, 56, 0.56);
}

.benefit-item span {
  display: block;
  max-width: 24ch;
  font-size: 1.08rem;
  padding-right: 1.5rem;
}

.about-section {
  padding-top: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 0.92fr);
  gap: 1.6rem;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
  padding: 1rem 1rem 2rem;
  transform: translateY(-1rem);
}

.about-photo-wrap::before,
.about-photo-wrap::after {
  content: "";
  position: absolute;
}

.about-photo-wrap::before {
  left: 0;
  top: 5%;
  width: 100%;
  height: 88%;
  border: 1px solid rgba(46, 36, 56, 0.1);
  border-radius: 46% 54% 36% 64% / 42% 34% 66% 58%;
  transform: rotate(-4deg);
}

.about-photo-wrap::after {
  right: -1rem;
  bottom: 3rem;
  width: 160px;
  height: 160px;
  border-radius: 62% 38% 52% 48% / 42% 57% 43% 58%;
  background: rgba(235, 207, 224, 0.9);
}

.about-photo-frame {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), rgba(239, 231, 247, 0.6));
  padding: 1.4rem 1rem 0.4rem;
  border-radius: 40% 60% 58% 42% / 32% 38% 62% 68%;
  box-shadow: var(--shadow-soft);
}

.about-photo-frame::before {
  content: "";
  position: absolute;
  inset: 14% 8% 10%;
  border-radius: 42% 58% 40% 60% / 34% 30% 70% 66%;
  background:
    radial-gradient(circle at 50% 22%, rgba(235, 207, 224, 0.9), transparent 58%),
    radial-gradient(circle at 58% 72%, rgba(235, 207, 224, 0.62), transparent 52%);
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(46, 36, 56, 0.16));
}

.photo-note {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  color: rgba(46, 36, 56, 0.56);
}

.about-copy {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 2.2rem 2.1rem 2rem;
  border-radius: 26px 26px 72px 26px;
  margin-top: 5rem;
  margin-left: -3.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 231, 247, 0.78));
}

.about-copy::before {
  content: "";
  position: absolute;
  left: 2.1rem;
  top: -1.2rem;
  width: 72px;
  height: 1px;
  background: rgba(46, 36, 56, 0.24);
}

.professional-id {
  margin-top: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-section .section-heading,
.audience-section .section-heading {
  max-width: 620px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.mode-card {
  position: relative;
  padding: 2rem;
  border-radius: 30px 30px 60px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 231, 247, 0.8));
}

.mode-card::after {
  content: "";
  position: absolute;
  inset: auto 2rem 1.3rem;
  height: 1px;
  background: linear-gradient(to right, rgba(46, 36, 56, 0.18), transparent);
}

.mode-card h3 {
  margin: 0.9rem 0 0.55rem;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.mode-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(46, 36, 56, 0.08);
  box-shadow: inset 0 0 0 10px rgba(235, 207, 224, 0.72);
}

.mode-card:last-child .mode-icon {
  box-shadow: inset 0 0 0 10px rgba(235, 207, 224, 0.56);
}

.session-info {
  margin-top: 1.6rem;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-section {
  padding-top: 3rem;
}

.audience-panel {
  background: rgba(251, 248, 253, 0.9);
}

.cta-section {
  padding-bottom: 6.2rem;
}

.cta-card {
  position: relative;
  padding: clamp(2.2rem, 4vw, 4rem);
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(123, 91, 166, 0.26), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--accent);
  border-radius: 42px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-card::before {
  width: 140px;
  height: 140px;
  right: -32px;
  top: -18px;
}

.cta-card::after {
  width: 96px;
  height: 96px;
  left: -28px;
  bottom: -24px;
}

.cta-card h2 {
  color: var(--white);
}

.highlight-quote.light {
  margin: 1rem auto 2rem;
  max-width: 16ch;
  color: var(--white);
}

.section-separator {
  line-height: 0;
  color: var(--surface);
}

.section-separator svg {
  display: block;
  width: 100%;
  height: 86px;
  fill: currentColor;
}

.section-separator.reverse {
  color: rgba(251, 248, 253, 0.86);
}

.site-footer {
  padding: 1.6rem 0 2.5rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.95rem 1.2rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, rgba(123, 91, 166, 1), rgba(101, 72, 146, 1));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.floating-whatsapp-dot {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--soft-pink);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
  color: var(--text-soft);
  transition: color var(--transition), transform var(--transition);
}

.contact-link {
  position: relative;
  display: inline-flex;
  margin-left: 0.35rem;
  color: var(--text-main);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 1px;
  background: rgba(199, 75, 127, 0.45);
  transform-origin: left;
  transition: background-color var(--transition), transform var(--transition);
}

.social-link:hover,
.social-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.floating-whatsapp-label {
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(199, 75, 127, 0.65);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-999px, -999px);
  transition:
    opacity 180ms ease,
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease;
}

.cursor-ring.is-active {
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .benefits-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split-layout,
  .process-grid,
  .audience-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 78px;
  }

  .top-nav {
    display: none;
  }

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

  .hero-copy::before,
  .hero-section::after {
    display: none;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-art {
    justify-content: flex-start;
  }

  .hero-art-card {
    transform: none;
  }

  .cards-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .soft-card,
  .soft-card:nth-child(1),
  .soft-card:nth-child(2),
  .soft-card:nth-child(3),
  .soft-card:nth-child(4),
  .soft-card:nth-child(5),
  .benefit-item,
  .benefit-item:nth-child(1),
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(5) {
    grid-column: auto;
    transform: none;
  }

  .therapy-section .split-layout::before {
    inset: -0.6rem 0 0;
  }

  .therapy-copy {
    padding: 1.6rem 0.4rem 0 0.4rem;
  }

  .therapy-panel {
    transform: none;
  }

  .about-photo-wrap {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero-section {
    padding-top: 3.8rem;
  }

  .header-inner,
  .footer-inner,
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-toggle {
    align-self: flex-end;
    margin-top: -3.35rem;
  }

  .btn,
  .floating-whatsapp {
    width: 100%;
  }

  .hero-art-card,
  .soft-card,
  .mode-card,
  .list-panel,
  .cta-card,
  .statement-shell,
  .about-copy {
    border-radius: 24px;
  }

  .statement-text,
  .highlight-quote,
  .hero-quote {
    text-wrap: balance;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (pointer: coarse) {
  .cursor-ring {
    display: none;
  }
}

