:root {
  --ink: #2f294c;
  --ink-deep: #27223f;
  --mauve: #6e6077;
  --rose: #5e4c55;
  --gold: #dfa237;
  --cream: #f5f0e8;
  --paper: #fbfaf7;
  --line: rgba(47, 41, 76, .16);
  --shadow: 0 22px 55px rgba(33, 28, 56, .17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 20; background: white; padding: 10px 14px; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(255,255,255,.07), transparent 29%);
  pointer-events: none;
}
.orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-one { width: 390px; height: 390px; right: -120px; bottom: -110px; background: var(--rose); }
.orb-two { width: 180px; height: 180px; left: -75px; top: -85px; background: rgba(110,96,119,.46); }
.nav { height: 88px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.wordmark { text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .24em; }
.nav-link { text-decoration: none; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.45); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; padding: 76px 0 100px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; font-weight: 800; }
h1, h2, h3 { font-family: Cambria, Georgia, "Times New Roman", serif; line-height: 1.1; }
h1 { margin: 0; font-size: clamp(3.2rem, 6.3vw, 6.3rem); font-weight: 700; letter-spacing: -.045em; }
h1 span { font-style: italic; }
.subtitle { margin: 17px 0 28px; font-family: Cambria, Georgia, "Times New Roman", serif; font-style: italic; color: var(--gold); font-size: clamp(1.15rem, 2vw, 1.55rem); }
.intro { max-width: 650px; margin: 0 0 34px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 19px; border-radius: 4px; text-decoration: none; font-weight: 750; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink-deep); }
.button-secondary { border: 1px solid rgba(255,255,255,.43); color: white; }
.button-secondary:hover { background: rgba(255,255,255,.08); }
.byline { margin: 36px 0 0; color: rgba(255,255,255,.53); font-size: .82rem; }
.hero-preview { margin: 0; transform: rotate(1.4deg); }
.hero-preview img { display: block; width: 100%; border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow); }

.section { padding: 105px 0; }
.thesis { background: var(--cream); text-align: center; }
.thesis h2 { margin: 0 auto 22px; font-size: clamp(2rem, 4.3vw, 4rem); letter-spacing: -.035em; }
.thesis p:last-child { margin: 0 auto; max-width: 700px; color: #655e6f; font-size: 1.08rem; }
.materials { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 370px; gap: 50px; align-items: end; margin-bottom: 42px; }
.section-heading h2, .project h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4.25rem); letter-spacing: -.035em; }
.section-note { margin: 0 0 5px; color: #6a6471; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.card { position: relative; min-height: 285px; padding: 31px; border: 1px solid var(--line); background: white; display: flex; flex-direction: column; }
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: var(--ink); transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.card:hover::before { transform: scaleY(1); }
.card-number { color: var(--gold); font-size: .77rem; font-weight: 850; letter-spacing: .15em; }
.card h3 { margin: 20px 0 12px; font-size: 2rem; }
.card p { margin: 0 0 24px; color: #696370; }
.card-links { margin-top: auto; display: flex; gap: 18px; }
.card-links a { text-decoration: none; font-weight: 800; font-size: .88rem; border-bottom: 2px solid var(--gold); }
.card-wide { grid-column: 1 / -1; min-height: 210px; display: grid; grid-template-columns: 70px 1fr auto; gap: 12px 24px; align-items: center; }
.card-wide h3 { margin-top: 0; }
.card-wide .card-links { margin: 0; }
.project { background: var(--ink); color: white; }
.project-grid { display: grid; grid-template-columns: 1fr 300px; gap: 70px; align-items: center; }
.project p { max-width: 760px; color: rgba(255,255,255,.74); }
.project p strong { color: white; }
.project-link { padding: 30px; border: 1px solid rgba(255,255,255,.26); text-decoration: none; font-weight: 800; display: flex; justify-content: space-between; gap: 20px; }
.project-link:hover { background: rgba(255,255,255,.07); }
footer { padding: 29px 0; background: var(--ink-deep); color: rgba(255,255,255,.55); font-size: .8rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.footer-grid p { margin: 0; }

@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 45px; }
  .hero-preview { max-width: 670px; }
  .section-heading, .project-grid { grid-template-columns: 1fr; gap: 24px; }
  .card-wide { grid-template-columns: 56px 1fr; }
  .card-wide .card-links { grid-column: 2; }
}
@media (max-width: 620px) {
  .wrap, .narrow { width: min(100% - 28px, 1160px); }
  .hero-grid { padding-bottom: 72px; }
  h1 { font-size: 3.15rem; }
  .section { padding: 76px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; display: flex; min-height: 285px; align-items: flex-start; }
  .card-wide .card-links { margin-top: auto; }
  .footer-grid { flex-direction: column; gap: 4px; }
}
