:root {
  --paper: #f7f3ea;
  --ink: #171614;
  --muted: #625f57;
  --line: #d7cec0;
  --celadon: #8fa99b;
  --indigo: #263f5d;
  --cinnabar: #a64632;
  --silk: #fffaf0;
  --clay: #8a634e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--silk);
  background: linear-gradient(180deg, rgba(16, 15, 14, .78), rgba(16, 15, 14, 0));
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav {
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
}

.nav a {
  opacity: .86;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero picture,
.hero picture::after {
  position: absolute;
  inset: 0;
}

.hero picture::after {
  content: "";
  display: block;
  background:
    linear-gradient(90deg, rgba(12, 12, 10, .78), rgba(12, 12, 10, .34) 48%, rgba(12, 12, 10, .12)),
    linear-gradient(0deg, rgba(12, 12, 10, .72), transparent 46%);
}

.hero img {
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 160px clamp(22px, 5vw, 72px) 76px;
  color: var(--silk);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cinnabar);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2b08d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .95;
  font-weight: 500;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 250, 240, .88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 4px;
  font-weight: 700;
}

.button.primary {
  color: var(--ink);
  background: var(--silk);
  border-color: var(--silk);
}

.button.secondary {
  color: var(--silk);
}

.band,
.next {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(300px, 1.2fr);
  gap: clamp(34px, 6vw, 96px);
  max-width: 1180px;
  margin: 0 auto;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 500;
}

.copy p,
.fact-copy p,
.workshop p,
.cards p {
  color: var(--muted);
  font-size: 18px;
}

.visual-story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 680px;
  background: var(--ink);
  color: var(--silk);
}

.visual-story figure {
  margin: 0;
  min-height: 560px;
}

.visual-story figure img,
.workshop > img {
  height: 100%;
  object-fit: cover;
}

figcaption {
  padding: 16px clamp(20px, 4vw, 48px) 0;
  color: rgba(255, 250, 240, .68);
  font-size: 14px;
}

.story-panel {
  align-self: center;
  padding: clamp(42px, 6vw, 86px);
}

.detail-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.detail-list li {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, .18);
  color: rgba(255, 250, 240, .76);
}

.detail-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--silk);
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.process-layout {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.process-layout img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--cinnabar);
  font-weight: 900;
}

.steps strong,
.steps span {
  grid-column: 2;
}

.steps span {
  color: var(--muted);
}

.heritage-facts {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: #ebe2d4;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.facts div,
.cards article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 240, .56);
}

.facts div {
  padding: 22px;
}

.facts span,
.cards span {
  display: block;
  margin-bottom: 10px;
  color: var(--cinnabar);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts strong {
  display: block;
  font-size: 19px;
  line-height: 1.28;
}

.workshop {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 640px;
  background: var(--silk);
}

.workshop > div {
  align-self: center;
  padding: clamp(42px, 6vw, 86px);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 64px);
}

.roadmap-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards a {
  display: block;
}

.cards article {
  min-height: 220px;
  padding: 24px;
}

.cards h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 250, 240, .72);
  background: var(--ink);
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-copy {
    padding-top: 120px;
  }

  .section-grid,
  .visual-story,
  .process-layout,
  .heritage-facts,
  .workshop,
  .cards,
  .feature-cards,
  .roadmap-cards {
    grid-template-columns: 1fr;
  }

  .visual-story figure,
  .workshop {
    min-height: auto;
  }

  .visual-story figure img,
  .workshop > img {
    aspect-ratio: 4 / 3;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding-bottom: 48px;
  }

  .button {
    width: 100%;
  }

  .steps li {
    grid-template-columns: 36px 1fr;
  }
}
