:root {
  --bg: #f8f3eb;
  --bg-soft: #fffdf9;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: rgba(255, 252, 247, 0.94);
  --surface-deep: #efe5d8;
  --ink: #171310;
  --muted: #62584f;
  --line: rgba(119, 91, 50, 0.16);
  --line-strong: rgba(119, 91, 50, 0.26);
  --gold: #bf9c6a;
  --gold-deep: #8f6f44;
  --brown: #31251c;
  --shadow: 0 26px 70px rgba(63, 42, 16, 0.12);
  --shadow-soft: 0 18px 42px rgba(63, 42, 16, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --shell: 1180px;
  --section-space: 52px;
  --section-space-mobile: 44px;
  --section-stack-gap: 16px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(244, 226, 196, 0.42), transparent 22%),
    linear-gradient(180deg, #f9f4ec 0%, #f4ede2 52%, #f0e6d8 100%);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 48%);
  opacity: 0.28;
}

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

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

.shell {
  width: min(var(--shell), calc(100% - 32px));
  margin: 0 auto;
}

.page-aura {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
}

.page-aura--one {
  top: 7rem;
  left: -12rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(255, 245, 226, 0.95), transparent 68%);
}

.page-aura--two {
  right: -10rem;
  top: 34rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(224, 201, 164, 0.82), transparent 68%);
}

.site-header {
  position: relative;
  z-index: 10;
  padding-top: 16px;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-pill);
  background: rgba(249, 244, 236, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(69, 49, 22, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(191, 156, 106, 0.42);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.6);
}

.brand__copy strong,
.brand__copy small {
  display: block;
}

.brand__copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.24em;
}

.brand__copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  color: #fffdf8;
  background: linear-gradient(180deg, #ba9867 0%, #8e6d42 100%);
  box-shadow: 0 16px 30px rgba(88, 61, 25, 0.22);
}

.button--secondary {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  border-color: rgba(191, 156, 106, 0.18);
  box-shadow: 0 12px 26px rgba(67, 46, 18, 0.08);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.82);
  border-color: rgba(191, 156, 106, 0.16);
}

.button--compact {
  min-height: 44px;
  padding: 0 18px;
}

.hero,
.hero-summary,
.section,
.intro-band,
.final-cta {
  position: relative;
}

.hero {
  padding: 8px 0 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.8rem, 10vw, 7.4rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 600;
}

p {
  margin: 0;
}

.hero__title {
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  letter-spacing: 0.008em;
  line-height: 0.94;
}

.hero__title--stage {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 120px), 760px);
  margin-top: 0;
  padding: 10px 24px 12px;
  text-align: center;
  color: rgba(22, 17, 13, 0.92);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(247, 239, 229, 0.72));
  border: 1px solid rgba(191, 156, 106, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(63, 44, 20, 0.08);
  text-shadow:
    0 1px 0 rgba(255, 248, 236, 0.56),
    0 8px 18px rgba(255, 247, 235, 0.2);
}

.section-text,
.audience-card p,
.benefit-card p,
.program-card p,
.pricing-list li,
.team-card p,
.site-footer__text {
  color: var(--muted);
}

.hero-stage {
  position: relative;
  max-width: none;
  margin: 0 auto;
}

.hero-stage__eyebrow-wrap {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  width: 100%;
  margin-top: -12px;
  margin-bottom: 8px;
}

.hero-stage__badges {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-stage__badge {
  position: relative;
  max-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
}

.hero-stage__badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-stage__badge--top-left,
.hero-stage__badge--top-right,
.hero-stage__badge--bottom-left,
.hero-stage__badge--bottom-right {
  position: absolute;
}

.hero-stage__badge--top-left {
  top: 54px;
  left: 16px;
}

.hero-stage__badge--top-right {
  top: 54px;
  right: 16px;
}

.hero-stage__badge--bottom-left {
  left: 34px;
  bottom: 120px;
}

.hero-stage__badge--bottom-right {
  right: 34px;
  bottom: 120px;
}

.hero-stage__frame {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 500px;
  padding: 18px 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(241, 232, 218, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stage__eyebrow {
  margin: 0;
}

.hero-stage__frame::before,
.hero-stage__frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
}

.hero-stage__frame::before {
  left: -8%;
  top: 10%;
  width: 240px;
  height: 240px;
  background: rgba(255, 249, 240, 0.94);
}

.hero-stage__frame::after {
  right: -10%;
  bottom: 4%;
  width: 260px;
  height: 260px;
  background: rgba(235, 214, 184, 0.56);
}

.hero-stage__frame-glow {
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 1;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 246, 228, 0.98) 0%, rgba(255, 233, 199, 0.58) 42%, transparent 72%);
  filter: blur(10px);
}

.hero-stage__frame-ring {
  position: absolute;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  border: 1px solid rgba(191, 156, 106, 0.18);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
}

.hero-stage__frame-ring--outer {
  top: 28px;
  width: calc(100% - 36px);
  height: calc(100% - 56px);
}

.hero-stage__frame-ring--inner {
  top: 94px;
  width: min(52%, 420px);
  height: min(54%, 320px);
}

.hero-stage__portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 424px);
  height: 392px;
  margin: 22px auto 0;
  border: 1px solid rgba(191, 156, 106, 0.22);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 240px;
  border-top-right-radius: 240px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 240, 230, 0.44)),
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.96), transparent 36%);
  overflow: hidden;
}

.hero-stage__portrait::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(239, 229, 216, 0.96));
}

.hero-stage__portrait-glow,
.hero-stage__portrait-image,
.hero-stage__portrait-base {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-stage__portrait-glow {
  top: 62px;
  width: 198px;
  height: 198px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 234, 1) 0%, rgba(255, 228, 190, 0.58) 44%, transparent 74%);
  filter: blur(8px);
}

.hero-stage__portrait-image {
  bottom: 0;
  width: min(100%, 436px);
  height: auto;
  max-height: 98%;
  z-index: 2;
  filter: drop-shadow(0 16px 30px rgba(57, 38, 21, 0.16));
}

.hero-stage__portrait-base {
  bottom: 28px;
  width: 310px;
  height: 102px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 211, 182, 0.42) 0%, rgba(232, 211, 182, 0.16) 48%, transparent 74%);
  filter: blur(10px);
}

.hero-summary {
  margin-top: -18px;
  padding: 0 0 var(--section-space);
}

.hero-summary__inner {
  display: grid;
  gap: var(--section-stack-gap);
}

.hero-summary__badges-mobile {
  display: none;
}

.hero-summary__accent {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(60, 44, 31, 0.96), rgba(36, 28, 22, 0.96));
  box-shadow: 0 20px 40px rgba(32, 23, 16, 0.18);
  color: #fff7ee;
  font-size: 1rem;
}

.hero-summary__accent p {
  color: inherit;
}

.hero-summary__accent-action {
  white-space: nowrap;
}

.hero-summary__content {
  display: grid;
  grid-template-columns: minmax(420px, 1.02fr) minmax(380px, 0.98fr);
  gap: 34px;
  align-items: center;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(251, 245, 236, 0.68));
  box-shadow: var(--shadow-soft);
}

.hero-summary__lead h2 {
  max-width: 17.5ch;
  font-size: clamp(1.88rem, 2.65vw, 2.5rem);
  line-height: 1.04;
}

.hero-summary__aside {
  display: grid;
  gap: 22px;
  max-width: none;
}

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

.hero-summary__actions .button {
  min-width: 220px;
}

.intro-band {
  padding: 0 0 var(--section-space);
}

.intro-band__stack {
  display: grid;
  gap: var(--section-stack-gap);
}

.intro-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(252, 247, 239, 0.62));
  box-shadow: var(--shadow-soft);
}

.intro-band__copy,
.intro-band__details,
.section-heading,
.results-copy,
.pricing-card,
.team-card,
.final-cta__box {
  display: grid;
}

.intro-band__copy,
.intro-band__details,
.results-copy,
.team-card,
.final-cta__box {
  gap: 18px;
}

.section-text--lead {
  max-width: 52ch;
  font-size: 1.08rem;
}

.intro-band__visual {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(191, 156, 106, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.intro-band__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro-band__details {
  grid-column: 1 / -1;
}

.panel-note {
  padding: 24px;
  border: 1px solid rgba(191, 156, 106, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.88);
}

.intro-band__copy .panel-note {
  margin-top: 2px;
}

.panel-note p {
  max-width: 72ch;
}

.intro-band__details {
  gap: 0;
}

.panel-note__label,
.results-stage__kicker,
.program-card__week,
.pricing-card__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card__role {
  margin: -2px 0 4px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

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

.pillar-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid rgba(191, 156, 106, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 245, 0.76);
  min-height: 100%;
}

.pillar-list__item span {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.intro-band__accent {
  padding: 20px 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(60, 44, 31, 0.96), rgba(36, 28, 22, 0.96));
  box-shadow: 0 20px 40px rgba(32, 23, 16, 0.18);
  color: #fff7ee;
  font-size: 1rem;
}

.intro-band + .section,
.intro-band + .final-cta,
.section + .section,
.section + .final-cta {
  padding-top: 24px;
}

.hero-stage__frame-ring--outer::before,
.hero-stage__frame-ring--outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(191, 156, 106, 0), rgba(191, 156, 106, 0.22), rgba(191, 156, 106, 0));
}

.hero-stage__frame-ring--outer::before {
  left: 50%;
  transform: translateX(-50%);
}

.hero-stage__frame-ring--outer::after {
  left: 26%;
}

.section {
  padding: var(--section-space) 0;
}

#for-you.section {
  padding-top: 12px;
}

#reviews.section {
  padding-top: 32px;
  padding-bottom: 20px;
}

#team.section {
  padding-top: 12px;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(255, 251, 244, 0.42);
}

.section-heading {
  gap: 10px;
  margin-bottom: 22px;
}

#team .section-heading h2 {
  font-size: clamp(2.4rem, 4.3vw, 3.5rem);
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.section-text--center {
  max-width: 44ch;
  margin: 0 auto;
}

.audience-grid,
.benefits-grid,
.program-grid,
.pricing-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

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

.audience-card,
.benefit-card,
.program-card,
.pricing-card,
.team-card {
  border: 1px solid rgba(191, 156, 106, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-soft);
}

.audience-card {
  padding: 24px;
}

.audience-card--wide {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  padding: 26px 30px;
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(60, 44, 31, 0.96), rgba(36, 28, 22, 0.96));
  box-shadow: 0 22px 44px rgba(34, 24, 16, 0.18);
  text-align: center;
}

.audience-card--wide p {
  max-width: none;
  font-family: "Cormorant Garamond", serif;
  color: #fff7ee;
  font-size: clamp(1.72rem, 2.25vw, 2.28rem);
  line-height: 1.02;
  white-space: nowrap;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.results-stage {
  display: flex;
}

.results-stage__shell {
  flex: 1;
  position: relative;
  min-height: 100%;
  min-height: 640px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(238, 228, 212, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.results-stage__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.04), rgba(29, 19, 12, 0.16));
  z-index: 1;
}

.results-stage__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.results-stage__title {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  gap: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  color: #fffaf3;
  text-shadow: 0 10px 24px rgba(44, 29, 14, 0.34);
  z-index: 2;
}

.results-stage__kicker {
  position: relative;
  z-index: 2;
  color: rgba(255, 246, 231, 0.92);
}

.results-stage__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 233, 0.18) 0%, rgba(255, 234, 203, 0.12) 44%, transparent 72%);
  filter: blur(10px);
  z-index: 1;
}

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

.benefit-card {
  position: relative;
  padding: 18px 18px 18px 46px;
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, rgba(191, 156, 106, 0.28) 74%);
  box-shadow: 0 0 18px rgba(191, 156, 106, 0.34);
}

.benefit-card p {
  line-height: 1.55;
}

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

.program-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.program-card--featured,
.pricing-card--featured {
  background:
    radial-gradient(circle at top, rgba(255, 243, 222, 0.76), transparent 48%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(245, 236, 222, 0.94));
  border-color: rgba(191, 156, 106, 0.26);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 18px;
  padding: 30px 28px 28px;
  height: 100%;
}

.pricing-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.88;
}

.pricing-card__price small {
  font-size: 0.42em;
}

.pricing-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 20px;
}

.pricing-list li strong {
  color: var(--ink);
  font-weight: 800;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.reviews-gallery {
  position: relative;
}

.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.reviews-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(191, 156, 106, 0.22);
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.84);
  color: var(--gold-deep);
  box-shadow: 0 14px 28px rgba(67, 46, 18, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.reviews-control:hover,
.reviews-control:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(191, 156, 106, 0.34);
  background: rgba(255, 252, 247, 0.96);
}

.reviews-control[disabled] {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

.reviews-control span {
  font-size: 1.1rem;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  align-items: start;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 111, 68, 0.4) transparent;
  padding: 4px 2px 14px;
}

.reviews-grid::-webkit-scrollbar {
  height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(143, 111, 68, 0.3);
}

.review-card {
  display: grid;
  gap: 12px;
  height: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.74);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.review-card--featured {
  background:
    radial-gradient(circle at top, rgba(255, 243, 222, 0.72), transparent 42%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 235, 221, 0.94));
  border-color: rgba(191, 156, 106, 0.26);
}

.review-card__frame {
  display: grid;
  gap: 10px;
}

.review-card__telegram {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(191, 156, 106, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.68);
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-card__shot {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(191, 156, 106, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(236, 227, 214, 0.48), rgba(255, 252, 246, 0.94)),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92), transparent 24%);
  overflow: hidden;
}

.review-card__shot::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(191, 156, 106, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 237, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.review-card__shot img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  z-index: 2;
}

.review-card__shot span {
  position: relative;
  z-index: 1;
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-note {
  display: grid;
  place-items: center;
  margin-top: 18px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(60, 44, 31, 0.96), rgba(36, 28, 22, 0.96));
  box-shadow: 0 22px 44px rgba(34, 24, 16, 0.16);
  text-align: center;
}

.reviews-note p {
  max-width: 50ch;
  color: #fff7ee;
  font-size: 1.02rem;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.team-card {
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  height: 100%;
  padding: 28px;
}

.team-card--featured {
  transform: none;
}

.team-card--featured .team-card__photo {
  min-height: 248px;
}

.team-card--featured p:last-child {
  max-width: 48ch;
}

.team-card__media {
  position: relative;
  margin-bottom: 4px;
}

.team-card__photo {
  display: grid;
  place-items: center;
  min-height: 248px;
  padding: 18px;
  border: 1px solid rgba(191, 156, 106, 0.18);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.96), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(241, 232, 218, 0.88));
  overflow: hidden;
}

.team-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__photo--cutout img {
  inset: auto 50% 0;
  width: auto;
  max-width: 112%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(-50%);
}

.team-card:not(.team-card--featured) .team-card__photo--cutout img {
  max-width: 112%;
}

.team-card h3 {
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  line-height: 0.98;
}

.team-card__photo::before {
  content: "";
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 232, 0.98) 0%, rgba(255, 231, 196, 0.54) 42%, transparent 74%);
  filter: blur(2px);
}

.team-card__photo span {
  position: absolute;
  inset: auto 20px 20px;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card__mark {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(191, 156, 106, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold-deep);
}

.team-card__role {
  margin: 2px 0 4px;
  font-size: 0.92rem;
  line-height: 1.36;
}

.team-card p:last-child {
  font-size: 0.98rem;
  line-height: 1.58;
}

.final-cta {
  padding: var(--section-space) 0 64px;
}

.final-cta__box {
  position: relative;
  justify-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.82fr);
  gap: 16px 34px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  min-height: 488px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(55, 40, 28, 0.96), rgba(36, 28, 22, 0.96));
  box-shadow: 0 28px 70px rgba(35, 24, 16, 0.22);
  overflow: hidden;
}

.final-cta__image {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 6;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-xl) - 10px);
  box-shadow: 0 24px 48px rgba(18, 12, 8, 0.18);
}

.final-cta__box::before,
.final-cta__box::after {
  content: "";
  position: absolute;
  inset: 0;
}

.final-cta__box::before {
  background:
    linear-gradient(90deg, rgba(35, 24, 16, 0.24) 0%, rgba(35, 24, 16, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(32, 22, 14, 0.18));
  z-index: 1;
}

.final-cta__box::after {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 241, 214, 0.2), transparent 18%),
    radial-gradient(circle at 88% 78%, rgba(255, 241, 214, 0.1), transparent 20%);
  z-index: 1;
}

.final-cta__box > * {
  position: relative;
  z-index: 2;
}

.final-cta__box > :not(.final-cta__image) {
  grid-column: 1;
}

.final-cta .eyebrow,
.section-text--light,
.final-cta h2 {
  color: #fff6eb;
}

.final-cta h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 3.25vw, 3.2rem);
  line-height: 1;
}

.site-footer {
  padding: 0 0 42px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.site-footer__title {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(34, 25, 18, 0.82);
  color: #fffaf2;
  box-shadow: 0 18px 32px rgba(27, 20, 15, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 28px;
  }

  .hero-summary__content,
  .intro-band__inner,
  .results-layout,
  .program-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .pillar-list {
    grid-template-columns: 1fr;
  }

  .team-card--featured {
    transform: none;
  }

  .final-cta__box {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .final-cta__image {
    grid-column: 1;
    grid-row: 1;
    min-height: 320px;
  }

  .final-cta__box > :not(.final-cta__image) {
    grid-column: 1;
  }

  .hero-stage__badge--top-left {
    left: 18px;
  }

  .hero-stage__badge--top-right {
    right: 18px;
  }

  .hero-stage__badge--bottom-left {
    left: 18px;
  }

  .hero-stage__badge--bottom-right {
    right: 18px;
  }

  .hero-summary__lead h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--shell), calc(100% - 24px));
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: center;
    padding: 14px;
    gap: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand__copy strong {
    font-size: 0.88rem;
    letter-spacing: 0.18em;
  }

  .brand__copy small {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .site-nav,
  .site-header .button--compact {
    display: none;
  }

  .reviews-controls {
    display: none;
  }

  .hero {
    padding: 12px 0 12px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero__title {
    font-size: clamp(1.74rem, 8.2vw, 2.32rem);
    letter-spacing: 0;
  }

  .hero__title--stage {
    position: relative;
    z-index: 4;
    width: auto;
    transform: none;
    margin: -22px -12px 0;
    padding: 8px 14px 10px;
    line-height: 0.92;
    text-shadow: none;
  }

  .hero-stage {
    display: grid;
    gap: 10px;
    margin-top: 4px;
  }

  .hero-stage__frame {
    order: 1;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: end;
    min-height: 470px;
    padding: 8px 12px 4px;
  }

  .hero-stage__badges {
    display: none;
  }

  .hero-stage__badge,
  .hero-stage__badge--top-left,
  .hero-stage__badge--top-right,
  .hero-stage__badge--bottom-left,
  .hero-stage__badge--bottom-right {
    position: static;
    max-width: none;
  }

  .hero-stage__badge {
    min-height: 74px;
    display: flex;
    align-items: end;
    padding: 12px 14px;
  }

  .hero-stage__badge strong {
    font-size: 0.96rem;
    line-height: 1.02;
  }

  .hero-stage__frame-ring--outer {
    top: 8px;
    width: calc(100% - 24px);
    height: calc(100% - 16px);
  }

  .hero-stage__frame-ring--inner {
    top: 18px;
    width: min(72%, 274px);
    height: 274px;
  }

  .hero-stage__portrait {
    width: min(100%, 348px);
    height: 446px;
    margin-top: -34px;
    align-self: end;
  }

  .hero-stage__portrait-glow {
    top: 2px;
    width: 188px;
    height: 188px;
  }

  .hero-stage__portrait-image {
    width: min(100%, 362px);
    max-height: 98%;
    bottom: -8px;
  }

  .hero-stage__portrait-base {
    bottom: 20px;
    width: 236px;
    height: 78px;
  }

  .hero-summary {
    margin-top: -18px;
    padding: 0 0 var(--section-space-mobile);
  }

  .hero-summary__badges-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-summary__content {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero-summary__accent {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px 14px;
    font-size: 0.94rem;
  }

  .hero-summary__accent-action {
    width: 100%;
  }

  .hero-summary__lead h2 {
    font-size: clamp(2rem, 7.6vw, 2.75rem);
  }

  .hero-summary__actions .button {
    width: 100%;
    min-width: 0;
  }

  .team-grid .team-card:nth-child(1) {
    order: 3;
  }

  .team-grid .team-card:nth-child(2) {
    order: 1;
  }

  .team-grid .team-card:nth-child(3) {
    order: 2;
  }

  .intro-band__visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .intro-band__visual img {
    object-fit: cover;
    object-position: center top;
  }

  .results-stage__shell {
    min-height: 500px;
    padding: 24px;
  }

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

  .audience-card--wide p {
    font-size: clamp(1.62rem, 6vw, 2.12rem);
    white-space: normal;
  }

  .section,
  .intro-band,
  .final-cta {
    padding: var(--section-space-mobile) 0;
  }

  #for-you.section {
    padding-top: 10px;
  }

  #reviews.section {
    padding-top: 28px;
    padding-bottom: 16px;
  }

  #team.section {
    padding-top: 10px;
  }

  .program-card,
  .pricing-card,
  .review-card,
  .team-card,
  .audience-card,
  .benefit-card,
  .panel-note,
  .pillar-list__item {
    padding: 22px;
  }

  .benefit-card {
    padding-left: 50px;
  }

  .reviews-grid {
    grid-auto-columns: minmax(82%, 320px);
    gap: 14px;
    padding-bottom: 10px;
  }

  .site-footer__inner {
    align-items: flex-start;
  }
}
