:root {
  --ink: #0c1830;
  --cream: #f7f1e5;
  --paper: #fffaf1;
  --blue: #1557ff;
  --gold: #ffbd3c;
  --red: #e94b35;
  --muted: #657086;
  --line: rgba(12, 24, 48, 0.17);
  --sans: "DM Sans", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 1rem; line-height: 1.6; }
a { color: inherit; }
img { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: 6.5rem; }
:where(a, button):focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

.skip-link { position: fixed; top: 0.75rem; left: 0.75rem; z-index: 99; transform: translateY(-160%); padding: 0.7rem 1rem; background: var(--ink); color: white; }
.skip-link:focus { transform: translateY(0); }

.site-header { height: 5.5rem; padding: 0 4vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(255,250,241,.93); backdrop-filter: blur(14px); position: sticky; top: 0; z-index: 20; }
.wordmark { display: flex; align-items: center; gap: .85rem; font-weight: 700; text-decoration: none; letter-spacing: -.02em; }
.mark { width: 2.35rem; height: 2.35rem; display: grid; place-items: center; background: var(--ink); color: var(--gold); font-size: .75rem; border-radius: 50%; letter-spacing: -.03em; }
nav { display: flex; align-items: center; gap: 2.2rem; }
nav a { font-size: .9rem; font-weight: 600; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--blue); }
nav a[aria-current="location"] { color: var(--blue); text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: .45rem; }
.menu-button { display: none; border: 0; background: none; color: var(--ink); font: 600 .9rem var(--sans); }

.hero { min-height: calc(100vh - 5.5rem); display: grid; grid-template-columns: 1.08fr .92fr; }
.hero-copy { padding: clamp(4rem, 8vw, 8rem) 5vw 5rem 7vw; display: flex; flex-direction: column; justify-content: center; }
.eyebrow, .kicker { margin: 0 0 1.25rem; color: var(--blue); text-transform: uppercase; font-size: .76rem; font-weight: 700; letter-spacing: .16em; }
.eyebrow { display: flex; align-items: center; gap: .7rem; }
.eyebrow span { width: 2rem; height: 2px; background: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 1.8rem; font: 700 clamp(3.5rem, 7vw, 7.5rem)/.92 var(--serif); letter-spacing: -.06em; }
h1 em { color: var(--blue); font-weight: 600; }
.intro { max-width: 42rem; color: #33405a; font-size: clamp(1.08rem, 1.5vw, 1.35rem); line-height: 1.62; }
.hero-actions { margin-top: 1.6rem; display: flex; align-items: center; gap: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.35rem; padding: .8rem 1.35rem; text-decoration: none; font-weight: 700; border-radius: 0; transition: transform .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translate(-3px,-3px); box-shadow: 5px 5px 0 var(--gold); }
.primary { background: var(--ink); color: white; }
.text-link { font-weight: 700; text-underline-offset: .4rem; }
.text-link span { color: var(--red); }
.hero-art { position: relative; min-height: 35rem; overflow: hidden; background: var(--blue); }
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12,24,48,.72)); pointer-events: none; }
.hero-art img { height: 100%; object-fit: cover; }
.art-note { position: absolute; z-index: 2; left: 2rem; bottom: 2rem; max-width: 18rem; display: flex; gap: 1rem; color: white; font-size: .88rem; }
.art-note span { color: var(--gold); font-weight: 700; }

.ticker { overflow: hidden; background: var(--gold); border-block: 1px solid var(--ink); white-space: nowrap; }
.ticker div { display: flex; width: max-content; padding: .9rem 0; font-weight: 700; font-size: .8rem; letter-spacing: .16em; animation: crawl 24s linear infinite; }
.ticker-set { padding-right: 1.5rem; }
.ticker b { margin: 0 1.5rem; color: var(--red); }
@keyframes crawl { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker div { animation: none; } }

.section { padding: clamp(5rem, 9vw, 9rem) 7vw; }
.section-heading { max-width: 65rem; margin-bottom: 4rem; }
.section-heading h2 { margin: 0; font: 650 clamp(2.7rem, 5vw, 5.6rem)/1 var(--serif); letter-spacing: -.05em; }
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.1rem; }
.project { position: relative; min-height: 22rem; padding: 2rem; display: grid; grid-template-columns: 3rem 1fr; align-items: start; gap: 1.5rem; border: 1px solid var(--ink); background: var(--cream); }
.featured-project { grid-row: span 2; min-height: 45.1rem; align-content: end; background: var(--blue); color: white; }
.dark-project { background: var(--ink); color: white; }
.project-number { color: var(--gold); font-weight: 700; }
.project .status { margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .15em; font-size: .7rem; font-weight: 700; }
.project h3 { margin-bottom: .8rem; font: 650 clamp(2.2rem,4vw,4.5rem)/1 var(--serif); letter-spacing: -.04em; }
.project p { max-width: 33rem; }
.project a { font-weight: 700; text-underline-offset: .4rem; }
.project-arrow { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; color: var(--gold); }

.experience { background: var(--ink); color: white; }
.experience-heading { max-width: none; display: grid; grid-template-columns: 1fr .78fr; gap: 10vw; align-items: end; }
.experience-heading > p { margin: 0; color: #c6cede; font-size: 1.15rem; }
.experience-stats { margin-bottom: 5rem; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.2); }
.experience-stats div { min-height: 13rem; padding: 2rem; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.2); }
.experience-stats div:last-child { border-right: 0; }
.experience-stats strong { color: var(--gold); font: 650 clamp(3.6rem,7vw,7rem)/.9 var(--serif); letter-spacing: -.06em; }
.experience-stats span { max-width: 15rem; margin-top: .8rem; color: #c6cede; }
.experience-lessons { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.experience-lessons article { min-height: 25rem; padding: 3rem 3rem 3rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.experience-lessons article:nth-child(odd) { padding-right: 5vw; border-right: 1px solid rgba(255,255,255,.2); }
.experience-lessons article:nth-child(even) { padding-left: 5vw; }
.lesson-label { color: var(--gold); text-transform: uppercase; font-size: .72rem; font-weight: 700; letter-spacing: .15em; }
.experience-lessons h3 { max-width: 32rem; font: 650 clamp(2rem,3vw,3.2rem)/1.05 var(--serif); letter-spacing: -.04em; }
.experience-lessons article > p:last-child { max-width: 36rem; color: #aeb9cf; }
.experience-footnote { max-width: 55rem; margin: 4rem 0 0 auto; padding-left: 2rem; border-left: 3px solid var(--red); color: #d9dfeb; font-size: 1.2rem; }

.ideas { background: var(--cream); border-block: 1px solid var(--line); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .8fr; gap: 10vw; align-items: end; }
.split-heading > p { margin: 0; font-size: 1.2rem; color: #3d4960; }
.topic-list { border-top: 1px solid var(--ink); }
.topic-list article { padding: 1.8rem 0; display: grid; grid-template-columns: 5rem .72fr 1fr; gap: 2rem; border-bottom: 1px solid var(--line); align-items: baseline; }
.topic-list span { color: var(--red); font-size: .75rem; font-weight: 700; }
.topic-list h3 { margin: 0; font: 650 clamp(1.5rem,2.2vw,2.25rem)/1.1 var(--serif); }
.topic-list p { margin: 0; color: #536079; }

.conversations { background: var(--paper); }
.conversation-card { position: relative; overflow: hidden; min-height: 38rem; padding: clamp(2rem,6vw,5rem); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: var(--ink); color: white; }
.conversation-card::before { content: "“"; position: absolute; right: 4vw; top: -5rem; color: rgba(255,189,60,.14); font: 700 28rem/1 var(--serif); }
.conversation-card h2 { max-width: 48rem; margin-bottom: 1.3rem; font: 650 clamp(3rem,6vw,6.4rem)/.95 var(--serif); letter-spacing: -.05em; }
.conversation-card > p:not(.kicker) { max-width: 39rem; color: #cad2e4; font-size: 1.15rem; }
.kicker.light { color: var(--gold); }
.gold { margin-top: 1.2rem; background: var(--gold); color: var(--ink); }
.gold:hover, .gold:focus-visible { box-shadow: 5px 5px 0 var(--red); }
.sound-lines { position: absolute; right: 5%; bottom: 4rem; height: 8rem; display: flex; gap: .55rem; align-items: center; }
.sound-lines i { display: block; width: .45rem; height: 25%; background: var(--blue); }
.sound-lines i:nth-child(2n) { height: 70%; background: var(--gold); }
.sound-lines i:nth-child(3n) { height: 100%; background: var(--red); }

.about-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 10vw; }
.about-grid h2 { margin: 0; font: 650 clamp(2.7rem,5vw,5rem)/1.02 var(--serif); letter-spacing: -.05em; }
.about-grid p { color: #4a566e; }
.about-grid .lead { color: var(--ink); font-size: 1.25rem; font-weight: 600; }
.closing { padding: 4rem 7vw; display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--blue); color: white; }
.closing p { max-width: 48rem; margin: 0; font: 600 clamp(1.5rem,3vw,2.8rem)/1.15 var(--serif); }
.closing a { flex: 0 0 auto; font-weight: 700; font-size: 1.1rem; text-underline-offset: .5rem; }
.closing a span { color: var(--gold); }
.closing-links { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: .65rem; }
footer { padding: 2.5rem 4vw; display: grid; grid-template-columns: 1fr minmax(15rem, 1.3fr) auto auto; align-items: center; gap: 2rem; border-top: 1px solid var(--line); font-size: .85rem; }
footer p { margin: 0; }
footer p:last-child { text-align: right; }
.site-address { color: var(--muted); font-style: normal; line-height: 1.55; }
.site-address span { display: block; margin-bottom: .15rem; color: var(--ink); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.social-links { display: flex; gap: 1.25rem; }
.social-links a { font-weight: 700; text-underline-offset: .3rem; }

@media (max-width: 820px) {
  html { scroll-padding-top: 5.4rem; }
  section[id] { scroll-margin-top: 5.4rem; }
  .site-header { height: 4.6rem; }
  .menu-button { display: block; }
  nav { position: absolute; top: 4.6rem; inset-inline: 0; padding: 1.5rem 4vw 2rem; flex-direction: column; align-items: flex-start; gap: 1rem; background: var(--paper); border-bottom: 1px solid var(--ink); }
  .js nav { display: none; }
  .js nav.open { display: flex; }
  .no-js .menu-button { display: none; }
  .no-js .site-header { height: auto; min-height: 4.6rem; flex-wrap: wrap; padding-block: .7rem; }
  .no-js nav { position: static; width: 100%; padding: .8rem 0 .35rem; flex-direction: row; flex-wrap: wrap; border-bottom: 0; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 4.5rem 6vw 3.5rem; }
  h1 { font-size: clamp(3.3rem, 16vw, 5.8rem); }
  .hero-art { min-height: 65vw; }
  .project-grid { grid-template-columns: 1fr; }
  .featured-project { grid-row: auto; min-height: 28rem; }
  .split-heading, .about-grid, .experience-heading { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-stats { grid-template-columns: 1fr; }
  .experience-stats div { min-height: 10rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .experience-stats div:last-child { border-bottom: 0; }
  .experience-lessons { grid-template-columns: 1fr; }
  .experience-lessons article, .experience-lessons article:nth-child(odd), .experience-lessons article:nth-child(even) { min-height: 0; padding: 2.5rem 0; border-right: 0; }
  .topic-list article { grid-template-columns: 2.5rem 1fr; gap: .8rem; }
  .topic-list p { grid-column: 2; }
  .sound-lines { opacity: .35; }
  .closing { align-items: flex-start; flex-direction: column; }
  .closing-links { align-items: flex-start; }
  footer { grid-template-columns: 1fr; }
  footer p:last-child { text-align: left; }
}

@media (max-width: 520px) {
  .wordmark > span:last-child { display: none; }
  .section { padding-inline: 5vw; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .project { min-height: 20rem; padding: 1.4rem; grid-template-columns: 2rem 1fr; gap: .65rem; }
  .conversation-card { min-height: 34rem; }
}

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