:root {
  --deep-navy: #111A26;
  --editorial-navy: #172231;
  --dusty-navy: #1C2836;
  --warm-ivory: #F6F1E9;
  --cream-white: #FAF7F1;
  --soft-sand: #DDD0BF;
  --matte-nude: #E6D2C3;
  --blush-beige: #EADCD1;
  --muted-gold: #B89A63;
  --soft-charcoal: #2B2E34;
  --warm-taupe: #8B8174;
  --border-warm: rgba(184, 154, 99, 0.24);
  --shadow-soft: 0 20px 55px rgba(17, 26, 38, 0.11);
  --shadow-card: 0 14px 34px rgba(17, 26, 38, 0.08);
  --shadow-hover: 0 22px 48px rgba(17, 26, 38, 0.14);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  --radius: 8px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.menu-scroll-locked,
body.menu-scroll-locked,
html.calendly-popup-open,
body.calendly-popup-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.calendly-popup-open {
  touch-action: none;
}

body.calendly-popup-open .site-shell {
  pointer-events: none;
}

body.calendly-popup-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background: rgba(17, 26, 38, 0.58);
}

body.calendly-popup-open .calendly-overlay,
body.calendly-popup-open .calendly-popup,
body.calendly-popup-open .calendly-popup-content {
  z-index: 2147483000 !important;
  pointer-events: auto;
}

body.calendly-popup-open .calendly-overlay {
  position: fixed !important;
  inset: 0 !important;
  overscroll-behavior: contain;
  background: rgba(17, 26, 38, 0.62) !important;
}

body.calendly-popup-open .calendly-popup {
  position: fixed !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  padding: 18px !important;
  overflow: auto !important;
}

body.calendly-popup-open .calendly-popup-content {
  width: min(100%, 1100px) !important;
  height: min(94dvh, 900px) !important;
  max-height: calc(100dvh - 36px) !important;
  overflow: auto !important;
  border-radius: 18px !important;
  box-shadow: 0 28px 80px rgba(17, 26, 38, 0.32) !important;
}

body.calendly-popup-open .calendly-popup-content iframe {
  width: 100% !important;
  min-height: 820px !important;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--warm-ivory);
  color: var(--soft-charcoal);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
}

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

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

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

a,
button,
[role="button"],
label.choice-option,
input[type="checkbox"],
input[type="radio"] {
  -webkit-tap-highlight-color: transparent;
}

a,
button,
[role="button"] {
  touch-action: manipulation;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background: var(--matte-nude);
  color: var(--deep-navy);
}

.site-shell {
  min-height: 100dvh;
  min-height: 100svh;
  overflow: visible;
  overscroll-behavior-y: auto;
  scrollbar-gutter: stable;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.container.narrow {
  width: min(900px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 233, 0.92);
  border-bottom: 1px solid rgba(184, 154, 99, 0.18);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto max-content;
  align-items: center;
  gap: clamp(14px, 1.25vw, 20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  max-width: 100%;
  justify-self: start;
}

.brand-mark {
  width: clamp(72px, 5.2vw, 78px);
  height: clamp(72px, 5.2vw, 78px);
  flex: 0 0 clamp(72px, 5.2vw, 78px);
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.brand-text {
  display: grid;
  gap: 3px;
  min-width: 0;
  width: min(260px, 100%);
  max-width: 260px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 0.98;
  color: var(--deep-navy);
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  color: rgba(111, 102, 92, 0.96);
  font-weight: 680;
  line-height: 1.14;
  white-space: nowrap;
}

.brand-positioning {
  font-size: clamp(0.56rem, 0.49vw, 0.61rem);
  font-weight: 680;
  color: rgba(17, 26, 38, 0.72);
  line-height: 1.13;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  flex-wrap: nowrap;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--soft-charcoal);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--muted-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  background: rgba(250, 247, 241, 0.78);
  border-color: rgba(184, 154, 99, 0.18);
  color: var(--deep-navy);
  box-shadow: 0 8px 20px rgba(17, 26, 38, 0.06);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
  min-width: max-content;
}

.desktop-cta {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.05;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(17, 26, 38, 0.12);
}

.desktop-cta .arrow {
  line-height: 1;
}

.desktop-cta.is-current,
.desktop-cta[aria-current="page"] {
  border-color: rgba(184, 154, 99, 0.5);
  box-shadow: 0 12px 24px rgba(17, 26, 38, 0.13), 0 0 0 3px rgba(184, 154, 99, 0.12);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(17, 26, 38, 0.14);
  border-radius: var(--radius);
  background: var(--cream-white);
  color: var(--deep-navy);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: var(--muted-gold);
  box-shadow: var(--shadow-card);
}

.menu-toggle:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.menu-line {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1.5px;
  margin: 0;
  border-radius: 999px;
  background: rgba(17, 26, 38, 0.82);
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 240ms ease, opacity 180ms ease, background 240ms ease;
}

.menu-line:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-line:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-line:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(42deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.35);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-42deg);
}

.btn {
  --btn-bg: var(--deep-navy);
  --btn-color: var(--warm-ivory);
  --btn-border: var(--deep-navy);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 500;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
  box-shadow: 0 12px 24px rgba(17, 26, 38, 0.16);
  cursor: pointer;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, background 320ms ease, border-color 320ms ease, color 320ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: var(--muted-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.btn .arrow {
  display: inline-block;
  transition: transform 280ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--editorial-navy);
  border-color: rgba(184, 154, 99, 0.72);
  box-shadow: 0 16px 32px rgba(17, 26, 38, 0.18);
}

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

.btn:hover .arrow,
.btn:focus-visible .arrow {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(17, 26, 38, 0.14);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.64;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:disabled::after,
.btn[aria-disabled="true"]::after {
  transform: scaleX(0);
}

.btn:focus-visible,
.text-link:focus-visible,
.accordion-trigger:focus-visible,
.carousel-btn:focus-visible,
.nav-links a:focus-visible,
.mobile-panel a:focus-visible {
  outline: 2px solid rgba(184, 154, 99, 0.78);
  outline-offset: 3px;
}

.btn.secondary {
  --btn-bg: transparent;
  --btn-color: var(--deep-navy);
  --btn-border: rgba(17, 26, 38, 0.24);
  box-shadow: none;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(221, 208, 191, 0.46);
  border-color: var(--muted-gold);
  box-shadow: 0 14px 28px rgba(17, 26, 38, 0.08);
}

.btn.light {
  --btn-bg: var(--cream-white);
  --btn-color: var(--deep-navy);
  --btn-border: rgba(246, 241, 233, 0.58);
}

.section.dark .btn.light:not(.assessment-detail-secondary),
.feature-band .btn.light,
.proof-cta-band .btn.light,
.card.dark-card .actions .btn.light:not(.secondary) {
  -webkit-tap-highlight-color: transparent;
  background: var(--cream-white);
  border-color: rgba(246, 241, 233, 0.72);
  color: var(--deep-navy);
}

.section.dark .btn.light:not(.assessment-detail-secondary):hover,
.section.dark .btn.light:not(.assessment-detail-secondary):focus,
.section.dark .btn.light:not(.assessment-detail-secondary):focus-visible,
.feature-band .btn.light:hover,
.feature-band .btn.light:focus,
.feature-band .btn.light:focus-visible,
.proof-cta-band .btn.light:hover,
.proof-cta-band .btn.light:focus,
.proof-cta-band .btn.light:focus-visible,
.card.dark-card .actions .btn.light:not(.secondary):hover,
.card.dark-card .actions .btn.light:not(.secondary):focus,
.card.dark-card .actions .btn.light:not(.secondary):focus-visible {
  background: var(--warm-ivory);
  border-color: rgba(246, 241, 233, 0.9);
  color: var(--deep-navy);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.section.dark .btn.light:not(.assessment-detail-secondary):active,
.feature-band .btn.light:active,
.proof-cta-band .btn.light:active,
.card.dark-card .actions .btn.light:not(.secondary):active {
  background: var(--soft-sand);
  border-color: rgba(246, 241, 233, 0.82);
  color: var(--deep-navy);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.section.dark .btn.light:not(.assessment-detail-secondary):focus:not(:focus-visible),
.feature-band .btn.light:focus:not(:focus-visible),
.proof-cta-band .btn.light:focus:not(:focus-visible),
.card.dark-card .actions .btn.light:not(.secondary):focus:not(:focus-visible) {
  outline: none;
  background: var(--cream-white);
  border-color: rgba(246, 241, 233, 0.72);
  color: var(--deep-navy);
}

.section.dark .assessment-detail-secondary:hover,
.section.dark .assessment-detail-secondary:focus-visible,
.section.dark .assessment-detail-secondary:active,
.card.dark-card .actions .assessment-detail-secondary:hover,
.card.dark-card .actions .assessment-detail-secondary:focus-visible,
.card.dark-card .actions .assessment-detail-secondary:active {
  background: var(--cream-white);
  border-color: rgba(246, 241, 233, 0.78);
  color: var(--deep-navy);
}

.btn.small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.88rem;
}

.site-header .desktop-cta {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.site-header .desktop-cta .arrow {
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-navy);
  font-weight: 500;
  line-height: 1.2;
}

.text-link span {
  transition: transform 260ms ease;
}

.text-link::after {
  content: "";
  height: 1px;
  width: 42px;
  background: var(--muted-gold);
  transform: scaleX(0.58);
  transform-origin: left;
  transition: transform 260ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.assessment-flow-modal[hidden] {
  display: none;
}

.assessment-flow-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: modalFade 220ms ease both;
}

.assessment-flow-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 26, 38, 0.58);
  backdrop-filter: blur(14px);
}

.assessment-flow-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(88dvh, 840px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(184, 155, 94, 0.42);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(250, 247, 241, 0.98), rgba(230, 214, 194, 0.58));
  box-shadow: 0 34px 90px rgba(11, 31, 51, 0.34);
  animation: modalLift 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.assessment-flow-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 26, 38, 0.12);
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.88);
  color: var(--deep-navy);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.assessment-flow-close:hover,
.assessment-flow-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(184, 154, 99, 0.66);
  box-shadow: 0 10px 24px rgba(17, 26, 38, 0.12);
  outline: none;
}

.assessment-flow-copy {
  max-width: 760px;
  margin-bottom: 24px;
}

.assessment-flow-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.assessment-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.assessment-flow-steps span {
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 155, 94, 0.28);
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.72);
  color: var(--deep-navy);
  font-weight: 700;
}

.assessment-start-form {
  display: grid;
  gap: 18px;
}

.assessment-modal-open,
.program-modal-open,
.cancellation-policy-open {
  overflow: hidden;
}

.cancellation-policy-dialog {
  width: min(760px, 100%);
  padding: clamp(26px, 4vw, 44px);
}

.cancellation-policy-copy {
  display: grid;
  gap: 18px;
  max-width: 660px;
}

.cancellation-policy-copy h2 {
  max-width: 540px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.cancellation-policy-body {
  display: grid;
  gap: 14px;
  color: rgba(17, 26, 38, 0.78);
  line-height: 1.72;
}

.cancellation-policy-body p {
  margin: 0;
}

.inline-policy-link {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: var(--deep-navy);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(184, 154, 99, 0.46);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.inline-policy-link:hover,
.inline-policy-link:focus-visible {
  color: var(--muted-gold);
  text-decoration-color: currentColor;
  outline: none;
}

.program-detail-btn {
  border-color: rgba(184, 154, 99, 0.42);
  background: rgba(250, 247, 241, 0.48);
}

.assessment-detail-secondary {
  border-color: rgba(184, 154, 99, 0.58);
  background: rgba(250, 247, 241, 0.94);
  color: var(--deep-navy);
  box-shadow: 0 12px 24px rgba(17, 26, 38, 0.07);
}

.assessment-detail-secondary:hover,
.assessment-detail-secondary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(184, 154, 99, 0.82);
  background: var(--cream-white);
  color: var(--deep-navy);
  box-shadow: 0 16px 34px rgba(17, 26, 38, 0.13);
}

.section.dark .assessment-detail-secondary,
.card.dark-card .assessment-detail-secondary {
  border-color: rgba(184, 154, 99, 0.68);
  background: rgba(250, 247, 241, 0.96);
  color: var(--deep-navy);
}

.program-detail-btn[aria-expanded="true"] {
  border-color: var(--muted-gold);
  background: rgba(184, 154, 99, 0.16);
  box-shadow: 0 12px 26px rgba(17, 26, 38, 0.08);
}

.assessment-detail-secondary[aria-expanded="true"] {
  border-color: rgba(184, 154, 99, 0.82);
  background: rgba(250, 247, 241, 0.96);
  color: var(--deep-navy);
}

.program-flow-modal[hidden] {
  display: none;
}

.program-flow-modal {
  position: fixed !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 520;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100vw;
  height: 100dvh;
  padding: 24px;
  animation: modalFade 240ms ease both;
}

.assessment-flow-modal.is-closing,
.program-flow-modal.is-closing {
  pointer-events: none;
  animation: modalFadeOut 180ms ease both;
}

.assessment-flow-modal.is-closing .assessment-flow-dialog,
.program-flow-modal.is-closing .program-flow-dialog {
  animation: modalSettleOut 180ms ease both;
}

.program-flow-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.88), rgba(23, 34, 49, 0.74)),
    rgba(17, 26, 38, 0.74);
  backdrop-filter: blur(16px);
}

.program-flow-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(184, 154, 99, 0.14) 0 1px, transparent 1px 72px);
  opacity: 0.42;
}

.program-flow-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 44px));
  height: min(84dvh, 760px);
  overflow: hidden;
  border: 1px solid rgba(184, 154, 99, 0.42);
  border-radius: 28px;
  background:
    linear-gradient(135deg, #fffbf5 0%, #faf7f1 48%, #f6f1e9 100%);
  box-shadow: 0 42px 110px rgba(3, 12, 24, 0.34);
  animation: modalLift 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.program-flow-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 26, 38, 0.14);
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.9);
  color: var(--deep-navy);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.program-flow-close:hover,
.program-flow-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(184, 154, 99, 0.66);
  box-shadow: 0 10px 24px rgba(17, 26, 38, 0.12);
  outline: none;
}

.program-flow-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.55fr);
  min-height: 0;
  height: 100%;
}

.program-flow-hero {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0;
  padding: clamp(30px, 4.2vw, 52px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(184, 154, 99, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.84));
  border-right: 1px solid rgba(184, 154, 99, 0.24);
  color: var(--deep-navy);
}

.program-flow-summary-stack {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(12px, 1.5vw, 17px);
  width: min(100%, 374px);
  margin-inline: auto;
  text-align: center;
}

.program-flow-summary-stack > * {
  min-width: 0;
}

.program-flow-hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(184, 154, 99, 0.28);
  border-radius: 18px;
  pointer-events: none;
}

.program-flow-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(184, 154, 99, 0.38);
  border-radius: 50%;
  background: rgba(255, 251, 245, 0.74);
  color: var(--muted-gold);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(17, 26, 38, 0.08);
}

.program-flow-summary-stack .program-flow-mark {
  margin-bottom: 2px;
}

.program-flow-mark::after {
  content: "";
  position: absolute;
  right: -14px;
  width: 36px;
  height: 1px;
  background: rgba(184, 154, 99, 0.48);
}

.program-flow-hero .section-eyebrow {
  color: var(--warm-taupe);
  margin: 0;
}

.program-flow-hero .section-eyebrow::before {
  background: var(--muted-gold);
}

.program-flow-hero h2 {
  color: var(--deep-navy);
  max-width: min(100%, 12ch);
  font-size: clamp(2.25rem, 3.35vw, 3.35rem);
  line-height: 0.96;
  text-align: center;
}

.program-flow-price {
  font-family: var(--serif);
  color: var(--deep-navy);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1;
}

.program-flow-rhythm {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(184, 154, 99, 0.28);
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.72);
  box-shadow: 0 14px 28px rgba(17, 26, 38, 0.05);
}

.program-flow-rhythm span {
  color: var(--warm-taupe);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.program-flow-rhythm strong {
  color: var(--deep-navy);
  font-size: 0.95rem;
  line-height: 1.35;
}

.program-flow-label {
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(184, 154, 99, 0.38);
  border-radius: 999px;
  background: rgba(184, 154, 99, 0.12);
  color: var(--deep-navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.program-flow-opening {
  max-width: 34ch;
  color: rgba(43, 46, 52, 0.8);
  font-size: 1.03rem;
  line-height: 1.5;
  text-align: center;
}

.program-flow-selector {
  display: none;
  grid-column: 1 / -1;
}

.program-flow-selector[hidden] {
  display: none !important;
}

.program-flow-selector button {
  min-height: 40px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.72);
  color: rgba(17, 26, 38, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.program-flow-selector button[aria-selected="true"] {
  border-color: rgba(184, 154, 99, 0.7);
  background: rgba(184, 154, 99, 0.16);
  color: var(--deep-navy);
}

.program-flow-selector button:focus-visible {
  outline: 2px solid rgba(184, 154, 99, 0.78);
  outline-offset: 3px;
}

.program-flow-selector button:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 154, 99, 0.58);
  color: var(--deep-navy);
}

.program-flow-route {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  width: 100%;
}

.program-flow-summary-stack .program-flow-credit {
  width: 100%;
  box-sizing: border-box;
  margin-top: 2px;
  padding: 15px 16px;
  text-align: left;
}

.program-flow-route span {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 14px 10px 40px;
  border: 1px solid rgba(184, 154, 99, 0.22);
  border-radius: 14px;
  background: rgba(255, 251, 245, 0.66);
  color: rgba(43, 46, 52, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.program-flow-route span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-gold);
}

.program-flow-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 16px;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(26px, 3.2vw, 42px);
  scrollbar-color: rgba(184, 154, 99, 0.54) rgba(246, 241, 233, 0.72);
  scrollbar-width: thin;
}

.program-flow-selector:not([hidden]) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(184, 154, 99, 0.22);
  border-radius: 999px;
  background: rgba(246, 241, 233, 0.68);
}

.program-flow-section {
  border: 1px solid rgba(184, 154, 99, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.9), rgba(246, 241, 233, 0.72));
  box-shadow: 0 18px 40px rgba(17, 26, 38, 0.06);
  padding: 18px 20px;
}

.program-flow-section > span {
  display: block;
  margin-bottom: 10px;
  color: var(--warm-taupe);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-flow-section h3 {
  margin: 0 0 6px;
  color: var(--deep-navy);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.08;
}

.program-flow-section p,
.program-flow-section li {
  color: var(--soft-charcoal);
  font-size: 0.96rem;
  line-height: 1.48;
}

.program-flow-section.wide,
.program-flow-actions,
.program-flow-content .form-note {
  grid-column: 1 / -1;
}

.program-flow-list {
  display: grid;
  gap: 9px;
  list-style: none;
}

.program-flow-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
}

.program-flow-list li {
  position: relative;
  min-height: 32px;
  padding: 7px 6px 7px 24px;
  border: 1px solid rgba(184, 154, 99, 0.11);
  border-radius: 10px;
  background: rgba(255, 251, 245, 0.38);
}

.program-flow-list li::before {
  content: "";
  position: absolute;
  top: 1.02em;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-gold);
  box-shadow: 0 0 0 3px rgba(184, 154, 99, 0.1);
}

.program-flow-experience {
  font-family: var(--serif);
  color: var(--deep-navy) !important;
  font-size: 1.36rem !important;
  line-height: 1.2 !important;
}

.program-flow-watchline {
  color: rgba(17, 26, 38, 0.78) !important;
  font-size: 0.95rem !important;
  font-weight: 650;
  line-height: 1.55 !important;
}

.program-flow-quote {
  position: relative;
  display: grid;
  gap: 8px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.97), rgba(246, 241, 233, 0.7));
}

.program-flow-quote::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 3px;
  border-radius: 999px;
  background: rgba(184, 154, 99, 0.62);
}

.program-flow-quote blockquote {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.18;
}

.program-flow-quote p {
  margin: 0;
  color: rgba(139, 129, 116, 0.92) !important;
  font-size: 0.78rem !important;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-flow-credit {
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.78));
  border-color: rgba(184, 154, 99, 0.42);
}

.program-flow-next {
  display: grid;
  gap: 10px;
  border-color: rgba(184, 154, 99, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.82));
  color: var(--deep-navy);
}

.program-flow-next > span,
.program-flow-next h3,
.program-flow-next p {
  color: var(--deep-navy);
}

.program-flow-next > span {
  color: rgba(184, 154, 99, 0.96);
}

.program-flow-next .form-note {
  margin: 0;
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.94rem;
}

.program-flow-credit p {
  color: rgba(17, 26, 38, 0.82) !important;
  font-size: 0.98rem !important;
}

.program-flow-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
}

.program-flow-actions .btn {
  min-width: 200px;
}

.program-flow-content .form-note {
  margin-top: -2px;
  font-size: 0.88rem;
  line-height: 1.42;
}

.program-flow-next .form-note {
  margin-top: 0;
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.94rem;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-dialog {
  width: min(1240px, calc(100vw - 44px));
  height: min(88dvh, 820px);
}

.program-flow-modal[data-active-program="assessment"] .program-flow-shell {
  grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1.72fr);
}

.program-flow-modal[data-active-program="assessment"] .program-flow-hero {
  align-content: start;
  justify-items: stretch;
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(40px, 3.8vw, 54px) clamp(28px, 3vw, 42px) clamp(30px, 3vw, 40px);
  scrollbar-color: rgba(184, 154, 99, 0.44) rgba(246, 241, 233, 0.52);
  scrollbar-width: thin;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-hero::before {
  inset: 22px;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-summary-stack {
  justify-items: center;
  gap: clamp(9px, 1.1vw, 13px);
  width: min(100%, 360px);
}

.program-flow-modal[data-active-program="assessment"] .program-flow-mark {
  width: 50px;
  height: 50px;
  font-size: 1.08rem;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-hero h2 {
  max-width: 12.5ch;
  font-size: clamp(1.92rem, 2.45vw, 2.58rem);
  line-height: 1.02;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-label {
  padding: 8px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.075em;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-price {
  font-size: clamp(1.72rem, 2.3vw, 2.18rem);
}

.program-flow-modal[data-active-program="assessment"] .program-flow-opening {
  max-width: 32ch;
  font-size: 0.96rem;
  line-height: 1.46;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-route {
  gap: 6px;
  margin-top: 2px;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-route span {
  min-height: 34px;
  padding: 8px 12px 8px 34px;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.26;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-route span::before {
  left: 14px;
  width: 7px;
  height: 7px;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-summary-stack .program-flow-credit {
  margin-top: 0;
  padding: 13px 14px;
  border-radius: 16px;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-credit > span {
  margin-bottom: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-credit p {
  font-size: 0.84rem !important;
  line-height: 1.42 !important;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-content {
  align-items: start;
  gap: 12px;
  padding: clamp(38px, 3.4vw, 50px) clamp(28px, 3.4vw, 46px) clamp(26px, 3vw, 40px);
}

.program-flow-modal[data-active-program="assessment"] .program-flow-section {
  padding: 15px 17px;
  border-radius: 17px;
  box-shadow: 0 14px 32px rgba(17, 26, 38, 0.05);
}

.program-flow-modal[data-active-program="assessment"] .program-flow-content > .program-flow-section:not(.wide):not(.program-flow-feel):not(.program-flow-watch) {
  align-self: stretch;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-section > span {
  margin-bottom: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-list {
  gap: 6px;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-list li {
  min-height: auto;
  padding: 5px 7px 5px 22px;
  border-radius: 9px;
  font-size: 0.9rem;
  line-height: 1.34;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-list li::before {
  top: 0.92em;
  left: 9px;
  width: 5px;
  height: 5px;
}

.program-flow-modal[data-active-program="assessment"] [data-program-focus] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 8px;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-list.columns {
  gap: 7px 10px;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-experience {
  font-size: 1.18rem !important;
  line-height: 1.22 !important;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-watchline {
  font-size: 0.9rem !important;
  line-height: 1.44 !important;
}

.program-flow-modal[data-active-program="assessment"] .program-flow-next {
  gap: 8px;
}

.program-flow-shell.is-switching .program-flow-hero,
.program-flow-shell.is-switching .program-flow-content {
  animation: programPackageSwitch 260ms ease both;
}

.program-flow-shell.is-switching[data-switch-direction="previous"] .program-flow-hero,
.program-flow-shell.is-switching[data-switch-direction="previous"] .program-flow-content {
  animation-name: programPackageSwitchPrevious;
}

.program-inline-panel[hidden] {
  display: none;
}

.program-inline-panel {
  margin: 26px 0 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(184, 154, 99, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 154, 99, 0.12), transparent 30%),
    linear-gradient(135deg, #fffbf5 0%, #faf7f1 52%, #f6f1e9 100%);
  box-shadow: 0 26px 68px rgba(17, 26, 38, 0.14);
  animation: modalLift 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.program-inline-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.72);
}

.program-inline-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.52fr);
  gap: clamp(18px, 2.8vw, 28px);
  align-items: start;
}

.program-inline-hero {
  align-content: start;
  min-height: 100%;
  padding: clamp(24px, 3.2vw, 36px);
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: 22px;
  border-right-color: rgba(184, 154, 99, 0.24);
  background:
    radial-gradient(circle at 16% 8%, rgba(184, 154, 99, 0.12), transparent 36%),
    rgba(255, 251, 245, 0.66);
}

.program-inline-hero h3 {
  color: var(--deep-navy);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 0.98;
}

.program-inline-hero::before {
  display: none;
}

.program-inline-content {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: auto;
  overflow: visible;
  padding: 0;
}

.program-inline-panel .program-flow-section {
  padding: 17px 18px;
  border-color: rgba(184, 154, 99, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.62), rgba(246, 241, 233, 0.42));
  box-shadow: none;
}

.program-inline-panel .program-flow-list {
  gap: 6px;
}

.program-inline-panel .program-flow-list li {
  min-height: auto;
  padding: 5px 0 5px 18px;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
}

.program-inline-panel .program-flow-list li::before {
  top: 1.04em;
  left: 2px;
  width: 5px;
  height: 5px;
  box-shadow: none;
}

.program-inline-panel .program-flow-quote {
  border-color: rgba(184, 154, 99, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.82), rgba(246, 241, 233, 0.48));
}

.program-inline-panel .program-flow-quote::before {
  inset-block: 20px;
  background: rgba(184, 154, 99, 0.48);
}

.program-inline-panel .program-flow-credit {
  margin-top: 4px;
  border-color: rgba(184, 154, 99, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.82), rgba(246, 241, 233, 0.54));
}

.program-inline-panel .program-flow-next {
  grid-column: 1 / -1;
  border-color: rgba(184, 154, 99, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.88), rgba(246, 241, 233, 0.58));
}

.program-inline-panel.is-switching .program-inline-hero,
.program-inline-panel.is-switching .program-inline-content {
  animation: programPackageSwitch 240ms ease both;
}

.program-inline-panel.is-switching[data-switch-direction="previous"] .program-inline-hero,
.program-inline-panel.is-switching[data-switch-direction="previous"] .program-inline-content {
  animation-name: programPackageSwitchPrevious;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }
}

@keyframes modalFadeOut {
  to {
    opacity: 0;
  }
}

@keyframes modalLift {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
}

@keyframes modalSettleOut {
  to {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
}

@keyframes programPackageSwitch {
  from {
    opacity: 0.32;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes programPackageSwitchPrevious {
  from {
    opacity: 0.32;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.section.tight {
  padding: 70px 0;
}

.section.light {
  background: var(--cream-white);
}

.section.sand {
  background: var(--soft-sand);
}

.section.nude {
  background: var(--matte-nude);
}

.section.dark {
  background: var(--deep-navy);
  color: var(--warm-ivory);
}

.section.dark .section-eyebrow,
.section.dark .muted,
.section.dark p {
  color: rgba(246, 241, 233, 0.74);
}

.section.dark h1,
.section.dark h2,
.section.dark h3 {
  color: var(--warm-ivory);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 50px;
  align-items: center;
}

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

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

.four-col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--warm-taupe);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--muted-gold);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
  text-wrap: balance;
}

h1 {
  font-size: 4.05rem;
  font-weight: 600;
}

h2 {
  font-size: 3.12rem;
  font-weight: 500;
}

h3 {
  font-size: 1.94rem;
  font-weight: 600;
  line-height: 1.08;
}

h4 {
  font-size: 1.45rem;
  font-weight: 600;
}

p {
  margin: 0;
  font-weight: 400;
  text-wrap: pretty;
}

li,
.lead,
.form-note,
.accordion-content,
.choice-option span {
  text-wrap: pretty;
}

.lead {
  font-size: 1.16rem;
  line-height: 1.68;
  color: rgba(43, 46, 52, 0.86);
}

.muted {
  color: var(--warm-taupe);
}

.serif-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.08em;
  text-wrap: balance;
}

.quote-summary,
.gold-emphasis {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-wrap: balance;
}

.gold-emphasis {
  color: var(--muted-gold);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-pill {
  border: 1px solid rgba(184, 154, 99, 0.28);
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.72);
  color: var(--deep-navy);
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero {
  padding: 48px 0 62px;
  min-height: calc(80svh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.84fr);
  gap: 46px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.78);
  color: var(--warm-taupe);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--muted-gold);
  border-radius: 50%;
}

.hero h1 {
  max-width: 790px;
}

.hero .lead {
  max-width: 650px;
  margin-top: 22px;
}

.microcopy {
  margin-top: 12px;
  color: var(--warm-taupe);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.portrait-frame {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 154, 99, 0.26);
  background: var(--cream-white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero .portrait-frame {
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 251, 245, 0.96), rgba(230, 214, 194, 0.62)),
    var(--cream-white);
  box-shadow: 0 34px 88px rgba(17, 26, 38, 0.16);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(184, 154, 99, 0.42);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.88) contrast(1.05) brightness(1.02);
}

.portrait-frame--flip-left img {
  transform: scaleX(-1);
}

.hero .portrait-frame img {
  height: 610px;
  object-position: center 30%;
  border-radius: calc(var(--radius) - 10px);
  filter: saturate(0.86) contrast(1.04) brightness(1.04);
}

.portrait-frame.logo-card {
  width: min(340px, 78vw);
  padding: 18px;
}

.portrait-frame.logo-card::before {
  display: none;
}

.portrait-frame.logo-card img {
  height: auto;
  object-fit: contain;
}

.image-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  border: 1px solid rgba(250, 247, 241, 0.28);
  background: rgba(17, 26, 38, 0.78);
  color: var(--warm-ivory);
  backdrop-filter: blur(14px);
}

.image-caption strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
}

.image-caption span {
  color: rgba(246, 241, 233, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .image-caption {
  left: 32px;
  right: 32px;
  bottom: 32px;
  border-color: rgba(246, 241, 233, 0.34);
  background:
    linear-gradient(135deg, rgba(17, 26, 38, 0.82), rgba(43, 46, 52, 0.68));
}

.gold-rule {
  width: 76px;
  height: 1px;
  margin: 28px 0;
  background: var(--muted-gold);
  transform-origin: left;
}

.card {
  position: relative;
  display: grid;
  align-content: start;
  height: 100%;
  padding: 26px;
  border: 1px solid rgba(184, 154, 99, 0.23);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.82);
  box-shadow: var(--shadow-card);
  overflow-wrap: break-word;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease, border-color 340ms ease, background 340ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.58);
  box-shadow: var(--shadow-hover);
}

.card.sand-card {
  background: rgba(221, 208, 191, 0.42);
}

.card.nude-card {
  background: rgba(230, 210, 195, 0.52);
}

.her-work-proof-card {
  align-content: start;
}

.her-work-proof-stack {
  display: grid;
  gap: 0;
  margin-top: 24px;
  padding-top: 4px;
  border-top: 1px solid rgba(184, 154, 99, 0.26);
}

.her-work-proof-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(184, 154, 99, 0.18);
}

.her-work-proof-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.her-work-proof-item h4 {
  margin: 0 0 7px;
  color: var(--deep-navy);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.her-work-proof-item p {
  margin: 0;
  color: rgba(43, 46, 52, 0.76);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card.dark-card {
  background: var(--editorial-navy);
  border-color: rgba(184, 154, 99, 0.28);
  color: var(--warm-ivory);
}

.card.dark-card h3,
.card.dark-card h4 {
  color: var(--warm-ivory);
}

.card.dark-card p,
.card.dark-card li {
  color: rgba(246, 241, 233, 0.76);
}

.card h3,
.card h4 {
  margin-bottom: 16px;
  line-height: 1.1;
}

.card p + p {
  margin-top: 12px;
}

.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--warm-taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--muted-gold);
}

.icon-mark {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1px solid rgba(184, 154, 99, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(250, 247, 241, 0.92), rgba(230, 210, 195, 0.48));
  display: grid;
  place-items: center;
  color: var(--deep-navy);
  box-shadow: 0 10px 22px rgba(17, 26, 38, 0.07);
  transition: transform 300ms ease, border-color 300ms ease;
}

.card:hover .icon-mark {
  transform: translateY(-2px) rotate(-1deg);
  border-color: var(--muted-gold);
}

.icon-mark svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.list-clean li {
  position: relative;
  padding-left: 26px;
  color: rgba(43, 46, 52, 0.82);
}

.list-clean li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--muted-gold);
}

.dark .list-clean li {
  color: rgba(246, 241, 233, 0.78);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.compare-card {
  padding: 34px;
  border: 1px solid rgba(246, 241, 233, 0.16);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.06);
}

.compare-card h3 {
  color: var(--warm-ivory);
  margin-bottom: 20px;
}

.compare-card.featured,
.comparison-card--method {
  background-color: #FAF7F1;
  background-image: linear-gradient(135deg, #FFFBF5 0%, #F6F1E9 100%);
  border-color: rgba(184, 154, 99, 0.45);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18), 0 12px 34px rgba(184, 154, 99, 0.12);
}

.dark .compare-card.featured h3,
.comparison-card--method h3 {
  color: var(--deep-navy);
}

.dark .compare-card.featured .list-clean li,
.comparison-card--method .list-clean li {
  color: rgba(17, 26, 38, 0.86);
}

.dark .compare-card.featured .list-clean li::before,
.comparison-card--method .list-clean li::before {
  background: var(--muted-gold);
}

.method-path-section {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.84));
}

.method-explanation-section {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(246, 241, 233, 0.9));
}

.method-explanation-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(184, 154, 99, 0.26);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(246, 241, 233, 0.78));
  box-shadow: 0 24px 60px rgba(17, 26, 38, 0.08);
}

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

.method-explanation-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}

.method-explanation-copy p {
  margin: 0;
  color: rgba(43, 46, 52, 0.78);
  line-height: 1.68;
}

.method-explanation-copy .lead {
  color: var(--deep-navy);
}

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

.method-principle-card {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 158px;
  padding: 20px;
  border: 1px solid rgba(184, 154, 99, 0.2);
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.74);
  box-shadow: 0 14px 30px rgba(17, 26, 38, 0.045);
}

.method-principle-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 154, 99, 0.72), transparent);
}

.method-principle-card span {
  color: var(--muted-gold);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1;
}

.method-principle-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.method-principle-card p {
  margin: 0;
  color: rgba(43, 46, 52, 0.76);
  font-size: 0.95rem;
  line-height: 1.5;
}

.method-principle-card:nth-child(5) {
  grid-column: 1 / -1;
  min-height: auto;
}

.method-explanation-footer {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 154, 99, 0.24);
}

.method-explanation-footer p {
  max-width: 680px;
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.35;
}

.movement-path-line {
  position: relative;
  width: min(760px, 100%);
  height: 34px;
  margin: -6px auto 24px;
}

.movement-path-line::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(17, 26, 38, 0.18), rgba(184, 154, 99, 0.72), rgba(17, 26, 38, 0.18), transparent);
}

.movement-path-line span {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted-gold);
  box-shadow: 0 0 0 7px rgba(184, 154, 99, 0.12);
  transform: translate(-50%, -50%);
}

.movement-path-line span:nth-child(1) { left: 8%; }
.movement-path-line span:nth-child(2) { left: 29%; }
.movement-path-line span:nth-child(3) { left: 50%; }
.movement-path-line span:nth-child(4) { left: 71%; }
.movement-path-line span:nth-child(5) { left: 92%; }

.method-journey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.method-journey-card {
  position: relative;
  min-height: 210px;
  padding: 24px 22px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.78);
  box-shadow: 0 16px 36px rgba(17, 26, 38, 0.06);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.method-journey-card:hover,
.method-journey-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.54);
  box-shadow: 0 22px 48px rgba(17, 26, 38, 0.1);
}

.method-journey-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted-gold);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.method-journey-card h3 {
  margin-bottom: 12px;
  font-size: 1.46rem;
}

.method-journey-card p {
  color: rgba(43, 46, 52, 0.78);
  font-size: 0.96rem;
  line-height: 1.52;
}

.method-pillar {
  overflow: hidden;
}

.method-pillar .reveal-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms ease, opacity 360ms ease, margin-top 360ms ease;
}

.method-pillar:hover .reveal-detail,
.method-pillar:focus-within .reveal-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 14px;
}

.blueprint {
  position: relative;
  min-height: 440px;
  padding: 34px;
  border: 1px solid rgba(184, 154, 99, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(250, 247, 241, 0.92), rgba(250, 247, 241, 0.92)),
    repeating-linear-gradient(90deg, rgba(184, 154, 99, 0.16) 0, rgba(184, 154, 99, 0.16) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(0deg, rgba(184, 154, 99, 0.12) 0, rgba(184, 154, 99, 0.12) 1px, transparent 1px, transparent 48px);
  box-shadow: var(--shadow-card);
}

.blueprint-line {
  position: absolute;
  inset: 46px 52px;
  border-left: 1px solid rgba(17, 26, 38, 0.18);
  border-bottom: 1px solid rgba(17, 26, 38, 0.12);
}

.blueprint-curve {
  position: absolute;
  width: 44%;
  height: 62%;
  top: 17%;
  right: 15%;
  border: 1px solid transparent;
  border-left-color: rgba(184, 154, 99, 0.84);
  border-radius: 48%;
  transform: rotate(10deg);
}

.blueprint-note {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin-top: 210px;
  padding: 18px;
  border-left: 2px solid var(--muted-gold);
  background: rgba(246, 241, 233, 0.8);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: outcome;
}

.outcome-card {
  counter-increment: outcome;
  position: relative;
  display: grid;
  align-items: start;
  min-height: 132px;
  padding: 42px 24px 24px;
  border: 1px solid rgba(184, 154, 99, 0.2);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.82);
  overflow-wrap: break-word;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.outcome-card::before {
  content: counter(outcome, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 24px;
  color: rgba(184, 154, 99, 0.82);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.outcome-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 1px;
  background: rgba(184, 154, 99, 0.42);
}

.outcome-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 154, 99, 0.54);
  background: rgba(250, 247, 241, 0.94);
  box-shadow: var(--shadow-card);
}

.outcome-card h3 {
  max-width: none;
  margin: 0;
  text-align: left;
  font-size: 1.34rem;
  line-height: 1.12;
}

.quote-carousel {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: var(--blush-beige);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.quote-slide {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.quote-slide.active {
  display: block;
  animation: slideIn 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.quote-text {
  max-width: 840px;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--deep-navy);
  font-size: 1.75rem;
  line-height: 1.42;
}

.quote-meta {
  margin-top: 22px;
  color: var(--warm-taupe);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
}

.carousel-arrows {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 26, 38, 0.22);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.8);
  color: var(--deep-navy);
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  border-color: var(--muted-gold);
  background: var(--cream-white);
  box-shadow: 0 10px 22px rgba(17, 26, 38, 0.08);
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 26, 38, 0.24);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 260ms ease, background 260ms ease;
}

.dot.active {
  background: var(--muted-gold);
  transform: scale(1.25);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.package-preview-grid,
.program-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1060px);
  margin-inline: auto;
}

.program-context-note {
  width: min(100%, 760px);
  margin: 18px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.68);
  color: rgba(43, 46, 52, 0.84);
  font-size: 0.98rem;
  line-height: 1.55;
}

.package-value-micro-note {
  width: min(100%, 860px);
  margin: 18px auto 20px;
  color: var(--warm-taupe);
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

.package-clarity-card {
  width: min(100%, 940px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 22px 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(184, 154, 99, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.92), rgba(246, 241, 233, 0.72));
  box-shadow: 0 18px 44px rgba(17, 26, 38, 0.08);
}

.package-clarity-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.18rem);
}

.package-clarity-card p {
  color: rgba(43, 46, 52, 0.8);
  line-height: 1.56;
}

.package-clarity-levels {
  display: grid;
  gap: 10px;
}

.package-clarity-levels p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(184, 154, 99, 0.18);
  border-radius: 16px;
  background: rgba(250, 247, 241, 0.72);
}

.package-clarity-levels strong,
.package-clarity-card.compact strong {
  color: var(--deep-navy);
}

.support-depth-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-depth-map li {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 74px;
  align-content: center;
  padding: 15px 15px 15px 36px;
  border: 1px solid rgba(184, 154, 99, 0.2);
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.72);
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.9rem;
  line-height: 1.38;
}

.support-depth-map li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-gold);
  box-shadow: 0 0 0 5px rgba(184, 154, 99, 0.12);
}

.support-depth-map strong {
  color: var(--deep-navy);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.support-depth-map small {
  display: block;
  color: rgba(43, 46, 52, 0.72);
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.16;
}

.support-depth-map.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.package-clarity-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 154, 99, 0.22);
  font-size: 0.98rem;
}

.package-clarity-card.compact {
  width: min(100%, 820px);
  display: block;
  margin-top: 28px;
  padding: 20px 22px;
}

.package-clarity-card.compact p {
  margin: 0;
  text-align: center;
}

.assessment-credit-note,
.assessment-credit-inline {
  border: 1px solid rgba(184, 154, 99, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.82), rgba(246, 241, 233, 0.58));
  color: rgba(43, 46, 52, 0.8);
  line-height: 1.5;
}

.assessment-credit-note {
  display: grid;
  gap: 7px;
  padding: 15px 16px;
}

.assessment-credit-note strong,
.assessment-credit-inline strong {
  color: var(--deep-navy);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
}

.assessment-credit-note p {
  margin: 0;
  font-size: 0.93rem;
}

.assessment-credit-inline {
  padding: 13px 14px;
  font-size: 0.9rem;
}

.dark-credit-note {
  background: rgba(246, 241, 233, 0.08);
  border-color: rgba(246, 241, 233, 0.24);
  color: rgba(246, 241, 233, 0.78);
}

.dark-credit-note strong {
  color: var(--muted-gold);
}

.package-credit-note {
  width: min(100%, 860px);
  margin: -4px auto 28px;
}

#assessment.section.dark {
  padding: 86px 0;
}

#assessment + #programs.section {
  padding-top: 72px;
}

#programs .section-heading.center {
  margin-bottom: 24px;
}

#programs .section-heading.center + .section-heading.center {
  margin-top: 34px;
  margin-bottom: 22px;
}

#programs .section-heading.center p {
  max-width: 780px;
}

#programs .program-context-note {
  margin-top: 10px;
  padding: 13px 16px;
}

#programs .package-credit-note {
  margin-top: -2px;
  margin-bottom: 22px;
}

.application-credit-note {
  margin: 0;
}

.assessment-first-card {
  width: min(100%, 980px);
  margin: 26px auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.38fr);
  gap: 12px 26px;
  align-items: center;
  padding: 24px 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 154, 99, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(246, 241, 233, 0.86));
}

.assessment-first-card h3 {
  margin: 0;
}

.assessment-first-card > .badge,
.assessment-first-card h3 {
  grid-column: 1;
}

.assessment-first-card > p:not(.price),
.assessment-first-card .assessment-credit-inline,
.assessment-first-card .package-value-stack {
  grid-column: 1;
  max-width: 64ch;
}

.assessment-first-card .price {
  grid-column: 2;
  grid-row: 2 / span 2;
  justify-self: end;
  align-self: center;
  margin: 0;
}

.assessment-first-card .price-card-actions {
  grid-column: 2;
  grid-row: 4 / span 2;
  align-self: end;
  width: min(100%, 300px);
  margin-top: 0;
  justify-self: end;
}

.package-preview-grid .price-card {
  gap: 10px;
}

.package-preview-grid .price-card > p:not(.price) {
  max-width: none;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  min-height: 100%;
  border: 1px solid rgba(184, 154, 99, 0.23);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.88);
  box-shadow: var(--shadow-card);
  overflow-wrap: break-word;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease, border-color 340ms ease, background 340ms ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.58);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  transform: translateY(-5px);
  border-color: rgba(184, 154, 99, 0.72);
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.98), rgba(230, 210, 195, 0.54));
  box-shadow: 0 24px 54px rgba(17, 26, 38, 0.14);
}

.price-card.featured::before {
  content: "STRUCTURED PROGRESS";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(184, 154, 99, 0.34);
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.82);
  color: var(--deep-navy);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.price-card.featured:hover {
  transform: translateY(-7px);
}

.package-support-card {
  isolation: isolate;
  align-items: center;
  gap: 10px;
  padding: clamp(22px, 2.2vw, 28px);
  text-align: center;
  border-color: rgba(184, 154, 99, 0.26);
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 154, 99, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 251, 245, 0.98), rgba(246, 241, 233, 0.86));
  box-shadow: 0 18px 42px rgba(17, 26, 38, 0.08);
}

.package-support-card::after {
  display: none;
}

.package-support-card.featured {
  transform: none;
  border-color: rgba(184, 154, 99, 0.62);
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 154, 99, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(255, 251, 245, 1), rgba(246, 241, 233, 0.9));
  box-shadow: 0 22px 50px rgba(17, 26, 38, 0.11);
}

.package-support-card.featured::before {
  display: none;
}

.package-support-card.featured:hover {
  transform: translateY(-3px);
}

.package-support-card.reveal:not(.is-visible) {
  transform: translateY(18px);
}

.package-support-card.featured.reveal.is-visible {
  transform: none;
}

.package-support-card.featured.reveal.is-visible:hover {
  transform: translateY(-3px);
}

.package-card-mark {
  display: grid;
  place-items: center;
  margin-inline: auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 154, 99, 0.36);
  border-radius: 50%;
  background: rgba(255, 251, 245, 0.86);
  color: var(--muted-gold);
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(17, 26, 38, 0.05);
}

.package-support-card .badge {
  margin-top: 2px;
  border: 1px solid rgba(184, 154, 99, 0.42);
  background: rgba(250, 247, 241, 0.94);
  color: var(--deep-navy);
}

.package-top-badge {
  margin: 2px auto 0;
}

.package-support-card.featured .badge {
  border-color: rgba(184, 154, 99, 0.58);
  background: linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(246, 241, 233, 0.92));
}

.price-card.package-support-card h3 {
  margin-top: 0;
  color: var(--deep-navy);
  font-size: clamp(1.66rem, 2vw, 2rem);
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.package-support-label {
  width: fit-content;
  margin: -2px auto 0;
  padding: 0 0 7px;
  border-left: 0;
  border-bottom: 2px solid var(--muted-gold);
  border-radius: 0;
  background: transparent;
  color: var(--deep-navy);
  font-weight: 760;
  line-height: 1.35;
}

.package-positioning {
  max-width: 32ch;
  margin-inline: auto;
  color: rgba(43, 46, 52, 0.82);
  font-size: 0.94rem;
  line-height: 1.44;
}

.package-best-for {
  max-width: 34ch;
  margin-top: 0;
  margin-inline: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(184, 154, 99, 0.18);
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.42;
}

.package-session-frequency {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  max-width: min(100%, 34ch);
  min-height: 1.72rem;
  margin: 1px auto 0;
  text-align: center;
  white-space: nowrap;
  color: var(--deep-navy);
  font-size: 0.89rem;
  font-weight: 850;
  line-height: 1.24;
}

.package-session-frequency::before {
  content: "";
  flex: 0 0 8px;
  align-self: center;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-gold);
  box-shadow: 0 0 0 5px rgba(184, 154, 99, 0.12);
  transform: translateY(0.01em);
}

.package-support-card .price {
  margin-top: 3px;
}

.package-support-card .price-card-actions {
  margin-top: 2px;
  padding-top: 2px;
}

.package-price-action {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
}

.package-price-action .price-card-actions {
  justify-content: center;
  width: 100%;
}

.package-price-action .btn {
  justify-content: center;
}

@media (min-width: 769px) {
  .package-preview-grid > .package-support-card,
  .program-pricing-grid > .package-support-card {
    height: 100%;
  }

  .package-preview-grid > .package-support-card h3,
  .program-pricing-grid > .package-support-card h3 {
    min-height: 2.16em;
  }

  .package-preview-grid > .package-support-card .package-positioning,
  .program-pricing-grid > .package-support-card .package-positioning {
    min-height: 7.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .package-preview-grid > .package-support-card .package-best-for,
  .program-pricing-grid > .package-support-card .package-best-for {
    min-height: 4.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .package-preview-grid > .package-support-card .package-session-frequency,
  .program-pricing-grid > .package-support-card .package-session-frequency {
    min-height: 2.35rem;
    align-items: center;
  }

  .package-preview-grid > .package-support-card .package-price-action,
  .program-pricing-grid > .package-support-card .package-price-action {
    margin-top: auto;
  }
}

.badge {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(184, 154, 99, 0.42);
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.94);
  color: var(--deep-navy);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assessment-status-pill {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(184, 154, 99, 0.42);
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.94);
  color: var(--deep-navy);
  box-shadow: 0 10px 22px rgba(17, 26, 38, 0.08);
  letter-spacing: 0.12em;
}

.section-eyebrow.assessment-status-pill {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
}

.section-eyebrow.assessment-status-pill::before {
  display: none;
}

.card.dark-card .assessment-status-pill,
.section.dark .assessment-status-pill {
  border-color: rgba(184, 154, 99, 0.5);
  background: rgba(250, 247, 241, 0.96);
  color: var(--deep-navy);
}

.card.dark-card .price {
  margin: 2px 0 4px;
  font-size: clamp(2.18rem, 3.2vw, 2.72rem);
}

.card.dark-card .actions {
  gap: 10px;
  align-items: center;
}

.card.dark-card .actions .btn.light:not(.secondary) {
  border-color: rgba(255, 251, 245, 0.92);
  background: rgba(255, 251, 245, 0.98);
  color: var(--deep-navy);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.card.dark-card .actions .assessment-detail-secondary {
  border-color: rgba(246, 241, 233, 0.44);
  background: rgba(246, 241, 233, 0.08);
  color: rgba(255, 251, 245, 0.94);
  box-shadow: none;
}

.card.dark-card .actions .assessment-detail-secondary:hover,
.card.dark-card .actions .assessment-detail-secondary:focus-visible {
  border-color: rgba(184, 154, 99, 0.62);
  background: rgba(250, 247, 241, 0.94);
  color: var(--deep-navy);
}

.price-card h3 {
  font-size: 1.84rem;
  line-height: 1.08;
}

.price {
  font-family: var(--serif);
  color: var(--deep-navy);
  font-size: 2.5rem;
  line-height: 1;
}

.price small {
  font-family: var(--sans);
  color: var(--warm-taupe);
  font-size: 0.88rem;
}

.package-value-note {
  margin-top: -6px;
  padding: 11px 13px;
  border-left: 2px solid var(--muted-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(246, 241, 233, 0.72);
  color: var(--deep-navy);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.42;
}

.price-card .list-clean {
  margin-top: 0;
}

.package-value-stack {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.package-value-stack li {
  position: relative;
  padding-left: 19px;
  color: rgba(43, 46, 52, 0.78);
  font-size: 0.9rem;
  line-height: 1.42;
}

.package-value-stack li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-gold);
  box-shadow: 0 0 0 4px rgba(184, 154, 99, 0.12);
}

.package-value-stack.compact {
  margin-top: 16px;
}

.package-quick-list {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  list-style: none;
}

.package-quick-list li {
  position: relative;
  padding-left: 24px;
  color: var(--soft-charcoal);
  line-height: 1.45;
}

.package-quick-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--muted-gold);
}

.price-card-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.price-card-actions .btn {
  width: 100%;
  justify-content: center;
}

.package-price-action .price-card-actions .btn {
  width: min(100%, 230px);
}

.program-assessment-note {
  width: min(100%, 900px);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(184, 154, 99, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(250, 247, 241, 0.92), rgba(230, 210, 195, 0.46));
  box-shadow: 0 16px 34px rgba(17, 26, 38, 0.07);
}

.program-assessment-note span {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  color: var(--deep-navy);
  font-size: 1.65rem;
  line-height: 1;
}

.program-assessment-note p {
  color: var(--soft-charcoal);
}

.evaluation-strip {
  padding: 44px 0 62px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(246, 241, 233, 0.84));
}

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

.noticing-focus-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(100%, 760px);
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
}

.noticing-focus-list li {
  padding: 8px 11px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.68);
  color: rgba(17, 26, 38, 0.76);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1;
}

.evaluation-card,
.proof-card,
.testimonial-feature-card,
.testimonial-card,
.client-voice-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.86);
  box-shadow: var(--shadow-card);
  overflow-wrap: break-word;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease, border-color 340ms ease, background 340ms ease;
}

.evaluation-card:hover,
.proof-card:hover,
.testimonial-feature-card:hover,
.testimonial-card:hover,
.client-voice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.58);
  box-shadow: var(--shadow-hover);
}

.evaluation-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted-gold);
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 1;
}

.evaluation-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.evaluation-card p {
  color: rgba(43, 46, 52, 0.76);
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-proof-band {
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.95), rgba(230, 214, 194, 0.38));
}

.home-proof-grid,
.featured-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-featured-testimonials,
.stories-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.client-voice-grid,
.stories-compact-grid {
  display: grid;
  gap: 14px;
}

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

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

.proof-card,
.testimonial-feature-card,
.client-voice-card {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.proof-card.featured,
.testimonial-feature-card:nth-child(1),
.client-voice-card:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.76));
  border-color: rgba(184, 154, 99, 0.42);
}

.testimonial-feature-card.editorial {
  gap: 13px;
}

.testimonial-feature-card.editorial h3,
.client-voice-card h3 {
  color: var(--deep-navy);
  line-height: 1.08;
}

.testimonial-feature-card.editorial h3 {
  font-size: clamp(1.42rem, 2vw, 1.82rem);
}

.client-voice-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.testimonial-excerpt {
  color: rgba(43, 46, 52, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

.compact-heading {
  margin-top: 26px;
  margin-bottom: 14px;
}

.proof-theme {
  margin-bottom: 18px;
  color: var(--warm-taupe);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.proof-card blockquote,
.testimonial-feature-card blockquote,
.testimonial-card blockquote,
.client-voice-card blockquote {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(1.24rem, 2vw, 1.58rem);
  font-weight: 560;
  line-height: 1.28;
}

.testimonial-card blockquote,
.client-voice-card blockquote {
  font-size: 1.22rem;
}

.proof-source {
  margin-top: 22px;
  color: var(--soft-charcoal);
  font-weight: 800;
}

.proof-note,
.claim-note,
.testimonial-legal-note {
  color: rgba(43, 46, 52, 0.64);
  font-size: 0.86rem;
  line-height: 1.48;
}

.proof-note {
  margin: 20px auto 0;
  max-width: 680px;
  text-align: center;
}

.testimonial-legal-note {
  width: min(100%, 760px);
  margin: 18px auto 0;
  padding: 14px 18px;
  border-top: 1px solid rgba(184, 154, 99, 0.22);
  border-bottom: 1px solid rgba(184, 154, 99, 0.16);
  text-align: center;
}

#client-stories {
  scroll-margin-top: calc(var(--header-height) + 14px);
}

#support-levels,
.section-anchor {
  scroll-margin-top: 96px;
}

.section-anchor {
  display: block;
  height: 0;
  overflow: hidden;
}

.mobile-support-shortcut {
  display: none;
}

.claim-note {
  margin-top: 12px;
}

.voice-context {
  margin: 14px 0 0;
  color: rgba(43, 46, 52, 0.68);
  font-size: 0.9rem;
  line-height: 1.48;
}

.subtle-proof-grid,
.curated-story-grid {
  display: grid;
  gap: 16px;
}

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

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

.subtle-proof-note,
.story-proof-card {
  position: relative;
  padding: 20px 22px;
  border: 1px solid rgba(184, 154, 99, 0.18);
  border-left: 2px solid rgba(184, 154, 99, 0.52);
  border-radius: 10px;
  background: rgba(255, 251, 245, 0.56);
  box-shadow: none;
}

.subtle-proof-note blockquote,
.story-proof-card blockquote {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 540;
  line-height: 1.32;
}

.subtle-proof-note .proof-theme,
.story-proof-card .proof-theme {
  margin-bottom: 12px;
}

.story-proof-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.story-proof-card h3 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(1.26rem, 2vw, 1.62rem);
  line-height: 1.12;
}

.story-proof-body {
  display: grid;
  gap: 8px;
}

.story-proof-body p {
  margin: 0;
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.94rem;
  line-height: 1.52;
}

.editorial-proof-strip {
  display: grid;
  gap: 12px;
  width: min(100%, 900px);
  margin: 34px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(184, 154, 99, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.78));
  box-shadow: var(--shadow-card);
}

.editorial-proof-strip.compact {
  width: min(100%, 780px);
  margin-top: 28px;
  padding: 22px 24px;
}

.editorial-proof-strip.split {
  border-color: rgba(184, 154, 99, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(235, 222, 203, 0.62));
}

.editorial-proof-strip blockquote,
.mini-proof-card blockquote,
.application-proof-note blockquote {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  font-weight: 560;
  line-height: 1.28;
}

.process-proof-band,
.archive-proof-section {
  margin-top: 58px;
}

.support-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 980px);
  margin: 24px auto 28px;
}

.support-insight-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px 24px;
  border: 1px solid rgba(184, 154, 99, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.82), rgba(246, 241, 233, 0.56));
  box-shadow: 0 16px 38px rgba(17, 26, 38, 0.06);
}

.support-insight-card .section-eyebrow {
  margin-bottom: 0;
}

.support-insight-card h3 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(1.34rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.support-insight-card p:not(.section-eyebrow),
.support-insight-card li {
  color: rgba(43, 46, 52, 0.76);
  font-size: 0.94rem;
  line-height: 1.48;
}

.support-insight-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-insight-list li {
  position: relative;
  padding-left: 18px;
}

.support-insight-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(184, 154, 99, 0.78);
}

.support-insight-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 14px;
}

.support-insight-note {
  margin: 2px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 154, 99, 0.18);
  color: rgba(43, 46, 52, 0.64) !important;
}

.process-proof-grid,
.archive-proof-grid,
.trust-proof-pair,
.faq-trust-strip {
  display: grid;
  gap: 14px;
}

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

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

.trust-proof-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.faq-trust-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.mini-proof-card,
.application-proof-note {
  padding: 20px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.74);
  box-shadow: 0 16px 38px rgba(17, 26, 38, 0.08);
}

.application-proof-note {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.premium-proof-page .proof-theme-row {
  margin-bottom: 34px;
}

.testimonial-theme-section {
  margin-top: 72px;
}

.testimonial-theme-section .section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.premium-proof-page .stories-featured-grid,
.premium-proof-page .stories-compact-grid {
  align-items: start;
}

.premium-proof-page .stories-featured-grid {
  gap: 20px;
}

.premium-proof-page .stories-compact-grid {
  gap: 16px;
}

.premium-proof-page .testimonial-feature-card.editorial {
  min-height: auto;
  align-self: start;
  gap: 12px;
  padding: clamp(22px, 2.4vw, 30px);
  border-color: rgba(184, 154, 99, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(250, 247, 241, 0.82) 48%, rgba(246, 241, 233, 0.62)),
    rgba(250, 247, 241, 0.9);
  box-shadow:
    0 18px 42px rgba(17, 26, 38, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.premium-proof-page .testimonial-feature-card.editorial::before,
.premium-proof-page .client-voice-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 22px;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(184, 154, 99, 0.58);
}

.premium-proof-page .testimonial-feature-card.editorial:hover,
.premium-proof-page .client-voice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 154, 99, 0.32);
  box-shadow:
    0 22px 48px rgba(17, 26, 38, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.premium-proof-page .testimonial-feature-card.editorial .proof-theme,
.premium-proof-page .client-voice-card .proof-theme {
  margin-bottom: 10px;
  padding-top: 12px;
  color: rgba(139, 129, 116, 0.86);
}

.premium-proof-page .testimonial-feature-card.editorial h3,
.premium-proof-page .client-voice-card h3 {
  margin-bottom: 2px;
}

.premium-proof-page .testimonial-feature-card.editorial .testimonial-excerpt {
  color: rgba(43, 46, 52, 0.72);
}

.premium-proof-page .testimonial-feature-card.editorial blockquote,
.premium-proof-page .client-voice-card blockquote {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(184, 154, 99, 0.16);
}

.premium-proof-page .testimonial-feature-card.editorial .proof-source,
.premium-proof-page .client-voice-card .proof-source {
  margin-top: 12px;
}

.premium-proof-page .testimonial-feature-card:nth-child(1),
.premium-proof-page .client-voice-card:nth-child(1) {
  border-color: rgba(184, 154, 99, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 247, 241, 0.84) 52%, rgba(246, 241, 233, 0.66)),
    rgba(250, 247, 241, 0.9);
}

.premium-proof-page .client-voice-card {
  min-height: auto;
  align-self: start;
  gap: 9px;
  padding: 20px;
  border-color: rgba(184, 154, 99, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 251, 245, 0.7) 54%, rgba(246, 241, 233, 0.5)),
    rgba(255, 251, 245, 0.72);
  box-shadow:
    0 14px 34px rgba(17, 26, 38, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.premium-proof-page .client-voice-card::before {
  top: 16px;
  left: 20px;
  width: 30px;
  background: rgba(184, 154, 99, 0.46);
}

.premium-proof-page .client-voice-card h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.2rem);
  line-height: 1.16;
}

.premium-proof-page .client-voice-card blockquote {
  color: rgba(17, 26, 38, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.18rem);
  line-height: 1.32;
}

.premium-proof-page .testimonial-theme-section {
  margin-top: 62px;
}

.premium-proof-page .proof-cta-band {
  margin-top: 56px;
}

.premium-proof-page .client-consistency {
  margin-top: 50px;
  border-color: rgba(184, 154, 99, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 251, 245, 0.76)),
    rgba(255, 251, 245, 0.7);
  box-shadow: 0 16px 38px rgba(17, 26, 38, 0.05);
}

.stories-instagram-note {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 640px;
  margin: 52px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(184, 154, 99, 0.2);
  text-align: center;
}

.stories-instagram-note h2 {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(1.72rem, 3vw, 2.28rem);
  line-height: 1.08;
}

.stories-instagram-note p {
  max-width: 560px;
  margin: 0;
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.96rem;
  line-height: 1.58;
}

.instagram-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 0;
  padding: 8px 16px;
  border: 1px solid rgba(17, 26, 38, 0.16);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.6);
  color: var(--deep-navy);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  text-underline-offset: 4px;
  box-shadow: 0 8px 18px rgba(17, 26, 38, 0.035);
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

.instagram-cta-link span {
  display: inline-block;
}

.instagram-cta-link .instagram-link-icon,
.instagram-cta-link svg {
  width: 14px;
  height: 14px;
  color: rgba(184, 154, 99, 0.92);
  stroke: currentColor;
  stroke-width: 1.65;
  fill: none;
  flex: 0 0 auto;
}

.instagram-cta-link:hover,
.instagram-cta-link:focus-visible {
  color: var(--deep-navy);
  border-color: rgba(184, 154, 99, 0.42);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: 0 10px 22px rgba(17, 26, 38, 0.055);
  transform: translateY(-1px);
}

.instagram-cta-link:focus-visible {
  outline: 2px solid rgba(184, 154, 99, 0.72);
  outline-offset: 4px;
}

.instagram-cta-link:focus:not(:focus-visible) {
  outline: none;
}

.premium-proof-page .archive-proof-section .mini-proof-card,
.premium-proof-page .archive-proof-grid .mini-proof-card,
.premium-proof-page .archive-proof-grid .subtle-proof-note {
  border-color: rgba(184, 154, 99, 0.14);
  background: rgba(255, 251, 245, 0.58);
  box-shadow: 0 10px 26px rgba(17, 26, 38, 0.035);
}

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

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

.proof-cta-band {
  margin: 66px 0 0;
  overflow: hidden;
}

.proof-cta-band-inner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.proof-cta-band-content {
  min-width: 0;
}

.proof-cta-band .btn {
  flex: 0 0 auto;
  max-width: 100%;
}

.client-consistency {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 58px;
  padding: 34px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.76);
  box-shadow: var(--shadow-card);
}

.client-consistency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-consistency-grid li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 15px 14px 34px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.86), rgba(246, 241, 233, 0.72));
  box-shadow: 0 8px 18px rgba(17, 26, 38, 0.04);
}

.client-consistency-grid li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-gold);
  box-shadow: 0 0 0 5px rgba(184, 154, 99, 0.11);
  transform: translateY(-50%);
}

.client-consistency-grid span {
  color: var(--deep-navy);
  font-size: 0.9rem;
  font-weight: 740;
  line-height: 1.28;
}

.credentials-section {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(246, 241, 233, 0.72));
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.credential-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.86);
  box-shadow: var(--shadow-card);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease, border-color 340ms ease;
}

.credential-card:hover,
.credential-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.58);
  box-shadow: var(--shadow-hover);
}

.credential-card span {
  margin-bottom: 18px;
  color: var(--warm-taupe);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.credential-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.credential-card p {
  color: rgba(43, 46, 52, 0.76);
  font-size: 0.94rem;
  line-height: 1.52;
}

.credential-note {
  width: min(100%, 820px);
  margin: 22px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-left: 3px solid var(--muted-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 251, 245, 0.7);
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.9rem;
  line-height: 1.48;
}

.credential-meaning-line {
  width: fit-content;
  max-width: min(100%, 620px);
  margin: 18px auto 0;
  padding: 11px 16px;
  border-top: 1px solid rgba(184, 154, 99, 0.24);
  border-bottom: 1px solid rgba(184, 154, 99, 0.16);
  color: rgba(17, 26, 38, 0.74);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.42;
}

.credentials-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.credentials-carousel-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: credentialDrift 58s linear infinite;
  will-change: transform;
}

.credentials-carousel:hover .credentials-carousel-track,
.credentials-carousel:focus-within .credentials-carousel-track {
  animation-play-state: paused;
}

.credential-proof-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 clamp(310px, 32vw, 410px);
  overflow: hidden;
  border: 1px solid rgba(184, 154, 99, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.99), rgba(246, 241, 233, 0.86));
  box-shadow: 0 20px 48px rgba(17, 26, 38, 0.11);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.credential-proof-card:hover,
.credential-proof-card:focus-visible {
  outline: none;
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.56);
  box-shadow: 0 24px 58px rgba(17, 26, 38, 0.14);
}

.credential-image-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1555 / 1011;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 154, 99, 0.28);
  background: rgba(255, 251, 245, 0.96);
}

.credential-image-frame img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  filter: contrast(1.06) saturate(1.04);
}

.credential-proof-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 19px 20px;
}

.credential-proof-copy span {
  color: var(--warm-taupe);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.credential-proof-copy h3 {
  color: var(--deep-navy);
  font-size: 1.38rem;
  line-height: 1.08;
}

.credential-proof-copy p {
  color: rgba(43, 46, 52, 0.78);
  font-size: 0.92rem;
  line-height: 1.4;
}

.credential-proof-copy .credential-meta {
  display: block;
  color: rgba(43, 46, 52, 0.68);
  font-size: 0.84rem;
  line-height: 1.35;
}

.credential-proof-copy em,
.credential-proof-copy .credential-verification-line {
  display: block;
  margin-top: 0;
  padding-top: 2px;
  color: rgba(139, 129, 116, 0.88);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.35;
}

.credential-social-note {
  margin-top: 12px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(139, 129, 116, 0.84);
  font-size: 0.88rem;
  text-align: center;
}

.credential-social-note p {
  margin: 0;
}

.instagram-profile-link:not(.instagram-cta-link) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(17, 26, 38, 0.74);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.instagram-profile-link::before,
.instagram-profile-link::after {
  content: none;
  display: none;
}

.instagram-profile-link:not(.instagram-cta-link) svg {
  color: rgba(184, 154, 99, 0.92);
}

.instagram-profile-link:not(.instagram-cta-link):hover {
  color: var(--muted-gold);
  transform: translateY(-1px);
}

.instagram-profile-link:not(.instagram-cta-link):focus-visible {
  outline: 2px solid rgba(184, 154, 99, 0.72);
  outline-offset: 4px;
  border-radius: 999px;
}

.psychology-credential-card {
  width: min(100%, 760px);
  margin: 20px auto 0;
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.86), rgba(246, 241, 233, 0.64));
  box-shadow: 0 16px 38px rgba(17, 26, 38, 0.07);
}

.psychology-credential-card span {
  color: var(--warm-taupe);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.psychology-credential-card h3 {
  color: var(--deep-navy);
  font-size: 1.58rem;
  line-height: 1.08;
}

.psychology-credential-card p {
  color: rgba(43, 46, 52, 0.78);
  font-size: 0.94rem;
  line-height: 1.5;
}

.psychology-credential-card small {
  color: rgba(139, 129, 116, 0.9);
  font-size: 0.82rem;
  line-height: 1.45;
}

@keyframes credentialDrift {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 32px;
  padding: 34px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.86);
  box-shadow: var(--shadow-card);
  overflow-wrap: break-word;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease, border-color 340ms ease, background 340ms ease;
}

.story-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.58);
  box-shadow: var(--shadow-hover);
}

.story-card + .story-card {
  margin-top: 22px;
}

.proof-theme-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.proof-theme-row article {
  padding: 18px;
  border: 1px solid rgba(184, 154, 99, 0.22);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.76);
  box-shadow: 0 10px 22px rgba(17, 26, 38, 0.05);
}

.proof-theme-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.05;
}

.proof-theme-row p {
  color: rgba(43, 46, 52, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.story-meta {
  display: grid;
  align-content: start;
  gap: 20px;
  border-right: 1px solid rgba(184, 154, 99, 0.22);
  padding-right: 28px;
}

.story-meta h3 {
  font-size: 2.1rem;
  line-height: 1.06;
}

.story-meta p {
  color: var(--warm-taupe);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.32rem;
  line-height: 1.12;
}

.story-body {
  display: grid;
  gap: 16px;
  max-width: 76ch;
}

.story-body h4 {
  margin-bottom: 8px;
  font-family: var(--sans);
  color: var(--deep-navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid rgba(184, 154, 99, 0.23);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.86);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(17, 26, 38, 0.04);
}

.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--deep-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 26px;
  text-align: left;
  line-height: 1.36;
  transition: background 300ms ease;
}

.accordion-trigger:hover {
  background: rgba(221, 208, 191, 0.32);
}

.accordion-trigger span:first-child {
  font-weight: 780;
}

.accordion-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(184, 154, 99, 0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--deep-navy);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, background 320ms ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  border-color: var(--muted-gold);
  background: rgba(184, 154, 99, 0.12);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-content {
  padding: 0 26px 26px;
  color: rgba(43, 46, 52, 0.84);
}

.accordion-content p + p {
  margin-top: 12px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.step-card {
  counter-increment: step;
  position: relative;
  padding: 24px;
  border: 1px solid rgba(184, 154, 99, 0.22);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.84);
  box-shadow: var(--shadow-card);
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted-gold);
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 1;
}

.step-card h3 {
  font-size: 1.48rem;
  margin-bottom: 12px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 30px;
  align-items: stretch;
  padding: 36px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.82);
  box-shadow: var(--shadow-soft);
}

.location-map {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 18px;
  min-height: 320px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 154, 99, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(250, 247, 241, 0.98), rgba(246, 241, 233, 0.92) 48%, rgba(230, 210, 195, 0.68));
  color: var(--deep-navy);
  text-align: center;
  padding: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 251, 245, 0.7), 0 22px 52px rgba(17, 26, 38, 0.09);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.location-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 154, 99, 0.22);
  pointer-events: none;
}

.location-map:hover,
.location-map:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 251, 245, 0.75), 0 28px 62px rgba(17, 26, 38, 0.13);
}

.location-logo-wrap {
  position: relative;
  z-index: 1;
  width: min(220px, 62%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(184, 154, 99, 0.28);
  border-radius: 50%;
  background: var(--cream-white);
  box-shadow: none;
}

.location-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.location-map-copy {
  position: relative;
  z-index: 1;
  max-width: 330px;
}

.location-map h3 {
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.location-map p {
  color: var(--soft-charcoal);
}

.page-hero {
  padding: 78px 0 68px;
  background: var(--warm-ivory);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  max-width: 800px;
}

.page-hero .lead {
  max-width: 720px;
  margin-top: 20px;
}

.hero-side-note {
  padding: 26px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: var(--cream-white);
  box-shadow: var(--shadow-card);
}

.feature-band {
  padding: 54px 0;
  background: var(--deep-navy);
  color: var(--warm-ivory);
}

.feature-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.feature-band h2 {
  color: var(--warm-ivory);
  font-size: 2.25rem;
}

.program-comparison {
  overflow: hidden;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: var(--cream-white);
  box-shadow: var(--shadow-card);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(184, 154, 99, 0.18);
}

.support-comparison-table .comparison-row {
  grid-template-columns: minmax(140px, 0.78fr) repeat(4, minmax(0, 1fr));
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  padding: 20px;
  border-left: 1px solid rgba(184, 154, 99, 0.18);
}

.comparison-row > div:first-child {
  border-left: 0;
  color: var(--warm-taupe);
  font-weight: 800;
}

.comparison-head {
  background: var(--deep-navy);
  color: var(--warm-ivory);
}

.comparison-head > div:first-child {
  color: rgba(246, 241, 233, 0.74);
}

.comparison-head strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
}

.yes {
  color: var(--deep-navy);
  font-weight: 800;
}

.placeholder-box {
  padding: 32px;
  border: 1px dashed rgba(184, 154, 99, 0.64);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(250, 247, 241, 0.9), rgba(230, 210, 195, 0.42));
}

.placeholder-box h3 {
  margin-bottom: 12px;
}

.placeholder-box .actions {
  margin-top: 24px;
}

.fine-print {
  margin-top: 16px;
  color: var(--warm-taupe);
  font-size: 0.92rem;
}

.assessment-form,
.application-success {
  display: grid;
  gap: 24px;
}

.form-progress {
  display: grid;
  gap: 10px;
  color: var(--warm-taupe);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-progress [data-application-step-label] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-navy);
  font-weight: 700;
}

.form-progress [data-application-step-label]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-gold);
  box-shadow: 0 0 0 6px rgba(184, 154, 99, 0.12);
}

.progress-track {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(184, 154, 99, 0.18);
}

.progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--muted-gold);
  transition: width 320ms ease;
}

.application-step {
  display: none;
  gap: 18px;
}

.application-step.active {
  display: grid;
  animation: fadeUp 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.application-step h3,
.application-success h3 {
  font-size: 2.05rem;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field span {
  color: var(--deep-navy);
  font-weight: 500;
  line-height: 1.36;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17, 26, 38, 0.16);
  border-radius: var(--radius);
  background: var(--cream-white);
  color: var(--soft-charcoal);
  padding: 14px 15px;
  box-shadow: 0 10px 24px rgba(17, 26, 38, 0.04);
  transition: border-color 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 118px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(184, 154, 99, 0.72);
  box-shadow: 0 0 0 3px rgba(184, 154, 99, 0.16);
  background: #fffdf8;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.form-note {
  color: var(--warm-taupe);
  font-size: 0.9rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.submission-textarea {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.application-success {
  align-content: center;
  min-height: 520px;
  padding: 32px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 241, 233, 0.96), rgba(230, 210, 195, 0.52));
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 26px;
  align-items: start;
}

.apply-page {
  --deep-navy: #102A43;
  --editorial-navy: #0B1F33;
  --warm-ivory: #FAF6EF;
  --cream-white: #FFFBF5;
  --soft-sand: #E6D6C2;
  --matte-nude: #EAD9C8;
  --muted-gold: #B89B5E;
}

.apply-hero {
  padding: 76px 0 46px;
  background:
    linear-gradient(135deg, rgba(250, 246, 239, 0.96), rgba(230, 214, 194, 0.42)),
    var(--warm-ivory);
}

.apply-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.76fr);
  gap: 36px;
  align-items: start;
}

.apply-hero-copy {
  padding-top: 20px;
}

.apply-hero-copy h1 {
  max-width: 820px;
}

.apply-hero-copy .lead {
  max-width: 700px;
  margin-top: 22px;
}

.apply-hero-copy p:not(.hero-kicker):not(.lead):not(.apply-statement) {
  max-width: 760px;
  margin-top: 18px;
}

.apply-statement {
  width: fit-content;
  margin-top: 24px;
  padding: 14px 18px;
  border-left: 2px solid var(--muted-gold);
  background: rgba(255, 251, 245, 0.72);
  color: var(--deep-navy);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.16;
}

.apply-intro-card {
  padding: 32px;
  border: 1px solid rgba(184, 155, 94, 0.32);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.86);
  box-shadow: 0 24px 60px rgba(11, 31, 51, 0.12);
}

.apply-intro-card h2 {
  font-size: 2.38rem;
  margin-bottom: 18px;
}

.apply-intro-card p + p {
  margin-top: 13px;
}

.gold-btn {
  --btn-bg: var(--muted-gold);
  --btn-color: var(--deep-navy);
  --btn-border: var(--muted-gold);
  box-shadow: 0 15px 30px rgba(184, 155, 94, 0.18);
}

.gold-btn:hover,
.gold-btn:focus-visible {
  background: #c6a766;
  border-color: #c6a766;
  color: var(--deep-navy);
}

.apply-trust-section {
  padding: 52px 0;
  background: var(--warm-ivory);
}

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

.application-trust-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(184, 155, 94, 0.28);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.82);
  box-shadow: 0 16px 38px rgba(11, 31, 51, 0.08);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.application-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 155, 94, 0.62);
  box-shadow: 0 24px 52px rgba(11, 31, 51, 0.12);
}

.application-trust-card span {
  display: inline-flex;
  color: var(--muted-gold);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 24px;
}

.application-trust-card h3 {
  font-size: 1.72rem;
  margin-bottom: 14px;
}

.apply-form-section {
  padding: 78px 0 112px;
  background:
    linear-gradient(180deg, rgba(250, 246, 239, 0.94), rgba(230, 214, 194, 0.42));
}

.application-container {
  width: min(1080px, calc(100% - 40px));
}

.application-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(184, 155, 94, 0.34);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 30px 75px rgba(11, 31, 51, 0.14);
}

.application-form-header {
  max-width: 790px;
  margin-bottom: 32px;
}

.application-form-header h2 {
  margin-bottom: 16px;
}

.application-privacy-note {
  display: grid;
  gap: 8px;
  margin: -6px 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(184, 155, 94, 0.28);
  border-left: 3px solid var(--muted-gold);
  border-radius: 0 18px 18px 0;
  background: rgba(250, 246, 239, 0.74);
  color: rgba(43, 46, 52, 0.82);
  font-size: 0.94rem;
  line-height: 1.52;
}

.application-privacy-note strong {
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.08;
}

.application-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  padding: 15px 18px;
  border: 1px solid rgba(184, 155, 94, 0.34);
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.74);
  color: var(--warm-taupe);
  box-shadow: 0 12px 30px rgba(17, 26, 38, 0.04);
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.application-timer strong {
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
  transition: color 320ms ease;
}

.application-timer span,
.application-timer small {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.application-timer.expired {
  border-color: rgba(184, 155, 94, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.92), rgba(234, 220, 209, 0.68)),
    rgba(234, 220, 209, 0.58);
  box-shadow: 0 18px 42px rgba(17, 26, 38, 0.07);
}

.application-timer.expired strong {
  color: var(--muted-gold);
}

.application-timer.expired small {
  color: var(--deep-navy);
}

.premium-assessment-form {
  gap: 28px;
}

.application-payment-note {
  display: grid;
  gap: 8px;
  max-width: 880px;
  padding: 16px 18px;
  border: 1px solid rgba(184, 155, 94, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.92), rgba(250, 247, 241, 0.7));
  color: rgba(43, 46, 52, 0.82);
  box-shadow: 0 14px 34px rgba(17, 26, 38, 0.045);
}

.application-payment-note h4 {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(1.24rem, 2vw, 1.48rem);
  line-height: 1.12;
}

.application-payment-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.application-progress {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  z-index: 5;
  padding: 14px 0 16px;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(12px);
}

.application-step {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(184, 155, 94, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(250, 246, 239, 0.98), rgba(230, 214, 194, 0.24));
}

.application-step h3 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 2.72rem);
}

.pre-assessment-notice {
  display: grid;
  gap: 14px;
  max-width: 870px;
  color: rgba(43, 46, 52, 0.84);
  font-size: 1.02rem;
  line-height: 1.68;
}

.pre-assessment-notice p {
  margin: 0;
}

.notice-principles {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 18px 20px;
  border-left: 3px solid var(--muted-gold);
  border-radius: 0 16px 16px 0;
  background: rgba(250, 247, 241, 0.74);
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 600;
  line-height: 1.1;
}

.pre-assessment-confirmation {
  margin-top: 28px;
  border-color: rgba(184, 155, 94, 0.46);
  background: rgba(255, 251, 245, 0.94);
  box-shadow: 0 14px 32px rgba(17, 26, 38, 0.06);
}

.step-intro {
  max-width: 820px;
  margin-bottom: 24px;
  color: rgba(43, 46, 52, 0.82);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.premium-assessment-form .form-field {
  margin-top: 14px;
}

.premium-assessment-form .form-field:first-child,
.form-grid .form-field {
  margin-top: 0;
}

.form-field small {
  color: var(--warm-taupe);
  font-size: 0.86rem;
  line-height: 1.45;
}

.written-answer-group {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.premium-assessment-form .written-answer-group {
  margin-top: 18px;
}

.form-grid .written-answer-group,
.written-answer-group .form-field {
  margin-top: 0;
}

.choice-group,
.rating-row {
  min-width: 0;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.choice-group legend,
.rating-row legend {
  width: 100%;
  margin-bottom: 12px;
  color: var(--deep-navy);
  font-weight: 600;
  line-height: 1.38;
}

.choice-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 26, 38, 0.12);
  border-radius: 14px;
  background: rgba(255, 251, 245, 0.78);
  color: rgba(43, 46, 52, 0.88);
  cursor: pointer;
  transition: border-color 280ms ease, background 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.choice-option:hover,
.choice-option:focus-within {
  transform: translateY(-1px);
  border-color: rgba(184, 155, 94, 0.58);
  background: rgba(250, 246, 239, 0.96);
  box-shadow: 0 8px 18px rgba(11, 31, 51, 0.04);
}

.choice-option input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--muted-gold);
}

.choice-option span {
  line-height: 1.45;
}

.choice-option:has(input:checked) {
  border-color: rgba(184, 155, 94, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(184, 155, 94, 0.16));
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.06);
}

.no-answer-option {
  min-height: 46px;
  margin-top: 0;
  border-color: rgba(184, 155, 94, 0.28);
  background: rgba(250, 246, 239, 0.62);
  color: rgba(43, 46, 52, 0.8);
}

.no-answer-option span {
  font-size: 0.94rem;
}

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

.checkbox-grid .choice-option {
  height: 100%;
  margin-top: 0;
}

.field-error {
  padding: 14px;
  border: 1px solid rgba(184, 99, 94, 0.5);
  border-radius: 18px;
  background: rgba(255, 246, 243, 0.78);
}

.screening-table {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.screening-head,
.screening-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(84px, 0.18fr));
  gap: 8px;
  align-items: stretch;
}

.screening-head {
  color: var(--warm-taupe);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screening-head span,
.screening-row > span,
.screening-row label {
  display: grid;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 155, 94, 0.2);
  border-radius: 14px;
  background: rgba(255, 251, 245, 0.78);
}

.screening-row > span {
  color: rgba(43, 46, 52, 0.9);
  font-weight: 500;
  line-height: 1.38;
}

.screening-row label {
  justify-items: center;
  cursor: pointer;
}

.screening-row label:has(input:checked) {
  border-color: rgba(184, 155, 94, 0.64);
  background: rgba(184, 155, 94, 0.18);
  box-shadow: 0 8px 18px rgba(11, 31, 51, 0.04);
}

.screening-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--muted-gold);
}

.rating-list {
  display: grid;
  gap: 12px;
}

.rating-row {
  padding: 16px;
  border: 1px solid rgba(184, 155, 94, 0.22);
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.72);
}

.rating-options {
  display: grid;
  grid-template-columns: repeat(10, minmax(42px, 1fr));
  gap: 8px;
}

.rating-options label {
  position: relative;
  cursor: pointer;
}

.rating-options input {
  position: absolute;
  opacity: 0;
}

.rating-options span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(17, 26, 38, 0.14);
  border-radius: 12px;
  background: rgba(250, 246, 239, 0.88);
  color: var(--deep-navy);
  font-weight: 700;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.rating-options input:checked + span,
.rating-options label:hover span,
.rating-options label:focus-within span {
  transform: translateY(-1px);
  border-color: var(--muted-gold);
  background: rgba(184, 155, 94, 0.26);
  box-shadow: 0 8px 18px rgba(11, 31, 51, 0.05);
}

.consent-box {
  padding: 18px;
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: 20px;
  background: rgba(250, 246, 239, 0.86);
}

.consent-option {
  align-items: flex-start;
  margin-top: 0;
}

.final-review-card {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(184, 155, 94, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.9), rgba(246, 241, 233, 0.78));
  box-shadow: 0 14px 32px rgba(17, 26, 38, 0.06);
}

.final-review-card span {
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 620;
  line-height: 1.12;
}

.final-review-card p {
  color: rgba(43, 46, 52, 0.78);
  line-height: 1.55;
}

.final-review-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-review-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(43, 46, 52, 0.8);
  font-size: 0.94rem;
  line-height: 1.45;
}

.final-review-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--muted-gold);
}

.final-confirmation-note {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: 18px;
  background: rgba(250, 246, 239, 0.84);
  color: rgba(43, 46, 52, 0.82);
}

.final-confirmation-note p {
  margin: 0;
}

.final-confirmation-note p + p {
  margin-top: 10px;
}

.liability-acknowledgment {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(184, 155, 94, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.74));
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.06);
}

.liability-acknowledgment h4,
.liability-acknowledgment h5 {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  line-height: 1.15;
}

.liability-acknowledgment h4 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.liability-acknowledgment h5 {
  font-size: 1.02rem;
}

.liability-acknowledgment p {
  margin: 0;
  color: rgba(43, 46, 52, 0.78);
  line-height: 1.55;
}

.policy-article h2,
.policy-article h3 {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  line-height: 1.15;
}

.policy-article h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.policy-article h3 {
  margin-top: 14px;
  font-size: clamp(1.16rem, 2vw, 1.38rem);
}

.policy-article ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: rgba(43, 46, 52, 0.78);
  line-height: 1.55;
}

.policy-effective-date {
  color: rgba(43, 46, 52, 0.62);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.waiver-toggle {
  justify-self: start;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(17, 26, 38, 0.18);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.94);
  color: var(--deep-navy);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.waiver-toggle:hover,
.waiver-toggle:focus-visible {
  border-color: rgba(184, 155, 94, 0.72);
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.08);
  transform: translateY(-1px);
}

.waiver-page-link {
  justify-self: start;
  color: var(--deep-navy);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(184, 154, 99, 0.56);
  text-underline-offset: 4px;
}

.waiver-page-link:hover,
.waiver-page-link:focus-visible {
  color: var(--muted-gold);
  outline: none;
}

.liability-waiver-panel {
  display: grid;
  gap: 10px;
  max-height: 340px;
  padding: 16px;
  overflow: auto;
  border: 1px solid rgba(184, 155, 94, 0.24);
  border-radius: 14px;
  background: rgba(250, 247, 241, 0.92);
}

.liability-waiver-panel[hidden] {
  display: none;
}

.liability-waiver-panel p {
  font-size: 0.94rem;
}

.liability-consent-option {
  align-items: flex-start;
  margin-top: 2px;
  border-color: rgba(184, 155, 94, 0.34);
  background: rgba(255, 251, 245, 0.92);
}

.liability-consent-option input {
  margin-top: 0.18em;
}

.liability-acknowledgment.field-error {
  border-color: rgba(145, 52, 52, 0.56);
  box-shadow: 0 0 0 3px rgba(145, 52, 52, 0.08), 0 14px 34px rgba(11, 31, 51, 0.06);
}

.application-actions {
  position: static;
  align-items: center;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(184, 155, 94, 0.22);
  background: transparent;
}

.premium-application-success {
  min-height: 460px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(250, 246, 239, 0.98), rgba(230, 214, 194, 0.42));
}

.application-success-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: center;
  margin: 4px 0 2px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(230, 214, 194, 0.28)),
    var(--cream-white);
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.08);
}

.application-success-next-step.has-calendly-inline-open,
.calendly-scheduling-card.has-calendly-inline-open {
  align-items: start;
}

.application-success-next-step.is-deemphasized {
  opacity: 0.66;
}

.application-success-next-copy {
  display: grid;
  gap: 12px;
}

.application-success-next-copy h4,
.application-success-next-confirmation h4 {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 0.98;
}

.application-success-next-copy p,
.application-success-next-confirmation p {
  margin: 0;
}

.application-success-next-copy .appointment-note {
  padding-left: 16px;
  border-left: 3px solid var(--muted-gold);
  color: var(--deep-navy);
}

.application-success-next-actions {
  display: grid;
  gap: 13px;
}

.application-success-next-confirmation {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: 20px;
  background: rgba(250, 246, 239, 0.86);
}

.private-scheduling-page .site-header .nav-wrap {
  justify-content: space-between;
}

.scheduling-hero .apply-intro-card p + p {
  margin-top: 14px;
}

.appointment-windows {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.appointment-window-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(184, 155, 94, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.94), rgba(230, 214, 194, 0.34));
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.08);
}

.appointment-day {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}

.appointment-note {
  margin: 12px 0 0;
  color: var(--warm-taupe);
  font-size: 0.95rem;
}

.appointment-times {
  display: grid;
  gap: 8px;
}

.appointment-times span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: 12px;
  background: rgba(250, 246, 239, 0.76);
  color: var(--soft-charcoal);
  font-size: 0.96rem;
  font-weight: 700;
}

.appointment-times span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--muted-gold);
  box-shadow: 0 0 0 5px rgba(184, 155, 94, 0.12);
}

.success-windows {
  width: min(760px, 100%);
  margin: 24px auto 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.scheduling-section {
  padding: 70px 0 108px;
  background:
    linear-gradient(180deg, rgba(250, 246, 239, 0.96), rgba(230, 214, 194, 0.36));
}

.scheduling-container {
  width: min(1100px, calc(100% - 40px));
}

.calendly-scheduling-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(24px, 5vw, 46px);
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(184, 155, 94, 0.32);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(230, 214, 194, 0.32)),
    var(--cream-white);
  box-shadow: 0 26px 68px rgba(11, 31, 51, 0.11);
}

.calendly-scheduling-card.is-deemphasized {
  opacity: 0.62;
}

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

.calendly-scheduling-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 3.9rem);
}

.calendly-scheduling-copy p {
  max-width: 670px;
  margin: 0;
  color: rgba(43, 46, 52, 0.78);
  line-height: 1.65;
}

.calendly-scheduling-copy .appointment-note {
  padding-left: 18px;
  border-left: 3px solid var(--muted-gold);
  color: var(--deep-navy);
}

.calendly-scheduling-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.calendly-schedule-button {
  justify-content: center;
  width: 100%;
}

.calendly-fallback-note {
  margin: 0;
  color: var(--warm-taupe);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.calendly-fallback-note a {
  color: var(--deep-navy);
  font-weight: 700;
  text-decoration-color: rgba(184, 155, 94, 0.55);
  text-underline-offset: 3px;
}

.calendly-inline-shell {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(8px, 2vw, 18px);
  padding: clamp(12px, 2vw, 18px);
  overflow: visible;
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(230, 214, 194, 0.22)),
    var(--cream-white);
  box-shadow: 0 20px 48px rgba(11, 31, 51, 0.09);
}

.calendly-inline-shell[hidden] {
  display: none !important;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 0;
  height: 820px;
  min-height: 820px;
  overflow: visible;
}

.calendly-inline-widget iframe,
.calendly-inline-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 820px;
  min-height: 820px;
  border: 0;
  border-radius: 14px;
  background: #fff;
}

.availability-request-note {
  margin: 0;
  color: var(--warm-taupe);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.availability-request-note button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep-navy);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(184, 155, 94, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.availability-request-note button:hover,
.availability-request-note button:focus-visible {
  color: var(--muted-gold);
  outline: none;
}

.availability-request-form {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  margin-top: 8px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(184, 155, 94, 0.28);
  border-radius: 20px;
  background: rgba(250, 246, 239, 0.82);
}

.availability-request-form[hidden] {
  display: none;
}

.availability-request-form .form-actions {
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.availability-request-form .form-note.is-success {
  color: var(--deep-navy);
}

.availability-request-form .form-note.is-error {
  color: #8A3B2B;
}

.availability-application-check {
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
}

.custom-scheduling-fallback[hidden],
.calendly-schedule-success[hidden] {
  display: none;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 24px;
  align-items: stretch;
}

.schedule-calendar-card,
.schedule-side-card,
.schedule-details-panel {
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 22px 58px rgba(11, 31, 51, 0.1);
}

.schedule-calendar-card {
  padding: clamp(22px, 4vw, 34px);
}

.schedule-side-card {
  padding: 28px;
}

.schedule-calendar-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.schedule-calendar-header h2,
.schedule-side-card h2,
.schedule-details-heading h2 {
  font-size: clamp(2rem, 4vw, 2.72rem);
}

.calendar-controls {
  display: flex;
  gap: 10px;
}

.calendar-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 42, 67, 0.18);
  border-radius: 14px;
  background: rgba(250, 246, 239, 0.88);
  color: var(--deep-navy);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.calendar-nav-btn:hover,
.calendar-nav-btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--muted-gold);
  background: rgba(184, 155, 94, 0.18);
  box-shadow: 0 10px 22px rgba(11, 31, 51, 0.08);
}

.calendar-nav-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--warm-taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 10px 5px;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: 16px;
  background: rgba(250, 246, 239, 0.64);
  color: rgba(16, 42, 67, 0.54);
  cursor: default;
  transition: opacity 260ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.calendar-day.empty {
  border: 0;
  background: transparent;
}

.calendar-day span {
  color: inherit;
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1;
}

.calendar-day small {
  margin-top: 7px;
  color: var(--muted-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-day.available {
  background: rgba(255, 251, 245, 0.94);
  border-color: rgba(184, 155, 94, 0.42);
  color: var(--deep-navy);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.06);
}

.calendar-day.available:hover,
.calendar-day.available:focus-visible {
  transform: translateY(-1px);
  border-color: var(--muted-gold);
  box-shadow: 0 16px 34px rgba(11, 31, 51, 0.1);
}

.calendar-day.selected {
  background: rgba(184, 155, 94, 0.24);
  border-color: var(--muted-gold);
}

.calendar-day.fully-requested {
  background: rgba(250, 246, 239, 0.72);
  border-color: rgba(16, 42, 67, 0.12);
  color: rgba(16, 42, 67, 0.64);
  box-shadow: none;
}

.calendar-day.fully-requested small {
  color: var(--warm-taupe);
}

.calendar-day.past {
  opacity: 0.42;
}

.calendar-day.outside-booking-window {
  opacity: 0.34;
}

.calendar-hint {
  margin-top: 16px;
  color: var(--warm-taupe);
  font-size: 0.88rem;
}

.month-slot-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.month-slot-button {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-radius: 16px;
  background: rgba(250, 246, 239, 0.82);
  color: var(--deep-navy);
  text-align: left;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.month-slot-button:hover,
.month-slot-button:focus-visible,
.month-slot-button.selected {
  transform: translateY(-1px);
  border-color: var(--muted-gold);
  background: rgba(184, 155, 94, 0.18);
  box-shadow: 0 14px 32px rgba(11, 31, 51, 0.08);
}

.month-slot-button span {
  font-weight: 700;
}

.month-slot-button small {
  color: var(--warm-taupe);
}

.month-slot-button strong,
.month-slot-button em {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.month-slot-button strong {
  background: rgba(184, 155, 94, 0.16);
  color: var(--deep-navy);
}

.month-slot-button em {
  background: rgba(255, 251, 245, 0.88);
  color: var(--warm-taupe);
}

.month-slot-button.unavailable {
  cursor: not-allowed;
  background: rgba(250, 246, 239, 0.58);
  border-color: rgba(16, 42, 67, 0.1);
  color: rgba(16, 42, 67, 0.62);
  box-shadow: none;
}

.month-slot-button.unavailable:hover,
.month-slot-button.unavailable:focus-visible {
  transform: none;
  border-color: rgba(16, 42, 67, 0.1);
  background: rgba(250, 246, 239, 0.58);
  box-shadow: none;
}

.month-slot-button.unavailable strong {
  background: rgba(139, 129, 116, 0.13);
  color: var(--warm-taupe);
}

.month-slot-button.recently-unavailable {
  border-color: rgba(184, 155, 94, 0.48);
}

.slot-waitlist-prompt {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  padding: 18px;
  border: 1px solid rgba(184, 155, 94, 0.28);
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.84);
}

.slot-waitlist-prompt p {
  margin: 0;
  color: var(--deep-navy);
  font-size: 0.94rem;
}

.schedule-details-panel {
  display: grid;
  gap: 22px;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.schedule-details-heading {
  max-width: 760px;
}

.schedule-page-success {
  display: grid;
  gap: 16px;
  max-width: 820px;
  min-height: 420px;
  margin: 24px auto 0;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(184, 155, 94, 0.36);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(230, 214, 194, 0.34)),
    var(--cream-white);
  box-shadow: 0 26px 68px rgba(11, 31, 51, 0.11);
}

.schedule-page-success h3 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 4rem);
}

.schedule-page-success [data-schedule-success-summary] {
  max-width: 680px;
  color: rgba(43, 46, 52, 0.82);
  font-size: 1.06rem;
  line-height: 1.64;
}

.fixed-confirmation-card {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(184, 155, 94, 0.32);
  border-radius: 16px;
  background: rgba(250, 246, 239, 0.86);
}

.fixed-confirmation-card span,
.success-return-note span {
  color: var(--warm-taupe);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fixed-confirmation-card strong {
  margin-top: 4px;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
}

.fixed-confirmation-card p {
  margin: 8px 0 0;
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.success-return-note {
  display: grid;
  gap: 8px;
  max-width: 640px;
  margin-top: 6px;
  padding: 18px 20px;
  border-left: 3px solid var(--muted-gold);
  border-radius: 0 16px 16px 0;
  background: rgba(250, 246, 239, 0.78);
}

.success-return-note p {
  margin: 0;
  color: rgba(43, 46, 52, 0.78);
  line-height: 1.55;
}

.schedule-gate-card,
.schedule-waitlist-card {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(184, 155, 94, 0.34);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 22px 58px rgba(11, 31, 51, 0.1);
}

.schedule-gate-card[hidden],
.schedule-waitlist-card[hidden] {
  display: none;
}

.schedule-gate-card {
  text-align: center;
}

.schedule-gate-card h2,
.schedule-waitlist-card h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
}

.schedule-gate-card .actions {
  justify-content: center;
}

.schedule-final-actions {
  justify-content: flex-end;
  margin-top: 24px;
  padding: 0;
}

.private-application-page .site-header .nav-wrap {
  justify-content: space-between;
}

.private-header-note {
  padding: 10px 13px;
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.74);
  color: var(--warm-taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.private-application-hero {
  padding: 66px 0 34px;
}

.private-application-layout,
.private-form-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.private-application-intro h1 {
  max-width: 780px;
}

.private-application-intro .lead {
  max-width: 760px;
  margin-top: 22px;
}

.private-note-card,
.private-application-panel {
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(250, 247, 241, 0.94), rgba(230, 210, 195, 0.36));
  box-shadow: var(--shadow-card);
}

.private-note-card {
  padding: 26px;
}

.private-application-panel {
  padding: 34px;
}

.private-application-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.private-form-section {
  padding-top: 42px;
}

.private-application-panel .application-success {
  min-height: 420px;
}

.private-application-page .mobile-apply-bar {
  display: none;
}

.footer {
  padding: 58px 0 30px;
  background: var(--dusty-navy);
  color: var(--warm-ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(180px, 0.45fr) minmax(220px, 0.5fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.footer-grid > div,
.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer h2,
.footer h3 {
  color: var(--warm-ivory);
}

.footer h2 {
  max-width: 360px;
  font-size: clamp(2rem, 3vw, 2.28rem);
  line-height: 1;
}

.footer h3 {
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.footer-link-list li {
  margin: 0;
  padding: 0;
}

.availability-request-form.is-cooldown-active .form-grid,
.availability-request-form.is-cooldown-active > .form-field,
.availability-request-form.is-cooldown-active .availability-application-check,
.availability-request-form.is-cooldown-active .form-actions {
  display: none;
}

.footer-description {
  max-width: 340px;
  margin-top: 8px;
  line-height: 1.5;
}

.footer p,
.footer a,
.footer-link-button {
  color: rgba(246, 241, 233, 0.74);
}

.footer a,
.footer-link-button {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-top: 0;
  font: inherit;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 240ms ease, transform 240ms ease;
}

.footer a:hover,
.footer a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--warm-ivory);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 241, 233, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(246, 241, 233, 0.56);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.footer-legal-links a,
.footer-legal-links .footer-link-button {
  min-height: 24px;
  color: rgba(246, 241, 233, 0.52);
  font-size: 0.88rem;
}

.footer-policy-link {
  min-height: 24px;
  color: rgba(246, 241, 233, 0.52);
  font-size: 0.88rem;
}

.footer-signature {
  color: rgba(184, 154, 99, 0.68);
  font-size: 0.92em;
  font-weight: 400;
}

.mobile-panel {
  display: none;
}

.mobile-apply-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.line-reveal {
  transform: scaleX(0);
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.line-reveal.is-visible {
  transform: scaleX(1);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes supportArrowDownCue {
  0%,
  100% {
    transform: translateY(1px);
  }

  45% {
    transform: translateY(4px);
  }
}

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

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

  .program-detail-btn[data-program-open]:not([data-program-open="assessment"]).is-scroll-cue .arrow::before {
    animation: none !important;
  }

  .credentials-carousel {
    overflow-x: auto;
    mask-image: none;
  }

  .credentials-carousel-track {
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .credential-proof-card {
    scroll-snap-align: start;
  }

  .credential-proof-card[aria-hidden="true"] {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  a,
  button,
  [role="button"],
  .btn,
  .menu-toggle,
  .mobile-panel a,
  .availability-request-note button,
  .inline-policy-link,
  .footer-link-button,
  .waiver-toggle,
  .accordion-trigger,
  .carousel-btn,
  .choice-option {
    -webkit-tap-highlight-color: transparent;
  }

  a:focus:not(:focus-visible),
  button:focus:not(:focus-visible),
  [role="button"]:focus:not(:focus-visible),
  .btn:focus:not(:focus-visible),
  .availability-request-note button:focus:not(:focus-visible),
  .inline-policy-link:focus:not(:focus-visible),
  .footer-link-button:focus:not(:focus-visible),
  .waiver-toggle:focus:not(:focus-visible),
  .accordion-trigger:focus:not(:focus-visible),
  .carousel-btn:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
  }

  a:focus-visible,
  button:focus-visible,
  [role="button"]:focus-visible,
  .btn:focus-visible {
    outline: 2px solid rgba(184, 154, 99, 0.72);
    outline-offset: 3px;
  }

  .availability-request-note button:focus-visible,
  .inline-policy-link:focus-visible,
  .footer-link-button:focus-visible,
  .waiver-toggle:focus-visible {
    outline: 2px solid rgba(184, 154, 99, 0.68);
    outline-offset: 3px;
    box-shadow: none;
  }

  .mobile-panel a:active,
  .mobile-panel a.active:active,
  .mobile-panel a[aria-current="page"]:active {
    box-shadow: none;
    text-shadow: none;
  }

  .mobile-panel a,
  .mobile-panel a:hover,
  .mobile-panel a:active,
  .mobile-panel a:focus,
  .mobile-panel a:focus-visible,
  .mobile-panel a:focus:not(:focus-visible),
  .mobile-panel a.active,
  .mobile-panel a[aria-current="page"],
  .mobile-panel .btn,
  .mobile-panel .btn:hover,
  .mobile-panel .btn:active,
  .mobile-panel .btn:focus,
  .mobile-panel .btn:focus-visible {
    box-shadow: none;
    text-shadow: none;
  }

  .menu-toggle:active,
  .menu-toggle:focus:not(:focus-visible) {
    box-shadow: none;
    text-shadow: none;
  }
}

@media (min-width: 1440px) {
  .site-header .nav-links {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .nav-actions {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .desktop-cta {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .menu-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 1439px) {
  .site-header .nav-links,
  .site-header .desktop-cta {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-header .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 18px);
  }

  .site-header .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 64px);
  }

  .site-header .brand-text {
    max-width: min(260px, calc(100vw - 156px));
  }

  .site-header .nav-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    min-width: max-content;
    margin-left: auto;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-panel {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    z-index: 90;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--deep-navy);
    color: var(--warm-ivory);
    box-shadow: 0 20px 40px rgba(17, 26, 38, 0.18);
    transition: max-height 340ms ease;
  }

  .menu-open .mobile-panel {
    max-height: calc(100svh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-panel-inner {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
    padding: 24px 0 30px;
    display: grid;
    gap: 8px;
  }

  .mobile-panel a:not(.btn) {
    padding: 13px 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    border-bottom: 1px solid rgba(246, 241, 233, 0.14);
    color: var(--warm-ivory);
    text-shadow: none;
    box-shadow: none;
    transform: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
  }

  .mobile-panel a:not(.btn):visited {
    color: var(--warm-ivory);
  }

  .mobile-panel a:not(.btn):hover,
  .mobile-panel a:not(.btn):focus-visible {
    background: transparent;
    color: var(--cream-white);
    text-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .mobile-panel a:not(.btn):focus-visible {
    outline: 2px solid var(--cream-white);
    outline-offset: 3px;
  }

  .mobile-panel a:not(.btn):active,
  .mobile-panel a:not(.btn):focus:not(:focus-visible) {
    background: transparent;
    color: var(--warm-ivory);
    text-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .mobile-panel a:not(.btn).active,
  .mobile-panel a:not(.btn)[aria-current="page"] {
    background: var(--cream-white);
    border-color: transparent;
    color: var(--deep-navy);
    font-weight: 760;
    text-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .mobile-panel a:not(.btn).active:active,
  .mobile-panel a:not(.btn)[aria-current="page"]:active {
    background: var(--cream-white);
    color: var(--deep-navy);
    text-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .mobile-panel .btn {
    --btn-bg: var(--cream-white);
    --btn-color: var(--deep-navy);
    --btn-border: var(--cream-white);
    margin-top: 16px;
    width: 100%;
    box-shadow: none;
    text-shadow: none;
  }

  .mobile-panel .btn:hover,
  .mobile-panel .btn:active,
  .mobile-panel .btn:focus,
  .mobile-panel .btn:focus-visible,
  .menu-toggle:hover,
  .menu-toggle:active,
  .menu-toggle:focus,
  .menu-toggle:focus:not(:focus-visible) {
    transform: none;
    outline: none;
    box-shadow: none;
    text-shadow: none;
  }

  .menu-toggle:focus-visible {
    transform: none;
    outline: 2px solid rgba(184, 154, 99, 0.55);
    outline-offset: 3px;
    box-shadow: none;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero .container,
  .section-grid,
  .page-hero .container,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .portrait-frame img {
    height: 560px;
  }

  .pricing-grid,
  .outcome-grid,
  .proof-theme-row,
  .evaluation-grid,
  .home-proof-grid,
  .home-featured-testimonials,
  .featured-testimonial-grid,
  .stories-featured-grid,
  .client-voice-grid,
  .stories-compact-grid,
  .testimonial-grid,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonial-grid .testimonial-card:nth-child(4) {
    grid-column: span 2;
  }

  .process-steps,
  .four-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nav-links {
    display: none;
  }

  .nav-wrap {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .desktop-cta {
    display: none;
  }

  .mobile-panel {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    z-index: 90;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--deep-navy);
    color: var(--warm-ivory);
    box-shadow: 0 20px 40px rgba(17, 26, 38, 0.18);
    transition: max-height 340ms ease;
  }

  .menu-open .mobile-panel {
    max-height: calc(100svh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-panel-inner {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
    padding: 24px 0 30px;
    display: grid;
    gap: 8px;
  }

  .mobile-panel a:not(.btn) {
    padding: 13px 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    border-bottom: 1px solid rgba(246, 241, 233, 0.14);
    color: var(--warm-ivory);
    text-shadow: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
  }

  .mobile-panel a:not(.btn):visited {
    color: var(--warm-ivory);
  }

  .mobile-panel a:not(.btn):hover,
  .mobile-panel a:not(.btn):focus-visible {
    background: transparent;
    color: var(--cream-white);
    text-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .mobile-panel a:not(.btn):focus-visible {
    outline: 2px solid var(--cream-white);
    outline-offset: 3px;
  }

  .mobile-panel a:not(.btn):active {
    background: transparent;
    color: var(--warm-ivory);
    text-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .mobile-panel a:not(.btn):focus:not(:focus-visible) {
    outline: none;
    background: transparent;
    color: var(--warm-ivory);
    box-shadow: none;
    text-shadow: none;
    transform: none;
  }

  .mobile-panel a:not(.btn).active,
  .mobile-panel a:not(.btn)[aria-current="page"] {
    background: var(--cream-white);
    border-color: transparent;
    color: var(--deep-navy);
    font-weight: 760;
    text-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .mobile-panel a:not(.btn).active:active,
  .mobile-panel a:not(.btn)[aria-current="page"]:active {
    background: var(--cream-white);
    color: var(--deep-navy);
    text-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .mobile-panel .btn {
    --btn-bg: var(--cream-white);
    --btn-color: var(--deep-navy);
    --btn-border: var(--cream-white);
    margin-top: 16px;
    width: 100%;
    box-shadow: none;
    text-shadow: none;
  }

  .mobile-panel .btn:hover,
  .mobile-panel .btn:active,
  .mobile-panel .btn:focus,
  .mobile-panel .btn:focus-visible {
    box-shadow: none;
    text-shadow: none;
    transform: none;
  }

  .menu-toggle:hover,
  .menu-toggle:active,
  .menu-toggle:focus,
  .menu-toggle:focus:not(:focus-visible) {
    transform: none;
    outline: none;
    box-shadow: none;
  }

  .menu-toggle:focus-visible {
    transform: none;
    outline: 2px solid rgba(184, 154, 99, 0.55);
    outline-offset: 3px;
    box-shadow: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  body {
    font-size: 16px;
    padding-bottom: 82px;
  }

  .container,
  .container.narrow {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .footer {
    padding: 48px 0 28px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-grid > div,
  .footer-links {
    gap: 7px;
  }

  .footer-description {
    max-width: 420px;
    margin-top: 6px;
  }

  .section {
    padding: 78px 0;
  }

  .section.tight {
    padding: 58px 0;
  }

  .hero {
    padding: 42px 0 52px;
    min-height: auto;
  }

  .hero .container {
    gap: 36px;
  }

  h1 {
    font-size: 2.62rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  h3 {
    font-size: 1.65rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .actions,
  .trust-row {
    width: 100%;
  }

  .assessment-flow-modal {
    padding: 14px;
  }

  .assessment-flow-dialog {
    max-height: calc(100dvh - 28px);
    border-radius: 20px;
  }

  .program-flow-modal {
    padding: 14px;
  }

  .program-flow-dialog {
    max-height: calc(100dvh - 28px);
    height: calc(100dvh - 28px);
    overflow: auto;
    border-radius: 20px;
  }

  .program-flow-shell {
    grid-template-columns: 1fr;
    min-height: 100%;
    height: auto;
  }

  .program-flow-hero {
    align-content: start;
    min-height: auto;
    padding: 30px 24px 24px;
  }

  .program-flow-summary-stack {
    width: min(100%, 356px);
    gap: 12px;
  }

  .program-flow-hero::before {
    inset: 18px;
  }

  .program-flow-hero h2 {
    max-width: none;
    padding-right: 0;
    font-size: 2.18rem;
    line-height: 1.02;
  }

  .program-flow-price {
    font-size: 1.72rem;
  }

  .program-flow-selector:not([hidden]) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 2px;
    padding: 5px;
    border: 1px solid rgba(184, 154, 99, 0.22);
    border-radius: 999px;
    background: rgba(255, 251, 245, 0.76);
    box-shadow: 0 10px 24px rgba(17, 26, 38, 0.05);
  }

  .program-flow-selector button {
    min-height: 38px;
    padding: 8px 9px;
    font-size: 0.7rem;
  }

  .program-flow-route {
    gap: 6px;
  }

  .program-flow-route span {
    min-height: 36px;
    padding-block: 8px;
    font-size: 0.86rem;
  }

  .program-flow-content {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  #assessment.section.dark {
    padding: 68px 0;
  }

  #assessment + #programs.section {
    padding-top: 58px;
  }

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

  .program-flow-actions,
  .program-flow-actions .btn {
    width: 100%;
  }

  .program-detail-btn[data-program-open]:not([data-program-open="assessment"]) .arrow {
    width: 1em;
    font-size: 0;
    line-height: 1;
    transform: none;
  }

  .program-detail-btn[data-program-open]:not([data-program-open="assessment"]) .arrow::before {
    content: "\2193";
    display: inline-block;
    font-size: 0.95rem;
    line-height: 1;
    transform: translateY(1px);
    transition: transform 180ms ease;
  }

  .program-detail-btn[data-program-open]:not([data-program-open="assessment"])[aria-expanded="true"] .arrow::before {
    content: "\2193";
    transform: translateY(1px);
  }

  .program-detail-btn[data-program-open]:not([data-program-open="assessment"]).is-scroll-cue .arrow::before {
    animation: supportArrowDownCue 220ms ease;
  }

  .program-inline-panel {
    margin-top: 18px;
    padding: 14px;
    border-radius: 22px;
    scroll-margin-top: calc(var(--header-height) + 14px);
  }

  .program-inline-tabs {
    gap: 5px;
    margin-bottom: 12px;
    padding: 4px;
  }

  .program-inline-tabs button {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.64rem;
    letter-spacing: 0.035em;
  }

  .program-inline-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .program-inline-hero {
    padding: 18px;
  }

  .program-inline-hero h3 {
    font-size: 1.92rem;
  }

  .program-inline-hero .program-flow-label {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .program-inline-hero .program-flow-price {
    font-size: 1.58rem;
  }

  .program-inline-hero .program-flow-rhythm {
    gap: 4px;
    padding: 9px 11px;
    border-radius: 14px;
  }

  .program-inline-hero .program-flow-opening {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .program-inline-content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    overflow: visible;
  }

  .program-inline-panel .program-flow-section {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .program-inline-panel .program-flow-section > span {
    margin-bottom: 6px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .program-inline-panel .program-flow-section h3 {
    font-size: 1.22rem;
  }

  .program-inline-panel .program-flow-section p,
  .program-inline-panel .program-flow-section li {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .program-inline-panel .program-flow-list li {
    padding: 4px 0 4px 16px;
  }

  .package-support-card {
    padding: 22px;
  }

  .support-insight-grid,
  .support-insight-list.compact {
    grid-template-columns: 1fr;
  }

  .testimonial-legal-note {
    text-align: left;
  }

  .testimonial-theme-section {
    margin-top: 56px;
  }

  .premium-proof-page .stories-featured-grid,
  .premium-proof-page .stories-compact-grid {
    gap: 14px;
  }

  .premium-proof-page .testimonial-feature-card.editorial,
  .premium-proof-page .client-voice-card {
    padding: 22px;
    box-shadow:
      0 12px 30px rgba(17, 26, 38, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  .premium-proof-page .client-voice-card {
    padding: 20px;
  }

  .premium-proof-page .testimonial-feature-card.editorial::before,
  .premium-proof-page .client-voice-card::before {
    top: 15px;
    left: 20px;
  }

  .premium-proof-page .testimonial-feature-card.editorial blockquote,
  .premium-proof-page .client-voice-card blockquote {
    padding-top: 12px;
  }

  .premium-proof-page .proof-cta-band {
    margin-top: 46px;
  }

  .proof-cta-band-inner {
    display: grid;
    gap: 20px;
    padding-inline: 22px;
  }

  .proof-cta-band .btn {
    width: 100%;
    justify-self: stretch;
  }

  .premium-proof-page .client-consistency {
    margin-top: 42px;
  }

  .credentials-carousel {
    overflow-x: auto;
    mask-image: none;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .credentials-carousel-track {
    gap: 14px;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .credential-proof-card {
    flex-basis: min(86vw, 360px);
    scroll-snap-align: start;
  }

  .credential-proof-card[aria-hidden="true"] {
    display: none;
  }

  .premium-proof-page .proof-theme-row {
    margin-bottom: 28px;
  }

  .client-consistency {
    padding: 26px;
  }

  .program-assessment-note {
    display: grid;
    padding: 22px;
  }

  .program-assessment-note .btn {
    width: 100%;
  }

  .package-clarity-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .package-clarity-card.compact p {
    text-align: left;
  }

  .assessment-flow-steps {
    grid-template-columns: 1fr;
  }

  .actions .btn {
    width: 100%;
  }

  .trust-pill {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .portrait-frame img {
    height: 440px;
  }

  .hero .portrait-frame {
    padding: 8px;
  }

  .hero .portrait-frame img {
    height: 460px;
    border-radius: calc(var(--radius) - 8px);
  }

  .image-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -1px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    background: var(--deep-navy);
  }

  .hero .image-caption {
    left: auto;
    right: auto;
    bottom: auto;
  }

  .three-col,
  .two-col,
  .compare-grid,
  .pricing-grid,
  .outcome-grid,
  .method-explanation-panel,
  .method-principle-grid,
  .method-journey-grid,
  .support-depth-map,
  .proof-theme-row,
  .evaluation-grid,
  .home-proof-grid,
  .home-featured-testimonials,
  .featured-testimonial-grid,
  .stories-featured-grid,
  .client-voice-grid,
  .stories-compact-grid,
  .testimonial-grid,
  .client-consistency,
  .credential-grid,
  .process-steps,
  .four-col,
  .location-card,
  .footer-grid,
  .story-card {
    grid-template-columns: 1fr;
  }

  .story-card,
  .location-card,
  .evaluation-card,
  .proof-card,
  .testimonial-feature-card,
  .testimonial-card,
  .client-voice-card,
  .credential-card,
  .quote-carousel {
    padding: 26px;
  }

  .footer {
    padding: 42px 0 88px;
    text-align: center;
  }

  .footer-grid {
    justify-items: center;
    gap: 20px;
  }

  .footer-grid > div,
  .footer-links {
    width: min(100%, 320px);
    justify-items: center;
    gap: 6px;
  }

  .footer h2 {
    max-width: none;
    font-size: 2rem;
  }

  .footer h3 {
    margin-top: 0;
  }

  .footer-description {
    max-width: 310px;
    margin: 6px auto 0;
    line-height: 1.48;
  }

  .footer-link-list {
    justify-items: center;
    gap: 6px;
    margin-top: 2px;
  }

  .footer a,
  .footer-link-button {
    min-height: 32px;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  .footer-bottom-meta {
    justify-content: center;
    gap: 6px 12px;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 4px 12px;
  }

  .footer-policy-link {
    min-height: 30px;
  }

  .assessment-first-card {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 22px auto 22px;
    padding: 22px;
  }

  .assessment-first-card .price,
  .assessment-first-card .price-card-actions {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
  }

  .assessment-first-card .price {
    justify-self: start;
  }

  .testimonial-grid .testimonial-card:nth-child(4) {
    grid-column: auto;
  }

  .client-consistency-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .story-meta {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 154, 99, 0.22);
    padding-right: 0;
    padding-bottom: 22px;
  }

  .quote-text {
    font-size: 1.62rem;
    line-height: 1.44;
  }

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

  .price-card.featured:hover {
    transform: translateY(-2px);
  }

  .method-explanation-panel {
    padding: 24px;
  }

  .method-principle-card,
  .method-principle-card:nth-child(5) {
    grid-column: auto;
    min-height: auto;
  }

  .method-explanation-footer {
    display: grid;
    justify-items: start;
  }

  .method-explanation-footer .btn {
    width: 100%;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row > div {
    border-left: 0;
    border-top: 1px solid rgba(184, 154, 99, 0.18);
  }

  .comparison-row > div:first-child {
    border-top: 0;
    background: rgba(221, 208, 191, 0.34);
  }

  .comparison-head > div:first-child {
    background: transparent;
  }

  .feature-band .container,
  .footer-bottom {
    display: grid;
  }

  .feature-band h2 {
    font-size: 1.9rem;
  }

  .private-application-layout,
  .private-form-container {
    grid-template-columns: 1fr;
  }

  .private-application-sidebar {
    position: static;
  }

  .mobile-apply-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: block;
    padding: 10px 14px 12px;
    background: rgba(246, 241, 233, 0.94);
    border-top: 1px solid rgba(184, 154, 99, 0.22);
    backdrop-filter: blur(16px);
    transform: translateY(105%);
    transition: transform 320ms ease;
  }

  .mobile-apply-bar.visible {
    transform: translateY(0);
  }

  .mobile-apply-bar .btn {
    width: 100%;
  }

  .blueprint {
    min-height: 380px;
    padding: 26px;
  }

  .blueprint-note {
    margin-top: 180px;
  }

  .movement-path-line {
    display: none;
  }

  .method-journey-card,
  .support-depth-map li {
    min-height: auto;
  }

  .support-depth-map.compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 76px;
  }

  .nav-wrap {
    gap: 12px;
  }

  .brand-subtitle {
    display: none;
  }

  h1 {
    font-size: 2.34rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-kicker,
  .section-eyebrow {
    letter-spacing: 0.1em;
  }

  .card,
  .price-card,
  .compare-card,
  .placeholder-box {
    padding: 22px;
  }

  .outcome-card {
    min-height: auto;
    padding: 38px 22px 22px;
  }

  .outcome-card h3 {
    font-size: 1.28rem;
  }

  .private-application-panel {
    padding: 22px;
  }

  .application-step h3,
  .application-success h3 {
    font-size: 1.7rem;
  }

  .form-actions {
    display: grid;
  }

  .portrait-frame img {
    height: 390px;
  }

  .hero .portrait-frame img {
    height: 400px;
  }

  .image-caption {
    display: grid;
  }

  .carousel-controls {
    display: grid;
  }

  .program-flow-hero {
    min-height: auto;
    padding: 30px 22px;
  }

  .program-flow-summary-stack {
    width: min(100%, 330px);
  }

  .program-flow-hero h2 {
    max-width: none;
    font-size: 2.15rem;
  }

  .program-flow-content {
    padding: 18px;
  }

  .program-flow-selector:not([hidden]) {
    gap: 5px;
    padding: 4px;
  }

  .program-flow-selector button {
    min-height: 36px;
    padding: 7px 5px;
    font-size: 0.64rem;
    letter-spacing: 0.035em;
  }

  .program-inline-hero {
    padding: 16px;
  }

  .program-inline-hero h3 {
    font-size: 1.82rem;
  }

  .program-inline-content {
    gap: 9px;
    padding: 0;
    overflow: visible;
  }

  .program-inline-panel .program-flow-section {
    padding: 13px 14px;
  }

  .noticing-focus-list li {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .support-insight-card {
    padding: 18px;
  }

  .testimonial-feature-card blockquote,
  .testimonial-card blockquote {
    font-size: 1.14rem;
    line-height: 1.36;
  }
}

@media (max-width: 1100px) {
  .apply-hero-grid,
  .application-trust-grid {
    grid-template-columns: 1fr;
  }

  .apply-intro-card {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .apply-hero {
    padding: 48px 0 28px;
  }

  .apply-hero-copy {
    padding-top: 0;
  }

  .apply-intro-card,
  .application-panel,
  .application-trust-card {
    border-radius: 20px;
  }

  .apply-intro-card {
    padding: 24px;
  }

  .application-container {
    width: min(100% - 28px, 1080px);
  }

  .apply-form-section {
    padding: 54px 0 92px;
  }

  .application-panel {
    padding: 18px;
  }

  .application-timer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }

  .application-timer strong {
    font-size: 1.9rem;
  }

  .application-progress {
    top: calc(var(--header-height) - 1px);
  }

  .application-step {
    padding: 22px;
    border-radius: 18px;
  }

  .form-grid.two,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .screening-head {
    display: none;
  }

  .screening-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(184, 155, 94, 0.24);
    border-radius: 18px;
    background: rgba(255, 251, 245, 0.82);
  }

  .screening-row > span {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0 0 8px;
    border: 0;
    background: transparent;
  }

  .screening-row label {
    min-height: 48px;
    padding: 10px;
  }

  .screening-row label:nth-child(2)::before,
  .screening-row label:nth-child(3)::before,
  .screening-row label:nth-child(4)::before {
    display: block;
    margin-bottom: 5px;
    color: var(--warm-taupe);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .screening-row label:nth-child(2)::before {
    content: "Yes";
  }

  .screening-row label:nth-child(3)::before {
    content: "No";
  }

  .screening-row label:nth-child(4)::before {
    content: "Not sure";
  }

  .health-history-table .screening-row label:nth-child(4)::before {
    content: "Other";
  }

  .rating-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .application-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0 0;
    padding: 18px 0 0;
  }

  .application-actions .btn {
    width: 100%;
  }

  .success-windows {
    grid-template-columns: 1fr;
  }

  .calendly-scheduling-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .application-success-next-step {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .calendly-inline-shell {
    padding: 12px;
    border-radius: 18px;
  }

  .calendly-inline-widget,
  .calendly-inline-widget iframe,
  .calendly-inline-frame {
    height: 800px;
    min-height: 800px;
  }

  .calendly-scheduling-actions {
    justify-items: stretch;
  }

  .availability-request-form .form-actions,
  .availability-request-form .btn {
    width: 100%;
  }

  .schedule-layout {
    grid-template-columns: 1fr;
  }

  .schedule-calendar-card,
  .schedule-side-card,
  .schedule-details-panel {
    border-radius: 20px;
  }

  .schedule-calendar-header {
    display: grid;
  }

  .calendar-controls {
    width: 100%;
  }

  .calendar-nav-btn {
    flex: 1;
  }

  .calendar-weekdays {
    gap: 4px;
    font-size: 0.62rem;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-day {
    min-height: 64px;
    border-radius: 12px;
  }

  .calendar-day span {
    font-size: 1.2rem;
  }

  .calendar-day small {
    font-size: 0.58rem;
  }
}

@media (max-width: 520px) {
  .apply-hero-copy h1 {
    font-size: clamp(2.08rem, 11.2vw, 2.28rem);
    line-height: 1.04;
  }

  .private-scheduling-page .apply-hero-copy h1 {
    font-size: clamp(2rem, 10.6vw, 2.24rem);
  }

  .private-scheduling-page .apply-hero {
    padding: 36px 0 22px;
  }

  .private-scheduling-page .apply-hero-grid {
    gap: 20px;
  }

  .private-scheduling-page .apply-hero-copy .lead,
  .private-scheduling-page .apply-hero-copy p {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .private-scheduling-page .apply-statement {
    margin-top: 16px;
    padding: 15px;
    font-size: 1.3rem;
    line-height: 1.12;
  }

  .private-scheduling-page .apply-intro-card {
    padding: 20px;
  }

  .private-scheduling-page .apply-intro-card h2 {
    font-size: clamp(1.8rem, 9.4vw, 2.08rem);
    line-height: 1.04;
  }

  .private-scheduling-page .scheduling-section {
    padding-top: 28px;
  }

  .apply-intro-card h2,
  .application-form-header h2 {
    font-size: 2rem;
  }

  .apply-intro-card,
  .application-panel,
  .application-step,
  .application-trust-card {
    border-radius: 18px;
  }

  .application-trust-card {
    min-height: auto;
    padding: 22px;
  }

  .appointment-window-card {
    padding: 16px;
    border-radius: 16px;
  }

  .appointment-day {
    font-size: 1.38rem;
  }

  .appointment-times span {
    min-height: 46px;
    font-size: 0.92rem;
  }

  .choice-option {
    min-height: 48px;
    padding: 12px 13px;
  }

  .screening-row {
    grid-template-columns: 1fr;
  }

  .screening-row label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .screening-row label:nth-child(2)::before,
  .screening-row label:nth-child(3)::before,
  .screening-row label:nth-child(4)::before {
    margin-bottom: 0;
  }

  .rating-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
  }

  .scheduling-container {
    width: min(100% - 28px, 1100px);
  }

  .calendly-scheduling-card {
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
  }

  .application-success-next-step {
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
  }

  .calendly-inline-shell {
    margin-inline: -4px;
    padding: 8px;
    border-radius: 16px;
  }

  .calendly-inline-widget,
  .calendly-inline-widget iframe,
  .calendly-inline-frame {
    height: 780px;
    min-height: 780px;
    border-radius: 12px;
  }

  .application-success-next-copy {
    gap: 12px;
  }

  .application-success-next-copy h4,
  .application-success-next-confirmation h4 {
    font-size: clamp(1.9rem, 9.4vw, 2.18rem);
    line-height: 1.05;
  }

  .calendly-scheduling-copy {
    gap: 12px;
  }

  .calendly-scheduling-copy h2 {
    font-size: clamp(1.86rem, 10vw, 2.18rem);
    line-height: 1.05;
  }

  .availability-request-form {
    gap: 14px;
    padding: 18px;
  }

  .schedule-calendar-card,
  .schedule-side-card,
  .schedule-details-panel {
    padding: 20px;
  }

  .calendar-weekdays {
    display: none;
  }

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

  .calendar-day.empty {
    display: none;
  }

  .calendar-day {
    min-height: 58px;
  }
}

.dark .compare-grid > .comparison-card--method.compare-card.featured {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, #FFFBF5 0%, #FAF7F1 48%, #F6F1E9 100%) !important;
  background-color: #FAF7F1 !important;
  background-image: linear-gradient(135deg, #FFFBF5 0%, #FAF7F1 48%, #F6F1E9 100%) !important;
  background-blend-mode: normal !important;
  color: #111A26;
  border: 1px solid rgba(184, 154, 99, 0.58);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 10px 28px rgba(184, 154, 99, 0.12);
  opacity: 1;
  mix-blend-mode: normal !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.dark .compare-grid > .comparison-card--method.compare-card.featured::before,
.dark .compare-grid > .comparison-card--method.compare-card.featured::after {
  content: none;
  display: none;
}

.dark .compare-grid > .comparison-card--method.compare-card.featured h3,
.dark .compare-grid > .comparison-card--method.compare-card.featured p,
.dark .compare-grid > .comparison-card--method.compare-card.featured li {
  color: #111A26;
}

.dark .compare-grid > .comparison-card--method.compare-card.featured .list-clean li::before {
  background: #B89A63;
}

@media (max-width: 860px) {
  .site-header .nav-wrap {
    position: relative;
    justify-content: center;
  }

  .site-header .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    width: max-content;
    max-width: calc(100% - 84px);
    min-width: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0;
    transform: translate(-50%, -50%);
  }

  .site-header .brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .site-header .brand-text {
    justify-items: center;
    min-width: 0;
    text-align: center;
  }

  .site-header .brand-name {
    font-size: 1.02rem;
    line-height: 0.94;
    white-space: nowrap;
  }

  .site-header .brand-subtitle {
    display: none;
  }

  .site-header .brand-positioning {
    margin-top: 1px;
    color: rgba(111, 102, 92, 0.96);
    font-size: 0.54rem;
    font-weight: 680;
    letter-spacing: 0.01em;
    line-height: 1.08;
    white-space: nowrap;
  }

  .site-header .nav-actions {
    position: absolute;
    right: 0;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .site-header .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .private-header-note {
    display: none;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero-kicker {
    display: block;
    width: min(100%, 360px);
    margin-inline: auto;
    justify-content: center;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-kicker::before {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }

  .hero h1,
  .hero .lead,
  .hero .microcopy {
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
  }

  .hero h1 {
    max-width: 640px;
  }

  .hero .lead {
    max-width: 620px;
    line-height: 1.62;
  }

  .hero .actions {
    width: min(100%, 420px);
    margin-inline: auto;
    justify-content: center;
  }

  .hero .actions .btn {
    width: 100%;
  }

  .hero .trust-row {
    width: min(100%, 430px);
    margin-inline: auto;
    justify-content: center;
  }

  .hero .trust-pill {
    flex: 0 1 auto;
    text-align: center;
  }

  h1,
  h2,
  h3,
  .section-heading,
  .section-heading .lead,
  .page-hero .container > div:first-child,
  .page-hero .lead,
  .apply-hero-copy,
  .apply-hero-copy .lead,
  .application-form-header,
  .application-form-header .lead,
  .schedule-calendar-header,
  .schedule-side-card h2,
  .schedule-details-heading,
  .schedule-gate-card h2,
  .schedule-waitlist-card h2,
  .schedule-page-success h3,
  .feature-band h2 {
    margin-inline: auto;
    text-align: center;
  }

  .section-eyebrow,
  .card-label {
    display: block;
    width: min(100%, 360px);
    justify-content: center;
    margin-inline: auto;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .section-eyebrow::before,
  .card-label::before {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }

  .page-hero .lead,
  .apply-hero-copy .lead,
  .section-heading .lead,
  .application-form-header .lead {
    max-width: 680px;
  }

  .section-heading > p:not(.section-eyebrow):not(.lead),
  .card p,
  .price-card p,
  .price-card li,
  .compare-card li,
  .testimonial-feature-card,
  .testimonial-card,
  .testimonial-feature-card blockquote,
  .testimonial-card blockquote,
  .testimonial-legal-note,
  .accordion-trigger,
  .accordion-content,
  .accordion-content p,
  .liability-acknowledgment,
  .liability-acknowledgment p,
  .liability-waiver-panel,
  .liability-waiver-panel p,
  .application-step,
  .application-step p,
  .application-step label,
  .form-field,
  .form-field span,
  .form-field small,
  .form-note,
  .checkbox-card,
  .choice-option,
  .screening-row,
  .screening-row > span,
  .schedule-side-card p,
  .schedule-details-panel p,
  .schedule-gate-card p,
  .schedule-waitlist-card p,
  .schedule-page-success [data-schedule-success-summary],
  .apply-hero-copy p:not(.hero-kicker):not(.lead):not(.microcopy):not(.apply-statement),
  .apply-intro-card p:not(.section-eyebrow):not(.quote-summary),
  .application-form-header p:not(.section-eyebrow):not(.lead),
  .application-privacy-note,
  .application-privacy-note p,
  .list-clean,
  .list-clean li {
    text-align: left;
  }

  .evaluation-card p,
  .method-pillar p,
  .outcome-card p,
  .proof-card p,
  .application-trust-card p,
  .credential-card p,
  .package-clarity-card.compact p {
    text-align: center;
  }

  .application-step h3,
  .application-form-header h2,
  .schedule-calendar-header h2,
  .schedule-side-card h2,
  .schedule-details-heading h2,
  .schedule-gate-card h2,
  .schedule-waitlist-card h2 {
    text-align: center;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 68px;
  }

  .site-header .brand {
    max-width: calc(100% - 72px);
    gap: 0;
  }

  .site-header .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-header .brand-name {
    font-size: clamp(0.88rem, 3.95vw, 0.96rem);
    line-height: 0.92;
  }

  .site-header .brand-positioning {
    margin-top: 1px;
    font-size: clamp(0.46rem, 2.05vw, 0.52rem);
    letter-spacing: 0;
  }

  .site-header .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    max-width: 350px;
  }

  .hero .lead {
    max-width: 350px;
  }

  .hero .microcopy {
    max-width: 330px;
  }

  .hero .trust-row {
    max-width: 350px;
  }

  .hero .trust-pill {
    flex: 0 1 auto;
  }

  .liability-acknowledgment {
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;
  }

  .liability-acknowledgment h4 {
    font-size: 1.12rem;
    line-height: 1.2;
  }

  .liability-acknowledgment h5 {
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .liability-acknowledgment p {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .waiver-toggle {
    width: 100%;
    justify-content: center;
    padding: 9px 14px;
    text-align: center;
  }

  .waiver-page-link {
    justify-self: center;
    text-align: center;
  }

  .liability-waiver-panel {
    max-height: 260px;
    gap: 8px;
    padding: 13px;
    border-radius: 12px;
  }

  .liability-waiver-panel p {
    font-size: 0.9rem;
  }

  .liability-consent-option {
    gap: 10px;
    padding: 14px;
  }
}

@media (max-width: 1100px) {
  .process-proof-grid,
  .subtle-proof-grid,
  .archive-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .curated-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .editorial-proof-strip,
  .editorial-proof-strip.compact {
    width: 100%;
    margin-top: 26px;
    padding: 20px;
    text-align: center;
  }

  .process-proof-grid,
  .subtle-proof-grid,
  .archive-proof-grid,
  .trust-proof-pair,
  .faq-trust-strip {
    grid-template-columns: 1fr;
  }

  .process-proof-band,
  .archive-proof-section {
    margin-top: 44px;
  }

  .mini-proof-card,
  .application-proof-note,
  .subtle-proof-note,
  .story-proof-card {
    padding: 18px;
  }
}

@media (max-width: 860px) {
  .home-page .hero {
    padding: 32px 0 40px;
  }

  .home-page .section {
    padding: 64px 0;
  }

  .home-page .section.tight {
    padding: 48px 0;
  }

  .home-page .evaluation-strip {
    padding: 34px 0 44px;
  }

  .home-page .hero .container,
  .home-page .section-grid {
    gap: 24px;
  }

  .home-page .section-heading {
    margin-bottom: 28px;
  }

  .home-page .section-heading .lead {
    line-height: 1.56;
  }

  .home-page .section-heading > p:not(.section-eyebrow):not(.lead) {
    line-height: 1.52;
  }

  .home-page .section-heading > p + p {
    margin-top: 8px;
  }

  .home-page .hero .lead {
    margin-top: 16px;
    line-height: 1.54;
  }

  .home-page .hero .microcopy {
    margin-top: 9px;
    line-height: 1.45;
  }

  .home-page .actions {
    gap: 10px;
    margin-top: 20px;
  }

  .home-page .hero .actions {
    margin-top: 22px;
  }

  .home-page .mobile-support-shortcut {
    display: block;
    width: min(100%, 328px);
    margin: 12px 0 0;
    color: rgba(43, 46, 52, 0.68);
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .home-page .mobile-support-shortcut--center {
    margin: 14px auto 0;
    text-align: center;
  }

  .home-page .mobile-support-shortcut a {
    display: grid;
    min-height: 46px;
    align-content: center;
    gap: 1px;
    padding: 9px 12px;
    border: 1px solid rgba(17, 26, 38, 0.055);
    border-radius: 12px;
    background: rgba(250, 247, 241, 0.62);
    box-shadow: 0 3px 8px rgba(17, 26, 38, 0.014);
    text-decoration: none;
  }

  .home-page .mobile-support-shortcut-text,
  .home-page .mobile-support-shortcut-action {
    display: block;
  }

  .home-page .mobile-support-shortcut-text {
    color: rgba(43, 46, 52, 0.6);
    font-weight: 450;
  }

  .home-page .mobile-support-shortcut-action {
    color: var(--deep-navy);
    font-weight: 600;
    text-decoration: none;
  }

  .home-page .mobile-support-shortcut a:active {
    background: rgba(250, 247, 241, 0.78);
  }

  .home-page .mobile-support-shortcut a:focus-visible {
    outline: 2px solid rgba(17, 26, 38, 0.42);
    outline-offset: 4px;
    border-radius: 12px;
  }

  .home-page .trust-row {
    gap: 7px;
    margin-top: 18px;
  }

  .home-page .trust-pill {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .home-page .hero .portrait-frame img {
    height: 390px;
  }

  .home-page .section.nude .portrait-frame img,
  .home-page .section.dark .portrait-frame img {
    height: 360px;
  }

  .home-page .three-col,
  .home-page .two-col,
  .home-page .compare-grid,
  .home-page .pricing-grid,
  .home-page .subtle-proof-grid,
  .home-page .faq-list {
    gap: 12px;
  }

  .home-page .card,
  .home-page .price-card,
  .home-page .compare-card {
    padding: 20px;
  }

  .home-page .card h3,
  .home-page .card h4,
  .home-page .compare-card h3,
  .home-page .price-card h3 {
    margin-bottom: 10px;
  }

  .home-page .card p + p {
    margin-top: 9px;
  }

  .home-page .card-label {
    margin-bottom: 9px;
  }

  .home-page .list-clean {
    margin-top: 12px;
  }

  .home-page .list-clean li {
    padding-left: 21px;
    line-height: 1.45;
  }

  .home-page .noticing-focus-list {
    gap: 6px;
    margin-top: 16px;
  }

  .home-page .noticing-focus-list li {
    padding: 7px 9px;
  }

  .home-page .evaluation-grid {
    gap: 10px;
  }

  .home-page .evaluation-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 12px;
    padding: 18px;
    text-align: left;
  }

  .home-page .evaluation-card span {
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 1.58rem;
  }

  .home-page .evaluation-card h3 {
    margin: 0;
    font-size: 1.22rem;
    text-align: left;
  }

  .home-page .evaluation-card p {
    margin: 0;
    line-height: 1.42;
    text-align: left;
  }

  .home-page .editorial-proof-strip,
  .home-page .editorial-proof-strip.compact {
    gap: 9px;
    margin-top: 22px;
    padding: 18px 20px;
  }

  .home-page .editorial-proof-strip blockquote {
    font-size: clamp(1.08rem, 5vw, 1.28rem);
    line-height: 1.24;
  }

  .home-page .method-pillar {
    gap: 7px;
  }

  .home-page .blueprint {
    min-height: 320px;
    padding: 22px;
  }

  .home-page .blueprint-note {
    margin-top: 138px;
  }

  .home-page .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .outcome-card {
    min-height: auto;
    padding: 18px 13px 15px;
  }

  .home-page .outcome-card::before {
    top: 10px;
    left: 12px;
    font-size: 0.72rem;
  }

  .home-page .outcome-card::after {
    top: 14px;
    right: 12px;
    width: 16px;
  }

  .home-page .outcome-card h3 {
    font-size: 1.05rem;
    line-height: 1.14;
    text-align: center;
  }

  .home-page .subtle-proof-note {
    padding: 16px;
  }

  .home-page .subtle-proof-note .proof-theme {
    margin-bottom: 8px;
  }

  .home-page .subtle-proof-note blockquote {
    font-size: 1.06rem;
    line-height: 1.28;
  }

  .home-page .testimonial-legal-note {
    margin-top: 16px;
    line-height: 1.45;
  }

  .home-page .assessment-first-card {
    gap: 8px;
    margin: 18px auto;
    padding: 20px;
  }

  .home-page .package-value-stack {
    gap: 6px;
    margin-top: 10px;
  }

  .home-page .package-support-card {
    gap: 8px;
    padding: 20px;
  }

  .home-page .package-support-label,
  .home-page .package-best-for {
    line-height: 1.35;
  }

  .home-page .package-session-frequency {
    line-height: 1.24;
  }

  .home-page .price-card-actions {
    gap: 8px;
    padding-top: 4px;
  }

  .home-page .accordion-trigger {
    min-height: 52px;
    padding: 17px 18px;
  }

  .home-page .accordion-content {
    padding: 0 18px 18px;
  }

  .home-page .accordion-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 520px) {
  .home-page .hero {
    padding: 28px 0 34px;
  }

  .home-page .section {
    padding: 54px 0;
  }

  .home-page .section.tight {
    padding: 42px 0;
  }

  .home-page .evaluation-strip {
    padding: 30px 0 38px;
  }

  .home-page .section-heading {
    margin-bottom: 22px;
  }

  .home-page .section-eyebrow {
    margin-bottom: 10px;
  }

  .home-page .hero .container,
  .home-page .section-grid {
    gap: 20px;
  }

  .home-page .hero .portrait-frame img {
    height: 340px;
  }

  .home-page .section.nude .portrait-frame img,
  .home-page .section.dark .portrait-frame img {
    height: 310px;
  }

  .home-page .card,
  .home-page .price-card,
  .home-page .compare-card,
  .home-page .evaluation-card,
  .home-page .subtle-proof-note {
    padding: 18px;
  }

  .home-page .evaluation-card {
    gap: 5px 10px;
  }

  .home-page .evaluation-card span {
    font-size: 1.42rem;
  }

  .home-page .outcome-card {
    padding: 17px 10px 14px;
  }

  .home-page .outcome-card h3 {
    font-size: 0.98rem;
  }

  .home-page .blueprint {
    min-height: 280px;
    padding: 18px;
  }

  .home-page .blueprint-note {
    margin-top: 114px;
  }

  .home-page .editorial-proof-strip,
  .home-page .editorial-proof-strip.compact {
    padding: 16px 17px;
  }

  .home-page .package-support-card,
  .home-page .assessment-first-card {
    padding: 18px;
  }
}

@media (max-width: 760px) {
  .premium-assessment-form {
    gap: 30px;
  }

  .premium-assessment-form .application-step {
    gap: 18px;
    padding: 24px 22px;
    border-radius: 20px;
  }

  .premium-assessment-form .application-step h3 {
    margin-bottom: 20px;
    font-size: clamp(1.9rem, 8vw, 2.24rem);
    line-height: 1.08;
  }

  .premium-assessment-form .form-grid {
    gap: 18px;
  }

  .premium-assessment-form .form-field {
    gap: 10px;
    margin-top: 16px;
  }

  .premium-assessment-form .form-field:first-child,
  .premium-assessment-form .form-grid .form-field {
    margin-top: 0;
  }

  .premium-assessment-form .form-field span,
  .premium-assessment-form .choice-group legend,
  .premium-assessment-form .rating-row legend {
    font-size: 1rem;
    line-height: 1.45;
  }

  .premium-assessment-form .form-field small {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .premium-assessment-form .form-field input,
  .premium-assessment-form .form-field textarea,
  .premium-assessment-form .form-field select {
    min-height: 52px;
    padding: 14px 15px;
    font-size: 16px;
    line-height: 1.45;
  }

  .premium-assessment-form .form-field textarea {
    min-height: 124px;
  }

  .premium-assessment-form .choice-group,
  .premium-assessment-form .rating-row {
    margin-top: 20px;
  }

  .premium-assessment-form .choice-option {
    min-height: 52px;
    gap: 12px;
    padding: 14px 15px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .premium-assessment-form .choice-option input {
    width: 20px;
    height: 20px;
  }

  .premium-assessment-form .rating-options {
    gap: 8px;
  }

  .premium-assessment-form .rating-options span {
    min-height: 46px;
    font-size: 1rem;
  }

  .premium-assessment-form .application-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 26px 0 0;
    padding: 20px 0 0;
  }

  .premium-assessment-form .application-actions [data-application-next],
  .premium-assessment-form .application-actions [data-application-submit] {
    order: 1;
  }

  .premium-assessment-form .application-actions [data-application-prev] {
    order: 2;
  }

  .premium-assessment-form .application-actions .btn {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 520px) {
  .application-payment-note {
    gap: 6px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .application-payment-note h4 {
    font-size: 1.18rem;
  }

  .application-payment-note p {
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .premium-assessment-form .application-step {
    padding: 22px 18px;
  }
}

/* MSFH_FINAL_HEADER_FORCE_COMPACT_BELOW_1600 */
@media (max-width: 1599px) {
  .site-header .nav-links,
  .site-header .desktop-cta {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
  }

  .site-header .nav-actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: max-content !important;
    margin-left: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-header .nav-wrap {
    position: static !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    justify-content: initial !important;
    column-gap: clamp(12px, 2vw, 24px) !important;
    overflow: visible !important;
  }

  .site-header .brand {
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-items: initial !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .site-header .brand-text {
    justify-items: start !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: min(72vw, 420px) !important;
    text-align: left !important;
  }

  .site-header .brand-name,
  .site-header .brand-subtitle,
  .site-header .brand-positioning {
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .site-header .brand-subtitle {
    display: block !important;
  }

  .mobile-panel {
    position: fixed !important;
    inset: var(--header-height) 0 auto 0 !important;
    z-index: 90 !important;
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    background: var(--deep-navy) !important;
    color: var(--warm-ivory) !important;
    box-shadow: 0 20px 40px rgba(17, 26, 38, 0.18) !important;
    transition: max-height 340ms ease !important;
  }

  .menu-open .mobile-panel {
    max-height: calc(100svh - var(--header-height)) !important;
    max-height: calc(100dvh - var(--header-height)) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

@media (min-width: 1600px) {
  .site-header .nav-links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    max-width: none !important;
  }

  .site-header .nav-actions {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    max-width: none !important;
  }

  .site-header .desktop-cta {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    max-width: none !important;
  }

  .site-header .menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.assessment-flow-modal {
  z-index: 560;
}

.assessment-gateway-dialog {
  width: min(94vw, 1280px);
  height: min(90dvh, 880px);
  max-height: calc(100dvh - 28px);
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 154, 99, 0.16), transparent 30%),
    linear-gradient(135deg, #fffbf5 0%, #faf7f1 46%, #f6f1e9 100%);
}

.assessment-gateway-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  height: 100%;
  min-height: 0;
}

.assessment-gateway-intro,
.assessment-gateway-detail {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  scrollbar-color: rgba(184, 154, 99, 0.48) rgba(246, 241, 233, 0.66);
  scrollbar-width: thin;
}

.assessment-gateway-intro {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.6vw, 20px);
  padding: clamp(42px, 5vw, 64px) clamp(30px, 4vw, 56px) clamp(28px, 3.8vw, 48px);
  border-right: 1px solid rgba(184, 154, 99, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 251, 245, 0.86), rgba(246, 241, 233, 0.68));
}

.assessment-gateway-intro .section-eyebrow {
  margin: 0;
  width: fit-content;
}

.assessment-gateway-intro h2 {
  max-width: 10.5ch;
  color: var(--deep-navy);
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: 0.94;
}

.assessment-gateway-price {
  width: fit-content;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgba(184, 154, 99, 0.4);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.78);
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  line-height: 1;
  box-shadow: 0 14px 32px rgba(17, 26, 38, 0.07);
}

.assessment-gateway-lead {
  display: grid;
  gap: 6px;
  max-width: 42ch;
  color: rgba(43, 46, 52, 0.82);
  font-size: clamp(1.03rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.assessment-gateway-lead p,
.assessment-gateway-panel p,
.assessment-gateway-credit p {
  margin: 0;
}

.assessment-gateway-detail {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.6vw, 20px);
  padding: clamp(42px, 5vw, 64px) clamp(30px, 4vw, 56px) clamp(28px, 3.8vw, 48px);
}

.assessment-gateway-panel,
.assessment-gateway-credit {
  border: 1px solid rgba(184, 154, 99, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.92), rgba(246, 241, 233, 0.74));
  box-shadow: 0 18px 42px rgba(17, 26, 38, 0.06);
  padding: clamp(17px, 2vw, 24px);
}

.assessment-gateway-panel > span,
.assessment-gateway-credit > span {
  display: block;
  margin-bottom: 10px;
  color: var(--warm-taupe);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.assessment-gateway-panel p,
.assessment-gateway-credit p {
  color: rgba(43, 46, 52, 0.82);
  font-size: 0.98rem;
  line-height: 1.58;
}

.assessment-gateway-credit {
  border-color: rgba(184, 154, 99, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.82));
}

.assessment-gateway-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.assessment-gateway-list li {
  position: relative;
  min-height: 38px;
  padding: 8px 9px 8px 26px;
  border: 1px solid rgba(184, 154, 99, 0.12);
  border-radius: 11px;
  background: rgba(255, 251, 245, 0.54);
  color: var(--soft-charcoal);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.32;
}

.assessment-gateway-list li::before {
  content: "";
  position: absolute;
  top: 1.08em;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted-gold);
  box-shadow: 0 0 0 3px rgba(184, 154, 99, 0.1);
}

.assessment-gateway-watchline {
  color: rgba(17, 26, 38, 0.8) !important;
  font-size: 1rem !important;
  font-weight: 700;
  line-height: 1.58 !important;
}

.assessment-gateway-reassurance {
  border-color: rgba(184, 154, 99, 0.34);
}

.assessment-gateway-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.assessment-gateway-actions .btn {
  min-width: min(100%, 240px);
}

@media (max-width: 860px) {
  .assessment-flow-modal {
    padding: 0;
  }

  .assessment-gateway-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
    overflow-y: auto;
  }

  .assessment-gateway-shell {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100%;
  }

  .assessment-gateway-intro,
  .assessment-gateway-detail {
    overflow: visible;
    padding-inline: 22px;
  }

  .assessment-gateway-intro {
    padding-top: 62px;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 154, 99, 0.22);
  }

  .assessment-gateway-detail {
    padding-top: 20px;
    padding-bottom: 96px;
  }

  .assessment-gateway-intro h2 {
    max-width: 11ch;
    font-size: clamp(2.38rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .assessment-gateway-lead,
  .assessment-gateway-panel p,
  .assessment-gateway-credit p {
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .assessment-gateway-list {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .assessment-gateway-list li {
    min-height: auto;
    padding: 7px 8px 7px 24px;
    font-size: 0.92rem;
  }

  .assessment-gateway-actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin: 2px -22px -22px;
    padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(184, 154, 99, 0.24);
    background: rgba(255, 251, 245, 0.94);
    backdrop-filter: blur(12px);
  }

  .assessment-gateway-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .assessment-flow-close {
    top: 14px;
    right: 14px;
  }

  .assessment-gateway-intro,
  .assessment-gateway-detail {
    padding-inline: 18px;
  }

  .assessment-gateway-intro {
    padding-top: 58px;
  }

  .assessment-gateway-panel,
  .assessment-gateway-credit {
    padding: 15px;
    border-radius: 17px;
  }

  .assessment-gateway-actions {
    margin-inline: -18px;
    padding-inline: 18px;
  }
}

/* Unified Assessment Information Window shared by detail and gateway entry points. */
.assessment-gateway-dialog {
  width: min(94vw, 1360px);
  height: auto;
  max-height: calc(100dvh - 32px);
  overflow-x: hidden;
  overflow-y: auto;
}

.assessment-gateway-shell {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  height: auto;
  min-height: 0;
}

.assessment-gateway-intro,
.assessment-gateway-detail {
  overflow: visible;
}

.assessment-gateway-intro {
  align-content: center;
  justify-items: center;
  gap: clamp(10px, 1.05vw, 15px);
  padding: clamp(32px, 3.6vw, 48px) clamp(22px, 3vw, 38px);
}

.assessment-gateway-rail {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: clamp(10px, 1.05vw, 15px);
  width: min(100%, 380px);
  margin-inline: auto;
}

.assessment-gateway-rail > * {
  width: 100%;
  margin-inline: 0;
}

.assessment-gateway-rail .section-eyebrow,
.assessment-gateway-label,
.assessment-gateway-price {
  width: fit-content;
  max-width: 100%;
  margin-inline: 0 auto;
}

.assessment-gateway-intro h2 {
  max-width: 100%;
  font-size: clamp(2.45rem, 3.7vw, 4.4rem);
  line-height: 0.96;
}

.assessment-gateway-label {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(184, 154, 99, 0.34);
  border-radius: 999px;
  background: rgba(184, 154, 99, 0.12);
  color: var(--deep-navy);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.assessment-gateway-price {
  padding: 8px 14px;
  font-size: clamp(1.55rem, 2.05vw, 2.2rem);
}

.assessment-gateway-lead {
  gap: 4px;
  max-width: 100%;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.48;
}

.assessment-gateway-note {
  margin: 0;
  color: rgba(43, 46, 52, 0.72);
  font-size: 0.91rem;
  line-height: 1.45;
}

.assessment-gateway-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
  padding: clamp(32px, 3.4vw, 48px) clamp(22px, 3vw, 38px);
}

.assessment-gateway-panel,
.assessment-gateway-credit {
  padding: clamp(12px, 1.35vw, 18px);
  border-radius: 17px;
  box-shadow: 0 14px 32px rgba(17, 26, 38, 0.05);
}

.assessment-gateway-panel.wide {
  grid-column: 1 / -1;
}

.assessment-gateway-panel > span,
.assessment-gateway-credit > span {
  margin-bottom: 7px;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.assessment-gateway-panel p,
.assessment-gateway-credit p {
  font-size: 0.91rem;
  line-height: 1.46;
}

.assessment-gateway-process {
  position: relative;
  padding-left: clamp(24px, 2.2vw, 34px);
  background:
    linear-gradient(90deg, rgba(184, 154, 99, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(246, 241, 233, 0.8));
}

.assessment-gateway-process::before {
  content: "";
  position: absolute;
  top: clamp(14px, 1.5vw, 20px);
  bottom: clamp(14px, 1.5vw, 20px);
  left: clamp(13px, 1.15vw, 17px);
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(184, 154, 99, 0.82), rgba(184, 154, 99, 0.18));
}

.assessment-gateway-process p {
  max-width: 94ch;
}

.assessment-gateway-process p + p {
  margin-top: 8px;
}

.assessment-gateway-list {
  gap: 6px;
}

.assessment-gateway-list:not(.is-compact) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assessment-gateway-list.is-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 8px;
}

.assessment-gateway-list li {
  min-height: auto;
  padding: 5px 7px 5px 22px;
  border-radius: 9px;
  font-size: 0.85rem;
  line-height: 1.28;
}

.assessment-gateway-list li::before {
  top: 0.9em;
  left: 9px;
  width: 5px;
  height: 5px;
}

.assessment-gateway-feel {
  color: var(--deep-navy) !important;
  font-family: var(--serif);
  font-size: clamp(1.03rem, 1.25vw, 1.24rem) !important;
  line-height: 1.22 !important;
}

.assessment-gateway-watchline {
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
}

.assessment-gateway-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-items: stretch;
  gap: 9px;
  margin-top: 0;
}

.assessment-gateway-actions .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

@media (min-width: 861px) and (max-width: 1120px) {
  .assessment-gateway-shell {
    grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1.44fr);
  }

  .assessment-gateway-intro,
  .assessment-gateway-detail {
    padding-inline: 22px;
  }

  .assessment-gateway-rail {
    width: min(100%, 350px);
  }

  .assessment-gateway-list,
  .assessment-gateway-list.is-compact,
  .assessment-gateway-list:not(.is-compact) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .assessment-gateway-dialog {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .assessment-gateway-shell {
    grid-template-columns: 1fr;
  }

  .assessment-gateway-intro,
  .assessment-gateway-detail {
    overflow: visible;
  }

  .assessment-gateway-intro {
    align-content: start;
  }

  .assessment-gateway-rail {
    width: min(100%, 430px);
  }

  .assessment-gateway-detail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .assessment-gateway-list,
  .assessment-gateway-list.is-compact,
  .assessment-gateway-list:not(.is-compact) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .program-flow-modal[data-active-program="assessment"] .program-flow-dialog {
    width: calc(100vw - 28px);
    height: calc(100dvh - 28px);
    max-height: calc(100dvh - 28px);
    overflow: auto;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-shell {
    grid-template-columns: 1fr;
    min-height: 100%;
    height: auto;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-hero {
    overflow: visible;
    padding: 44px 24px 24px;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-hero::before {
    inset: 18px;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-summary-stack {
    width: min(100%, 360px);
    gap: 10px;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-hero h2 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 2.34rem);
    line-height: 1.03;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-opening {
    max-width: 34ch;
    font-size: 0.95rem;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-credit p {
    font-size: 0.86rem !important;
    line-height: 1.44 !important;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
    overflow: visible;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-section {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .program-flow-modal[data-active-program="assessment"] [data-program-focus],
  .program-flow-modal[data-active-program="assessment"] .program-flow-list.columns {
    grid-template-columns: 1fr;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-list li {
    padding: 5px 6px 5px 21px;
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-experience {
    font-size: 1.12rem !important;
  }
}

@media (max-width: 520px) {
  .program-flow-modal[data-active-program="assessment"] .program-flow-hero {
    padding: 42px 20px 22px;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-content {
    padding: 18px;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-hero h2 {
    font-size: clamp(1.82rem, 9vw, 2.12rem);
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-route span {
    padding-right: 10px;
    font-size: 0.82rem;
  }

  .program-flow-modal[data-active-program="assessment"] .program-flow-credit p,
  .program-flow-modal[data-active-program="assessment"] .program-flow-section p,
  .program-flow-modal[data-active-program="assessment"] .program-flow-section li {
    font-size: 0.88rem !important;
  }
}

/* Mobile smoothness and interaction polish. */
@media (max-width: 860px) {
  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  body {
    overscroll-behavior-x: none;
    -webkit-text-size-adjust: 100%;
  }

  .site-shell {
    overflow-x: clip;
  }

  .reveal {
    transform: translateY(12px);
    transition-duration: 420ms;
  }

  .btn,
  .menu-toggle,
  .mobile-panel,
  .accordion-icon,
  .assessment-flow-close,
  .program-flow-close {
    transition-duration: 220ms;
  }

  .mobile-panel {
    overscroll-behavior: contain;
  }

  .mobile-panel a,
  .mobile-panel .btn,
  .menu-toggle,
  .assessment-flow-close,
  .program-flow-close,
  .program-detail-btn,
  .accordion-trigger,
  .program-inline-tabs button,
  .footer a,
  .footer-link-button,
  .footer-policy-link {
    min-height: 44px;
  }

  .menu-toggle,
  .assessment-flow-close,
  .program-flow-close {
    min-width: 44px;
  }

  .program-detail-btn.btn.small {
    min-height: 44px;
  }

  .mobile-apply-bar {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    transition-duration: 240ms;
    will-change: transform;
  }

  .mobile-apply-bar .btn {
    min-height: 50px;
  }

  .assessment-gateway-dialog {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .assessment-gateway-shell {
    min-height: 100%;
  }

  .assessment-gateway-intro {
    padding-top: max(74px, calc(58px + env(safe-area-inset-top)));
    padding-bottom: 22px;
  }

  .assessment-gateway-detail {
    padding-bottom: max(112px, calc(96px + env(safe-area-inset-bottom)));
  }

  .assessment-flow-close {
    z-index: 6;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .assessment-gateway-rail .section-eyebrow {
    max-width: calc(100% - 58px);
    font-size: 0.68rem;
    letter-spacing: 0.075em;
  }

  .assessment-gateway-actions {
    position: static;
    margin: 0;
    padding: 0;
    border-top: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .assessment-gateway-actions .btn {
    min-height: 50px;
  }

  .program-inline-panel {
    overscroll-behavior: contain;
  }

  .program-inline-tabs button {
    min-height: 44px;
  }

  .program-inline-panel .program-flow-section,
  .program-inline-panel .program-flow-list li,
  .assessment-gateway-panel,
  .assessment-gateway-list li,
  .choice-option,
  .checkbox-card {
    overflow-wrap: anywhere;
  }

  .form-field input,
  .form-field textarea,
  .form-field select,
  .premium-assessment-form .form-field input,
  .premium-assessment-form .form-field textarea,
  .premium-assessment-form .form-field select {
    font-size: 16px;
  }

  .footer a,
  .footer-link-button,
  .footer-policy-link {
    padding-inline: 4px;
  }

  .footer-legal-links {
    gap: 6px 14px;
  }
}

@media (max-width: 520px) {
  .assessment-gateway-intro {
    padding-top: max(76px, calc(60px + env(safe-area-inset-top)));
  }

  .assessment-gateway-intro h2 {
    font-size: clamp(2.2rem, 10.2vw, 3.05rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .assessment-gateway-rail .section-eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .assessment-gateway-detail,
  .assessment-gateway-intro {
    padding-inline: 18px;
  }

  .program-inline-tabs {
    border-radius: 18px;
  }

  .program-inline-tabs button {
    padding-inline: 5px;
    font-size: 0.62rem;
    line-height: 1.12;
  }

  .accordion-trigger {
    gap: 12px;
    padding: 18px;
  }

  .accordion-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 380px) {
  .assessment-gateway-detail,
  .assessment-gateway-intro {
    padding-inline: 16px;
  }

  .assessment-gateway-list li,
  .program-inline-panel .program-flow-list li {
    padding-right: 8px;
  }

  .program-inline-tabs {
    gap: 4px;
  }

  .program-inline-tabs button {
    padding-inline: 4px;
    font-size: 0.59rem;
    letter-spacing: 0.025em;
  }

  .btn {
    padding-inline: 16px;
  }
}

/* Assessment CTA: final two-zone premium editorial section. */
.assessment-cta-section {
  padding: clamp(76px, 6vw, 96px) 0;
  overflow: hidden;
}

.assessment-cta-section .container {
  width: min(1240px, calc(100% - 40px));
}

.assessment-two-zone {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(72px, 7vw, 96px);
  align-items: center;
}

.assessment-zone-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: center;
  width: min(100%, 640px);
  max-width: 640px;
}

.section.dark .assessment-zone-eyebrow {
  margin: 0;
  color: rgba(246, 241, 233, 0.76);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
  white-space: normal;
}

.assessment-zone-copy h2 {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--warm-ivory);
  font-size: clamp(3rem, 4.4vw, 4.8rem);
  line-height: 1.01;
  letter-spacing: -0.022em;
  text-align: left;
  text-transform: none;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
  white-space: normal;
}

.assessment-zone-text {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 24px 0 0;
}

.section.dark .assessment-zone-text p {
  max-width: 620px;
  margin: 0;
  color: rgba(246, 241, 233, 0.82);
  font-size: clamp(1.02rem, 1.08vw, 1.1rem);
  line-height: 1.62;
  text-align: left;
}

.section.dark .assessment-zone-text .assessment-zone-support {
  max-width: 600px;
  color: rgba(246, 241, 233, 0.76);
  font-size: clamp(0.98rem, 1.02vw, 1.04rem);
  line-height: 1.58;
}

.assessment-zone-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: min(100%, 620px);
  margin-inline: auto;
  text-align: center;
}

.section.dark .assessment-zone-label {
  max-width: 34ch;
  margin: 0 auto;
  color: rgba(246, 241, 233, 0.78);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
  white-space: normal;
}

.assessment-zone-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  max-width: 560px;
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.assessment-zone-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 241, 233, 0.82);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.assessment-zone-points li + li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(214, 190, 148, 0.34);
}

.assessment-zone-divider {
  display: block;
  width: min(440px, 78%);
  height: 1px;
  margin: 30px auto 24px;
  background: rgba(214, 190, 148, 0.28);
}

.section.dark .assessment-zone-price {
  margin: 0;
  color: var(--warm-ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
}

.assessment-zone-primary {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(246, 241, 233, 0.96);
  color: var(--deep-navy);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.assessment-zone-primary:hover,
.assessment-zone-primary:focus-visible {
  transform: translateY(-1px);
  border-color: var(--cream-white);
  background: var(--cream-white);
  color: var(--deep-navy);
}

.assessment-zone-link {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 241, 233, 0.78);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
}

.assessment-zone-link:hover,
.assessment-zone-link:focus-visible {
  background: transparent;
  color: var(--warm-ivory);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.assessment-zone-primary .arrow,
.assessment-zone-link .arrow {
  display: inline-block;
  transition: transform 220ms ease;
}

.assessment-zone-primary:hover .arrow,
.assessment-zone-primary:focus-visible .arrow,
.assessment-zone-link:hover .arrow,
.assessment-zone-link:focus-visible .arrow {
  transform: translateX(3px);
}

.program-detail-btn.btn {
  min-height: 44px;
}

.assessment-gateway-rail {
  justify-items: center;
  width: min(100%, 390px);
  text-align: center;
}

.assessment-gateway-rail .section-eyebrow,
.assessment-gateway-label,
.assessment-gateway-price {
  justify-self: center;
  margin-inline: auto;
}

.assessment-gateway-intro h2 {
  max-width: 10ch;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.assessment-gateway-lead,
.assessment-gateway-note {
  max-width: 35ch;
  margin-inline: auto;
}

.assessment-gateway-credit {
  width: min(100%, 360px);
  margin-inline: auto;
  text-align: left;
}

.assessment-gateway-actions {
  width: min(100%, 340px);
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .assessment-two-zone {
    gap: 56px;
  }

  .assessment-zone-copy h2 {
    font-size: clamp(2.85rem, 5vw, 4rem);
  }
}

@media (max-width: 860px) {
  .assessment-cta-section {
    padding: 64px 0 72px;
  }

  .assessment-two-zone {
    grid-template-columns: 1fr;
    gap: 42px;
    justify-items: center;
    text-align: center;
  }

  .assessment-zone-copy,
  .assessment-zone-action {
    align-items: center;
    width: min(100%, 680px);
    max-width: 680px;
    text-align: center;
  }

  .section.dark .assessment-zone-eyebrow,
  .assessment-zone-copy h2,
  .section.dark .assessment-zone-text p {
    text-align: center;
  }

  .assessment-zone-copy h2 {
    max-width: 12.5ch;
    font-size: clamp(2.45rem, 8vw, 3.35rem);
    margin-inline: auto;
  }

  .assessment-zone-text {
    margin-inline: auto;
  }

  .assessment-gateway-actions {
    width: 100%;
  }

  .footer-legal-links .footer-policy-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 520px) {
  .assessment-cta-section {
    padding: 58px 0 66px;
  }

  .assessment-cta-section .container {
    width: min(100% - 28px, 1240px);
  }

  .assessment-two-zone {
    gap: 36px;
  }

  .assessment-zone-text {
    max-width: 340px;
    margin-top: 20px;
  }

  .assessment-zone-points {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .assessment-zone-points li {
    justify-content: center;
    white-space: normal;
  }

  .assessment-zone-points li + li::before {
    display: none;
  }

  .assessment-zone-divider {
    width: min(100%, 320px);
    margin: 28px auto 22px;
  }

  .section.dark .assessment-zone-price {
    font-size: clamp(2.1rem, 10vw, 2.85rem);
  }

  .assessment-zone-primary {
    width: min(100%, 320px);
    min-height: 48px;
  }

  .assessment-zone-link {
    justify-content: center;
  }
}
