:root {
  --marfil: #f7f2ed;
  --warm-white: #fffdf9;
  --ink: #31495d;
  --rose: #d7a6b4;
  --smoke: #7893aa;
  --sage: #a7b4a0;
  --text: #253746;
  --muted: #667584;
  --line: rgba(49, 73, 93, 0.16);
  --rose-soft: rgba(215, 166, 180, 0.2);
  --sage-soft: rgba(167, 180, 160, 0.22);
  --smoke-soft: rgba(120, 147, 170, 0.16);
  --shadow: 0 24px 72px rgba(49, 73, 93, 0.12);
  --soft-shadow: 0 18px 46px rgba(49, 73, 93, 0.1);
  --radius: 8px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(120, 147, 170, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf9 0%, var(--marfil) 42%, #f5eee9 100%);
  background-size: 88px 88px, auto;
  color: var(--text);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.66;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  width: min(1360px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: opacity 260ms ease, filter 260ms ease, transform 240ms ease;
  animation: headerFloat 7s ease-in-out infinite;
}

body.header-soft .site-header:not(:hover):not(:focus-within) {
  opacity: 0.24;
  filter: saturate(0.78);
}

body.header-soft .site-header:not(:hover):not(:focus-within) .brand,
body.header-soft .site-header:not(:hover):not(:focus-within) .nav,
body.header-soft .site-header:not(:hover):not(:focus-within) .language-switch {
  border-color: rgba(49, 73, 93, 0.04);
  background: rgba(255, 253, 249, 0.1);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

body.header-soft .site-header:not(:hover):not(:focus-within) .brand-logo {
  opacity: 0.38;
}

body.header-soft .site-header:not(:hover):not(:focus-within) .nav a:not(.nav-contact),
body.header-soft .site-header:not(:hover):not(:focus-within) .language-switch button:not([aria-pressed="true"]) {
  color: rgba(49, 73, 93, 0.26);
}

body.header-soft .site-header:not(:hover):not(:focus-within) .nav-reserve {
  background: transparent;
  box-shadow: none;
}

body.header-soft .site-header:not(:hover):not(:focus-within) .nav-contact,
body.header-soft .site-header:not(:hover):not(:focus-within) .language-switch button[aria-pressed="true"] {
  background: rgba(49, 73, 93, 0.22);
  color: rgba(255, 255, 255, 0.62);
}

body.header-soft .site-header:hover,
body.header-soft .site-header:focus-within {
  opacity: 1;
  filter: none;
}

body.header-scrolling .site-header {
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: translateY(0);
}

body.header-scrolling.header-soft .site-header:not(:hover):not(:focus-within) {
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: translateY(0);
}

body.header-idle:not(.nav-open) .site-header:not(:hover):not(:focus-within) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-120%);
}

@keyframes headerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(49, 73, 93, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 242, 237, 0.92)),
    var(--marfil);
  box-shadow: 0 16px 42px rgba(49, 73, 93, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.brand-logo {
  width: auto;
  height: 92px;
  max-width: 98px;
  object-fit: contain;
  transition: transform 240ms ease;
}

.brand:hover {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 1), rgba(247, 242, 237, 0.96)),
    var(--marfil);
  box-shadow: 0 20px 54px rgba(49, 73, 93, 0.12);
  transform: translateY(-2px);
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  justify-self: end;
  padding: 7px;
  border: 1px solid rgba(49, 73, 93, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.92), rgba(247, 242, 237, 0.88)),
    var(--warm-white);
  box-shadow: 0 18px 46px rgba(49, 73, 93, 0.09);
  backdrop-filter: blur(18px);
  color: var(--ink);
  font-size: clamp(0.78rem, 0.72vw, 0.88rem);
  font-weight: 700;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav a::after {
  display: none;
}

.nav a,
.footer a {
  text-underline-offset: 5px;
}

.nav a:hover,
.footer a:hover {
  color: var(--smoke);
  text-decoration: none;
}

.nav a:hover {
  background: rgba(120, 147, 170, 0.15);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(49, 73, 93, 0.08);
  transform: translateY(-2px);
}

.nav a:nth-child(2):hover,
.nav a:nth-child(5):hover {
  background: rgba(167, 180, 160, 0.22);
}

.nav a:nth-child(3):hover,
.nav a:nth-child(6):hover {
  background: rgba(215, 166, 180, 0.22);
}

.nav .nav-reserve {
  background: rgba(215, 166, 180, 0.18);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(215, 166, 180, 0.18);
}

.nav .nav-reserve:hover {
  background: rgba(167, 180, 160, 0.24);
}

.nav .nav-contact {
  background: var(--ink);
  color: white;
  padding-inline: clamp(18px, 1.65vw, 28px);
}

.nav .nav-contact:hover {
  background: var(--rose);
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
  padding: 5px;
  border: 1px solid rgba(49, 73, 93, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(247, 242, 237, 0.9)),
    var(--warm-white);
  box-shadow: 0 14px 34px rgba(49, 73, 93, 0.08);
  backdrop-filter: blur(16px);
}

.language-switch button {
  min-width: 42px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(49, 73, 93, 0.68);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.language-switch button:hover {
  background: rgba(215, 166, 180, 0.2);
  color: var(--ink);
  transform: translateY(-1px);
}

.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(49, 73, 93, 0.14);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  isolation: isolate;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.button:focus-visible {
  outline: 3px solid rgba(215, 166, 180, 0.52);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--ink);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(8px, 1.5vw, 16px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 253, 249, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(135deg, #e2b3c0, var(--rose)),
    var(--rose);
  color: white;
  font-weight: 800;
  box-shadow:
    0 18px 42px rgba(215, 166, 180, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
  animation: whatsappBreath 4.8s ease-in-out infinite;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -9px;
  display: block;
  border: 1px solid rgba(215, 166, 180, 0.5);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.9);
  animation: whatsappRing 4.8s ease-in-out infinite;
}

.floating-whatsapp svg {
  position: relative;
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: transform 220ms ease;
}

.floating-whatsapp:hover {
  background:
    linear-gradient(135deg, #d99eae, #c9899b),
    var(--rose);
  box-shadow:
    0 22px 54px rgba(215, 166, 180, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transform: translateY(-4px);
  animation-play-state: paused;
}

.floating-whatsapp:hover svg {
  transform: rotate(-7deg) scale(1.08);
}

@keyframes whatsappBreath {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes whatsappRing {
  0%,
  56%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
  68% {
    opacity: 0.6;
  }
  88% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes credentialDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section,
.hero {
  scroll-margin-top: 76px;
  width: min(var(--content), calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(540px, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: min(1540px, calc(100% - 380px));
  min-height: calc(68svh - 62px);
  padding: clamp(58px, 5.2vw, 78px) 0 clamp(10px, 1.2vw, 18px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: clamp(24px, 4vw, 54px) auto auto 50%;
  z-index: -2;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-radius: 52% 48% 58% 42%;
  background:
    linear-gradient(135deg, rgba(215, 166, 180, 0.36), rgba(167, 180, 160, 0.28), rgba(120, 147, 170, 0.16)),
    var(--marfil);
  filter: blur(0.2px);
}

.hero-copy {
  position: relative;
}

.hero-copy::before,
.quote-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(215, 166, 180, 0.5);
  border-radius: 48% 52% 45% 55%;
  transform: rotate(-16deg);
}

.hero-copy::before {
  top: -38px;
  left: -38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--smoke);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
blockquote p {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  max-width: 710px;
  font-size: clamp(2.28rem, 4.05vw, 3.72rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(1.85rem, 3.6vw, 3.2rem);
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.22;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  color: #425667;
  font-size: clamp(1rem, 1.48vw, 1.1rem);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 7px 11px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: #536778;
  font-size: 0.83rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(49, 73, 93, 0.05);
}

.hero-tags span:nth-child(2) {
  background: rgba(215, 166, 180, 0.2);
}

.hero-tags span:nth-child(3) {
  background: rgba(167, 180, 160, 0.2);
}

.hero-actions,
.contact-actions,
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-actions {
  gap: 10px;
  margin-top: 17px;
}

.button {
  padding: 14px 20px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  will-change: transform;
}

.button::before {
  content: "";
  position: absolute;
  inset: auto 18px 8px;
  z-index: -1;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  filter: blur(10px);
  transform: scaleX(0.55);
  transition: opacity 200ms ease, transform 200ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.42) 48%, transparent 82%);
  transform: translateX(-140%) skewX(-14deg);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover {
  box-shadow: 0 18px 38px rgba(49, 73, 93, 0.18);
  transform: translateY(-4px) scale(1.015);
}

.button:hover::before {
  opacity: 0.16;
  transform: scaleX(1);
}

.button:hover::after {
  transform: translateX(140%) skewX(-14deg);
}

.button:active {
  transform: translateY(-1px) scale(0.99);
}

.hero-actions .button {
  min-height: 42px;
  padding: 11px 17px;
  border-radius: 7px;
  font-size: 0.93rem;
  letter-spacing: 0;
}

.hero-actions .button:hover {
  transform: translateY(-5px) scale(1.02);
}

.hero-actions .button:active {
  transform: translateY(-1px) scale(0.985);
}

.button.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 34px rgba(49, 73, 93, 0.18);
}

.button.primary:hover {
  background: #263d50;
}

.button.secondary {
  border-color: rgba(167, 180, 160, 0.66);
  background: rgba(255, 253, 249, 0.78);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(120, 147, 170, 0.72);
  background: rgba(255, 253, 249, 0.96);
}

.button.rose {
  background: var(--rose);
  color: var(--ink);
}

.button.rose:hover {
  background: #e4b7c3;
}

.button.disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.66;
}

.hero-portrait {
  position: relative;
  margin: 0;
  width: min(100%, 372px);
  justify-self: end;
  padding: clamp(10px, 1.8vw, 14px);
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 42% 42% var(--radius) var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 242, 237, 0.94)),
    var(--warm-white);
  box-shadow: 0 30px 80px rgba(49, 73, 93, 0.16);
  overflow: visible;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: 9%;
  z-index: -1;
  width: 38%;
  height: 62%;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--rose), rgba(215, 166, 180, 0.62));
  pointer-events: none;
}

.hero-portrait::before {
  content: "♡";
  position: absolute;
  left: -20px;
  bottom: 18%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--rose);
  font-size: 1.45rem;
  box-shadow: var(--soft-shadow);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 0.72;
  border-radius: 40% 40% 6px 6px;
  object-fit: cover;
  object-position: center 24%;
}

.section {
  padding: clamp(68px, 9vw, 122px) 0;
}

.about.section,
.support.section {
  padding-block: clamp(44px, 5.5vw, 74px);
}

.about.section {
  scroll-margin-top: 18px;
  padding-block: clamp(34px, 4.2vw, 56px);
}

.services.section {
  display: grid;
  align-content: center;
  min-height: auto;
  padding-block: clamp(30px, 3.8vw, 48px);
  border-bottom: 1px solid rgba(49, 73, 93, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.5), rgba(247, 242, 237, 0.86)),
    radial-gradient(circle at 12% 18%, rgba(167, 180, 160, 0.2), transparent 18rem);
}

.services .section-heading {
  max-width: 920px;
  margin-bottom: 20px;
}

.services .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.72rem, 3.4vw, 2.75rem);
  line-height: 1;
}

.services .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 8px;
  color: #5a6b79;
  font-size: 0.98rem;
  line-height: 1.48;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(24px, 3.8vw, 42px);
}

.section-heading.compact {
  max-width: 820px;
}

.intro-band {
  width: 100%;
  max-width: none;
  margin-top: clamp(0px, 0.5vw, 8px);
  padding: clamp(14px, 1.65vw, 20px) 18px;
  background:
    radial-gradient(circle at 14% 50%, rgba(215, 166, 180, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--ink), #3f5d72 62%, #5d788c);
  color: white;
}

.intro-line {
  width: min(var(--content), 100%);
  margin: auto;
}

.intro-line p {
  max-width: 1020px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.02rem, 1.52vw, 1.4rem);
  line-height: 1.2;
}

.intro-line p::first-letter {
  color: #f4c9d5;
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 4.8vw, 68px);
  align-items: center;
}

.about {
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  inset: clamp(28px, 5vw, 64px) 0 auto auto;
  z-index: -2;
  width: min(38vw, 560px);
  aspect-ratio: 1.15;
  border-radius: 52% 48% 48% 52%;
  background:
    radial-gradient(circle at 74% 26%, rgba(215, 166, 180, 0.16), transparent 34%),
    radial-gradient(circle at 28% 72%, rgba(167, 180, 160, 0.14), transparent 38%);
  filter: blur(2px);
  opacity: 0.9;
}

.about .section-heading {
  position: relative;
  max-width: 980px;
  margin-bottom: clamp(18px, 2.7vw, 30px);
}

.about .section-heading h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  line-height: 1.02;
}

.about .section-heading::after {
  content: "";
  display: block;
  width: min(320px, 42vw);
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--smoke), var(--rose), var(--sage), transparent);
  opacity: 0.45;
}

.about-layout::before {
  content: "";
  position: absolute;
  left: clamp(46%, 51vw, 56%);
  top: -34px;
  z-index: -1;
  width: clamp(130px, 16vw, 210px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 166, 180, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(215, 166, 180, 0.24), transparent 28%),
    rgba(255, 253, 249, 0.36);
}

.prose p {
  margin: 0 0 14px;
  color: #4a5e6f;
  font-size: clamp(0.98rem, 1.1vw, 1.04rem);
  line-height: 1.48;
}

.about-note {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 540px;
  margin-top: 20px;
  padding: 14px 18px 14px 16px;
  border: 1px solid rgba(215, 166, 180, 0.34);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  background:
    linear-gradient(105deg, rgba(255, 253, 249, 0.96), rgba(215, 166, 180, 0.16) 56%, rgba(167, 180, 160, 0.12)),
    var(--warm-white);
  box-shadow: 0 22px 50px rgba(49, 73, 93, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-note:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(49, 73, 93, 0.12);
}

.about-note::before {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(215, 166, 180, 0.28);
  border-bottom: 1px solid rgba(215, 166, 180, 0.28);
  background: rgba(255, 253, 249, 0.96);
  transform: rotate(45deg);
}

.about-note span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(215, 166, 180, 0.24), rgba(167, 180, 160, 0.2)),
    var(--marfil);
}

.about-note span::before {
  content: "";
  width: 18px;
  height: 28px;
  border: 2px solid #9c6978;
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  transform: rotate(38deg);
}

.about-note p {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.34vw, 1.16rem);
  line-height: 1.22;
}

.credentials,
.support-grid,
.service-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.credentials {
  position: relative;
  padding-left: 18px;
  gap: 12px;
  margin-top: -8px;
}

.credentials::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--smoke), var(--rose), var(--sage));
  opacity: 0.45;
}

.credentials article,
.support-grid article,
.service-card,
.ebook-card,
.contact-form,
.legal-panel,
.checkout-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.credentials article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-height: 128px;
  padding: 20px 24px 18px 26px;
  overflow: hidden;
  border-left: 0;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(120, 147, 170, 0.12)),
    var(--warm-white);
  box-shadow: 0 18px 44px rgba(49, 73, 93, 0.08);
  transform: translateX(0);
  animation: credentialDrift 9s ease-in-out infinite;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
}

.credentials article::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(120, 147, 170, 0.42);
  border-radius: 50%;
  background: var(--warm-white);
  box-shadow: 0 10px 24px rgba(49, 73, 93, 0.08);
}

.credentials article:hover {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 1), rgba(120, 147, 170, 0.18)),
    var(--warm-white);
  box-shadow: 0 26px 62px rgba(49, 73, 93, 0.13);
  animation-play-state: paused;
  transform: translateX(10px) translateY(-4px);
}

.credentials article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  display: block;
  width: 64px;
  height: 34px;
  border: 2px solid rgba(120, 147, 170, 0.14);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  transform: rotate(35deg);
  background: transparent;
}

.credentials article:nth-child(2) {
  margin-left: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(215, 166, 180, 0.14)),
    var(--warm-white);
  animation-delay: -2.4s;
}

.credentials article:nth-child(2)::after {
  border-color: rgba(215, 166, 180, 0.18);
}

.credentials article:nth-child(2)::before {
  border-color: rgba(215, 166, 180, 0.5);
}

.credentials article:nth-child(3) {
  margin-left: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(167, 180, 160, 0.16)),
    var(--warm-white);
  animation-delay: -4.8s;
}

.credentials article:nth-child(3)::after {
  border-color: rgba(167, 180, 160, 0.22);
}

.credentials article:nth-child(3)::before {
  border-color: rgba(167, 180, 160, 0.5);
}

.credentials span {
  display: inline-flex;
  width: fit-content;
  min-width: 34px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(120, 147, 170, 0.14);
  color: #668299;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.credentials article:nth-child(2) span {
  background: rgba(215, 166, 180, 0.18);
  color: #9b6576;
}

.credentials article:nth-child(3) span {
  background: rgba(167, 180, 160, 0.2);
  color: #687a63;
}

.credentials p,
.support-grid p,
.service-card p,
.ebook-card p,
.contact-copy p,
.checkout-panel p,
.legal-panel p,
.legal-panel li {
  color: #5a6b79;
}

.credentials p {
  font-size: clamp(0.96rem, 1.1vw, 1.04rem);
  line-height: 1.44;
}

.credentials h3,
.credentials p,
.support-grid h3,
.support-grid p,
.service-card h3,
.service-card p {
  margin: 0;
}

.credentials h3 {
  padding-right: 64px;
  font-size: clamp(1.08rem, 1.25vw, 1.18rem);
}

.support {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--content)) / 2));
  padding-block: clamp(34px, 4.8vw, 64px);
  background:
    radial-gradient(circle at 9% 4%, rgba(167, 180, 160, 0.25), transparent 17rem),
    radial-gradient(circle at 92% 4%, rgba(215, 166, 180, 0.2), transparent 22rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.72), rgba(247, 242, 237, 0.26));
}

.support .section-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 22px;
}

.support .section-heading::after {
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--smoke), var(--rose), var(--sage), transparent);
  opacity: 0.48;
}

.support-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.support-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 148px;
  padding: 22px 22px 22px 24px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(120, 147, 170, 0.12)),
    var(--warm-white);
  box-shadow: 0 16px 38px rgba(49, 73, 93, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease, background 240ms ease, border-color 240ms ease;
}

.support-grid article:nth-child(3n + 2) {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(215, 166, 180, 0.16)),
    var(--warm-white);
}

.support-grid article:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(167, 180, 160, 0.18)),
    var(--warm-white);
}

.support-grid article::before {
  content: "";
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 62% 40%, rgba(255, 253, 249, 0.72), transparent 34%),
    rgba(120, 147, 170, 0.17);
  box-shadow:
    inset 0 0 0 10px rgba(255, 253, 249, 0.4),
    0 12px 24px rgba(49, 73, 93, 0.08);
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.support-grid article::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 55px;
  width: 24px;
  height: 36px;
  border: 2px solid rgba(49, 73, 93, 0.34);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  opacity: 0.9;
  transform: rotate(38deg);
  transition: transform 260ms ease, opacity 260ms ease;
}

.support-grid article:nth-child(3n + 2)::before {
  background: rgba(215, 166, 180, 0.23);
}

.support-grid article:nth-child(3n + 2)::after {
  border-color: rgba(156, 105, 120, 0.44);
}

.support-grid article:nth-child(3n)::before {
  background: rgba(167, 180, 160, 0.26);
}

.support-grid article:nth-child(3n)::after {
  border-color: rgba(104, 119, 95, 0.44);
}

.support-grid h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.18;
}

.support-grid p {
  max-width: 34ch;
  margin: 0;
  color: #5a6b79;
  font-size: 0.82rem;
  line-height: 1.38;
}

.support-grid article:hover,
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--soft-shadow);
}

.support-grid article:hover {
  border-color: rgba(49, 73, 93, 0.2);
  filter: saturate(1.05);
}

.support-grid article:hover::before {
  background: rgba(255, 253, 249, 0.92);
  box-shadow: inset 0 0 0 7px rgba(215, 166, 180, 0.14), 0 18px 34px rgba(49, 73, 93, 0.1);
  transform: translateY(-2px) rotate(-6deg) scale(1.05);
}

.support-grid article:hover::after {
  opacity: 1;
  transform: translate(2px, -2px) rotate(38deg) scale(1.08);
}

.services {
  border-top: 1px solid var(--line);
  position: relative;
  scroll-margin-top: 72px;
}

.services.section {
  padding-block: clamp(20px, 2.7vw, 36px);
}

.services .section-heading {
  margin-bottom: 12px;
}

.services .section-heading h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.55rem);
}

.services .section-heading p:not(.eyebrow) {
  max-width: 680px;
  font-size: 0.88rem;
  line-height: 1.34;
}

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

.service-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.service-option {
  position: relative;
  display: grid;
  grid-template-rows: 1.25rem 3.85rem 4.3rem 136px auto auto;
  row-gap: 9px;
  min-height: 350px;
  padding: 17px 18px;
  border: 1px solid rgba(49, 73, 93, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.96)),
    var(--warm-white);
  box-shadow: 0 16px 44px rgba(49, 73, 93, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.service-option::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  border-radius: inherit;
  background: var(--smoke);
  transition: width 240ms ease, opacity 240ms ease;
}

.service-option::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -52px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(120, 147, 170, 0.12);
  transition: transform 260ms ease, opacity 260ms ease;
}

.service-option > * {
  position: relative;
  z-index: 1;
}

.service-option > span {
  width: fit-content;
  margin-bottom: 0;
  color: var(--smoke);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-option h3 {
  display: flex;
  align-items: flex-start;
  min-height: 0;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.42rem, 1.68vw, 1.76rem);
  line-height: 1.05;
}

.service-option p {
  min-height: 0;
  margin: 0;
  color: #4f6474;
  font-size: 0.88rem;
  line-height: 1.34;
}

.service-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-content: start;
  min-height: 0;
  height: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-meta li {
  display: flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 11px;
  border: 1px solid rgba(49, 73, 93, 0.09);
  border-radius: 999px;
  background: rgba(247, 242, 237, 0.72);
  color: #4f6474;
  font-size: 0.78rem;
  font-weight: 800;
}

.price-row {
  display: grid;
  gap: 3px;
  margin-top: 0;
  align-self: start;
  width: 100%;
  padding-top: 9px;
  border-top: 1px solid rgba(49, 73, 93, 0.14);
}

.price-row strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.16rem, 1.42vw, 1.46rem);
  line-height: 1;
}

.price-row small {
  color: #607384;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-actions {
  align-self: end;
  margin-top: 0;
  padding-top: 4px;
}

.service-actions .button {
  width: 100%;
  min-height: 40px;
  padding-inline: 13px;
  border: 0;
  font-size: 0.82rem;
  box-shadow: 0 12px 28px rgba(49, 73, 93, 0.11);
}

.option-session {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.86), rgba(255, 253, 249, 0.95)),
    rgba(120, 147, 170, 0.18);
}

.option-session::before {
  background: var(--smoke);
}

.option-method {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.9), rgba(255, 253, 249, 0.97)),
    rgba(215, 166, 180, 0.22);
  border-color: rgba(215, 166, 180, 0.52);
  box-shadow: 0 22px 54px rgba(49, 73, 93, 0.11);
}

.option-method::before {
  background: var(--rose);
}

.option-method::after {
  background: rgba(215, 166, 180, 0.18);
}

.option-method > span {
  color: #a86f80;
}

.option-method h3 {
  font-size: clamp(1.38rem, 1.62vw, 1.7rem);
}

.option-group {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.96)),
    rgba(167, 180, 160, 0.2);
}

.option-group::before {
  background: #e2eadf;
}

.option-group::after {
  background: rgba(167, 180, 160, 0.16);
}

.option-method .service-actions .button {
  background:
    linear-gradient(135deg, var(--ink), #425d72),
    var(--ink);
  color: white;
}

.option-session .service-actions .button {
  background:
    linear-gradient(135deg, var(--smoke), #5f7f98),
    var(--smoke);
  color: white;
}

.option-group .service-actions .button {
  background:
    linear-gradient(135deg, var(--sage), #879d82),
    var(--sage);
  color: var(--ink);
}

.option-method .service-actions .button:hover,
.option-session .service-actions .button:hover,
.option-group .service-actions .button:hover {
  box-shadow: 0 18px 38px rgba(49, 73, 93, 0.18);
  filter: saturate(1.06);
  transform: translateY(-4px) scale(1.01);
}

.service-option:hover {
  box-shadow: var(--shadow);
  border-color: rgba(49, 73, 93, 0.22);
  transform: translateY(-6px);
}

.service-option:hover::before {
  width: 10px;
}

.service-option:hover::after {
  opacity: 0.84;
  transform: translate(-8px, 8px) scale(1.05);
}

.service-conditions {
  display: grid;
  grid-template-columns: 0.78fr repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 12px;
  padding: 5px;
  border: 1px solid rgba(49, 73, 93, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(49, 73, 93, 0.06), rgba(255, 253, 249, 0.78)),
    rgba(255, 253, 249, 0.84);
  box-shadow: 0 10px 26px rgba(49, 73, 93, 0.055);
}

.service-conditions p {
  position: relative;
  margin: 0;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid rgba(49, 73, 93, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  color: #43596a;
  font-size: 0.68rem;
  line-height: 1.18;
}

.service-conditions p:not(.conditions-title)::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  border-radius: 999px;
  background: var(--smoke);
}

.service-conditions strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.74rem;
  line-height: 1.12;
}

.service-conditions span {
  display: block;
  color: #5b6f7f;
  font-weight: 700;
}

.conditions-title {
  display: grid;
  align-content: center;
  border-color: rgba(49, 73, 93, 0.14);
  background: var(--ink);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-conditions p:nth-child(2) {
  background: rgba(255, 253, 249, 0.96);
}

.service-conditions p:nth-child(3) {
  background: rgba(215, 166, 180, 0.2);
}

.service-conditions p:nth-child(3)::before {
  background: var(--rose);
}

.service-conditions p:nth-child(4) {
  background: rgba(167, 180, 160, 0.2);
}

.service-conditions p:nth-child(4)::before {
  background: var(--marfil);
}

.service-conditions p:nth-child(5) {
  background: rgba(120, 147, 170, 0.16);
}

.service-conditions p:nth-child(5)::before {
  background: var(--smoke);
}

.method-service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(236px, 0.3fr);
  gap: clamp(12px, 2vw, 22px);
  align-items: stretch;
  margin-bottom: 10px;
  padding: clamp(12px, 1.6vw, 17px);
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 166, 180, 0.32), transparent 18rem),
    linear-gradient(135deg, rgba(49, 73, 93, 0.96), rgba(67, 94, 111, 0.92));
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.method-service::before {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 50%;
}

.method-service .eyebrow,
.method-service h3,
.method-service p,
.method-service span,
.method-service small,
.method-service strong {
  position: relative;
}

.method-service .eyebrow {
  color: #f2c7d3;
}

.method-service h3 {
  margin: 0 0 6px;
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.34rem, 2.1vw, 1.9rem);
  letter-spacing: 0.08em;
}

.method-service .method-copy > p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.24;
}

.method-price {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.1);
}

.method-price span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(215, 166, 180, 0.22);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-price p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  line-height: 1.22;
}

.method-price strong {
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.12rem, 1.35vw, 1.32rem);
  line-height: 1;
}

.method-price small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

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

.offer-card {
  position: relative;
  min-height: 118px;
  padding: 10px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(49, 73, 93, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
  will-change: transform;
}

.offer-card::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.38);
}

.offer-card:hover {
  box-shadow: var(--soft-shadow);
  filter: saturate(1.08);
  transform: translateY(-7px);
}

.offer-card:hover::before {
  transform: translate(-8px, 8px) scale(1.05);
}

.offer-card span,
.offer-card h3,
.offer-card p,
.offer-values {
  position: relative;
}

.offer-card span {
  display: inline-flex;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.94rem, 1.12vw, 1.08rem);
  line-height: 1.03;
}

.offer-card p {
  margin: 0;
  color: rgba(49, 73, 93, 0.75);
  font-size: 0.68rem;
  line-height: 1.18;
}

.offer-values {
  display: grid;
  gap: 3px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(49, 73, 93, 0.12);
}

.offer-values strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.offer-values small {
  color: rgba(49, 73, 93, 0.72);
  font-weight: 800;
}

.offer-ebook {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.76), rgba(215, 166, 180, 0.3)),
    var(--rose);
}

.offer-session {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.74), rgba(120, 147, 170, 0.28)),
    var(--smoke);
}

.offer-group {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.76), rgba(167, 180, 160, 0.34)),
    var(--sage);
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 10px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(49, 73, 93, 0.12);
}

.service-benefits p {
  margin: 0;
  padding: 7px 9px;
  background: rgba(255, 253, 249, 0.78);
  color: #5a6b79;
  font-size: 0.68rem;
  line-height: 1.18;
  font-weight: 700;
}

.service-benefits p:nth-child(2) {
  background: rgba(215, 166, 180, 0.16);
}

.service-benefits p:nth-child(3) {
  background: rgba(167, 180, 160, 0.18);
}

.service-benefits p:nth-child(4) {
  background: rgba(120, 147, 170, 0.14);
}

.service-card {
  position: relative;
  min-height: 108px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.96)),
    rgba(120, 147, 170, 0.18);
  box-shadow: none;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
  will-change: transform;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  display: block;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(120, 147, 170, 0.16);
}

.service-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.96)),
    rgba(215, 166, 180, 0.22);
}

.service-card:nth-child(2)::after {
  background: rgba(215, 166, 180, 0.2);
}

.service-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.96)),
    rgba(167, 180, 160, 0.24);
}

.service-card:nth-child(3)::after {
  background: rgba(167, 180, 160, 0.24);
}

.service-card:hover {
  background: var(--warm-white);
  border-color: rgba(49, 73, 93, 0.2);
}

.service-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
  font-size: 0.68rem;
}

.card-kicker,
.status-pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--smoke);
  background: transparent;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card h3,
.ebook-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 0.66rem;
  line-height: 1.18;
}

.ebook-feature {
  display: grid;
  align-content: center;
  scroll-margin-top: 72px;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 96px);
  margin-top: clamp(40px, 6vw, 78px);
  padding-block: clamp(46px, 5.6vw, 78px);
  padding-inline: max(18px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid rgba(215, 166, 180, 0.34);
  border-bottom: 1px solid rgba(49, 73, 93, 0.12);
  background:
    radial-gradient(circle at 84% 12%, rgba(120, 147, 170, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 242, 237, 0.82)),
    linear-gradient(135deg, rgba(215, 166, 180, 0.2), rgba(167, 180, 160, 0.18));
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.method-copy > p,
.ebook-showcase > .section-heading + p,
.ebook-panel > div > p:not(.eyebrow) {
  max-width: 660px;
  color: #5a6b79;
  font-size: 1.08rem;
}

.method-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.method-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.68);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
}

.method-steps span:nth-child(2n) {
  background: rgba(215, 166, 180, 0.22);
}

.method-steps span:nth-child(3n) {
  background: rgba(167, 180, 160, 0.24);
}

.method-service .method-steps span {
  border-color: rgba(255, 253, 249, 0.2);
  background: rgba(255, 253, 249, 0.12);
  color: white;
}

.method-service .method-steps span:nth-child(2n) {
  background: rgba(215, 166, 180, 0.2);
}

.method-service .method-steps span:nth-child(3n) {
  background: rgba(167, 180, 160, 0.18);
}

.method-card,
.ebook-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.82), rgba(255, 253, 249, 0.96)),
    var(--rose-soft);
}

.method-card {
  display: grid;
  align-content: start;
}

.method-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 20px;
  color: #5a6b79;
}

.method-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: 0.12em;
}

.ebook-card::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1.6;
  margin-bottom: 22px;
  border: 1px solid rgba(49, 73, 93, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 73, 93, 0.84), rgba(120, 147, 170, 0.76)),
    radial-gradient(circle at 28% 30%, rgba(215, 166, 180, 0.9), transparent 7rem);
}

.ebook-showcase {
  margin-top: 0;
}

.ebook-feature .section-heading.compact {
  max-width: 980px;
}

.ebook-feature .section-heading h2 {
  max-width: 860px;
}

.ebook-showcase .section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 4px 0 0;
  color: #5a6b79;
  font-size: 0.98rem;
  line-height: 1.5;
}

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

.ebook-commerce {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(280px, 0.68fr) minmax(235px, 0.54fr);
  width: min(100%, 1160px);
  margin-inline: auto;
  gap: 14px;
  align-items: stretch;
}

.ebook-cover {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 318px;
  padding: 22px 20px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
  will-change: transform;
}

.ebook-cover::before,
.ebook-cover::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ebook-cover::before {
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  background: rgba(255, 253, 249, 0.32);
  transition: transform 260ms ease, opacity 260ms ease;
}

.ebook-cover::after {
  left: -42px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 253, 249, 0.42);
  transition: transform 260ms ease, opacity 260ms ease;
}

.ebook-cover:hover {
  box-shadow: var(--shadow);
  filter: saturate(1.05);
  transform: translateY(-8px) rotate(-0.45deg);
}

.ebook-cover:hover::before {
  opacity: 0.86;
  transform: translate(-10px, 12px) scale(1.04);
}

.ebook-cover:hover::after {
  opacity: 0.82;
  transform: translate(10px, -10px) scale(1.08);
}

.ebook-main-cover {
  min-height: 342px;
}

.real-ebook-cover {
  justify-items: center;
  align-content: center;
  min-height: 0;
  padding: 22px;
  border-color: rgba(49, 73, 93, 0.12);
  background: var(--marfil);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 249, 0.18),
    0 18px 42px rgba(49, 73, 93, 0.11);
}

.real-ebook-cover::before {
  display: none;
}

.real-ebook-cover::after {
  display: none;
}

.ebook-flip-card {
  position: relative;
  display: block;
  border: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  perspective: 1200px;
}

.ebook-flip-card:focus-visible {
  outline: 2px solid rgba(215, 166, 180, 0.72);
  outline-offset: 7px;
}

.ebook-cover.real-ebook-cover > .ebook-flip-card {
  z-index: 1;
  width: min(100%, 280px);
  margin: 0;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
  box-shadow:
    0 18px 34px rgba(49, 73, 93, 0.16),
    0 2px 8px rgba(49, 73, 93, 0.08);
  transform: none;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ebook-flip-inner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  transform-style: flat;
  transition: none;
}

.ebook-flip-card.is-flipped .ebook-flip-inner {
  transform: none;
}

.ebook-flip-card.is-turning .ebook-flip-inner {
  animation: ebookFlipTurn 520ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

@keyframes ebookFlipTurn {
  0% {
    transform: rotateY(0deg) scale(1);
  }

  48% {
    transform: rotateY(88deg) scale(0.985);
  }

  52% {
    transform: rotateY(88deg) scale(0.985);
  }

  100% {
    transform: rotateY(0deg) scale(1);
  }
}

.ebook-face {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.ebook-face-front {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: rotateY(0deg);
}

.ebook-face-back {
  z-index: 1;
  transform: none;
}

.ebook-flip-card.is-flipped .ebook-face-front {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.ebook-flip-card.is-flipped .ebook-face-back {
  z-index: 3;
  opacity: 1;
  visibility: visible;
}

.ebook-cover.real-ebook-cover img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
  border-radius: 8px;
  transform: none;
  transition: transform 260ms ease, filter 260ms ease;
}

.ebook-cover.real-ebook-cover:hover img {
  filter: saturate(1.04);
  transform: none;
}

.ebook-cover.real-ebook-cover:hover > .ebook-flip-card {
  box-shadow:
    0 22px 42px rgba(49, 73, 93, 0.18),
    0 3px 10px rgba(49, 73, 93, 0.08);
  transform: translateY(-3px);
}

.ebook-flip-hint {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: 180px;
  margin-top: 10px;
  padding: 4px 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.38);
  color: rgba(49, 73, 93, 0.74);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ebook-main-cover h3 {
  max-width: 7.5em;
}

.ebook-cover p,
.ebook-cover h3,
.ebook-cover span,
.ebook-cover a,
.cover-mark {
  position: relative;
}

.ebook-cover p {
  margin: 0;
  color: rgba(49, 73, 93, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ebook-cover h3 {
  max-width: 100%;
  margin: 22px 0 12px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.05vw, 2rem);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.ebook-cover span {
  display: block;
  max-width: 100%;
  color: rgba(49, 73, 93, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.ebook-cover .ebook-flip-hint,
.ebook-ribbon.ebook-flip-hint {
  display: inline-flex;
  width: fit-content;
  max-width: 180px;
  color: rgba(49, 73, 93, 0.68);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ebook-cover a {
  width: fit-content;
  margin-top: 28px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  font-weight: 800;
}

.ebook-buy-card,
.ebook-flow-card {
  position: relative;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(120, 147, 170, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.98));
  box-shadow: var(--soft-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ebook-buy-card:hover,
.ebook-flow-card:hover {
  border-color: rgba(215, 166, 180, 0.34);
  box-shadow: 0 24px 52px rgba(49, 73, 93, 0.14);
  transform: translateY(-6px);
}

.ebook-buy-card::before,
.ebook-flow-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--dusty-rose), var(--smoke-blue), var(--sage));
}

.ebook-buy-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(120, 147, 170, 0.13);
  box-shadow: -34px 54px 0 rgba(215, 166, 180, 0.12);
}

.ebook-buy-card > *,
.ebook-flow-card > * {
  position: relative;
  z-index: 1;
}

.ebook-buy-name {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(215, 166, 180, 0.35);
  border-radius: 999px;
  background: rgba(215, 166, 180, 0.13);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.ebook-buy-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.95rem, 3.1vw, 2.9rem);
  line-height: 1;
}

.ebook-buy-card p:not(.eyebrow),
.ebook-buy-card small,
.ebook-flow-card li {
  color: #5a6b79;
  font-weight: 700;
  line-height: 1.42;
}

.ebook-buy-card small {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
}

.ebook-pay-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 15px;
}

.ebook-pay-actions .button {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.94rem;
}

.payment-paypal:hover {
  border-color: rgba(167, 180, 160, 0.78);
  background: rgba(167, 180, 160, 0.2);
}

.ebook-flow-card {
  align-content: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(167, 180, 160, 0.25), transparent 9rem),
    radial-gradient(circle at 16% 80%, rgba(120, 147, 170, 0.11), transparent 8rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.9), rgba(247, 242, 237, 0.94));
}

.ebook-flow-card::before {
  background: linear-gradient(180deg, var(--sage), var(--dusty-rose), var(--smoke-blue));
}

.ebook-flow-card span {
  color: #73856c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ebook-flow-card ol {
  counter-reset: ebook-flow;
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}

.ebook-flow-card li {
  position: relative;
  min-height: 32px;
  padding-left: 42px;
}

.ebook-flow-card li::before {
  counter-increment: ebook-flow;
  content: counter(ebook-flow);
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(167, 180, 160, 0.38);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.cover-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.56);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.24rem;
  font-weight: 800;
}

.program-hero,
.program-detail,
.program-note {
  width: min(var(--content), calc(100% - 36px));
  margin-inline: auto;
}

.program-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.38fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: calc(100svh - 128px);
  padding: clamp(42px, 7vw, 86px) 0 clamp(34px, 5vw, 62px);
}

.program-hero h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: 0.055em;
}

.program-hero > div > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #526778;
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.5;
}

.program-price {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(49, 73, 93, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 166, 180, 0.28), transparent 12rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.86), rgba(255, 253, 249, 0.98));
  box-shadow: var(--soft-shadow);
}

.program-price span {
  color: #9c6978;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-price p,
.program-price small {
  margin: 0;
  color: #5a6b79;
  font-weight: 700;
  line-height: 1.42;
}

.program-price strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.program-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: clamp(28px, 5vw, 58px);
}

.program-detail article {
  padding: 22px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 14px 34px rgba(49, 73, 93, 0.06);
}

.program-detail h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.program-detail p {
  margin: 0;
  color: #526778;
  font-size: 0.92rem;
  line-height: 1.48;
}

.program-note {
  display: grid;
  gap: 13px;
  margin-bottom: clamp(44px, 6vw, 84px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(215, 166, 180, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(215, 166, 180, 0.18), rgba(167, 180, 160, 0.16)),
    rgba(255, 253, 249, 0.9);
}

.program-note p,
.program-note small {
  margin: 0;
  color: #526778;
  line-height: 1.48;
}

.program-note strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.22rem, 2.2vw, 1.86rem);
  line-height: 1.15;
}

.rose-cover {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.48), rgba(215, 166, 180, 0.38)),
    var(--rose);
}

.smoke-cover {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.58), rgba(120, 147, 170, 0.34)),
    var(--smoke);
}

.sage-cover {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.6), rgba(167, 180, 160, 0.42)),
    var(--sage);
}

.section-note {
  max-width: 760px;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--rose);
  background: rgba(255, 253, 249, 0.72);
  color: #5a6b79;
  font-size: 0.88rem;
}

.quote-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 249, 0.9), transparent 30rem),
    linear-gradient(180deg, transparent, rgba(215, 166, 180, 0.12), transparent);
}

.quote-section::before {
  right: 6%;
  top: 18%;
}

blockquote {
  max-width: 880px;
  margin: 0;
  text-align: center;
}

blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 4vw, 3.55rem);
}

blockquote cite {
  display: block;
  margin-top: 22px;
  color: var(--smoke);
  font-style: normal;
  font-weight: 700;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 100%;
}

.faq.section {
  position: relative;
  padding-block: clamp(42px, 5vw, 72px);
}

.faq.section::before {
  content: "";
  position: absolute;
  right: clamp(16px, 7vw, 120px);
  top: clamp(40px, 8vw, 96px);
  z-index: -1;
  width: clamp(180px, 22vw, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 166, 180, 0.22);
  border-radius: 52% 48% 60% 40%;
  background: radial-gradient(circle, rgba(215, 166, 180, 0.12), transparent 68%);
  transform: rotate(12deg);
}

details {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(255, 253, 249, 0.74)),
    var(--warm-white);
  box-shadow: 0 12px 32px rgba(49, 73, 93, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

details::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--smoke);
  opacity: 0.72;
  transform: scaleY(0.48);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

details::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 28px;
  height: 16px;
  border: 1px solid rgba(49, 73, 93, 0.13);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  opacity: 0.55;
  pointer-events: none;
  transform: rotate(34deg);
  transition: opacity 220ms ease, transform 220ms ease;
}

details:nth-child(3n + 2)::before {
  background: var(--rose);
}

details:nth-child(3n)::before {
  background: #e2eadf;
}

details:hover,
details[open] {
  border-color: rgba(49, 73, 93, 0.2);
  box-shadow: 0 18px 44px rgba(49, 73, 93, 0.1);
  transform: translateY(-3px);
}

details:hover::before,
details[open]::before {
  opacity: 1;
  transform: scaleY(1);
}

details:hover::after,
details[open]::after {
  opacity: 0.78;
  transform: translateX(-3px) rotate(34deg);
}

summary {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  cursor: pointer;
  min-height: 58px;
  padding: 12px 52px 12px 18px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.24;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 999px;
  background: rgba(247, 242, 237, 0.85);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

details[open] summary::before {
  content: "-";
  background: var(--ink);
  color: white;
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 52px 18px 60px;
  color: #5a6b79;
  font-size: 0.88rem;
  line-height: 1.45;
  animation: faqReveal 220ms ease both;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  border-top: 1px solid var(--line);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 52px auto auto -12px;
  z-index: -1;
  width: 170px;
  height: 170px;
  border-radius: 56% 44% 50% 50%;
  background: rgba(215, 166, 180, 0.22);
}

.contact-copy {
  position: relative;
}

.contact-copy::after {
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 1px;
  margin-top: 30px;
  background: linear-gradient(90deg, var(--rose), rgba(167, 180, 160, 0.72), transparent);
}

.contact-card {
  position: relative;
  max-width: 520px;
  margin-top: 24px;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-left: 5px solid var(--sage);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 180, 160, 0.2), transparent 9rem),
    rgba(255, 253, 249, 0.78);
  box-shadow: 0 16px 38px rgba(49, 73, 93, 0.06);
}

.contact-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: #5a6b79;
  font-size: 0.96rem;
  line-height: 1.5;
}

.contact-form,
.checkout-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.contact-form {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  padding: clamp(20px, 2.5vw, 29px);
  border: 1px solid rgba(49, 73, 93, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 98% 0%, rgba(120, 147, 170, 0.13), transparent 11rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 253, 249, 0.86));
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--rose), var(--smoke), var(--sage));
}

.contact-form > * {
  position: relative;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(49, 73, 93, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  color: var(--text);
  padding: 11px 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(120, 147, 170, 0.5);
  background: #fffefa;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(215, 166, 180, 0.82);
  background: white;
  box-shadow: 0 0 0 4px rgba(215, 166, 180, 0.16);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(215, 166, 180, 0.55);
  outline-offset: 2px;
}

.form-note {
  margin: -2px 0 0;
  padding-left: 14px;
  border-left: 3px solid rgba(167, 180, 160, 0.75);
  color: #607384;
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 18px clamp(22px, 5vw, 72px);
  padding-right: clamp(88px, 8vw, 128px);
  border-top: 1px solid rgba(49, 73, 93, 0.14);
  background: rgba(255, 253, 249, 0.86);
  color: #607384;
  backdrop-filter: blur(12px);
}

.footer::before {
  display: none;
}

.footer > * {
  position: relative;
}

.footer p {
  margin: 0;
  color: #607384;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  justify-content: flex-end;
}

.footer a {
  color: #607384;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.footer a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.inner-page {
  min-height: 100svh;
}

.inner-page main {
  background:
    radial-gradient(circle at 18% 26%, rgba(215, 166, 180, 0.22), transparent 20rem),
    radial-gradient(circle at 82% 34%, rgba(167, 180, 160, 0.22), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, #f7f2ed 100%);
}

.ebook-product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.48fr) minmax(290px, 0.5fr);
  gap: clamp(22px, 3.4vw, 42px);
  align-items: center;
  width: min(var(--content), calc(100% - 36px));
  min-height: calc(100svh - 132px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(49, 73, 93, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.74), rgba(255, 253, 249, 0.34)),
    rgba(255, 253, 249, 0.68);
  box-shadow: 0 30px 90px rgba(49, 73, 93, 0.1);
  overflow: hidden;
}

.ebook-product::before {
  content: "";
  position: absolute;
  inset: 8% 25% 8% 37%;
  z-index: -1;
  border: 1px solid rgba(215, 166, 180, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.2);
}

.ebook-product::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--rose), var(--smoke), var(--sage));
}

.ebook-product-copy h1 {
  max-width: 590px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 0.98;
}

.ebook-product-copy > p:not(.eyebrow):not(.ebook-product-note) {
  max-width: 560px;
  margin: 16px 0 0;
  color: #4e6272;
  font-size: clamp(0.96rem, 1.15vw, 1.04rem);
  line-height: 1.52;
}

.ebook-includes {
  display: grid;
  gap: 9px;
  max-width: 520px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ebook-includes li {
  position: relative;
  min-height: 38px;
  padding: 9px 12px 9px 36px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(49, 73, 93, 0.04);
}

.ebook-includes li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  transform: translateY(-50%);
}

.ebook-includes li:nth-child(2)::before {
  background: var(--sage);
}

.ebook-includes li:nth-child(3)::before {
  background: var(--smoke);
}

.ebook-product-note {
  max-width: 520px;
  margin-top: 18px;
  padding: 11px 13px;
  border-left: 3px solid var(--rose);
  background: rgba(255, 253, 249, 0.82);
  color: #5a6b79;
  font-size: 0.84rem;
  line-height: 1.42;
}

.ebook-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 410px;
  padding: 28px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  background: var(--marfil);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 249, 0.18),
    0 18px 42px rgba(49, 73, 93, 0.11);
  perspective: 900px;
}

.ebook-product-cover-image {
  width: min(100%, 330px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  box-shadow:
    0 30px 72px rgba(49, 73, 93, 0.18),
    10px 12px 0 rgba(215, 166, 180, 0.16);
  transform: rotate(-1.6deg) rotateY(-4deg);
}

.ebook-visual .ebook-flip-card {
  width: min(100%, 330px);
  padding: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow:
    0 18px 34px rgba(49, 73, 93, 0.16),
    0 2px 8px rgba(49, 73, 93, 0.08);
  transform: none;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ebook-visual .ebook-flip-card:hover,
.ebook-visual .ebook-flip-card:focus-visible {
  box-shadow:
    0 22px 42px rgba(49, 73, 93, 0.18),
    0 3px 10px rgba(49, 73, 93, 0.08);
  transform: translateY(-3px);
}

.ebook-visual .ebook-face {
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 8px;
  object-fit: contain;
}

.ebook-visual::before,
.ebook-visual::after {
  display: none;
}

.ebook-visual::before {
  inset: 66px -2px 20px 36px;
  z-index: -2;
  border: 1px solid rgba(49, 73, 93, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.46), rgba(120, 147, 170, 0.22)),
    var(--smoke);
}

.ebook-visual::after {
  inset: 44px 18px 38px 18px;
  z-index: -1;
  border: 1px solid rgba(49, 73, 93, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.56), rgba(167, 180, 160, 0.24)),
    var(--sage);
}

.ebook-product-cover {
  position: relative;
  display: grid;
  align-content: space-between;
  width: min(100%, 310px);
  min-height: 425px;
  padding: 32px 28px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 253, 249, 0.58), transparent 10rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.38), rgba(215, 166, 180, 0.46)),
    var(--rose);
  box-shadow:
    0 30px 72px rgba(49, 73, 93, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  overflow: hidden;
  transform: rotate(-2deg) rotateY(-5deg);
}

.ebook-product-cover::before {
  content: "";
  position: absolute;
  inset: auto auto -58px -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 253, 249, 0.52);
  border-radius: 50%;
}

.ebook-product-cover span,
.ebook-product-cover h2,
.ebook-product-cover p,
.ebook-product-cover small {
  position: relative;
}

.ebook-product-cover span {
  width: fit-content;
  color: rgba(49, 73, 93, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ebook-product-cover h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 2.65vw, 2.65rem);
  line-height: 1;
}

.ebook-product-cover p {
  color: rgba(49, 73, 93, 0.76);
  font-weight: 800;
}

.ebook-product-cover small {
  color: rgba(49, 73, 93, 0.72);
  font-weight: 900;
}

.ebook-ribbon {
  position: relative;
  right: auto;
  top: auto;
  bottom: auto;
  box-shadow: none;
  transform: none;
}

.ebook-buy-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(49, 73, 93, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 242, 237, 0.9)),
    rgba(120, 147, 170, 0.08);
  box-shadow: 0 22px 64px rgba(49, 73, 93, 0.12);
}

.page-hero {
  scroll-margin-top: 76px;
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 0 clamp(34px, 6vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #4a5e6f;
  font-size: 1.12rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.checkout-panel,
.legal-panel {
  padding: 26px;
  box-shadow: var(--shadow);
}

.checkout-panel ul,
.legal-panel ul {
  padding-left: 22px;
}

.price-box {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(215, 166, 180, 0.52);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 253, 249, 0.74), transparent 7rem),
    linear-gradient(135deg, rgba(215, 166, 180, 0.26), rgba(247, 242, 237, 0.88));
}

.price-box strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.82rem;
}

.price-box span {
  color: #9f6b7a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-box small {
  color: #566a79;
  font-weight: 800;
  line-height: 1.42;
}

.ebook-buy-panel .checkout-form {
  gap: 10px;
  padding: 0;
  box-shadow: none;
}

.ebook-buy-panel label {
  gap: 6px;
  font-size: 0.82rem;
}

.ebook-buy-panel input,
.ebook-buy-panel select {
  min-height: 42px;
  padding: 9px 11px;
  border-color: rgba(49, 73, 93, 0.18);
  background: rgba(255, 253, 249, 0.82);
}

.ebook-buy-panel .button {
  min-height: 44px;
  padding-block: 11px;
}

.ebook-buy-panel .form-note {
  font-size: 0.84rem;
  line-height: 1.42;
}

.state-card {
  max-width: 720px;
  margin: clamp(58px, 10vw, 120px) auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.pending-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pending-list li {
  padding: 12px 14px;
  border-left: 3px solid var(--rose);
  background: rgba(255, 253, 249, 0.72);
}

@media (max-width: 1180px) {
  .hero {
    width: min(var(--content), calc(100% - 180px));
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  }
}

@media (max-width: 940px) {
  html {
    scroll-padding-top: 106px;
  }

  .section,
  .hero,
  .page-hero {
    scroll-margin-top: 106px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: min(100% - 22px, 760px);
    top: 10px;
    margin-top: 10px;
    padding: 0;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .language-switch {
    justify-self: center;
    padding: 4px;
  }

  .language-switch button {
    min-width: 38px;
    min-height: 36px;
  }

  .nav {
    position: fixed;
    inset: 92px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  body.header-soft .site-header:not(:hover):not(:focus-within) {
    opacity: 0.72;
    filter: none;
  }

  .nav a {
    padding: 14px 12px;
  }

  .hero,
  .about-layout,
  .method-service,
  .method-layout,
  .service-options,
  .ebook-product,
  .program-hero,
  .contact,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .service-grid,
  .offer-grid,
  .program-detail,
  .ebook-commerce,
  .ebook-covers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .conditions-title {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .option-method {
    transform: none;
  }

  .option-method:hover {
    transform: translateY(-8px);
  }

  .service-option {
    grid-template-rows: none;
  }

  .service-option h3,
  .service-option p,
  .service-meta {
    min-height: 0;
    height: auto;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(30px, 7vw, 48px);
    padding-left: 0;
    width: min(100% - 36px, var(--content));
  }

  .about.section {
    scroll-margin-top: 18px;
    padding-block: 30px 44px;
  }

  .about .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 7.8vw, 2.95rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .about-layout {
    gap: 22px;
  }

  .credentials {
    padding-left: 0;
    gap: 12px;
    margin-top: 0;
  }

  .credentials::before {
    display: none;
  }

  .credentials article,
  .credentials article:nth-child(2),
  .credentials article:nth-child(3) {
    margin-left: 0;
  }

  .credentials article::before {
    display: none;
  }

  .hero::before {
    inset: 28% auto auto 36%;
    width: min(58vw, 420px);
  }

  .program-hero {
    min-height: auto;
    padding-top: clamp(34px, 8vw, 56px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 8px;
  }

  .language-switch button {
    min-width: 34px;
    min-height: 34px;
    font-size: 0.72rem;
  }

  .brand-logo {
    width: auto;
    height: 74px;
    max-width: 78px;
  }

  .section,
  .hero,
  .page-hero,
  .program-hero,
  .program-detail,
  .program-note {
    width: min(100% - 30px, var(--content));
  }

  h1 {
    font-size: clamp(2.25rem, 10.4vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .intro-band {
    margin-top: 18px;
    padding: 22px 15px;
  }

  .intro-line p {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

  .hero-copy::before,
  .quote-section::before,
  .support::before,
  .about-layout::before,
  .credentials::before {
    display: none;
  }

  .about-note {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 13px 14px;
  }

  .about-note span {
    width: 36px;
    height: 36px;
  }

  .hero-tags {
    gap: 8px;
  }

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

  .hero-portrait {
    width: min(100%, 390px);
    justify-self: center;
  }

  .hero-portrait::before {
    left: 8px;
    bottom: 10%;
  }

  .hero-portrait::after {
    right: -8px;
  }

  .support-grid,
  .service-grid,
  .offer-grid,
  .faq-list,
  .service-conditions,
  .service-benefits,
  .ebook-commerce,
  .ebook-covers,
  .program-detail,
  .credentials article {
    grid-template-columns: 1fr;
  }

  summary {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    min-height: 56px;
    padding: 12px 44px 12px 15px;
  }

  summary::before {
    width: 28px;
    height: 28px;
  }

  details p {
    padding: 0 18px 16px 53px;
  }

  .ebook-pay-actions {
    grid-template-columns: 1fr;
  }

  .service-card,
  .support-grid article,
  .ebook-cover {
    min-height: auto;
  }

  .support-grid article {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 128px;
    padding: 18px;
  }

  .support-grid article::before {
    width: 50px;
    height: 50px;
  }

  .support-grid article::after {
    left: 38px;
    top: 48px;
  }

  .program-hero h1 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
    letter-spacing: 0.05em;
    overflow-wrap: anywhere;
  }

  .program-price {
    padding: 20px;
  }

  .button,
  .choice-row .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-right: clamp(20px, 6vw, 34px);
    padding-bottom: 76px;
  }

  .footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 9px 22px;
    justify-content: flex-start;
    max-width: 340px;
  }

  .footer nav a:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
