:root {
  --paper: #f7f0e4;
  --paper-bright: #fffaf1;
  --ink: #2f3e35;
  --muted: #6d746d;
  --sage: #a9b69a;
  --sage-deep: #687a69;
  --butter: #e8c46e;
  --peach: #e6aa8f;
  --berry: #b95650;
  --blue: #9aafb4;
  --line: rgba(47, 62, 53, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image: radial-gradient(#927f69 .45px, transparent .6px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
  z-index: 20;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }
.site-header {
  min-height: 86px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 400 clamp(24px, 2.3vw, 34px)/1 Baskerville, Georgia, serif;
  text-decoration: none;
  letter-spacing: -.025em;
}
.brand-flower { color: var(--butter); font-size: .85em; }
nav { display: flex; gap: clamp(18px, 3vw, 42px); }
nav a {
  font-size: 12px;
  text-decoration: none;
  padding: 10px 0 4px;
  border-bottom: 1px solid transparent;
}
nav a:hover, nav a:focus-visible { border-color: var(--berry); }
.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  padding: clamp(62px, 8vw, 118px) clamp(22px, 7vw, 110px);
  overflow: hidden;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .23em;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
h1, h2, h3 { font-family: Baskerville, Georgia, serif; font-weight: 400; }
h1 {
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: .88;
  letter-spacing: -.05em;
  margin: 28px 0;
}
h1 em { color: var(--berry); font-weight: 400; }
.hero-deck {
  max-width: 630px;
  font: 400 clamp(19px, 2vw, 25px)/1.45 Baskerville, Georgia, serif;
  color: #4f5a52;
}
.button {
  margin-top: 18px;
  display: inline-flex;
  justify-content: space-between;
  gap: 30px;
  min-width: 250px;
  background: var(--ink);
  color: white;
  padding: 15px 19px;
  text-decoration: none;
  font-size: 13px;
}
.hero-image {
  margin: 0;
  position: relative;
  padding: 12px;
  background: var(--paper-bright);
  box-shadow: 0 30px 80px rgba(61, 49, 38, .18);
  transform: rotate(1.3deg);
}
.hero-image img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.hero-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(247, 240, 228, .92);
  padding: 8px 10px;
  font-size: 10px;
  letter-spacing: .08em;
}
.manifesto {
  padding: clamp(78px, 10vw, 150px) 10vw;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}
.manifesto p {
  max-width: 1100px;
  margin: 0 auto;
  font: 400 clamp(34px, 5vw, 72px)/1.06 Baskerville, Georgia, serif;
  letter-spacing: -.025em;
}
.editions { padding: clamp(84px, 10vw, 150px) clamp(22px, 7vw, 110px); }
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 74px;
}
.section-heading h2, .worlds h2, .about h2 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.045em;
  margin: 18px 0 0;
}
.section-heading > p {
  max-width: 510px;
  color: var(--muted);
  font-size: 18px;
}
.feature {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 7vw;
  padding: 70px;
  margin: 30px 0;
}
.feature figure { margin: 0; }
.feature img {
  width: 100%;
  max-height: 750px;
  object-fit: cover;
  box-shadow: 0 25px 65px rgba(52, 44, 35, .16);
}
.feature-fruit { background: #ead5bd; }
.feature-calm { background: #d7dfcd; }
.feature-daisy { background: #e9dfbd; }
.feature:nth-of-type(even) figure { order: 2; }
.feature-copy { max-width: 520px; }
.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  margin-bottom: 38px;
  font-size: 12px;
}
.feature h3 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 18px 0 24px;
}
.feature-copy > p:not(.eyebrow) { color: #525a54; font-size: 18px; }
.status {
  display: block;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(47, 62, 53, .18);
  color: var(--muted);
  font-size: 12px;
}
.worlds {
  padding: clamp(88px, 10vw, 150px) clamp(22px, 7vw, 110px);
  background: var(--paper-bright);
}
.worlds-intro {
  max-width: 850px;
  margin-bottom: 65px;
}
.worlds-intro > p:last-child {
  max-width: 620px;
  font-size: 18px;
  color: var(--muted);
}
.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.world-card {
  min-height: 440px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.world-card.thing { background: #d8c9ae; }
.world-card.gardener { background: #b9c5ad; }
.world-card.editions-card { background: #d8b4a7; }
.world-mark { font-size: 42px; margin-bottom: auto; }
.world-card h3 {
  font-size: clamp(31px, 3.4vw, 50px);
  line-height: 1;
  margin: 18px 0;
}
.world-card p:not(.eyebrow) { color: #4d554f; }
.world-card a, .coming {
  margin-top: 18px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 13px;
}
.about {
  padding: clamp(90px, 11vw, 170px) clamp(22px, 10vw, 160px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  align-items: start;
}
.about .eyebrow { grid-column: 1 / -1; }
.about h2 { margin-top: 0; }
.about div { max-width: 620px; font-size: 18px; color: var(--muted); }
footer {
  padding: 60px clamp(22px, 7vw, 110px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
  align-items: end;
}
.footer-brand { grid-row: span 2; }
footer p { margin: 0; color: var(--muted); text-align: right; }
.legal { font-size: 11px; }

@media (max-width: 820px) {
  nav { display: none; }
  .hero, .section-heading, .feature, .about { grid-template-columns: 1fr; }
  .hero { padding-top: 76px; }
  .hero-image { max-width: 620px; transform: none; }
  .feature { padding: 34px 24px; min-height: auto; }
  .feature:nth-of-type(even) figure { order: 0; }
  .world-grid { grid-template-columns: 1fr; }
  .world-card { min-height: 360px; }
  footer { grid-template-columns: 1fr; }
  .footer-brand { grid-row: auto; margin-bottom: 22px; }
  footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
