:root {
  --navy-950: #020817;
  --navy-900: #041226;
  --navy-850: #071a33;
  --navy-800: #0a2342;
  --blue: #155dfc;
  --blue-light: #6f95ff;
  --gold: #e5ad4a;
  --gold-soft: #f5d58b;
  --white: #f8fbff;
  --mist: #c7d1df;
  --muted: #93a2b8;
  --line: rgba(151, 172, 203, .22);
  --line-strong: rgba(229, 173, 74, .62);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Barlow", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; padding: 12px 16px; background: #fff; color: #000; font-weight: 800; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  min-height: 84px;
  padding: 0 clamp(20px, 4vw, 68px);
  border-bottom: 1px solid rgba(151, 172, 203, .15);
  background: rgba(2, 8, 23, .78);
  backdrop-filter: blur(22px);
  transition: min-height .22s ease, background .22s ease, box-shadow .22s ease;
}
.site-header.is-scrolled { min-height: 70px; background: rgba(2, 8, 23, .95); box-shadow: 0 20px 60px rgba(0,0,0,.24); }
.brand { display: flex; align-items: center; gap: 12px; width: fit-content; }
.brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 10px 24px rgba(21,93,252,.24)); }
.brand strong, .brand small { display: block; text-transform: uppercase; }
.brand strong { font-size: 13px; font-weight: 900; letter-spacing: .2em; }
.brand small { margin-top: 4px; color: rgba(229,173,74,.82); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 2.7vw, 42px); color: var(--mist); font-size: 13px; font-weight: 700; }
.desktop-nav a, .site-footer a { transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .site-footer a:hover, .site-footer a:focus-visible { color: var(--gold-soft); outline: none; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.payment-link { min-height: 42px; display: inline-flex; align-items: center; padding: 0 15px; border: 1px solid rgba(111,149,255,.32); border-radius: 9px; color: #d7e1ff; font-size: 12px; font-weight: 800; background: rgba(21,93,252,.08); }
.payment-link:hover, .payment-link:focus-visible { border-color: rgba(111,149,255,.7); background: rgba(21,93,252,.2); outline: none; }
.button { position: relative; display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; overflow: hidden; border: 1px solid transparent; border-radius: 9px; font-weight: 900; letter-spacing: .01em; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.button::after { content: ""; position: absolute; inset: 0; transform: translateX(-120%) skewX(-20deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent); transition: transform .7s ease; }
.button:hover::after, .button:focus-visible::after { transform: translateX(120%) skewX(-20deg); }
.button:hover, .button:focus-visible { transform: translateY(-3px); outline: none; }
.button-primary { background: linear-gradient(135deg, #155dfc, #0b48d8); color: #fff; box-shadow: 0 18px 42px rgba(21,93,252,.25); }
.button-primary:hover, .button-primary:focus-visible { background: linear-gradient(135deg, #2d70ff, #155dfc); box-shadow: 0 24px 54px rgba(21,93,252,.34); }
.button-secondary { border-color: rgba(111,149,255,.6); background: rgba(4,18,38,.58); color: #fff; }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--gold); background: rgba(229,173,74,.08); }
.header-cta { min-height: 44px; padding: 0 18px; font-size: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; background: rgba(255,255,255,.05); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 2px; background: #fff; transition: transform .2s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 70px 0 auto; z-index: 45; max-height: 0; overflow: hidden; background: rgba(2,8,23,.98); opacity: 0; transition: max-height .3s ease, opacity .2s ease; }
.menu-open .mobile-menu { max-height: 420px; opacity: 1; }
.mobile-menu nav { display: grid; gap: 1px; width: min(100% - 32px, 720px); margin: 0 auto; padding: 16px 0 24px; }
.mobile-menu a { padding: 14px 16px; border-bottom: 1px solid var(--line); font-weight: 800; }

.hero { --spot-x: 72%; --spot-y: 34%; position: relative; min-height: 720px; padding: 96px 0 0; overflow: hidden; background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(21,93,252,.24), transparent 27%), linear-gradient(135deg, #020817, #041226 48%, #071a33); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 200px; background: linear-gradient(transparent, rgba(2,8,23,.95)); pointer-events: none; }
.hero-grid { position: absolute; inset: 84px 0 0 52%; opacity: .24; background-image: linear-gradient(rgba(229,173,74,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(111,149,255,.14) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(90deg, transparent, #000 20%, #000 75%, transparent); transform: perspective(950px) rotateY(-8deg); transform-origin: center; }
.signal { position: absolute; width: 340px; height: 340px; border: 1px solid rgba(229,173,74,.18); border-radius: 50%; pointer-events: none; animation: drift 12s ease-in-out infinite; }
.signal::before, .signal::after { content: ""; position: absolute; inset: 25%; border: 1px solid rgba(111,149,255,.14); border-radius: inherit; }
.signal::after { inset: 42%; background: rgba(21,93,252,.16); }
.signal-a { right: -170px; top: 180px; }
.signal-b { left: -240px; bottom: 80px; animation-delay: -6s; }
@keyframes drift { 50% { transform: translateY(-18px) rotate(8deg); } }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .96fr) minmax(520px, 1.04fr); align-items: center; gap: clamp(28px, 3.8vw, 60px); min-height: 560px; }
.hero-copy h1, .section-heading h2, .about-copy h2, .contact-copy h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; }
.hero-copy .hero-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--gold-soft); font-size: 12px; font-weight: 900; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }
.hero-copy .hero-kicker span { color: var(--blue-light); }
.hero-copy h1 { max-width: 690px; font-size: clamp(50px, 5.25vw, 78px); line-height: .98; }
.gold-rule { display: block; width: 78px; height: 3px; margin: 24px 0 22px; background: var(--gold); box-shadow: 0 0 24px rgba(229,173,74,.24); }
.hero-copy > p { max-width: 650px; margin: 0; color: var(--mist); font-size: clamp(16px, 1.55vw, 20px); line-height: 1.56; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.interaction-cue { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--gold-soft); font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.interaction-cue span { position: relative; display: block; width: 24px; height: 34px; border: 1px solid rgba(229,173,74,.7); border-radius: 14px; }
.interaction-cue span::after { content: ""; position: absolute; left: 50%; top: 7px; width: 2px; height: 7px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: mouseMove 1.8s ease-in-out infinite; }
@keyframes mouseMove { 50% { transform: translate(-50%, 8px); opacity: .45; } }
.portrait-stage { --stage-rx: 0deg; --stage-ry: 0deg; position: relative; min-height: 530px; perspective: 1500px; transform-style: preserve-3d; }
.portrait-scene { position: absolute; inset: 3% 4% 5% 7%; transform: rotateX(var(--stage-rx)) rotateY(var(--stage-ry)); transform-style: preserve-3d; transition: transform .18s ease-out; will-change: transform; }
.portrait-depth { position: absolute; inset: 8% 4% 4% 11%; border: 1px solid rgba(229,173,74,.42); background: linear-gradient(145deg, rgba(13,37,73,.86), rgba(2,8,23,.78)); box-shadow: 0 30px 70px rgba(0,0,0,.3); transform-style: preserve-3d; }
.depth-back { transform: translate3d(36px,-28px,-90px) rotateZ(3deg); opacity: .45; }
.depth-mid { transform: translate3d(18px,-14px,-45px) rotateZ(1.5deg); opacity: .72; }
.portrait-lines { position: absolute; inset: 1% -2% 1% 2%; border: 1px solid rgba(229,173,74,.28); background: linear-gradient(135deg, transparent 49.8%, rgba(229,173,74,.25) 50%, transparent 50.2%), linear-gradient(45deg, transparent 49.8%, rgba(111,149,255,.11) 50%, transparent 50.2%); background-size: 180px 180px; transform: translateZ(-115px); }
.portrait-frame { position: absolute; inset: 7% 7% 0 10%; overflow: hidden; border: 1px solid rgba(245,213,139,.9); background: #08182e; box-shadow: -28px 42px 90px rgba(0,0,0,.45), 0 0 34px rgba(229,173,74,.12); transform: translateZ(38px); transform-style: preserve-3d; transition: box-shadow .2s ease; will-change: transform; }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(2,8,23,.5)); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.9) contrast(1.03); transform: scale(1.025); }
.portrait-label { position: absolute; left: 26%; bottom: 2%; z-index: 8; min-width: 315px; padding: 17px 22px; border: 1px solid rgba(229,173,74,.42); border-left: 3px solid var(--gold); background: linear-gradient(120deg, rgba(2,8,23,.94), rgba(11,35,69,.86)); box-shadow: 0 24px 58px rgba(0,0,0,.38); text-align: center; backdrop-filter: blur(18px); transform: translateZ(92px); }
.portrait-label strong, .portrait-label span { display: block; }
.portrait-label strong { font-size: 18px; }
.portrait-label span { margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.scene-plinth { position: absolute; left: 3%; right: 0; bottom: 0; height: 74px; border: 1px solid rgba(229,173,74,.25); border-radius: 50%; background: radial-gradient(ellipse, rgba(21,93,252,.2), rgba(2,8,23,.94) 66%); box-shadow: 0 16px 60px rgba(0,0,0,.5), inset 0 0 28px rgba(229,173,74,.08); transform: rotateX(70deg) translateZ(-70px); }
.floating-proof { position: absolute; inset: 0; z-index: 9; pointer-events: none; transform-style: preserve-3d; }
.proof-card { --float-x: 0px; --float-y: 0px; position: absolute; width: 140px; min-height: 108px; padding: 17px 16px 15px; border: 1px solid rgba(245,213,139,.5); background: linear-gradient(145deg, rgba(18,44,82,.76), rgba(2,8,23,.9)); box-shadow: 0 24px 54px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.08); backdrop-filter: blur(18px); transform: translate3d(var(--float-x),var(--float-y),120px); transition: transform .18s ease-out, border-color .25s ease, box-shadow .25s ease; }
.proof-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.12), transparent 65%); transform: translateX(-120%); animation: cardSweep 7s ease-in-out infinite; pointer-events: none; }
.proof-card:nth-child(2)::after { animation-delay: -1.6s; }
.proof-card:nth-child(3)::after { animation-delay: -3.2s; }
.proof-card:nth-child(4)::after { animation-delay: -4.8s; }
@keyframes cardSweep { 0%,64% { transform: translateX(-120%); } 86%,100% { transform: translateX(120%); } }
.proof-card strong, .proof-card span { position: relative; z-index: 1; display: block; }
.proof-card strong { color: var(--gold-soft); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.proof-card span { margin-top: 8px; color: #d1dbeb; font-size: 10px; font-weight: 900; line-height: 1.45; letter-spacing: .11em; text-transform: uppercase; }
.proof-years { left: 1%; top: 23%; transform: translate3d(var(--float-x),var(--float-y),135px) rotateY(7deg); }
.proof-current { left: -1%; top: 56%; transform: translate3d(var(--float-x),var(--float-y),150px) rotateY(6deg); }
.proof-career { right: 1%; top: 20%; transform: translate3d(var(--float-x),var(--float-y),145px) rotateY(-7deg); }
.proof-consults { right: 0; top: 54%; transform: translate3d(var(--float-x),var(--float-y),165px) rotateY(-6deg); }
.motion-rail { position: relative; z-index: 4; margin-top: 22px; overflow: hidden; border-top: 1px solid rgba(111,149,255,.18); border-bottom: 1px solid rgba(111,149,255,.18); background: rgba(2,8,23,.72); }
.motion-rail div { display: flex; width: max-content; align-items: center; gap: 22px; min-height: 48px; color: #cbd6e6; font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; animation: railMove 28s linear infinite; }
.motion-rail i { color: var(--gold); font-size: 7px; font-style: normal; }
@keyframes railMove { to { transform: translateX(-50%); } }

.section { position: relative; padding: 116px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); gap: 48px; align-items: end; margin-bottom: 52px; }
.section-heading h2, .about-copy h2, .contact-copy h2 { font-size: clamp(44px, 5.2vw, 72px); line-height: 1; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.expertise { background: linear-gradient(180deg, #020817, #041226); }
.expertise-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 78px; }
.expertise-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 25px 0 26px; border-top: 1px solid rgba(229,173,74,.58); transition: padding .24s ease, background .24s ease, border-color .24s ease; }
.expertise-item:hover { padding-left: 16px; padding-right: 16px; border-color: var(--blue-light); background: linear-gradient(90deg, rgba(21,93,252,.16), transparent); }
.expertise-item > span { color: var(--gold); font-family: var(--serif); font-size: 22px; }
.expertise-item h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.expertise-item p { margin: 8px 0 0; color: var(--mist); line-height: 1.58; }

.engagements { overflow: hidden; background: radial-gradient(circle at 85% 20%, rgba(21,93,252,.12), transparent 26%), #05152b; }
.engagement-heading { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .6fr); }
.engagement-list { border-top: 1px solid var(--line); }
.engagement-row { appearance: none; position: relative; display: grid; grid-template-columns: 92px minmax(0, 1fr) 185px 30px; align-items: center; gap: 22px; width: 100%; min-height: 132px; padding: 24px 26px 24px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background .26s ease, transform .26s ease, border-color .26s ease; }
.engagement-row::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--blue); transform: scaleY(0); transition: transform .25s ease; }
.engagement-row:hover, .engagement-row:focus-visible, .engagement-row.is-active { background: linear-gradient(90deg, rgba(21,93,252,.2), rgba(21,93,252,.04)); outline: none; }
.engagement-row:hover::before, .engagement-row:focus-visible::before, .engagement-row.is-active::before { transform: scaleY(1); }
.engagement-number { padding-left: 30px; color: var(--gold); font-family: var(--serif); font-size: 34px; }
.engagement-main strong, .engagement-main small { display: block; }
.engagement-main strong { font-family: var(--serif); font-size: clamp(26px, 2.7vw, 39px); font-weight: 400; }
.engagement-main small { max-width: 690px; margin-top: 9px; color: var(--mist); font-size: 16px; line-height: 1.55; }
.engagement-price { padding-left: 24px; border-left: 1px solid rgba(229,173,74,.62); font-size: 22px; font-weight: 700; }
.engagement-price small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.engagement-arrow { color: var(--blue-light); font-size: 24px; transition: transform .2s ease; }
.engagement-row:hover .engagement-arrow, .engagement-row:focus-visible .engagement-arrow, .engagement-row.is-active .engagement-arrow { transform: translate(4px, -4px); color: var(--gold-soft); }
.engagement-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 28px; border-top: 1px solid rgba(229,173,74,.6); }
.engagement-cta p { margin: 0; }
.engagement-cta strong, .engagement-cta span { display: block; }
.engagement-cta strong { font-size: 18px; }
.engagement-cta span { margin-top: 6px; color: var(--blue-light); font-size: 20px; }

.about { background: linear-gradient(135deg, #020817, #071a33); }
.about-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(54px, 8vw, 120px); align-items: center; }
.about-copy p { max-width: 740px; margin: 24px 0 0; color: var(--mist); font-size: 18px; line-height: 1.72; }
.operating-panel { position: relative; padding: 38px; border: 1px solid rgba(229,173,74,.56); background: linear-gradient(145deg, rgba(21,93,252,.14), rgba(5,21,43,.76)); box-shadow: 0 34px 90px rgba(0,0,0,.3); transform: perspective(1000px) rotateY(-3deg); }
.operating-panel::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(111,149,255,.16); pointer-events: none; }
.panel-label { margin: 0 0 25px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.operating-panel ul { position: relative; z-index: 1; margin: 0; padding: 0; list-style: none; }
.operating-panel li { display: flex; align-items: baseline; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); color: var(--mist); }
.operating-panel li span { min-width: 80px; color: #fff; font-family: var(--serif); font-size: 26px; }

.process { background: #061326; }
.process .section-heading { display: block; margin-bottom: 54px; }
.process-line { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; margin: 0; padding: 0; list-style: none; }
.process-line::before { content: ""; position: absolute; left: 34px; right: 34px; top: 28px; height: 1px; background: linear-gradient(90deg, var(--gold), var(--blue-light), var(--gold)); transform-origin: left; animation: lineGrow 2.3s ease both; }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.process-line li { position: relative; padding-top: 72px; }
.process-line li > span { position: absolute; top: 0; left: 0; display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; background: var(--navy-900); color: var(--gold-soft); font-weight: 900; box-shadow: 0 0 0 8px #061326; }
.process-line h3 { margin: 0; font-size: 20px; }
.process-line p { max-width: 300px; margin: 10px 0 0; color: var(--muted); line-height: 1.55; }

.contact { background: radial-gradient(circle at 80% 30%, rgba(21,93,252,.18), transparent 28%), #020817; }
.contact-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; overflow: hidden; border: 1px solid rgba(229,173,74,.64); background: linear-gradient(135deg, rgba(7,26,51,.98), rgba(2,8,23,.98)); box-shadow: 0 40px 110px rgba(0,0,0,.42); }
.contact-copy { padding: clamp(32px, 5vw, 68px); border-right: 1px solid var(--line); }
.contact-copy p { margin: 24px 0 0; color: var(--mist); font-size: 18px; line-height: 1.65; }
.compliance-note { display: flex; gap: 12px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(229,173,74,.36); color: var(--muted); font-size: 13px; line-height: 1.55; }
.compliance-note span { color: var(--gold); font-size: 20px; }
.approved-payment { display: inline-flex; margin-top: 26px; color: #cbd8ff; font-size: 13px; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(111,149,255,.55); text-underline-offset: 5px; }
.approved-payment:hover, .approved-payment:focus-visible { color: #fff; outline: none; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding: clamp(32px, 5vw, 68px); }
.contact-form label { display: grid; gap: 8px; color: #e7edf8; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(151,172,203,.36); border-radius: 8px; background: rgba(2,8,23,.72); color: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.contact-form input, .contact-form select { min-height: 50px; padding: 0 13px; }
.contact-form textarea { min-height: 142px; padding: 13px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(21,93,252,.18); transform: translateY(-1px); }
.full-field { grid-column: 1 / -1; }
.form-actions { display: flex; align-items: center; gap: 22px; }
.form-actions a { color: #dce5ff; font-size: 14px; text-decoration: underline; text-decoration-color: rgba(111,149,255,.5); text-underline-offset: 5px; }
.form-status { min-height: 22px; margin: 0; color: var(--gold-soft); font-weight: 700; }
.hidden-field { position: absolute; left: -10000px; }

.site-footer { padding: 32px 0; border-top: 1px solid var(--line); background: #010510; color: var(--muted); }
.footer-layout { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.footer-layout p { margin: 0; }
.footer-layout p:last-child { justify-self: end; }
.footer-layout strong, .footer-layout span { display: block; }
.footer-layout strong { color: #fff; }
.footer-layout span { margin-top: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-layout div { display: flex; gap: 24px; color: var(--mist); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-layout { grid-template-columns: .92fr 1.08fr; gap: 28px; }
  .hero-copy h1 { font-size: clamp(46px, 5.8vw, 62px); }
  .proof-card { width: 132px; padding: 15px; }
  .engagement-row { grid-template-columns: 74px minmax(0,1fr) 145px 24px; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-copy { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .site-header { min-height: 70px; padding: 0 18px; }
  .brand small, .payment-link, .header-cta { display: none; }
  .hero { min-height: auto; padding: 118px 0 0; }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy h1 { font-size: clamp(46px, 12vw, 70px); }
  .interaction-cue { display: none; }
  .portrait-stage { min-height: 0; margin-top: 26px; }
  .portrait-scene { position: relative; inset: auto; min-height: 540px; }
  .portrait-label { left: 10%; right: 4%; min-width: 0; }
  .scene-plinth { bottom: 210px; }
  .floating-proof { position: relative; inset: auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 14px; }
  .proof-card, .proof-years, .proof-current, .proof-career, .proof-consults { position: relative; inset: auto; width: auto; min-height: 105px; transform: none; }
  .section { padding: 88px 0; }
  .section-heading, .engagement-heading { grid-template-columns: 1fr; gap: 24px; }
  .expertise-list { grid-template-columns: 1fr; }
  .engagement-row { grid-template-columns: 55px 1fr 28px; gap: 14px; padding-right: 12px; }
  .engagement-price { grid-column: 2; padding: 12px 0 0; border-left: 0; color: var(--gold-soft); }
  .engagement-arrow { grid-column: 3; grid-row: 1 / 3; }
  .engagement-cta { align-items: flex-start; flex-direction: column; }
  .about-layout { grid-template-columns: 1fr; }
  .operating-panel { transform: none; }
  .process-line { grid-template-columns: 1fr; gap: 34px; }
  .process-line::before { left: 28px; right: auto; top: 28px; bottom: 28px; width: 1px; height: auto; background: linear-gradient(var(--gold), var(--blue-light), var(--gold)); transform-origin: top; animation-name: lineGrowY; }
  @keyframes lineGrowY { from { transform: scaleY(0); } to { transform: scaleY(1); } }
  .process-line li { min-height: 130px; padding: 8px 0 0 86px; }
  .process-line li > span { left: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label, .full-field { grid-column: 1; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .footer-layout { grid-template-columns: 1fr; text-align: center; }
  .footer-layout p:last-child { justify-self: center; }
  .footer-layout div { justify-content: center; flex-wrap: wrap; }
  .motion-rail div { animation-duration: 22s; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1240px); }
  .brand strong { font-size: 11px; letter-spacing: .14em; }
  .hero-copy h1 { font-size: 44px; }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .portrait-scene { min-height: 450px; }
  .portrait-frame { inset: 8% 0 0 5%; }
  .portrait-label { left: 0; right: 18px; min-width: 0; }
  .scene-plinth { bottom: 210px; }
  .proof-card strong { font-size: 30px; }
  .section-heading h2, .about-copy h2, .contact-copy h2 { font-size: 42px; }
  .expertise-item { grid-template-columns: 38px 1fr; }
  .expertise-item h3 { font-size: 24px; }
  .engagement-row { min-height: 0; padding-top: 24px; padding-bottom: 24px; }
  .engagement-number { padding-left: 13px; font-size: 26px; }
  .engagement-main strong { font-size: 26px; }
  .engagement-main small { font-size: 15px; }
  .operating-panel, .contact-copy, .contact-form { padding: 28px 22px; }
}

@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; }
}
