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

:root {
  --paper: #eee9df;
  --paper-light: #f7f5f0;
  --ink: #171717;
  --muted: #706f6a;
  --line: rgba(23,23,23,.14);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand {
  font-size: 20px;
  letter-spacing: .23em;
  font-weight: 500;
}
.nav { display: flex; gap: 38px; font-size: 12px; letter-spacing: .05em; }
.nav a { opacity: .78; }
.nav a:hover { opacity: 1; }
.header-button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 205px;
  padding: 17px 22px;
  border-radius: 5px;
  font-size: 14px;
  transition: transform .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button span { font-size: 20px; line-height: 1; }

.hero {
  width: min(var(--max), calc(100% - 80px));
  min-height: 690px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 50px;
}
.hero-copy { padding: 50px 0 80px; }
.eyebrow {
  margin: 0 0 30px;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--muted);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(64px, 7.3vw, 108px);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 500;
  margin-bottom: 42px;
}
.intro {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.intro p { margin-bottom: 22px; }
.hero-cta { display: flex; align-items: center; gap: 25px; margin-top: 36px; }
.microcopy { font-size: 13px; color: var(--muted); }
.hero-book {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-book img {
  width: 108%;
  max-width: none;
  object-fit: cover;
  mix-blend-mode: multiply;
  border-radius: 2px;
}

.feature-strip {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto 110px;
  padding: 26px 50px;
  background: rgba(255,255,255,.27);
  border: 1px solid rgba(23,23,23,.05);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 4px 38px;
  border-right: 1px solid var(--line);
}
.feature:first-child { padding-left: 0; }
.feature:last-child { border-right: 0; }
.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 20px;
}
.feature strong, .feature span { display: block; }
.feature strong { font-size: 14px; margin-bottom: 3px; }
.feature span { color: var(--muted); font-size: 13px; line-height: 1.35; }

.section {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 130px 0;
}
.about { border-top: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
h2 {
  font-size: clamp(50px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 500;
  margin-bottom: 25px;
}
.body-copy { max-width: 540px; color: var(--muted); font-size: 20px; }
.body-copy p { margin-bottom: 24px; }

.themes { padding-top: 60px; }
.section-lead { color: var(--muted); margin-top: -8px; margin-bottom: 48px; }
.theme-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.theme-card { background: var(--paper-light); overflow: hidden; }
.theme-image { height: 310px; background-size: cover; background-position: center; }
.identity { background: linear-gradient(140deg,#d5d0c5,#a9a69d); }
.purpose { background: linear-gradient(140deg,#b9b7b0,#7e817c); }
.possibility { background: linear-gradient(140deg,#d6b995,#8d8a80); }
.theme-content { padding: 24px; }
.theme-content h3 { font-size: 30px; font-weight: 500; letter-spacing: -.04em; margin-bottom: 5px; }
.theme-content p { color: var(--muted); margin: 0; }

.book-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
  background: var(--paper-light);
  max-width: none;
  width: 100%;
  padding-left: max(40px, calc((100vw - var(--max))/2));
  padding-right: max(40px, calc((100vw - var(--max))/2));
}
.book-large img { width: 100%; max-height: 620px; object-fit: cover; mix-blend-mode: multiply; }
.book-copy { max-width: 520px; }
.book-copy h2 { font-size: clamp(50px, 6vw, 80px); }
.book-copy > p:not(.eyebrow) { font-size: 20px; color: var(--muted); margin-bottom: 25px; }

.journal { text-align: center; }
.journal h2 { margin-bottom: 30px; }
.journal-copy { max-width: 580px; margin: 0 auto 30px; color: var(--muted); font-size: 18px; }
.text-link { border-bottom: 1px solid var(--ink); padding-bottom: 4px; font-size: 14px; }

.final-cta {
  text-align: center;
  padding: 150px 20px;
  border-top: 1px solid var(--line);
}
.final-cta h2 { margin-bottom: 45px; }

.footer {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 35px 0 45px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-header { width: min(var(--max), calc(100% - 40px)); grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero, .split, .book-section { grid-template-columns: 1fr; }
  .hero { width: min(var(--max), calc(100% - 40px)); }
  .hero-copy { padding-bottom: 20px; }
  .hero-book { min-height: 430px; }
  .hero-book img { width: 100%; }
  .feature-strip { width: min(var(--max), calc(100% - 40px)); grid-template-columns: 1fr; gap: 10px; padding: 20px; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 0; }
  .feature:last-child { border-bottom: 0; }
  .section { width: min(var(--max), calc(100% - 40px)); padding: 90px 0; }
  .split { gap: 30px; }
  .theme-grid { grid-template-columns: 1fr; }
  .book-section { padding-left: 20px; padding-right: 20px; }
  .book-large { order: 2; }
  .book-copy { order: 1; }
}

@media (max-width: 560px) {
  .site-header { height: 82px; }
  .header-button { min-width: auto; padding: 12px 15px; font-size: 12px; }
  h1 { font-size: 58px; }
  .hero-cta { align-items: flex-start; flex-direction: column; }
  .button { min-width: 190px; }
  .hero-book { min-height: 320px; }
  .feature-strip { margin-bottom: 60px; }
}
