:root {
  --paper: #e9e7e2;
  --surface: #f3f1ed;
  --surface-strong: #dedbd4;
  --ink: #171a1d;
  --ink-soft: #555a5d;
  --line: #c6c1b8;
  --bronze: #887155;
  --bronze-dark: #604e3a;
  --serif: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  --sans: Manrope, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Manrope";
  src: url("_vinext_fonts/manrope-76eca2803f7f/manrope-81401990.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

* { box-sizing: border-box; }
html { background: var(--paper); scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.shell { width: min(calc(100% - 96px), 1440px); margin-inline: auto; }

.site-header { border-bottom: 1px solid var(--line); }
.nav {
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}
.identity {
  width: max-content;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -.025em;
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a,
.nav-action {
  position: relative;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-action { justify-self: end; color: var(--bronze-dark); }
.nav-links a::after,
.nav-action::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--bronze);
  transition: right 220ms ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after,
.nav-action:hover::after,
.nav-action:focus-visible::after { right: 0; }

.home-hero,
.inner-hero {
  min-height: 585px;
  display: grid;
  grid-template-columns: minmax(180px, .72fr) 2.28fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: end;
  padding-top: clamp(68px, 8vw, 116px);
  padding-bottom: clamp(66px, 7vw, 104px);
}
.role-note,
.section-label {
  margin: 8px 0 0;
  color: var(--bronze-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.75;
  text-transform: uppercase;
}
.role-note { align-self: start; }
.hero-copy h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 7.2vw, 116px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .91;
}
.hero-copy h1 em { color: var(--bronze-dark); font-weight: inherit; }
.hero-copy > p {
  max-width: 710px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.5;
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--surface);
}
.path {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 44px 40px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  transition: color 240ms ease, background-color 240ms ease;
}
.path + .path { border-left: 1px solid var(--line); }
.path:hover,
.path:focus-visible { color: #f5f2ec; background: var(--ink); outline: none; }
.path-number {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.path-number::after { width: 46px; height: 1px; content: ""; background: currentColor; }
.path-main { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; margin-top: 56px; }
.path h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .97;
}
.path-main p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  transition: color 240ms ease;
}
.path:hover .path-main p,
.path:focus-visible .path-main p { color: #bfc0bd; }
.round-arrow {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  color: var(--bronze-dark);
  font-family: var(--serif);
  font-size: 28px;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}
.path:hover .round-arrow,
.path:focus-visible .round-arrow { color: var(--ink); background: #b39a78; transform: translate(3px, -3px); }
.path-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  transition: border-color 240ms ease;
}
.path:hover .path-contact,
.path:focus-visible .path-contact { border-color: #44484a; }
.path-contact span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: color 240ms ease;
}
.path:hover .path-contact span,
.path:focus-visible .path-contact span { color: #929594; }
.path-contact strong { font-family: var(--serif); font-size: 16px; font-weight: 400; }

.perspective,
.contact-section {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) 2.28fr;
  gap: clamp(44px, 6vw, 96px);
  padding-top: clamp(110px, 12vw, 180px);
  padding-bottom: clamp(110px, 12vw, 180px);
}
.perspective h2,
.contact-section h2,
.discipline-heading h2 {
  max-width: 990px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: 1;
}
.perspective div > p,
.contact-section div > p {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.inner-hero { min-height: 675px; }
.inner-hero .hero-copy h1 { font-size: clamp(64px, 6.7vw, 108px); }
.dark-section,
.bronze-section { padding: clamp(92px, 10vw, 150px) 0; color: #f3f1ed; background: var(--ink); }
.bronze-section { background: var(--bronze-dark); }
.dark-section .section-label,
.bronze-section .section-label { color: #b49a78; }
.discipline-heading {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) 2.28fr;
  gap: clamp(44px, 6vw, 96px);
  padding-bottom: clamp(72px, 8vw, 116px);
}
.discipline-heading h2 { max-width: 920px; font-size: clamp(43px, 4.8vw, 72px); }
.discipline-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(243,241,237,.24); }
.discipline-grid article { min-height: 310px; padding: 34px 34px 0 0; border-right: 1px solid rgba(243,241,237,.24); }
.discipline-grid article + article { padding-left: 34px; }
.discipline-grid article:last-child { border-right: 0; }
.discipline-grid span { color: #b49a78; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.discipline-grid h3 {
  margin: 94px 0 20px;
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}
.discipline-grid p { max-width: 320px; margin: 0; color: #bfc0bd; font-size: 14px; line-height: 1.65; }
.bronze-section .discipline-grid { border-color: rgba(243,241,237,.28); }
.bronze-section .discipline-grid article { border-color: rgba(243,241,237,.28); }
.bronze-section .discipline-grid span { color: #d9c8b1; }
.bronze-section .discipline-grid p { color: #ded5c9; }

.contact-section { border-bottom: 1px solid var(--line); }
.large-email {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 48px;
  padding-bottom: 9px;
  font-family: var(--serif);
  font-size: clamp(27px, 3.2vw, 49px);
  letter-spacing: -.035em;
  text-decoration: none;
}
.large-email::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; content: ""; background: var(--bronze); transform-origin: left; transition: transform 220ms ease; }
.large-email:hover::after,
.large-email:focus-visible::after { transform: scaleX(.45); }
.large-email span { color: var(--bronze-dark); font-size: .7em; transition: transform 200ms ease; }
.large-email:hover span,
.large-email:focus-visible span { transform: translate(3px, -3px); }

.site-footer {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .05em;
}
.footer-mark { display: flex; align-items: center; gap: 13px; color: inherit; text-decoration: none; }
.footer-mark::before { width: 7px; height: 7px; content: ""; background: var(--bronze); transform: rotate(45deg); }

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 40px), 1440px); }
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .home-hero,
  .inner-hero,
  .perspective,
  .contact-section,
  .discipline-heading { grid-template-columns: 1fr; gap: 42px; }
  .home-hero,
  .inner-hero { min-height: auto; }
  .role-note { max-width: 260px; }
  .paths { grid-template-columns: 1fr; }
  .path + .path { border-top: 1px solid var(--line); border-left: 0; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-grid article,
  .discipline-grid article + article { min-height: auto; padding: 32px 0 42px; border-right: 0; border-bottom: 1px solid rgba(243,241,237,.24); }
  .discipline-grid article:last-child { border-bottom: 0; }
  .discipline-grid h3 { margin-top: 44px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 28px), 1440px); }
  .nav { height: 82px; }
  .identity { font-size: 21px; }
  .nav-action { font-size: 9px; }
  .home-hero,
  .inner-hero { padding-top: 52px; padding-bottom: 58px; gap: 36px; }
  .hero-copy h1,
  .inner-hero .hero-copy h1 { font-size: clamp(48px, 15.2vw, 66px); }
  .hero-copy > p { margin-top: 28px; font-size: 18px; }
  .path { min-height: 460px; padding: 31px 26px; }
  .path-main { grid-template-columns: 1fr; }
  .path h2 { font-size: 43px; }
  .round-arrow { width: 52px; height: 52px; }
  .path-contact { align-items: flex-start; flex-direction: column; }
  .perspective,
  .contact-section { padding-top: 90px; padding-bottom: 90px; }
  .perspective h2,
  .contact-section h2,
  .discipline-heading h2 { font-size: 44px; }
  .dark-section,
  .bronze-section { padding: 82px 0; }
  .discipline-heading { padding-bottom: 52px; }
  .large-email { display: flex; gap: 12px; font-size: clamp(25px, 7.4vw, 34px); overflow-wrap: anywhere; }
  .site-footer { min-height: 0; align-items: flex-start; flex-direction: column; padding: 36px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
