:root {
  --ink: #17382d;
  --paper: #f4f0e6;
  --moss: #3d7052;
  --gold: #e9b652;
  --line: #c9d1b8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Mono", monospace;
}

main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 56px;
}

.eyebrow, footer, article span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow { margin: 0 0 20px; color: var(--moss); }

h1, h2, p { margin-top: 0; }

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font: 600 clamp(4.4rem, 13vw, 7.5rem)/0.86 "Playfair Display", Georgia, serif;
  letter-spacing: -0.07em;
}

h1 em { color: var(--moss); font-weight: 500; }

.intro {
  max-width: 510px;
  font: 1rem/1.75 "DM Mono", monospace;
}

.canopy {
  position: relative;
  height: 350px;
  margin: 64px 0 60px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: #dce7ca;
}

.sun {
  position: absolute;
  top: 50px;
  right: 16%;
  width: 124px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
}

.trunk {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 43%;
  width: 66px;
  height: 245px;
  border-radius: 50% 50% 0 0;
  background: var(--ink);
  transform: rotate(5deg);
}

.trunk::before, .trunk::after {
  position: absolute;
  bottom: 155px;
  width: 31px;
  height: 130px;
  content: "";
  background: var(--ink);
  transform-origin: bottom center;
}
.trunk::before { left: -20px; transform: rotate(-38deg); }
.trunk::after { right: -20px; transform: rotate(42deg); }

.leaf {
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 130px;
  border-radius: 70% 30% 65% 35%;
  background: var(--moss);
}
.leaf-one { top: 42px; left: 24%; transform: rotate(23deg); }
.leaf-two { top: 12px; left: 40%; transform: rotate(-19deg); }
.leaf-three { top: 78px; left: 52%; transform: rotate(16deg); }
.leaf-four { top: 120px; left: 31%; transform: rotate(-30deg); }

.ground {
  position: absolute;
  z-index: 3;
  bottom: -24px;
  left: -4%;
  width: 108%;
  height: 50px;
  border-radius: 50% 50% 0 0;
  background: var(--ink);
}

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

article { border-top: 1px solid var(--line); padding-top: 16px; }
article span { color: var(--moss); }
h2 { margin: 17px 0 12px; font: 500 1.45rem/1.1 "Playfair Display", Georgia, serif; }
article p { color: #466156; font-size: 0.76rem; line-height: 1.7; }

footer {
  padding: 28px 24px;
  color: var(--paper);
  text-align: center;
  background: var(--ink);
}

@media (max-width: 600px) {
  main { width: min(100% - 32px, 920px); padding-top: 48px; }
  .canopy { height: 280px; margin: 48px 0; }
  .facts { grid-template-columns: 1fr; gap: 18px; }
  .sun { right: 7%; width: 96px; }
  .trunk { left: 41%; }
  .leaf { width: 155px; height: 110px; }
  .leaf-one { left: 8%; }
  .leaf-two { left: 32%; }
  .leaf-three { left: 48%; }
  .leaf-four { left: 22%; }
}
