/* Steisi Mentorship — Noir & Champagne. Framework-independent theme. */
:root {
  color-scheme: dark;
  --color-bg: #10110f;
  --color-surface: #191a16;
  --color-ink: #eeede6;
  --color-muted: #aaa99f;
  --color-line: #35362e;
  --color-gold: #d4b77a;
  --color-gold-light: #f0ddb0;
  --color-gold-soft: #26241c;
  --color-error: #f2a39b;
  --gold-finish: linear-gradient(115deg, #b99451 0%, #e3c991 35%, #f0dfb4 53%, #c4a36a 80%, #dbc18d 100%);
  --font-body: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-editorial: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --container: 1280px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--color-ink); background: var(--color-bg); font: 500 1rem/1.75 var(--font-body); -webkit-font-smoothing: antialiased; }
::selection { color: #10110f; background: var(--color-gold); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .7; }
img { display: block; max-width: 100%; height: auto; }
figure, blockquote, p, h1, h2, h3 { margin: 0; }
fieldset { min-width: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--color-gold-light); outline-offset: 6px; }
.container { width: min(var(--container), calc(100% - 96px)); margin-inline: auto; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 12px 20px; color: #10110f; background: var(--color-gold); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: flex; align-items: center; gap: 15px; color: var(--color-gold); font-size: .75rem; font-weight: 500; letter-spacing: .15em; line-height: 1.7; }
.eyebrow-line { display: inline-block; width: 36px; height: 1px; flex-shrink: 0; background: var(--color-gold); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 56px; padding: 16px 25px; border: 1px solid transparent; border-radius: 2px; font-size: .875rem; font-weight: 600; line-height: 1.5; text-align: center; transition: background-position .6s, border-color .25s, box-shadow .25s, transform .25s; }
.button .icon, .text-link .icon { width: 19px; height: 19px; transition: transform .25s; }
.button:hover .icon, .text-link:hover .icon { transform: translate(2px, -2px); }
.button:active { transform: translateY(1px); }
.button-gold { color: #191810; background: var(--gold-finish); background-size: 160% 100%; border-color: #d4b77a; box-shadow: inset 0 1px 0 #ffffff36, 0 4px 24px #b994510c; }
.button-gold:hover { background-position: 100% 50%; box-shadow: inset 0 1px 0 #ffffff50, 0 5px 32px #b994512a; }
.button-outline { border-color: #706044; color: var(--color-gold-light); background: transparent; }
.button-outline:hover { border-color: var(--color-gold); background: #d4b77a0a; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-block: 6px; color: var(--color-ink); border-bottom: 1px solid #706044; font-size: .875rem; font-weight: 600; line-height: 1.5; transition: color .25s, border-color .25s; }
.text-link .icon { color: var(--color-gold); }
.text-link:hover { color: var(--color-gold-light); border-color: var(--color-gold); }
.gold-text { color: var(--color-gold); }
@supports (background-clip: text) { .gold-text { background: var(--gold-finish); background-clip: text; -webkit-background-clip: text; color: transparent; } }

/* Monogram and navigation. */
.site-header { position: sticky; top: 0; z-index: 30; background: #10110ff0; border-bottom: 1px solid #d4b77a24; backdrop-filter: blur(18px); }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 15px; flex-shrink: 0; }
.brand-mark { display: block; position: relative; width: 47px; height: 47px; padding-top: 1px; color: var(--color-gold); border: 1px solid #8e794f; font: 500 40px/.95 var(--font-editorial); }
.brand-mark > span { position: absolute; top: 16px; left: 22px; font-size: 30px; line-height: 1; }
.brand-name { min-width: 112px; display: flex; flex-direction: column; font-size: .9375rem; letter-spacing: .24em; font-weight: 600; line-height: 1.55; }
.brand-name > span { font-size: .75rem; letter-spacing: .08em; color: var(--color-gold); }
.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a { position: relative; padding-block: 10px; color: #babbb1; font-size: .875rem; font-weight: 500; }
.main-nav a:hover, .main-nav a[aria-current="location"] { color: var(--color-gold-light); }
.main-nav a::after { content: ''; position: absolute; inset: auto 0 3px; height: 1px; background: var(--color-gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.main-nav a:hover::after, .main-nav a[aria-current="location"]::after { transform: scaleX(1); }
.header-cta { min-height: 44px; padding: 11px 20px; font-size: .875rem; gap: 25px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--color-line); background: transparent; border-radius: 2px; padding: 10px; }
.menu-toggle span { display: block; height: 1px; background: var(--color-gold); margin: 6px 0; transition: transform .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Cinematic opening. The portrait and typography share one dark canvas. */
.hero { overflow: clip; background: radial-gradient(ellipse at 78% 42%, #6b512214, transparent 54%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.08fr 1fr; column-gap: 10px; align-items: center; }
.hero-copy { position: relative; z-index: 3; padding-block: 72px 64px; }
.hero-copy > .eyebrow { margin-bottom: 28px; }
h1 { font: 500 clamp(4.7rem, 7.6vw, 7.2rem)/.96 var(--font-editorial); letter-spacing: -.035em; }
h1 em { display: inline-block; padding-right: .08em; line-height: 1.09; font-weight: 500; }
.hero-description { max-width: 440px; margin-top: 28px; color: #b5b4aa; font-size: 1rem; line-height: 1.9; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 19px; margin-top: 31px; }
.hero-actions .button { gap: 35px; min-height: 59px; }
.hero-actions .text-link { color: #c5c3b8; border-color: transparent; }
.hero-actions .text-link:hover { color: var(--color-gold-light); border-color: var(--color-gold); }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 34px; color: #92958a; font-size: .75rem; letter-spacing: .11em; }
.note-line { width: 22px; height: 1px; background: #6c715f; flex-shrink: 0; }
.hero-visual { position: relative; align-self: stretch; min-width: 0; margin-right: -32px; }
.portrait-frame { position: absolute; inset: 24px -25px 0 -55px; min-height: 560px; }
.hero-portrait { width: 100%; height: 100%; object-fit: cover; object-position: 57% 35%; mask-image: linear-gradient(to right, transparent, #000 19%, #000 82%, transparent), linear-gradient(to bottom, #000 77%, transparent 100%); mask-composite: intersect; }
.portrait-frame::before { content: ''; position: absolute; z-index: 1; pointer-events: none; inset: 40px 45px 49px 57px; border: 1px solid #c3a36435; border-radius: 280px 280px 0 0; }
.portrait-frame::after { content: ''; position: absolute; pointer-events: none; inset: 45% 0 0; background: linear-gradient(transparent 30%, #10110fb0 86%, var(--color-bg)); }
.portrait-index { position: absolute; z-index: 2; top: 88px; right: 6px; writing-mode: vertical-rl; color: #b5a17b; font-size: .75rem; letter-spacing: .18em; }
.portrait-caption { position: absolute; z-index: 2; bottom: 54px; left: 94px; right: 65px; display: flex; align-items: flex-end; justify-content: space-between; }
.portrait-caption > div > span { font-size: .75rem; letter-spacing: .21em; color: #c0ae87; }
.portrait-caption strong { display: block; font: italic 500 4.5rem/1 var(--font-editorial); letter-spacing: -.025em; color: #eee6d6; }
.circle-link { width: 49px; height: 49px; display: grid; place-items: center; border: 1px solid #ae925b; border-radius: 50%; color: var(--color-gold-light); transition: color .25s, background .25s; }
.circle-link:hover { color: var(--color-bg); background: var(--color-gold); }
.mentor-seal { position: absolute; z-index: 4; bottom: 94px; left: -51px; width: 114px; height: 114px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid #ad9156; border-radius: 50%; color: var(--color-gold-light); background: #171913ed; box-shadow: 0 0 0 7px #10110f, 0 0 0 8px #8e794f66; transform: rotate(-12deg); }
.mentor-seal strong { font: 500 2.7rem/1 var(--font-editorial); }
.mentor-seal > span { margin-top: 5px; font-size: .75rem; letter-spacing: .12em; line-height: 1.5; text-align: center; }
.hero-bottom { position: relative; z-index: 4; grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px 29px; border-bottom: 1px solid var(--color-line); }
.hero-bottom > span { color: #888e7f; font-size: .75rem; letter-spacing: .16em; }
.discover-link { display: inline-flex; align-items: center; gap: 14px; color: #bbbcae; font-size: .75rem; letter-spacing: .13em; }
.discover-icon { display: grid; place-items: center; width: 31px; height: 40px; border: 1px solid #4b4e40; border-radius: 18px; color: var(--color-gold); transition: border-color .25s; }
.discover-icon .icon { width: 15px; height: 15px; }
.discover-link:hover .discover-icon { border-color: var(--color-gold); }
.program-summary { display: grid; grid-template-columns: 1.1fr 1fr 1.1fr 1.1fr; padding-block: 39px; gap: 24px; }
.summary-intro { display: flex; flex-direction: column; justify-content: center; }
.summary-intro .eyebrow { color: #aaa891; font-size: .75rem; letter-spacing: .12em; }
.summary-intro strong { font: 500 2rem/1.2 var(--font-editorial); margin-top: 8px; }
.summary-item { display: flex; gap: 14px; align-items: flex-start; padding-top: 3px; }
.summary-number { font: 500 1.25rem/1.5 var(--font-editorial); color: var(--color-gold); }
.summary-item p { display: flex; flex-direction: column; gap: 7px; }
.summary-item strong { font-size: .875rem; font-weight: 600; }
.summary-item p > span { font-size: .875rem; color: var(--color-muted); line-height: 1.65; }
.offer { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; margin-block: 28px 0; padding: 31px 37px; border: 1px solid #5e5037; background: linear-gradient(105deg, #201f18, #171813 60%, #242218); }
.offer::before { content: ''; position: absolute; inset: 6px; border: 1px solid #d4b77a12; pointer-events: none; }
.offer-symbol { position: relative; display: grid; place-items: center; width: 68px; height: 78px; color: var(--color-gold); border-right: 1px solid #51452f; padding-right: 22px; }
.offer-symbol > span { font: 500 2.5rem/1 var(--font-editorial); letter-spacing: -.14em; padding-right: 6px; }
.offer-symbol .icon { width: 15px; height: 15px; }
.offer .eyebrow { font-size: .75rem; margin-bottom: 6px; }
.offer h2 { font: 500 1.75rem/1.25 var(--font-editorial); letter-spacing: -.01em; }
.offer-copy > p:last-child { color: var(--color-muted); font-size: .875rem; margin-top: 8px; max-width: 590px; }
.offer-price { padding-left: 27px; border-left: 1px solid #4c422f; }
.offer-price > span { display: flex; align-items: baseline; gap: 16px; }
.offer-price del { font-size: .875rem; color: #9f9d90; }
.offer-price strong { font: 500 3.1rem/1 var(--font-editorial); color: var(--color-gold-light); white-space: nowrap; }
.offer-price strong span { font-size: 1.9rem; }
.offer-price .text-link { font-size: .875rem; margin-top: 8px; color: var(--color-gold-light); white-space: nowrap; }

/* Editorial rhythm and mentor. */
.section { padding-block: 110px; }
.section-topline { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding-bottom: 21px; margin-bottom: 55px; border-bottom: 1px solid var(--color-line); }
.section-topline .eyebrow { font-size: .75rem; }
.section-note { color: #9b9d90; font-size: .75rem; letter-spacing: .12em; }
h2 { font: 500 clamp(3.2rem, 4.65vw, 4.5rem)/1.06 var(--font-editorial); letter-spacing: -.025em; }
h2 em { color: var(--color-gold); font-weight: 500; }
.mentor-grid { display: grid; grid-template-columns: .88fr 1fr; gap: 110px; align-items: center; padding-inline: 20px 0; }
.mentor-photo { position: relative; isolation: isolate; min-width: 0; background: #1a1a17; border: 1px solid #494535; }
.mentor-photo::before { content: ''; position: absolute; z-index: -1; inset: 21px 21px -21px -21px; border: 1px solid #57503a; }
.mentor-photo img { width: 100%; height: 550px; object-fit: cover; object-position: 55% 26%; }
.mentor-photo::after { content: ''; position: absolute; pointer-events: none; inset: 65% 0 0; background: linear-gradient(transparent, #10110fda); }
.mentor-photo figcaption { position: absolute; z-index: 1; bottom: 22px; left: 28px; right: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mentor-signature { font: italic 500 3.3rem/1 var(--font-editorial); color: var(--color-gold-light); }
.mentor-photo figcaption > span:last-child { font-size: .75rem; letter-spacing: .12em; line-height: 1.75; color: #bdb6a4; }
.mentor-copy > p { color: var(--color-muted); font-size: 1rem; line-height: 1.85; margin-top: 15px; max-width: 500px; }
.mentor-copy > .mentor-intro { margin-top: 28px; font-size: 1rem; color: var(--color-ink); font-weight: 600; }
.mentor-copy .text-link { margin-top: 25px; }
.mentor-bottom { display: grid; grid-template-columns: 1.1fr 1fr; gap: 85px; margin-top: 75px; padding-top: 33px; border-top: 1px solid var(--color-line); }
.mentor-stats { display: grid; grid-template-columns: .8fr 1.25fr .8fr; align-items: center; }
.mentor-stats > div { padding-right: 20px; padding-left: 28px; border-left: 1px solid var(--color-line); }
.mentor-stats > div:first-child { padding-left: 0; border: 0; }
.mentor-stats strong { display: block; font: 500 3.5rem/1 var(--font-editorial); color: var(--color-gold-light); letter-spacing: -.03em; white-space: nowrap; }
.mentor-stats strong span { font-size: .65em; }
.mentor-stats > div > span { display: block; font-size: .75rem; line-height: 1.7; margin-top: 11px; color: var(--color-muted); }
blockquote { position: relative; padding-left: 33px; }
.quote-mark { position: absolute; top: -15px; left: 0; color: var(--color-gold); font: 4.5rem var(--font-editorial); }
blockquote p { font: italic 500 1.625rem/1.35 var(--font-editorial); color: #d1cdbf; }
blockquote cite { display: block; font-size: .75rem; font-style: normal; font-weight: 500; margin-top: 14px; color: var(--color-gold); }
blockquote cite span { color: var(--color-muted); font-weight: 500; }

/* Memberships and the metallic VIP treatment. */
.pricing-section { background: #151611; border-block: 1px solid #2b2e23; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 49px; }
.section-heading > p { max-width: 345px; color: var(--color-muted); font-size: 1rem; line-height: 1.85; padding-bottom: 4px; }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.plan { position: relative; padding: 40px 42px 42px; border: 1px solid #414435; background: #191b15; }
.plan-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; min-height: 33px; margin-bottom: 26px; }
.plan-number { font-size: .75rem; font-weight: 500; letter-spacing: .13em; color: #b0ae9d; }
.plan-emblem { font: 500 2.5rem/1 var(--font-editorial); color: var(--color-gold); }
.plan h3 { font: 500 clamp(2rem, 2.7vw, 2.65rem)/1.13 var(--font-editorial); letter-spacing: -.02em; }
.plan-description { margin-top: 15px; min-height: 60px; font-size: 1rem; line-height: 1.75; max-width: 410px; color: var(--color-muted); }
.plan-price { display: flex; align-items: flex-end; gap: 21px; margin-top: 29px; margin-bottom: 31px; min-height: 74px; }
.plan-price > strong { font: 500 4.9rem/1 var(--font-editorial); letter-spacing: -.045em; white-space: nowrap; }
.plan-price > strong span { font-size: .52em; letter-spacing: -.03em; }
.plan-price > span { font-size: .75rem; line-height: 1.9; padding-bottom: 3px; color: var(--color-muted); }
.plan-price del { display: block; font-size: .875rem; }
.plan > .button { display: flex; width: 100%; justify-content: space-between; }
.list-heading { padding-top: 29px; border-top: 1px solid var(--color-line); margin-top: 32px; font-size: .75rem; letter-spacing: .12em; font-weight: 500; color: #b6b09d; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; padding: 0; margin: 24px 0 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: #b7b7ac; line-height: 1.65; }
.feature-list .icon { margin-top: 4px; width: 16px; height: 16px; color: var(--color-gold); }
.feature-list strong { font-weight: 600; color: #e6e2d6; }
.plan-detail { display: flex; gap: 12px; padding: 19px 0 0; border-top: 1px solid var(--color-line); margin-top: 32px; }
.plan-detail > span { color: var(--color-gold); }
.plan-detail p { font-size: .875rem; color: var(--color-muted); line-height: 1.8; }
.plan-detail strong { font-weight: 600; color: #d1c6ad; }
.plan-vip { background: radial-gradient(ellipse at 100% 0, #80602b24, transparent 58%), #202119; border-color: #a68a51; box-shadow: 0 15px 45px #00000014; }
.plan-vip::before { content: ''; position: absolute; inset: -1px 0 auto; height: 2px; background: var(--gold-finish); }
.plan-vip h3, .plan-vip .plan-price > strong { color: var(--color-gold-light); }
.plan-badge { display: flex; align-items: center; gap: 7px; font-size: .75rem; font-weight: 500; color: var(--color-gold-light); border: 1px solid #7e6a43; padding: 5px 10px; white-space: nowrap; }
.plan-badge .icon { width: 14px; height: 14px; }
.pricing-footnote { margin-top: 32px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 5px; font-size: .875rem; color: var(--color-muted); }
.pricing-footnote .icon { width: 17px; height: 17px; margin-right: 4px; color: var(--color-gold); }
.pricing-footnote a { text-decoration: underline; text-underline-offset: 4px; color: var(--color-gold-light); }

/* Application. Clear fields on a warm graphite surface. */
.apply-grid { display: grid; grid-template-columns: .87fr 1fr; align-items: start; gap: 105px; }
.apply-copy { position: sticky; top: 135px; }
.apply-copy h2 { font-size: clamp(3.8rem, 5.7vw, 5.5rem); }
.apply-copy > p { margin-top: 28px; font-size: 1rem; color: var(--color-muted); max-width: 380px; line-height: 1.85; }
.apply-person { display: flex; align-items: center; gap: 15px; margin-top: 35px; }
.apply-person img { border: 1px solid #786746; padding: 3px; border-radius: 50%; object-fit: cover; object-position: 60% 29%; width: 56px; height: 56px; }
.apply-person strong, .apply-person span { display: block; }
.apply-person strong { font-size: .875rem; font-weight: 600; }
.apply-person span { font-size: .75rem; color: var(--color-muted); margin-top: 4px; }
.apply-meta { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; border-top: 1px solid var(--color-line); padding-top: 24px; max-width: 385px; }
.apply-meta > span { display: flex; align-items: center; gap: 11px; font-size: .875rem; color: var(--color-muted); }
.apply-meta .icon { width: 18px; height: 18px; color: var(--color-gold); }
.apply-invitation { display: flex; flex-direction: column; align-items: flex-start; width: 275px; margin: 43px 0 0; padding-top: 26px; border-top: 1px solid #4d4733; color: var(--color-gold); }
.apply-invitation > span:not(.invitation-monogram) { font-size: .75rem; letter-spacing: .18em; }
.invitation-monogram { font: 500 5.8rem/1.1 var(--font-editorial); letter-spacing: -.16em; padding-right: 10px; margin-block: 7px; }
.application-form { border: 1px solid #4d4836; padding: 39px 42px 35px; background: linear-gradient(145deg, #20211a, #181a15 35%); }
.form-heading { padding-bottom: 28px; border-bottom: 1px solid var(--color-line); margin-bottom: 28px; }
.form-heading .eyebrow { font-size: .75rem; letter-spacing: .12em; margin-bottom: 10px; }
.form-heading h3 { font: 500 2.5rem/1.2 var(--font-editorial); letter-spacing: -.02em; }
.form-heading > span { display: block; margin-top: 8px; font-size: .875rem; color: var(--color-muted); }
.form-section { border: 0; padding: 0; margin: 0 0 29px; }
.form-section > legend { display: flex; align-items: center; gap: 12px; width: 100%; padding: 0; margin-bottom: 19px; font-size: .875rem; font-weight: 600; color: #ded9ca; }
.form-section > legend > span { font: 500 1.25rem/1 var(--font-editorial); color: var(--color-gold); padding-right: 10px; border-right: 1px solid #635537; }
.field { margin-bottom: 17px; }
.field:last-child { margin-bottom: 0; }
.field label, .budget-field legend { display: block; padding: 0; margin-bottom: 8px; font-size: .875rem; font-weight: 600; color: #c6c5b7; }
.field label > span:not(.optional), .budget-field legend > span { color: var(--color-gold); }
.optional { margin-left: 6px; font-size: .75rem; font-weight: 500; color: #9b9e8e; }
.field input, .field select { width: 100%; min-height: 52px; padding: 13px 15px; background-color: #11140f; border: 1px solid #444838; border-radius: 2px; color: var(--color-ink); font-size: 1rem; line-height: 1.5; transition: border-color .25s, background-color .25s, box-shadow .25s; }
.field input::placeholder { color: #999d8e; opacity: 1; }
.field input:hover, .field select:hover { border-color: #737054; }
.field input:focus, .field select:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px #d4b77a16; background-color: #1a1e15; }
.field input:autofill { box-shadow: 0 0 0 60px #242a1c inset; -webkit-text-fill-color: var(--color-ink); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23bca778' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-position: right 14px center; background-repeat: no-repeat; padding-right: 41px; }
.field-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 17px; }
.budget-field { margin: 0; border: 0; padding: 0; }
.budget-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.budget-options label { position: relative; cursor: pointer; }
.budget-options input { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; }
.budget-options label > span { display: block; border: 1px solid #4e503e; border-radius: 2px; padding: 13px 6px; font-size: .875rem; font-weight: 500; text-align: center; color: #c5c5b6; transition: background .25s, color .25s, border-color .25s; }
.budget-options label:hover > span { border-color: var(--color-gold); }
.budget-options input:checked + span { border-color: var(--color-gold); color: var(--color-gold-light); background: #d4b77a15; box-shadow: inset 0 -2px 0 var(--color-gold); }
.budget-options input:focus-visible + span { outline: 2px solid var(--color-gold-light); outline-offset: 4px; }
.form-submit { width: 100%; justify-content: space-between; }
.form-notice { margin-top: 15px; text-align: center; font-size: .75rem; color: #a3a594; line-height: 1.75; }
.field-error { display: block; font-size: .875rem; color: var(--color-error); line-height: 1.5; }
.field-error:not(:empty) { margin-top: 7px; }
[aria-invalid="true"]:not([type="radio"]) { border-color: var(--color-error) !important; }
.budget-options:has([aria-invalid="true"]) label > span { border-color: var(--color-error); }
.form-status { margin-top: 20px; padding: 17px; background: #d4b77a10; border-left: 2px solid var(--color-gold); font-size: .875rem; color: var(--color-gold-light); }
.form-status[data-state="error"] { background: #e7897c10; border-color: var(--color-error); color: #f2b5ac; }
.site-footer { border-top: 1px solid #4a412d; background: #0d0f0b; padding-block: 51px 28px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 37px; border-bottom: 1px solid var(--color-line); }
.footer-top > p { font: 500 1.875rem/1.3 var(--font-editorial); color: #c2bfaf; }
.footer-top > p em { color: var(--color-gold); }
.back-to-top { display: inline-flex; align-items: center; gap: 15px; font-size: .875rem; color: #b0b1a0; }
.back-to-top .icon { width: 18px; height: 18px; color: var(--color-gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-top: 25px; color: #9d9f90; font-size: .75rem; }
.footer-bottom nav { display: flex; gap: 25px; font-size: .875rem; }
.footer-bottom a:hover, .back-to-top:hover { color: var(--color-gold-light); }
.footer-location { letter-spacing: .13em; }

/* Responsive layouts. Reading order and content work without JavaScript. */
@media (min-width: 1600px) { .hero-copy { padding-block: 92px 88px; } }
@media (max-width: 1150px) {
  .container { width: calc(100% - 64px); }
  .header-inner { gap: 22px; min-height: 88px; }
  .main-nav { gap: 24px; }
  .hero-copy { padding-block: 60px 55px; }
  h1 { font-size: clamp(4.5rem, 8.1vw, 6rem); }
  .hero-visual { margin-right: -12px; }
  .portrait-frame { inset: 23px -20px 0 -35px; }
  .portrait-caption { left: 75px; right: 44px; }
  .portrait-index { right: 0; }
  .mentor-seal { width: 103px; height: 103px; left: -28px; bottom: 100px; }
  .mentor-seal strong { font-size: 2.3rem; }
  .program-summary { gap: 20px; }
  .summary-item { gap: 9px; }
  .summary-intro strong { font-size: 1.8rem; }
  .offer { padding: 29px; gap: 25px; }
  .offer-price { padding-left: 23px; }
  .mentor-grid { gap: 65px; }
  .mentor-photo img { height: 510px; }
  .mentor-bottom { gap: 50px; }
  .section { padding-block: 90px; }
  .plan { padding: 32px; }
  .plan h3 { font-size: 2.2rem; }
  .plan-top { gap: 8px; }
  .plan-number { letter-spacing: .08em; }
  .plan-badge { padding: 4px 7px; }
  .apply-grid { gap: 65px; }
  .application-form { padding: 32px; }
  .footer-location { display: none; }
}
@media (max-width: 900px) {
  .container { width: calc(100% - 48px); }
  .header-inner { gap: 18px; }
  .brand { gap: 10px; }
  .brand-mark { width: 40px; height: 42px; font-size: 35px; }
  .brand-mark > span { top: 15px; left: 18px; font-size: 26px; }
  .brand-name { font-size: .8125rem; letter-spacing: .18em; }
  .brand-name > span { font-size: .75rem; letter-spacing: .04em; }
  .main-nav { gap: 19px; }
  .header-cta { padding-inline: 13px; gap: 12px; }
  .hero-inner { grid-template-columns: 1.05fr 1fr; }
  .hero-copy > .eyebrow { max-width: 310px; letter-spacing: .09em; gap: 10px; }
  .eyebrow-line { width: 21px; }
  h1 { font-size: clamp(4.1rem, 8.4vw, 5rem); }
  .hero-description { font-size: 1rem; max-width: 315px; }
  .desktop-break { display: none; }
  .hero-actions .button { gap: 16px; padding-inline: 17px; }
  .hero-note { letter-spacing: .07em; max-width: 315px; }
  .portrait-frame { inset: 42px -25px 0 -35px; }
  .portrait-frame::before { inset-inline: 34px 20px; }
  .hero-portrait { object-position: 60% center; }
  .portrait-caption { left: 47px; right: 26px; }
  .portrait-caption strong { font-size: 3.8rem; }
  .portrait-index { right: -3px; }
  .mentor-seal { width: 95px; height: 95px; left: -7px; bottom: 189px; }
  .mentor-seal strong { font-size: 2.1rem; }
  .mentor-seal > span { margin-top: 3px; }
  .hero-bottom > span { letter-spacing: .07em; }
  .program-summary { grid-template-columns: 1fr 1fr; gap: 27px 40px; }
  .summary-item p > span { max-width: 260px; }
  .offer { grid-template-columns: 1fr auto; gap: 23px; }
  .offer-symbol { display: none; }
  .offer h2 { font-size: 1.65rem; }
  .offer-price .text-link { gap: 10px; }
  .section { padding-block: 75px; }
  .section-topline { margin-bottom: 42px; }
  h2 { font-size: 3.25rem; }
  .mentor-grid { gap: 40px; padding-left: 14px; }
  .mentor-photo img { height: 495px; }
  .mentor-photo::before { inset: 14px 14px -14px -14px; }
  .mentor-photo figcaption { left: 20px; right: 20px; gap: 10px; }
  .mentor-signature { font-size: 2.8rem; }
  .mentor-photo figcaption > span:last-child { letter-spacing: .03em; }
  .mentor-bottom { grid-template-columns: 1fr; gap: 36px; margin-top: 53px; }
  .mentor-stats { grid-template-columns: repeat(3, 1fr); }
  blockquote { max-width: 590px; }
  .section-heading { gap: 35px; align-items: center; }
  .section-heading > p { max-width: 275px; }
  .plans { gap: 20px; }
  .plan { padding: 27px; }
  .plan h3 { font-size: 2rem; min-height: 73px; }
  .plan-top { align-items: flex-start; min-height: 56px; flex-direction: column; gap: 10px; }
  .plan-emblem { font-size: 1.7rem; }
  .plan-description { min-height: 112px; }
  .plan-price > strong { font-size: 4rem; }
  .plan-price { gap: 15px; }
  .plan > .button { padding-inline: 16px; gap: 16px; }
  .feature-list li { gap: 9px; }
  .apply-grid { gap: 36px; }
  .apply-copy h2 { font-size: 3.75rem; }
  .application-form { padding: 27px; }
  .form-heading h3 { font-size: 2.2rem; }
  .form-heading .eyebrow { letter-spacing: .08em; }
  .apply-person { align-items: flex-start; gap: 10px; }
  .apply-person img { width: 47px; height: 47px; }
  .apply-invitation { width: 230px; margin-left: 15px; }
  .budget-options { gap: 7px; }
  .footer-top { flex-wrap: wrap; }
  .footer-top > p { font-size: 1.6rem; }
}
@media (max-width: 720px) {
  html { scroll-padding-top: 95px; }
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 77px; flex-wrap: wrap; gap: 14px; }
  .brand-mark { width: 38px; height: 40px; font-size: 34px; }
  .brand-name { min-width: 0; font-size: .8125rem; letter-spacing: .18em; }
  .brand-name > span { font-size: .75rem; letter-spacing: .04em; }
  .header-cta { margin-left: auto; min-height: 42px; padding: 9px 12px; font-size: .875rem; gap: 11px; }
  .header-cta .icon { display: none; }
  .menu-toggle:not([hidden]) { display: block; }
  .main-nav { order: 4; width: 100%; gap: 24px; padding-bottom: 16px; flex-wrap: wrap; }
  .main-nav a { font-size: .875rem; }
  .has-js .main-nav { display: none; }
  .has-js .main-nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 4px; }
  .has-js .main-nav.is-open a { padding: 12px 4px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding-block: 49px 0; }
  .hero-copy > .eyebrow { max-width: none; margin-bottom: 26px; font-size: .75rem; letter-spacing: .1em; }
  h1 { font-size: clamp(4.3rem, 14vw, 6.2rem); line-height: .96; }
  .hero-description { margin-top: 24px; max-width: 450px; line-height: 1.85; }
  .hero-actions { margin-top: 27px; gap: 16px; }
  .hero-actions .button { min-height: 57px; padding-inline: 22px; gap: 27px; }
  .hero-note { margin-top: 28px; max-width: none; font-size: .75rem; }
  .hero-visual { height: auto; aspect-ratio: 1 / 1.16; margin: 5px -7px 0; max-width: 530px; width: calc(100% + 14px); justify-self: center; }
  .portrait-frame { inset: 0 -12px; min-height: 0; }
  .hero-portrait { object-fit: cover; object-position: 57% 37%; mask-image: linear-gradient(to right, transparent, #000 12%, #000 87%, transparent), linear-gradient(to bottom, transparent, #000 9%, #000 76%, transparent); }
  .portrait-frame::before { inset: 40px 27px 39px; border-radius: 230px 230px 0 0; }
  .portrait-caption { bottom: 37px; left: 44px; right: 39px; }
  .portrait-caption strong { font-size: 4.1rem; }
  .portrait-index { top: 88px; right: 10px; }
  .mentor-seal { width: 98px; height: 98px; bottom: 129px; left: 15px; }
  .mentor-seal strong { font-size: 2.3rem; }
  .hero-bottom { padding-block: 10px 22px; }
  .hero-bottom > span { display: none; }
  .discover-link { font-size: .75rem; letter-spacing: .1em; }
  .program-summary { gap: 27px 23px; padding-block: 31px; }
  .summary-intro .eyebrow { letter-spacing: .07em; }
  .summary-intro strong { font-size: 1.7rem; }
  .summary-item { gap: 9px; }
  .summary-number { font-size: 1.125rem; }
  .offer { grid-template-columns: 1fr; gap: 23px; margin-top: 14px; padding: 27px; }
  .offer h2 { font-size: 1.875rem; }
  .offer-price { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-left: 0; border-top: 1px solid #54472e; padding: 18px 0 0; }
  .offer-price > span { gap: 12px; }
  .offer-price strong { font-size: 2.8rem; }
  .offer-price strong span { font-size: 1.6rem; }
  .offer-price .text-link { font-size: .875rem; gap: 8px; margin: 0; white-space: normal; }
  .section { padding-block: 66px; }
  .section-topline { padding-bottom: 17px; margin-bottom: 33px; }
  .section-note { display: none; }
  .section-topline .eyebrow { letter-spacing: .12em; }
  h2 { font-size: clamp(2.85rem, 8.9vw, 4rem); }
  .mentor-grid { grid-template-columns: 1fr; gap: 45px; padding-left: 0; }
  .mentor-photo { margin-left: 14px; max-width: 510px; }
  .mentor-photo img { height: auto; aspect-ratio: .93; object-position: 55% 32%; }
  .mentor-photo figcaption { left: 26px; right: 26px; bottom: 23px; }
  .mentor-signature { font-size: 3.2rem; }
  .mentor-photo figcaption > span:last-child { letter-spacing: .1em; }
  .mentor-copy > p { font-size: 1rem; max-width: none; }
  .mentor-copy > .mentor-intro { margin-top: 25px; }
  .mentor-bottom { margin-top: 38px; padding-top: 29px; gap: 34px; }
  .mentor-stats { grid-template-columns: .8fr 1.2fr .85fr; }
  .mentor-stats > div { padding-left: 19px; padding-right: 9px; }
  .mentor-stats strong { font-size: 2.9rem; }
  blockquote p { font-size: 1.6rem; }
  .section-heading { display: block; margin-bottom: 33px; }
  .section-heading > p { margin-top: 23px; max-width: 450px; }
  .plans { grid-template-columns: 1fr; gap: 25px; }
  .plan { padding: 29px; }
  .plan-top { flex-direction: row; align-items: center; min-height: 33px; margin-bottom: 24px; }
  .plan-emblem { font-size: 2.3rem; }
  .plan h3 { font-size: 2.5rem; min-height: 0; }
  .plan-description { min-height: 0; max-width: none; }
  .plan-price { margin-top: 26px; gap: 22px; }
  .plan-price > strong { font-size: 4.75rem; }
  .plan > .button { padding-inline: 20px; font-size: .875rem; }
  .feature-list li { font-size: 1rem; gap: 12px; }
  .pricing-footnote { justify-content: flex-start; gap: 6px; }
  .apply-grid { grid-template-columns: 1fr; gap: 35px; }
  .apply-copy { position: static; }
  .apply-copy h2 { font-size: clamp(3.5rem, 11vw, 4.75rem); }
  .apply-copy > p { max-width: 470px; margin-top: 23px; }
  .apply-person { align-items: center; margin-top: 27px; }
  .apply-person img { width: 54px; height: 54px; }
  .apply-meta { max-width: none; margin-top: 26px; }
  .apply-invitation { display: none; }
  .application-form { padding: 28px 26px; }
  .form-heading h3 { font-size: 2.4rem; }
  .budget-options { gap: 9px; }
  .site-footer { padding-block: 36px 25px; }
  .footer-top { gap: 26px 15px; padding-bottom: 28px; }
  .footer-top > p { order: 3; width: 100%; font-size: 1.8rem; }
  .back-to-top { font-size: .875rem; gap: 9px; }
  .footer-bottom { flex-direction: column; font-size: .75rem; gap: 18px; }
}
@media (max-width: 390px) {
  .container { width: calc(100% - 32px); }
  .header-inner { gap: 9px; }
  .brand { gap: 8px; }
  .brand-name { min-width: 0; font-size: .75rem; letter-spacing: .13em; }
  .brand-name > span { letter-spacing: .02em; }
  .header-cta { padding-inline: 9px; }
  .header-cta .icon { display: none; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-copy > .eyebrow { letter-spacing: .06em; }
  h1 { font-size: 4.05rem; }
  .hero-actions .button { width: 100%; justify-content: space-between; padding-inline: 18px; gap: 13px; }
  .hero-note { letter-spacing: .04em; }
  .hero-note .note-line { width: 15px; }
  .program-summary { gap: 24px 16px; }
  .summary-intro strong { font-size: 1.6rem; }
  .summary-item { gap: 7px; }
  .offer { padding: 25px; }
  .offer-price { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mentor-stats > div { padding-left: 13px; padding-right: 6px; }
  .mentor-stats strong { font-size: 2.5rem; }
  .plan { padding: 25px; }
  .plan h3 { font-size: 2.25rem; }
  .plan-top { flex-wrap: wrap; }
  .plan-number { letter-spacing: .06em; }
  .application-form { padding: 26px 20px; }
  .form-heading h3 { font-size: 2.2rem; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .field-grid .field:last-child { margin-bottom: 17px; }
  .budget-options { gap: 6px; }
  .budget-options label > span { padding-inline: 3px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media (forced-colors: active) {
  .gold-text { background: none; color: CanvasText; }
  .button-gold { background: ButtonFace; color: ButtonText; border-color: ButtonText; }
  .budget-options input:checked + span { outline: 2px solid Highlight; }
}

/* Spam trap stays outside keyboard and assistive navigation. */
.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
