:root {
  --ink: #080808;
  --paper: #f1f1ee;
  --white: #f5f5f2;
  --muted: #9f9f99;
  --line-dark: #333;
  --line-light: #aaa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: "DM Mono", monospace; }
a { color: inherit; text-decoration: none; }
button, input, textarea { border-radius: 0; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 16px; background: var(--white); color: var(--ink); transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.section-dark { background: var(--ink); color: var(--white); }
.section-light { background: var(--paper); color: var(--ink); }
.site-header { padding: 28px 5vw 22px; border-bottom: 1px solid var(--line-dark); background: rgba(8, 8, 8, .96); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px); }
.brand { font: 800 clamp(28px, 4vw, 58px)/.9 "Barlow Condensed", sans-serif; letter-spacing: -.03em; }
.brand span { font-size: .35em; vertical-align: top; margin-left: 3px; }
.brand-sub, .eyebrow { margin-top: 12px; color: #8e8e89; font-size: 12px; letter-spacing: .18em; font-weight: 600; }
.eyebrow { margin: 0 0 54px; }
.hero, .about, .services, .philosophy, .roster, .apply { padding: clamp(70px, 10vw, 150px) 5vw; }
.hero { min-height: 88vh; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--line-dark); }
.hero h1, .roster h2, .philosophy h2, .about h2, .apply h2, .confirmation h1 { font: 900 clamp(68px, 11vw, 180px)/.78 "Barlow Condensed", sans-serif; letter-spacing: -.045em; margin: 0; max-width: 1200px; text-wrap: balance; }
.hero p { font-size: clamp(18px, 2.1vw, 31px); line-height: 1.35; color: #aaa; max-width: 760px; margin: 55px 0 45px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 40px; padding: 22px 30px; font: 700 16px "DM Mono", monospace; letter-spacing: .08em; border: 1px solid currentColor; transition: transform .2s ease, background .2s ease, color .2s ease; max-width: max-content; }
.button:hover { transform: translateY(-3px); }
.button:focus-visible, .footer a:focus-visible, .brand:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
.button-light { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.split, .apply-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; }
.about h2 em { font-style: normal; color: #777; }
.copy { font-size: 17px; line-height: 1.7; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); }
.service-grid > div { padding: 38px 0; border-bottom: 1px solid var(--line-light); }
.service-grid > div:nth-child(odd) { padding-right: 4vw; }
.service-grid > div:nth-child(even) { padding-left: 4vw; border-left: 1px solid var(--line-light); }
.service-grid span { font-size: 11px; color: #777; }
.service-grid h3 { font: 800 clamp(40px, 5vw, 78px)/.84 "Barlow Condensed", sans-serif; margin: 20px 0 0; letter-spacing: -.03em; }
.philosophy { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; }
.philosophy h2 { font-size: clamp(55px, 9vw, 140px); }
.roster h2 { margin-bottom: 60px; }
.apply-head p { font-size: 17px; line-height: 1.7; color: #aaa; max-width: 500px; margin: 0; }
.apply form { max-width: 900px; margin-top: 75px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.apply label { font-size: 11px; letter-spacing: .12em; color: #999; display: flex; flex-direction: column; gap: 10px; }
.apply label:nth-of-type(7), .apply label:nth-of-type(8) { grid-column: 1 / -1; }
.apply input, .apply textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid #555; color: #fff; padding: 13px 0; font: 16px "DM Mono", monospace; outline: none; transition: border-color .2s ease; }
.apply input::placeholder, .apply textarea::placeholder { color: #666; }
.apply input:focus, .apply textarea:focus { border-color: #fff; }
.apply button { margin-top: 15px; cursor: pointer; }
.honeypot { position: absolute; left: -9999px; }
.footer { padding: 80px 5vw 35px; border-top: 1px solid var(--line-dark); }
.footer-brand { margin-bottom: 10px; }
.footer-links { display: flex; gap: 80px; margin: 70px 0; border-bottom: 1px solid var(--line-dark); padding-bottom: 60px; }
.footer-links a { font-weight: 700; letter-spacing: .08em; }
.footer-links small { display: inline-block; margin-top: 16px; color: #999; }
.footer-bottom { display: flex; justify-content: space-between; color: #777; font-size: 11px; letter-spacing: .12em; gap: 20px; }
.confirmation { min-height: 100vh; padding: clamp(80px, 12vw, 180px) 5vw; display: flex; flex-direction: column; justify-content: center; }
.confirmation p { max-width: 620px; margin: 45px 0; color: #aaa; font-size: clamp(17px, 2vw, 24px); line-height: 1.5; }

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

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

@media (max-width: 700px) {
  .site-header { padding: 22px 6vw; }
  .hero, .about, .services, .philosophy, .roster, .apply { padding: 75px 6vw; }
  .hero { min-height: 82vh; }
  .eyebrow { margin-bottom: 38px; }
  .hero h1, .roster h2, .philosophy h2, .about h2, .apply h2, .confirmation h1 { font-size: clamp(58px, 16vw, 105px); }
  .split, .apply-head { grid-template-columns: 1fr; gap: 50px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid > div { padding: 30px 0; }
  .service-grid > div:nth-child(odd), .service-grid > div:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
  .apply form { grid-template-columns: 1fr; }
  .apply label:nth-of-type(7), .apply label:nth-of-type(8) { grid-column: auto; }
  .footer-links { flex-direction: column; gap: 35px; margin: 55px 0 40px; }
  .footer-bottom { flex-direction: column; }
  .button { width: 100%; max-width: 360px; }
}
