@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #f5f3ee;
  --ink: #11110f;
  --muted: #68665f;
  --line: #d9d5cc;
  --panel: #e9e6de;
  --accent: #d8ff3e;
  --dark: #171714;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.nav {
  max-width: var(--max);
  margin: auto;
  padding: 25px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { font: 700 26px "Space Grotesk", sans-serif; letter-spacing: -1px; }
.brand span { color: #777; }
nav { display: flex; gap: 25px; align-items: center; font-size: 14px; }
nav a { opacity: .75; }
nav a:hover { opacity: 1; }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 15px;
  border-radius: 999px;
  opacity: 1;
}
.hero {
  max-width: var(--max);
  margin: auto;
  padding: 90px 24px 110px;
  display: grid;
  grid-template-columns: 1.5fr .75fr;
  gap: 70px;
  align-items: end;
}
.eyebrow, .section-kicker, .card-label, .tag, .number, .articles span {
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 700;
}
.eyebrow { margin-bottom: 22px; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; line-height: 1.02; letter-spacing: -2px; margin: 0; }
h1 { font-size: clamp(52px, 8vw, 102px); max-width: 850px; }
h1 em { font-style: normal; color: #77746d; }
.lead { font-size: 20px; max-width: 680px; color: var(--muted); margin: 32px 0; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-block; padding: 14px 20px; border-radius: 999px; font-weight: 700; font-size: 14px; }
.primary { background: var(--dark); color: white; }
.secondary { border: 1px solid var(--line); }
.hero-card {
  background: var(--dark); color: white; padding: 30px; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-card h2 { font-size: 34px; margin: 14px 0; }
.hero-card p { color: #b9b7af; }
.hero-card span { color: #aaa79f; font-size: 13px; }
.line { height: 1px; background: #46443f; margin: 25px 0 15px; }
section { max-width: var(--max); margin: auto; padding: 100px 24px; }
.intro { border-top: 1px solid var(--line); display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; }
.intro h2 { font-size: clamp(38px, 5vw, 64px); max-width: 850px; margin-bottom: 35px; }
.intro p:not(.section-kicker) { max-width: 760px; color: var(--muted); font-size: 18px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 45px; gap: 30px; }
.section-heading h2 { font-size: clamp(40px, 5vw, 65px); margin-top: 12px; }
.muted { color: var(--muted); max-width: 250px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.project { background: var(--bg); min-height: 300px; padding: 30px; display: flex; flex-direction: column; }
.project.featured { background: var(--panel); }
.project h3 { font-size: 35px; margin: auto 0 14px; letter-spacing: -1px; }
.project p { color: var(--muted); max-width: 500px; margin: 0 0 28px; }
.tag { color: #77746d; }
.number { color: #77746d; }
.book {
  background: var(--dark);
  color: white;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max))/2 + 24px));
  padding-right: max(24px, calc((100% - var(--max))/2 + 24px));
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.book-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #e8e5dc;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.book-title { font: 700 48px "Space Grotesk"; line-height: .95; margin: auto 0; }
.book-author { font-size: 11px; letter-spacing: .12em; font-weight: 700; }

.book-copy {
  min-width: 0;
  max-width: 680px;
}

.book-copy h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin: 15px 0 25px;
  max-width: 650px;
}

.book-copy p:not(.section-kicker) {
  color: #aaa79f;
  max-width: 620px;
  font-size: 18px;
}
.text-link { display: inline-block; margin-top: 20px; border-bottom: 1px solid #777; padding-bottom: 5px; }
.articles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.articles article { padding: 28px 24px 20px 0; border-bottom: 1px solid var(--line); }
.articles article + article { padding-left: 24px; border-left: 1px solid var(--line); }
.articles h3 { font-size: 28px; letter-spacing: -1px; margin: 60px 0 12px; }
.articles p { color: var(--muted); }
.opportunity {
    background: #000;
    color: #fff;
    max-width: none;
    padding-left: max(24px, calc((100% - var(--max))/2 + 24px));
    padding-right: max(24px, calc((100% - var(--max))/2 + 24px));
}.opportunity h2 { font-size: clamp(45px, 6vw, 82px); max-width: 900px; margin: 18px 0 25px; }
.opportunity p:not(.section-kicker) { max-width: 600px; margin-bottom: 30px; font-size: 18px; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact h2 { font-size: clamp(48px, 6vw, 80px); margin-top: 15px; }
.contact-details { align-self: end; color: var(--muted); }
.contact-details p { border-bottom: 1px solid var(--line); padding: 15px 0; }
.contact-details strong { color: var(--ink); }
footer { border-top: 1px solid var(--line); max-width: var(--max); margin: auto; padding: 25px 24px 40px; display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
@media (max-width: 800px) {
  nav a:not(.nav-cta) { display: none; }
  .hero, .intro, .contact, .book { grid-template-columns: 1fr; }
  .hero { padding-top: 55px; gap: 45px; }
  .hero-card { min-height: 240px; }
  .grid, .articles { grid-template-columns: 1fr; }
  .articles article + article { padding-left: 0; border-left: 0; }
  .book { padding-left: 24px; padding-right: 24px; gap: 45px; }
  .book-cover { max-width: 360px; }
  .book-copy { max-width: 680px; }
  section { padding-top: 75px; padding-bottom: 75px; }
  footer { flex-direction: column; gap: 8px; }
}
