:root {
  --paper: #fbf7ef;
  --ink: #1f2933;
  --muted: #65717d;
  --line: #d9cbb8;
  --terracotta: #bf5f3f;
  --sage: #718c6a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Palatino Linotype", Georgia, serif;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(251,247,239,.94);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { color: var(--ink); text-decoration: none; font-weight: 900; letter-spacing: .05em; }
nav { display: flex; gap: 22px; }
nav a { color: var(--ink); text-decoration: none; font-family: Arial, sans-serif; font-size: .92rem; }

.hero {
  min-height: 86vh;
  padding: 88px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.hero-kicker, .label {
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .16em;
  font: 800 .75rem Arial, sans-serif;
}
h1 {
  max-width: 1120px;
  margin: 20px 0;
  font-size: clamp(3.5rem, 8vw, 8.2rem);
  line-height: .93;
  letter-spacing: -0.055em;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.8vw, 5rem);
  line-height: .98;
  letter-spacing: -0.04em;
}
h3 { margin: 0 0 12px; color: var(--terracotta); }
p {
  color: var(--muted);
  line-height: 1.8;
  font-family: Arial, sans-serif;
}
.lede { max-width: 860px; font-size: 1.22rem; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-notes span {
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  color: var(--sage);
  background: white;
}

section { padding: 90px 5vw; }
.editorial {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
}
.article-copy {
  columns: 2;
  column-gap: 44px;
}
.article-copy p:first-child::first-letter {
  font-size: 4rem;
  float: left;
  line-height: .85;
  padding-right: 8px;
  color: var(--terracotta);
  font-family: Georgia, serif;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px;
}
.service-card {
  background: var(--paper);
  padding: 32px;
  min-height: 330px;
}
.service-card strong { font-size: 2.5rem; color: var(--sage); }

.roadmap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  background: #2d332b;
}
.roadmap h2, .roadmap p { color: white; }
.roadmap ol { list-style: none; padding: 0; margin: 0; }
.roadmap li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 22px 0;
}
.roadmap span { color: #f4c7a6; font-weight: 900; font-size: 1.2rem; }

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.workshop-grid article {
  background: white;
  padding: 28px;
  border-left: 7px solid var(--terracotta);
}

.feature {
  text-align: center;
  background: var(--sage);
}
.feature button {
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
#principle {
  display: none;
  color: white;
  max-width: 780px;
  margin: 28px auto 0;
  font-size: 1.4rem;
}
#principle.show { display: block; }

.contact { background: var(--terracotta); }
.contact h2, .contact p, .contact a, .contact .label { color: white; }
.contact a { font-size: 1.55rem; font-weight: 900; font-family: Arial, sans-serif; }

@media (max-width: 900px) {
  .masthead { flex-direction: column; align-items: flex-start; gap: 14px; }
  nav { flex-wrap: wrap; }
  .editorial, .roadmap { grid-template-columns: 1fr; }
  .article-copy { columns: 1; }
  .services, .workshop-grid { grid-template-columns: 1fr; }
  .roadmap li { grid-template-columns: 1fr; }
}
