:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --surface: #111111;
  --surface-2: #171717;
  --line: rgba(255,255,255,.11);
  --line-gold: rgba(222,183,69,.34);
  --text: #f6f2e8;
  --muted: #aca79d;
  --gold: #e2bd45;
  --gold-soft: #f6de82;
  --gold-deep: #a87505;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-h: 86px;
  --radius: 4px;
  --ease: cubic-bezier(.2,.75,.25,1);
  --shadow: 0 35px 80px rgba(0,0,0,.44);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 10%, rgba(185,130,8,.08), transparent 24rem),
    var(--bg);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: #080808; background: var(--gold-soft); }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px;
  transform: translateY(-140%); padding: 10px 15px; border-radius: 3px;
  color: #090909; background: var(--gold-soft); font-size: 13px; font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.preloader {
  position: fixed; inset: 0; z-index: 9998; display: grid; place-items: center;
  background: #050505; transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { display: grid; place-items: center; gap: 24px; }
.preloader__inner img { width: 74px; filter: drop-shadow(0 10px 30px rgba(224,183,55,.25)); animation: breathe 1.8s ease-in-out infinite; }
.preloader__line { width: 120px; height: 1px; overflow: hidden; background: rgba(255,255,255,.09); }
.preloader__line i { display: block; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, var(--gold-soft), transparent); animation: loadline 1.3s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.06); opacity: .78; } }
@keyframes loadline { from { transform: translateX(-120%); } to { transform: translateX(220%); } }

.ambient { position: fixed; z-index: -1; border-radius: 999px; filter: blur(130px); opacity: .15; pointer-events: none; }
.ambient--one { width: 420px; height: 420px; top: 24vh; right: -230px; background: #b37a00; }
.ambient--two { width: 320px; height: 320px; bottom: -180px; left: -170px; background: #e0b436; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: var(--header-h); border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  height: 74px; background: rgba(6,6,6,.84); border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; min-width: 0; }
.brand { display: flex; align-items: center; justify-content: flex-start; width: auto; min-width: 0; max-width: 228px; height: 66px; flex: none; }
.brand img { width: auto; height: 100%; max-width: 100%; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 28px); margin-left: auto; min-width: 0; }
.desktop-nav a { position: relative; padding: 28px 0; color: #d8d3c8; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color .25s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 1px; background: var(--gold); transition: right .3s var(--ease); }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--gold-soft); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 16px; flex: none; }
.language-switch { display: inline-flex; align-items: center; gap: 8px; }
.language-switch span { width: 1px; height: 12px; background: rgba(255,255,255,.22); }
.lang-btn { appearance: none; border: 0; padding: 4px 2px; cursor: pointer; background: transparent; color: #77736b; font-size: 10px; font-weight: 700; letter-spacing: .12em; transition: color .25s ease; }
.lang-btn.is-active, .lang-btn:hover { color: var(--gold-soft); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border: 1px solid var(--line-gold); color: var(--gold-soft); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.header-cta:hover { color: #080808; border-color: var(--gold-soft); background: var(--gold-soft); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0 10px; border: 1px solid rgba(255,255,255,.14); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; background: var(--text); margin: 6px 0; transition: transform .25s ease; }

.mobile-menu { position: fixed; inset: 0; z-index: 1100; visibility: hidden; pointer-events: none; }
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.62); opacity: 0; transition: opacity .45s ease; }
.mobile-menu__panel { position: absolute; top: 0; right: 0; width: min(430px, 92vw); height: 100%; padding: 28px; display: flex; flex-direction: column; background: #0b0b0b; transform: translateX(102%); transition: transform .5s var(--ease); box-shadow: -30px 0 70px rgba(0,0,0,.4); }
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.mobile-menu__top > img { width: 176px; max-width: calc(100% - 60px); height: auto; }
.mobile-menu__close { width: 42px; height: 42px; padding: 9px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.mobile-menu__close svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.mobile-menu nav { display: grid; margin-top: 24px; }
.mobile-menu nav a { display: grid; grid-template-columns: 35px 1fr; align-items: center; gap: 12px; min-height: 62px; border-bottom: 1px solid var(--line); }
.mobile-menu nav span { color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.mobile-menu nav b { font: 600 26px/1.1 var(--serif); }
.mobile-menu__footer { margin-top: auto; padding-top: 24px; }
.language-switch--mobile { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.language-switch--mobile .lang-btn { padding: 12px 8px; border: 1px solid var(--line); font-size: 10px; }
.language-switch--mobile .lang-btn.is-active { border-color: var(--line-gold); background: rgba(220,181,64,.08); }

.hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + 75px) 0 78px; display: grid; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent); opacity: .45; }
.hero__texture { position: absolute; inset: 0; pointer-events: none; opacity: .16; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr); align-items: center; gap: clamp(48px, 6vw, 92px); }
.eyebrow { margin: 0 0 17px; display: flex; align-items: center; gap: 11px; color: var(--gold-soft); font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 31px; height: 1px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft)); }
.hero__title { max-width: 720px; margin: 0; font: 600 clamp(58px, 6.6vw, 96px)/.9 var(--serif); letter-spacing: -.045em; }
.hero__title span, .hero__title em { display: block; }
.hero__title em { font-weight: 500; color: transparent; -webkit-text-stroke: 1px var(--gold-soft); font-style: italic; }
.hero__lead { max-width: 590px; margin: 26px 0 0; color: #c0bbb1; font-size: 15px; line-height: 1.85; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 52px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 1px solid transparent; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.button svg, .text-link svg, .program-card__body > a svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; transition: transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg, .text-link:hover svg, .program-card__body > a:hover svg { transform: translateX(4px); }
.button--gold { color: #090909; background: linear-gradient(115deg, #b9830c, #f3da78 48%, #c28c13); box-shadow: 0 18px 44px rgba(190,137,17,.18); }
.button--gold:hover { box-shadow: 0 22px 55px rgba(212,164,41,.28); }
.button--ghost { color: #eee9dd; border-color: rgba(255,255,255,.17); background: rgba(255,255,255,.025); }
.button--ghost:hover { border-color: rgba(239,211,117,.45); color: var(--gold-soft); }
.hero__micro { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); }
.hero__micro div { display: flex; align-items: center; gap: 9px; color: #8e8a82; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hero__micro i { width: 5px; height: 5px; border-radius: 50%; border: 1px solid var(--gold); box-shadow: 0 0 0 3px rgba(224,183,55,.08); }

.hero-visual { position: relative; width: min(100%, 500px); justify-self: end; isolation: isolate; }
.hero-visual__frame { position: relative; z-index: 2; aspect-ratio: .83; overflow: hidden; border: 1px solid rgba(232,205,113,.28); box-shadow: var(--shadow); background: #171717; }
.hero-visual__frame::before { content: ""; position: absolute; z-index: 3; inset: 13px; border: 1px solid rgba(255,255,255,.14); pointer-events: none; }
.hero-visual__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.08) brightness(.84); transform: scale(1.08); }
.hero-visual__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.05) 45%, rgba(0,0,0,.66)), linear-gradient(90deg, rgba(18,12,0,.2), transparent 45%); }
.hero-visual__orbit { position: absolute; z-index: 1; width: 74%; aspect-ratio: 1; right: -17%; top: -12%; border: 1px solid rgba(223,185,67,.23); border-radius: 50%; animation: rotate 28s linear infinite; }
.hero-visual__orbit::before, .hero-visual__orbit::after { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.hero-visual__orbit::after { inset: 28%; border-color: rgba(223,185,67,.19); }
.hero-visual__orbit span { position: absolute; top: 8%; left: 13%; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 18px var(--gold); }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-visual__signature { position: absolute; z-index: 5; left: -64px; bottom: 34px; min-width: 280px; padding: 15px 20px 15px 13px; display: flex; align-items: center; gap: 12px; background: rgba(7,7,7,.88); border: 1px solid rgba(230,195,90,.27); backdrop-filter: blur(15px); box-shadow: 0 15px 40px rgba(0,0,0,.4); }
.hero-visual__signature img { width: 48px; }
.hero-visual__signature small, .hero-visual__signature strong { display: block; }
.hero-visual__signature small { margin-bottom: 3px; color: #8f8a80; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual__signature strong { color: #e8dfca; font: 600 15px var(--serif); letter-spacing: .02em; }
.hero-visual__monogram { position: absolute; z-index: 4; right: -38px; bottom: -52px; color: rgba(235,206,110,.10); font: 600 132px/1 var(--serif); letter-spacing: -.1em; }
.hero__scroll { position: absolute; z-index: 3; left: 50%; bottom: 20px; width: 1px; height: 46px; overflow: hidden; background: rgba(255,255,255,.12); }
.hero__scroll span { display: block; width: 100%; height: 22px; background: var(--gold); animation: scrollHint 2s ease-in-out infinite; }
@keyframes scrollHint { from { transform: translateY(-120%); } to { transform: translateY(210%); } }

.principles { border-block: 1px solid var(--line); background: #0b0b0b; overflow: hidden; }
.principles__track { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.principles__track span { color: #d5d0c6; font: 500 18px var(--serif); font-style: italic; white-space: nowrap; }
.principles__track i { flex: 1; height: 1px; max-width: 90px; background: linear-gradient(90deg, transparent, rgba(224,183,55,.52), transparent); }

.section { position: relative; padding: 136px 0; }
.section-title { max-width: 720px; margin: 0; font: 600 clamp(46px, 5.2vw, 76px)/.96 var(--serif); letter-spacing: -.035em; }
.section-lead, .section-heading__text { color: var(--muted); font-size: 14px; line-height: 1.9; }
.section-lead { max-width: 650px; margin: 28px 0 0; }
.section-heading--split { display: grid; grid-template-columns: 1.1fr .6fr; align-items: end; gap: 80px; margin-bottom: 60px; }
.section-heading--split .section-heading__text { margin: 0 0 5px; }
.section-heading--center { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center .section-title { margin-inline: auto; }
.section-heading--center .section-heading__text { max-width: 640px; margin: 25px auto 0; }

.section--about { background: linear-gradient(180deg, #090909, #0d0d0d); }
.about-grid { display: grid; grid-template-columns: .92fr 1fr; align-items: center; gap: clamp(48px, 6vw, 92px); }
.about-media { position: relative; min-height: auto; max-width: 560px; }
.about-media__main { position: relative; z-index: 1; width: 100%; height: 560px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); box-shadow: var(--shadow); background: #111; }
.about-media__main img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: saturate(.68) sepia(.12) contrast(1.05); }
.about-media__main::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.about-media__accent { display: none; }
.about-media__accent::before { display: none; }
.about-media__accent img { display: none; }
.about-media__caption { position: absolute; left: -18px; bottom: 8px; margin: 0; display: flex; align-items: center; gap: 15px; writing-mode: vertical-rl; transform: rotate(180deg); color: #9d978b; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.about-media__caption span { color: var(--gold); }
.about-values { margin-top: 36px; border-top: 1px solid var(--line); }
.about-values article { display: grid; grid-template-columns: 44px 1fr; gap: 19px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.about-values article > span { color: var(--gold); font-size: 10px; letter-spacing: .15em; }
.about-values h3 { margin: -2px 0 7px; font: 600 22px var(--serif); }
.about-values p { max-width: 580px; margin: 0; color: #969189; font-size: 12px; line-height: 1.8; }
.text-link { display: inline-flex; align-items: center; gap: 20px; margin-top: 30px; padding-bottom: 7px; border-bottom: 1px solid rgba(224,183,55,.35); color: var(--gold-soft); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.section--programs { background: #080808; }
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.program-card { min-width: 0; border: 1px solid var(--line); background: #0c0c0c; transition: transform .45s var(--ease), border-color .35s ease, box-shadow .45s ease; }
.program-card:hover { transform: translateY(-8px); border-color: rgba(226,189,69,.35); box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.program-card__media { position: relative; height: 340px; overflow: hidden; }
.program-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.82)); }
.program-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.04); transition: transform .8s var(--ease), filter .8s ease; }
.program-card:hover .program-card__media img { transform: scale(1.055); filter: saturate(.9) contrast(1.05); }
.program-card__number { position: absolute; z-index: 2; right: 22px; bottom: 12px; color: rgba(255,255,255,.55); font: 500 54px/1 var(--serif); }
.program-card__body { padding: 35px 37px 38px; }
.program-card__tag { margin-bottom: 12px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.program-card h3 { margin: 0; font: 600 42px/1 var(--serif); }
.program-card__body > p { min-height: 78px; margin: 18px 0 24px; color: #9f9a91; font-size: 13px; line-height: 1.85; }
.program-card ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.program-card li { position: relative; padding: 12px 0 12px 19px; border-bottom: 1px solid var(--line); color: #d1ccc3; font-size: 11px; }
.program-card li::before { content: ""; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; border: 1px solid var(--gold-deep); transform: translateY(-50%) rotate(45deg); }
.program-card__body > a { display: inline-flex; align-items: center; gap: 18px; margin-top: 28px; color: var(--gold-soft); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.section--method { background: linear-gradient(180deg, #0c0c0c, #101010); }
.method-grid { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(80px, 9vw, 150px); align-items: start; }
.method-sticky { position: sticky; top: 125px; }
.method-quote { max-width: 480px; margin-top: 38px; padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line-gold); background: rgba(217,172,40,.04); }
.method-quote img { width: 42px; flex: none; }
.method-quote blockquote { margin: 0; color: #d7d0c0; font: italic 21px/1.45 var(--serif); }
.method-steps { border-top: 1px solid var(--line); }
.method-step { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 50px 0; border-bottom: 1px solid var(--line); }
.method-step > span { color: var(--gold); font-size: 10px; letter-spacing: .18em; }
.method-step h3 { margin: -10px 0 10px; color: #ede7d9; font: 600 46px/1 var(--serif); }
.method-step p { max-width: 560px; margin: 0; color: #97928a; font-size: 13px; line-height: 1.85; }

.section--experience { overflow: hidden; background: #080808; }
.experience-gallery { display: grid; grid-template-columns: 1.2fr .72fr; grid-template-rows: 330px 300px; gap: 18px; }
.experience-gallery figure { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #111; }
.experience-gallery__wide { grid-row: 1 / 3; }
.experience-gallery figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) brightness(.76) contrast(1.08); transition: transform .8s var(--ease), filter .8s ease; }
.experience-gallery figure:hover img { transform: scale(1.04); filter: saturate(.82) brightness(.86); }
.experience-gallery__wide img { object-position: center; }
.experience-gallery__tall img { object-position: center 35%; }
.experience-gallery__small img { object-position: center 45%; }
.experience-gallery figcaption { position: absolute; z-index: 2; inset: auto 20px 17px; display: flex; align-items: center; gap: 14px; color: #f4eee1; }
.experience-gallery figure::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.8)); }
.experience-gallery figcaption span { color: var(--gold); font-size: 9px; letter-spacing: .14em; }
.experience-gallery figcaption b { font: 600 22px var(--serif); }

.section--outcomes { background: #0d0d0d; }
.outcomes-grid { display: grid; grid-template-columns: .82fr 1.1fr; gap: clamp(70px, 8vw, 130px); align-items: start; }
.outcomes-copy { position: sticky; top: 125px; }
.outcomes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.outcomes-list article { min-height: 255px; padding: 30px; background: #0d0d0d; transition: background .35s ease; }
.outcomes-list article:hover { background: #13120f; }
.outcomes-list span { color: var(--gold); font-size: 9px; letter-spacing: .16em; }
.outcomes-list h3 { margin: 48px 0 13px; font: 600 27px/1.1 var(--serif); }
.outcomes-list p { margin: 0; color: #969189; font-size: 12px; line-height: 1.8; }

.section--faq { background: #080808; }
.faq-grid { display: grid; grid-template-columns: .68fr 1fr; gap: clamp(70px, 8vw, 130px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 84px; padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 0; cursor: pointer; background: transparent; text-align: left; }
.faq-item button span { color: #e4dfd5; font: 600 22px/1.25 var(--serif); }
.faq-item button i { position: relative; width: 22px; height: 22px; flex: none; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 1px; background: var(--gold); transform: translate(-50%,-50%); transition: transform .3s ease; }
.faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.is-open button i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-item__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item__answer > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 56px 0 0; color: #97928a; font-size: 13px; line-height: 1.85; transition: padding .4s var(--ease); }
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__answer > p { padding-bottom: 29px; }

.contact { position: relative; min-height: 790px; display: grid; align-items: center; overflow: hidden; background: #080808; }
.contact__image { position: absolute; inset: 0; }
.contact__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; filter: saturate(.5) contrast(1.08) brightness(.65); }
.contact__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,4,4,.96) 0%, rgba(4,4,4,.88) 42%, rgba(4,4,4,.38) 75%, rgba(4,4,4,.5)), linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.65)); }
.contact__inner { position: relative; z-index: 2; padding-block: 120px; }
.contact__title { max-width: 790px; margin: 0; font: 600 clamp(54px, 6.3vw, 92px)/.9 var(--serif); letter-spacing: -.045em; }
.contact__lead { max-width: 610px; margin: 28px 0 0; color: #b2ada4; font-size: 14px; line-height: 1.85; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.contact__details { max-width: 750px; margin-top: 70px; padding-top: 25px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.contact__details span, .contact__details strong { display: block; }
.contact__details span { margin-bottom: 6px; color: #817d76; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact__details strong { color: #e8e2d6; font-size: 11px; font-weight: 600; overflow-wrap: anywhere; }

.site-footer { background: #050505; border-top: 1px solid var(--line); }
.site-footer__top { padding: 72px 0 55px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: start; gap: 64px; }
.site-footer__brand img { width: min(100%, 228px); height: auto; }
.site-footer__brand p { margin: 16px 0 0; color: #817d74; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.site-footer__links { display: flex; gap: 72px; }
.site-footer__links > div { display: grid; align-content: start; gap: 8px; min-width: 110px; }
.site-footer__links span { margin-bottom: 8px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.site-footer__links a { color: #a9a49b; font-size: 11px; transition: color .25s ease; }
.site-footer__links a:hover { color: var(--gold-soft); }
.site-footer__bottom { padding: 18px 0 26px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: #68645e; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a:hover { color: var(--gold-soft); }

.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 800; min-height: 50px; padding: 0 17px 0 13px; display: flex; align-items: center; gap: 9px; color: #080808; background: linear-gradient(115deg, #b9830c, #f3da78 50%, #c28c13); box-shadow: 0 16px 35px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.28); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease; }
.floating-wa:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(185,133,14,.24); }
.floating-wa svg { width: 24px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--delay-1 { transition-delay: .09s; }
.reveal--delay-2 { transition-delay: .18s; }
.reveal--delay-3 { transition-delay: .27s; }
.reveal--delay-4 { transition-delay: .36s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 40px, 1040px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero__grid { grid-template-columns: minmax(0,1fr) 360px; gap: 42px; }
  .hero__title { font-size: clamp(58px, 7vw, 82px); }
  .hero-visual__signature { left: -35px; }
  .about-grid { gap: 70px; }
  .about-media__main { width: 86%; }
}

@media (max-width: 880px) {
  :root { --header-h: 76px; }
  .site-header.is-scrolled { height: 68px; }
  .brand { max-width: 196px; height: 58px; }
  .header-cta { display: none; }
  .hero { padding-top: 124px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__content { max-width: 700px; }
  .hero-visual { justify-self: center; width: min(88vw, 520px); }
  .hero-visual__signature { left: 18px; bottom: 18px; }
  .principles__track { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .principles__track::-webkit-scrollbar { display: none; }
  .principles__track i { min-width: 50px; }
  .section { padding: 105px 0; }
  .about-grid, .method-grid, .outcomes-grid, .faq-grid { grid-template-columns: 1fr; gap: 65px; }
  .about-media { width: min(100%, 590px); min-height: auto; margin-inline: auto; }
  .about-media__main { width: 100%; height: 500px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
  .section-heading--split .section-heading__text { max-width: 650px; }
  .method-sticky, .outcomes-copy { position: static; }
  .program-card__media { height: 285px; }
  .program-card__body { padding: 30px; }
  .experience-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 280px; }
  .experience-gallery__wide { grid-column: 1 / 3; grid-row: auto; }
  .contact__details { grid-template-columns: 1fr 1fr 1fr; }
  .principles__track { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; padding: 18px 0; }
  .principles__track i { display: none; }
  .principles__track span { padding-bottom: 12px; border-bottom: 1px solid rgba(224,183,55,.25); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 30px); }
  .site-header__inner { gap: 14px; }
  .brand { max-width: 172px; height: 52px; }
  .header-actions { gap: 11px; }
  .language-switch:not(.language-switch--mobile) { gap: 6px; }
  .lang-btn { font-size: 9px; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-menu__panel { width: 100%; padding: 22px 18px; }
  .hero { padding: 118px 0 70px; }
  .hero__title { font-size: clamp(46px, 14vw, 64px); line-height: .92; }
  .hero__lead { margin-top: 24px; font-size: 13px; line-height: 1.8; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero__micro { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero-visual { width: 100%; }
  .hero-visual__frame { aspect-ratio: .83; }
  .hero-visual__signature { left: 12px; right: 12px; bottom: 12px; min-width: 0; padding-right: 12px; }
  .hero-visual__signature strong { font-size: 13px; }
  .hero-visual__monogram { right: 4px; bottom: -38px; font-size: 96px; }
  .hero-visual__orbit { right: -25%; }
  .hero__scroll { display: none; }
  .principles__track { min-height: 64px; }
  .principles__track span { font-size: 16px; }
  .section { padding: 84px 0; }
  .section-title { font-size: clamp(42px, 12vw, 60px); }
  .section-lead, .section-heading__text { font-size: 13px; }
  .about-media { min-height: auto; display: grid; grid-template-columns: 1fr; gap: 0; }
  .about-media__main { width: 100%; height: 520px; }
  .about-media__accent { display: none; }
  .about-media__caption { position: static; writing-mode: initial; transform: none; gap: 10px; margin-top: 16px; font-size: 10px; letter-spacing: .14em; }
  .about-values article { grid-template-columns: 34px 1fr; gap: 12px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card__media { height: 270px; }
  .program-card__body { padding: 27px 23px 30px; }
  .program-card h3 { font-size: 38px; }
  .program-card__body > p { min-height: 0; }
  .method-step { grid-template-columns: 42px 1fr; gap: 12px; padding: 36px 0; }
  .method-step h3 { font-size: 40px; }
  .method-quote { padding: 17px; }
  .method-quote blockquote { font-size: 18px; }
  .experience-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 360px); }
  .experience-gallery__wide { grid-column: auto; }
  .outcomes-list { grid-template-columns: 1fr; }
  .outcomes-list article { min-height: 220px; }
  .faq-item button { min-height: 76px; gap: 16px; }
  .faq-item button span { font-size: 20px; }
  .faq-item__answer > p { padding-right: 10px; }
  .contact { min-height: 760px; }
  .contact__overlay { background: linear-gradient(180deg, rgba(4,4,4,.88), rgba(4,4,4,.9)); }
  .contact__title { font-size: clamp(50px, 14vw, 72px); }
  .contact__details { grid-template-columns: 1fr; margin-top: 50px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__brand { max-width: 280px; }
  .site-footer__links { justify-content: space-between; gap: 24px; flex-direction: column; }
  .site-footer__bottom { flex-direction: column; gap: 10px; }
  .floating-wa { right: 14px; bottom: 14px; width: 52px; height: 52px; min-height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .floating-wa span { display: none; }
}

@media (max-width: 390px) {
  .brand { max-width: 156px; height: 48px; }
  .hero__title { font-size: 44px; }
  .hero-visual__signature small { display: none; }
  .section-title { font-size: 41px; }
  .about-media { min-height: auto; }
  .about-media__main { height: 430px; }
  .program-card__media { height: 240px; }
  .about-media__main { height: 440px; }
  .about-media__accent { display: none; }
  .principles__track { grid-template-columns: 1fr; gap: 10px; }
  .principles__track span { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.hero__content, .about-copy, .section-heading, .section-heading__text, .site-footer__brand { min-width: 0; }
.about-copy { overflow: hidden; }
.site-footer__links > div { min-width: 0; }
.site-footer__links a { overflow-wrap: anywhere; }

@media (max-width: 680px) {
  .about-copy { margin-top: 30px; }
  .about-values article { padding: 18px 0; }
  .about-values h3 { font-size: 24px; }
  .section--about { overflow: hidden; }
}
@media (min-width: 681px) and (max-width: 1100px) {
  .about-media__accent { display: none; }
  .about-media__main { width: 100%; }
}

.about-media__caption { margin-top: 18px; }
@media (max-width: 680px) {
  .about-media__main { height: 400px; }
  .about-media__main img { object-position: center top; }
  .about-media__caption { justify-content: flex-start; }
}

.mobile-menu__top > img { object-fit: contain; object-position: left center; }
