:root {
  --ink: #0b1720;
  --ink-soft: #142630;
  --paper: #f4f0e8;
  --paper-deep: #e9e2d5;
  --white: #fffdf8;
  --gold: #c6a15b;
  --gold-bright: #e4c581;
  --sage: #b8c3b5;
  --muted: #667078;
  --line-dark: rgba(255,255,255,.14);
  --line-light: rgba(11,23,32,.16);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Playfair Display", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--gold); color: var(--ink); padding: 12px 18px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.nav-wrap { min-height: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--gold); color: var(--gold-bright); font-family: var(--display); font-size: 1.1rem; letter-spacing: -.06em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: var(--sans); font-size: .9rem; letter-spacing: .02em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.62); font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 32px; font-family: var(--sans); font-size: .79rem; text-transform: uppercase; letter-spacing: .1em; }
.desktop-nav a { color: rgba(255,255,255,.72); transition: color .2s ease; }
.desktop-nav a:hover { color: var(--gold-bright); }
.nav-wrap > .button { justify-self: end; }
.menu-toggle, .mobile-nav { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 4px; }
.button-small { min-height: 43px; padding-inline: 18px; font-size: .68rem; }
.button-light { border-color: rgba(255,255,255,.34); }
.button-light:hover { background: var(--white); color: var(--ink); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-bright); }
.button-gold { width: 100%; background: var(--gold-bright); color: var(--ink); margin-top: 12px; }
.button-gold:hover { background: var(--white); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: rgba(255,255,255,.72); font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }
.text-link:hover { color: var(--white); border-color: var(--gold); }

.hero { position: relative; min-height: 920px; padding-top: 170px; background: var(--ink); color: var(--white); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 38%, rgba(198,161,91,.14), transparent 32%), linear-gradient(112deg, transparent 0 69%, rgba(255,255,255,.025) 69% 69.2%, transparent 69.2%); }
.hero::after { content: ""; position: absolute; right: -140px; top: 120px; width: 540px; height: 540px; border: 1px solid rgba(198,161,91,.16); border-radius: 50%; }
.hero-rule { position: absolute; width: 1px; top: 92px; bottom: 0; left: calc((100% - min(1180px, calc(100% - 48px))) / 2 + 50%); background: rgba(255,255,255,.06); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.13fr .87fr; gap: 88px; align-items: center; }
.eyebrow { margin: 0 0 25px; color: var(--gold-bright); font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 34px; height: 1px; margin: 0 12px 3px 0; background: currentColor; }
.eyebrow.dark { color: #8b6a30; }
h1, h2 { margin: 0; font-family: var(--sans); font-weight: 600; line-height: .99; letter-spacing: -.055em; }
h1 { max-width: 770px; font-size: clamp(3.5rem, 6.5vw, 6.5rem); }
h1 em, h2 em { color: var(--gold-bright); font-family: var(--display); font-weight: 500; letter-spacing: -.025em; }
.hero-intro { max-width: 620px; margin: 32px 0 0; color: rgba(255,255,255,.7); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }

.portrait-stage { position: relative; padding: 35px 0 60px; }
.portrait-card { position: relative; max-width: 420px; margin-left: auto; }
.portrait-card::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid rgba(198,161,91,.38); z-index: -1; }
.portrait-image { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; background: #1a2c35; }
.portrait-placeholder { position: relative; display: grid; place-items: center; aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(155deg, #243b47, #101f27 62%, #081218); }
.portrait-placeholder::before { content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(198,161,91,.28); box-shadow: 0 0 0 42px rgba(255,255,255,.018), 0 0 0 84px rgba(255,255,255,.014); }
.portrait-placeholder::after { content: ""; position: absolute; inset: auto -15% -35% 25%; height: 80%; background: linear-gradient(155deg, rgba(198,161,91,.12), rgba(255,255,255,.01)); transform: rotate(-22deg); }
.portrait-monogram { position: relative; z-index: 2; color: rgba(255,255,255,.92); font-family: var(--display); font-size: clamp(5rem, 11vw, 8.8rem); letter-spacing: -.1em; transform: translateX(-.05em); }
.portrait-note { position: absolute; z-index: 2; bottom: 18px; left: 18px; color: rgba(255,255,255,.46); font-family: var(--sans); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.portrait-caption { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: var(--white); color: var(--ink); }
.portrait-caption div { display: flex; flex-direction: column; }
.portrait-caption strong { font-family: var(--sans); font-size: .95rem; }
.portrait-caption div span { margin-top: 3px; color: var(--muted); font-size: .7rem; }
.caption-mark { color: #9b7635; font-family: var(--display); font-size: 1.4rem; }
.signal-card { position: absolute; right: -34px; bottom: 0; width: 245px; padding: 20px 22px; background: var(--gold); color: var(--ink); box-shadow: 0 22px 60px rgba(0,0,0,.18); }
.signal-label { font-family: var(--sans); font-size: .61rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.signal-card p { margin: 10px 0 0; font-family: var(--display); font-size: 1.2rem; line-height: 1.35; }
.audience-strip { position: absolute; z-index: 3; left: 50%; bottom: 0; transform: translateX(-50%); display: flex; align-items: center; gap: 28px; min-height: 92px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.84); font-family: var(--sans); }
.audience-strip > span { color: var(--gold-bright); font-size: .66rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.audience-strip strong { font-size: .8rem; font-weight: 500; }
.audience-strip i { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }

.problem-section { padding: 132px 0 140px; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
h2 { max-width: 720px; font-size: clamp(2.8rem, 4.7vw, 5rem); }
.problem-section h2 em, .about-section h2 em { color: #8e6d33; }
.problem-copy { padding-top: 44px; color: #59636a; }
.lead { color: var(--ink); font-size: 1.12rem; line-height: 1.75; }
.problem-copy p { margin: 0 0 20px; }
.issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 82px; background: var(--line-light); border: 1px solid var(--line-light); }
.issue-card { min-height: 270px; padding: 34px 34px 30px; background: var(--paper); }
.issue-card > span { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid #a7874b; color: #8b6a30; font-family: var(--sans); font-size: .69rem; }
.issue-card h3 { margin: 52px 0 10px; font-family: var(--sans); font-size: 1.25rem; }
.issue-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }

.method-section { position: relative; padding: 132px 0; background: var(--ink-soft); color: var(--white); overflow: hidden; }
.method-section::before { content: "O JA KA ENG"; position: absolute; top: 34px; right: -26px; color: rgba(255,255,255,.025); font-family: var(--sans); font-size: 9vw; font-weight: 700; letter-spacing: -.06em; white-space: nowrap; }
.method-intro { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.method-summary { margin: 0 0 4px; color: rgba(255,255,255,.64); line-height: 1.8; }
.journey { position: relative; margin-top: 82px; border-top: 1px solid var(--line-dark); }
.journey-step { display: grid; grid-template-columns: 95px 1fr; min-height: 116px; align-items: center; border-bottom: 1px solid var(--line-dark); transition: background .25s ease, padding .25s ease; }
.journey-step:hover, .journey-step.active { background: rgba(255,255,255,.035); padding-inline: 24px; }
.step-number { color: var(--gold-bright); font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.journey-step div { display: grid; grid-template-columns: .55fr 1fr; gap: 30px; align-items: center; }
.journey-step h3 { margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.35rem); font-weight: 500; }
.journey-step p { max-width: 530px; margin: 0; color: rgba(255,255,255,.58); font-size: .88rem; }
.programme-includes { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; margin-top: 74px; padding: 48px; border: 1px solid rgba(198,161,91,.35); }
.includes-title { display: flex; flex-direction: column; gap: 15px; }
.includes-title span { color: var(--gold-bright); font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.includes-title strong { max-width: 360px; font-family: var(--display); font-size: 1.75rem; font-weight: 500; line-height: 1.35; }
.programme-includes ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; padding: 0; margin: 0; list-style: none; }
.programme-includes li { position: relative; padding: 0 0 13px 22px; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.72); font-size: .82rem; }
.programme-includes li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

.about-section { padding: 140px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 96px; align-items: center; }
.about-visual { position: relative; display: flex; aspect-ratio: 4 / 5; align-items: flex-end; padding: 34px; background: var(--ink); overflow: hidden; }
.about-visual::before { content: ""; position: absolute; z-index: 2; inset: 16px; border: 1px solid rgba(228,197,129,.45); pointer-events: none; }
.about-visual::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(to bottom, transparent, rgba(7,16,23,.88)); pointer-events: none; }
.about-portrait { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.about-visual p { position: relative; z-index: 3; display: flex; flex-direction: column; gap: 7px; margin: 0; color: var(--gold-bright); font-family: var(--sans); font-size: .69rem; font-weight: 700; line-height: 1.45; letter-spacing: .14em; text-transform: uppercase; }
.about-visual p strong { color: var(--white); font-family: var(--display); font-size: 1.35rem; font-weight: 500; letter-spacing: normal; text-transform: none; }
.about-copy h2 { font-size: clamp(2.7rem, 4.4vw, 4.6rem); }
.about-copy > p:not(.eyebrow) { color: #626b70; }
.about-copy .lead { margin-top: 36px; color: var(--ink); }
.principle { margin: 36px 0 0; padding: 8px 0 8px 28px; border-left: 2px solid var(--gold); color: var(--ink); font-family: var(--display); font-size: 1.28rem; line-height: 1.55; }

.diagnostic-section { padding: 132px 0; background: #10212a; color: var(--white); }
.diagnostic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.diagnostic-heading { position: sticky; top: 80px; }
.diagnostic-heading h2 { max-width: 600px; }
.diagnostic-panel { padding: 50px; border: 1px solid rgba(198,161,91,.48); background: rgba(255,255,255,.035); }
.panel-kicker { color: var(--gold-bright); font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.diagnostic-panel > p { margin: 24px 0 34px; color: rgba(255,255,255,.68); }
.diagnostic-panel ul { padding: 0; margin: 0 0 30px; list-style: none; border-top: 1px solid var(--line-dark); }
.diagnostic-panel li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.82); font-size: .86rem; }
.diagnostic-panel li span { color: var(--gold-bright); font-family: var(--sans); font-size: .62rem; letter-spacing: .08em; }
.diagnostic-panel small { display: block; margin-top: 15px; color: rgba(255,255,255,.43); font-size: .68rem; text-align: center; }

footer { padding: 54px 0 24px; background: #071017; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.5); font-family: var(--display); font-size: 1.12rem; text-align: center; }
.back-top { color: var(--gold-bright); font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.36); font-family: var(--sans); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.delay-one { transition-delay: .12s; }
.reveal.delay-two { transition-delay: .22s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav-wrap > .button { display: none; }
  .menu-toggle { justify-self: end; display: grid; gap: 7px; width: 44px; height: 44px; place-content: center; border: 1px solid rgba(255,255,255,.28); background: transparent; }
  .menu-toggle span { width: 19px; height: 1px; background: var(--white); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: absolute; top: 92px; left: 0; right: 0; display: grid; background: #0a161e; padding: 18px 24px 26px; border-bottom: 1px solid var(--line-dark); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--sans); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
  .hero { min-height: auto; padding-bottom: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-rule { display: none; }
  .portrait-stage { width: min(560px, 100%); margin-inline: auto; }
  .portrait-card { max-width: 480px; margin-inline: auto; }
  .signal-card { right: 0; }
  .audience-strip { position: absolute; overflow-x: auto; white-space: nowrap; }
  .two-column, .method-intro, .diagnostic-grid { gap: 60px; }
  .about-grid { gap: 60px; }
  .programme-includes { gap: 45px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 680px); }
  .site-header { position: absolute; }
  .nav-wrap { min-height: 78px; }
  .mobile-nav { top: 78px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 132px; padding-bottom: 126px; }
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .hero-intro { font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .portrait-stage { padding-bottom: 74px; }
  .portrait-card::before { inset: -10px 10px 10px -10px; }
  .signal-card { bottom: 8px; width: 210px; }
  .audience-strip { gap: 20px; min-height: 78px; }
  .problem-section, .method-section, .about-section, .diagnostic-section { padding: 92px 0; }
  .two-column, .method-intro, .about-grid, .diagnostic-grid, .programme-includes { grid-template-columns: 1fr; gap: 38px; }
  h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .problem-copy { padding-top: 0; }
  .issue-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .issue-card { min-height: 230px; }
  .method-summary { max-width: 590px; }
  .journey { margin-top: 56px; }
  .journey-step { grid-template-columns: 52px 1fr; min-height: 138px; }
  .journey-step div { grid-template-columns: 1fr; gap: 6px; }
  .journey-step:hover, .journey-step.active { padding-inline: 12px; }
  .programme-includes { padding: 30px 24px; }
  .programme-includes ul { grid-template-columns: 1fr; }
  .about-visual { width: min(100%, 520px); aspect-ratio: 4 / 5; }
  .about-copy h2 { font-size: clamp(2.6rem, 11.5vw, 4rem); }
  .diagnostic-heading { position: static; }
  .diagnostic-panel { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid p { display: none; }
  .footer-meta { flex-direction: column; }
}

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