:root {
  --parchment: #f4efe7;
  --parchment-deep: #e9e0d4;
  --paper: #fbf8f2;
  --plum: #6f4e65;
  --plum-deep: #563a4d;
  --mineral: #466878;
  --mineral-deep: #385969;
  --blush: #d7b9b0;
  --sage: #8d9a92;
  --ink: #29262d;
  --muted: #66616a;
  --rule: rgba(57, 50, 59, 0.16);
  --display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--parchment); }
body { margin: 0; background: var(--parchment); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--mineral); outline-offset: 5px; }

.site-shell { min-height: 100vh; overflow: clip; background: radial-gradient(circle at 12% 8%, rgba(255,255,255,.84), transparent 28%), var(--parchment); }
.site-header { position: absolute; z-index: 20; top: 0; left: 0; display: grid; width: 100%; height: 104px; grid-template-columns: minmax(340px,1fr) auto auto; align-items: center; gap: 48px; padding: 0 52px; border-bottom: 1px solid var(--rule); }
.brand { display: inline-flex; width: fit-content; align-items: center; gap: 22px; }
.monogram { color: var(--plum); font-family: var(--display); font-size: 48px; font-weight: 500; letter-spacing: -.08em; line-height: 1; }
.brand-rule { width: 1px; height: 50px; background: rgba(41,38,45,.34); }
.brand-name { font-family: var(--display); font-size: clamp(20px,1.7vw,27px); letter-spacing: -.02em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px,3vw,52px); font-size: 15px; }
.desktop-nav a { position: relative; padding: 14px 0; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; background: var(--plum); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.language-switch { display: flex; align-items: center; gap: 12px; }
.language-option { display: flex; align-items: center; gap: 12px; }
.language-option i { width: 1px; height: 27px; background: rgba(41,38,45,.32); }
.language-switch button { position: relative; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 14px; letter-spacing: .04em; padding: 12px 2px; }
.language-switch button::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--plum); content: ""; opacity: 0; transform: scaleX(.45); transition: 180ms ease; }
.language-switch button.active { color: var(--ink); }
.language-switch button.active::after { opacity: 1; transform: scaleX(1); }

.hero { position: relative; display: grid; min-height: 900px; align-items: center; padding: 148px 52px 74px; isolation: isolate; }
.hero::before { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,rgba(244,239,231,.99) 0%,rgba(244,239,231,.94) 36%,rgba(244,239,231,.15) 62%,rgba(244,239,231,.04) 100%); content: ""; }
.hero-art { position: absolute; z-index: -3; top: 0; right: 0; width: 75%; height: 100%; overflow: hidden; }
.hero-art-image { position: absolute; inset: 0; background-image: url("images/cultural-layers-hero.png"); background-position: 58% center; background-size: cover; filter: saturate(.9) contrast(.98); opacity: 0; transform: scale(1.025); animation: mapReveal 1s 120ms cubic-bezier(.22,1,.36,1) forwards; }
.hero-art::after { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(244,239,231,.3),transparent 20%,transparent 80%,rgba(244,239,231,.46)),linear-gradient(90deg,var(--parchment),transparent 42%); content: ""; }
.orbit { position: absolute; z-index: 2; border: 1px solid rgba(111,78,101,.28); border-radius: 50%; pointer-events: none; }
.orbit-one { top: 24%; right: 20%; width: 280px; aspect-ratio: 1; }
.orbit-two { top: 17%; right: 15%; width: 430px; aspect-ratio: 1; border-color: rgba(70,104,120,.21); }
.hero-content { width: min(620px,47vw); padding-top: 20px; animation: contentReveal 700ms 80ms cubic-bezier(.22,1,.36,1) both; }
.eyebrow, .section-label { margin: 0 0 28px; color: var(--plum); font-size: 12px; font-weight: 650; letter-spacing: .17em; line-height: 1.5; text-transform: uppercase; }
.hero h1 { max-width: 640px; margin: 0; color: var(--plum-deep); font-family: var(--display); font-size: clamp(62px,5.8vw,86px); font-weight: 500; letter-spacing: -.045em; line-height: .96; }
.hero-introduction { max-width: 590px; margin: 32px 0 0; color: #3e3a42; font-size: 17px; line-height: 1.75; }
.primary-cta { display: inline-flex; min-width: 250px; min-height: 62px; align-items: center; justify-content: space-between; gap: 30px; margin-top: 31px; padding: 0 24px 0 30px; border-radius: 8px; background: var(--mineral); box-shadow: 0 12px 30px rgba(70,104,120,.15); color: #fff; font-size: 16px; font-weight: 550; transition: background 180ms ease,box-shadow 180ms ease,transform 180ms ease; }
.primary-cta:hover { background: var(--mineral-deep); box-shadow: 0 16px 36px rgba(56,89,105,.24); transform: translateY(-2px); }
.cta-arrow { font-size: 22px; transition: transform 180ms ease; }
.primary-cta:hover .cta-arrow { transform: translate(3px,-3px); }
.location { display: flex; align-items: center; gap: 12px; margin: 54px 0 0; color: var(--ink); font-size: 15px; }
.location span { color: var(--plum); font-family: var(--display); font-size: 28px; }
.scroll-cue { position: absolute; right: 53px; bottom: 42px; display: flex; align-items: center; gap: 14px; color: rgba(41,38,45,.66); font-size: 10px; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 44px; background: var(--plum); }

.profile-section { position: relative; display: grid; grid-template-columns: minmax(0,1.06fr) minmax(0,.94fr); gap: 9vw; padding: 130px 7vw 120px; background: var(--paper); }
.profile-section::before { position: absolute; top: 0; left: 7vw; width: 86vw; height: 1px; background: var(--rule); content: ""; }
.profile-copy h2, .section-heading h2, .publication-intro h2, .career-heading h2 { margin: 0; color: var(--plum-deep); font-family: var(--display); font-size: clamp(48px,4.5vw,70px); font-weight: 500; letter-spacing: -.04em; line-height: 1.02; }
.profile-copy > p:last-child { max-width: 650px; margin: 34px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.profile-highlights { border-top: 1px solid var(--rule); }
.highlight { display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--rule); }
.highlight-number { grid-row: span 2; color: var(--plum); font-family: var(--display); font-size: 20px; }
.highlight p { margin: 0 0 7px; color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.highlight strong { font-family: var(--display); font-size: 24px; font-weight: 500; }

.expertise-section { padding: 130px 7vw 140px; background: var(--parchment); }
.section-heading { display: grid; grid-template-columns: .8fr 1.25fr 1fr; gap: 6vw; align-items: end; margin-bottom: 72px; }
.section-heading .section-label { align-self: start; }
.section-heading > p:last-child { margin: 0 0 6px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.expertise-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.expertise-card { position: relative; min-height: 390px; padding: 30px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); transition: background 220ms ease, transform 220ms ease; }
.expertise-card:hover { z-index: 1; background: rgba(255,255,255,.45); transform: translateY(-5px); }
.expertise-card > span { color: var(--plum); font-family: var(--display); font-size: 17px; }
.card-symbol { width: 82px; height: 82px; margin: 66px 0 45px; border: 1px solid rgba(111,78,101,.45); border-radius: 50%; background: radial-gradient(circle at center,transparent 0 13px,var(--blush) 14px 15px,transparent 16px),linear-gradient(45deg,transparent 49%,rgba(70,104,120,.33) 50%,transparent 51%); }
.expertise-card:nth-child(2) .card-symbol { border-radius: 5px 50% 5px 50%; transform: rotate(12deg); }
.expertise-card:nth-child(3) .card-symbol { border: 0; background: repeating-radial-gradient(circle,var(--sage) 0 2px,transparent 3px 10px); }
.expertise-card:nth-child(4) .card-symbol { border-radius: 0; clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%); }
.expertise-card h3 { min-height: 58px; margin: 0; color: var(--plum-deep); font-family: var(--display); font-size: 27px; font-weight: 500; line-height: 1.05; }
.expertise-card p { margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.manifesto { position: relative; display: grid; min-height: 480px; place-items: center; overflow: hidden; padding: 80px 16vw; background: var(--plum-deep); color: var(--paper); text-align: center; isolation: isolate; }
.manifesto-map { position: absolute; z-index: -1; inset: -35%; background: url("images/cultural-layers-hero.png") center/cover; filter: grayscale(1) contrast(.8); mix-blend-mode: screen; opacity: .1; transform: rotate(-8deg); }
.manifesto p { max-width: 970px; margin: 0; font-family: var(--display); font-size: clamp(43px,4.7vw,72px); font-weight: 500; letter-spacing: -.03em; line-height: 1.08; }
.manifesto > span { position: absolute; right: 7vw; bottom: 45px; color: var(--blush); font-family: var(--display); font-size: 19px; }

.publications-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; padding: 140px 7vw; background: var(--paper); }
.publication-intro > p:last-child { max-width: 630px; margin: 36px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.publication-archive { align-self: start; border-top: 1px solid var(--ink); }
.archive-header { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.archive-header > span { font-family: var(--display); font-size: 24px; }
.archive-header small { color: var(--plum); font-size: 10px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.archive-categories > div { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 18px; min-height: 98px; border-bottom: 1px solid var(--rule); }
.archive-categories span { color: var(--plum); font-family: var(--display); }
.archive-categories strong { font-family: var(--display); font-size: clamp(21px,2vw,28px); font-weight: 500; }
.archive-categories i { color: var(--mineral); font-size: 22px; font-style: normal; }
.archive-note { margin: 24px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.career-section { padding: 140px 7vw 155px; background: var(--parchment); }
.career-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; margin-bottom: 85px; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 5vw; }
.timeline::before { position: absolute; top: 26px; right: 0; left: 0; height: 1px; background: rgba(70,104,120,.34); content: ""; }
.timeline-item { position: relative; padding-top: 70px; }
.timeline-marker { position: absolute; z-index: 1; top: 0; left: 0; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(70,104,120,.55); border-radius: 50%; background: var(--parchment); color: var(--plum); font-family: var(--display); }
.timeline-item > p { margin: 0 0 22px; color: var(--plum); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.timeline-item h3 { max-width: 380px; margin: 0 0 16px; color: var(--plum-deep); font-family: var(--display); font-size: clamp(26px,2.5vw,37px); font-weight: 500; line-height: 1.05; }
.timeline-item strong { display: block; max-width: 360px; color: var(--muted); font-size: 13px; font-weight: 450; line-height: 1.65; }

.site-footer { position: relative; display: grid; grid-template-columns: .45fr 1fr auto; gap: 5vw; align-items: center; min-height: 410px; padding: 75px 7vw 55px; overflow: hidden; background: var(--mineral-deep); color: var(--paper); }
.footer-monogram { color: rgba(255,255,255,.08); font-family: var(--display); font-size: clamp(150px,18vw,280px); letter-spacing: -.12em; line-height: .8; }
.footer-main p { margin: 0 0 22px; color: var(--blush); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.footer-main h2 { margin: 0; font-family: var(--display); font-size: clamp(42px,4.8vw,72px); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.footer-main span { display: block; margin-top: 17px; color: rgba(255,255,255,.6); font-size: 14px; }
.site-footer > a { display: flex; align-items: center; gap: 15px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site-footer > a span { font-size: 20px; }
.site-footer > small { position: absolute; right: 7vw; bottom: 36px; color: rgba(255,255,255,.45); font-size: 10px; }

@keyframes contentReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mapReveal { to { opacity: 1; transform: scale(1); } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; gap: 20px; }
  .desktop-nav { display: none; }
  .hero-content { width: min(630px,62vw); }
  .hero-art { width: 78%; opacity: .84; }
  .section-heading { grid-template-columns: .75fr 1.25fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .expertise-grid { grid-template-columns: repeat(2,1fr); }
  .expertise-card { min-height: 350px; }
}

@media (max-width: 760px) {
  .site-header { height: 86px; padding: 0 20px; }
  .brand { gap: 12px; }
  .monogram { font-size: 36px; }
  .brand-rule { height: 36px; }
  .brand-name { display: none; }
  .language-switch, .language-option { gap: 8px; }
  .hero { min-height: 890px; align-items: end; padding: 260px 20px 58px; }
  .hero::before { background: linear-gradient(0deg,var(--parchment) 0%,rgba(244,239,231,.99) 57%,rgba(244,239,231,.1) 100%); }
  .hero-art { top: 54px; width: 100%; height: 430px; }
  .hero-art-image { background-position: 66% 45%; }
  .hero-content { width: 100%; }
  .eyebrow { max-width: 340px; margin-bottom: 18px; font-size: 10px; }
  .hero h1 { font-size: clamp(48px,14.2vw,66px); }
  .hero-introduction { margin-top: 24px; font-size: 15px; line-height: 1.65; }
  .primary-cta { min-width: 230px; min-height: 58px; margin-top: 25px; }
  .location { margin-top: 34px; }
  .scroll-cue, .orbit { display: none; }
  .profile-section, .publications-section { grid-template-columns: 1fr; gap: 70px; padding: 88px 20px; }
  .profile-section::before { left: 20px; width: calc(100% - 40px); }
  .profile-copy h2, .section-heading h2, .publication-intro h2, .career-heading h2 { font-size: clamp(43px,12vw,58px); }
  .expertise-section, .career-section { padding: 88px 20px 96px; }
  .section-heading, .career-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 54px; }
  .section-heading > p:last-child { grid-column: 1; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: auto; padding: 26px; }
  .card-symbol { margin: 45px 0 35px; }
  .manifesto { min-height: 420px; padding: 70px 25px; }
  .manifesto p { font-size: clamp(38px,11vw,52px); }
  .archive-header { align-items: flex-start; flex-direction: column; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { top: 0; bottom: 0; left: 25px; width: 1px; height: auto; }
  .timeline-item { min-height: 230px; padding: 7px 0 70px 82px; }
  .timeline-marker { top: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 36px; min-height: 510px; padding: 70px 20px 70px; }
  .footer-monogram { position: absolute; right: -10px; bottom: 25px; font-size: 190px; }
  .site-footer > a { width: fit-content; }
  .site-footer > small { right: auto; bottom: 28px; left: 20px; }
}

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