:root {
  color-scheme: light;
  --ink: #203326;
  --ink-soft: #526557;
  --cream: #fff9ec;
  --paper: rgba(255, 255, 255, 0.76);
  --leaf: #237c3f;
  --leaf-dark: #14572b;
  --orange: #f6a43b;
  --coral: #ef6a54;
  --sky: #cce8ff;
  --line: rgba(32, 51, 38, 0.14);
  --shadow: 0 28px 80px rgba(91, 84, 45, 0.16);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 12%, rgba(246, 164, 59, 0.28), transparent 24rem),
    radial-gradient(circle at 82% 9%, rgba(204, 232, 255, 0.85), transparent 30rem),
    linear-gradient(180deg, #fff9ec 0%, #fffdf6 58%, #f4f9e9 100%);
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand-fruit {
  position: relative;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(91, 28, 18, 0.15);
  border-radius: 50%;
  background: linear-gradient(145deg, #ff725f, #d92e28);
  box-shadow: 0 8px 20px rgba(217, 46, 40, 0.24);
}

.brand-fruit::before {
  position: absolute;
  width: 13px;
  height: 8px;
  top: -5px;
  right: 3px;
  border-radius: 100% 0 100% 0;
  background: var(--leaf);
  content: "";
  transform: rotate(-18deg);
}

nav {
  display: flex;
  gap: 4px;
}

nav a,
.site-footer a {
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
}

nav a {
  padding: 10px 13px;
}

nav a:hover,
nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  width: min(1080px, calc(100% - 32px));
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
  padding: 32px 0 64px;
}

.hero-copy {
  max-width: 630px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.lede,
.intro {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  line-height: 1.65;
}

.lede {
  max-width: 37rem;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 19px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  color: white;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
}

.button.secondary {
  background: rgba(255, 255, 255, 0.68);
}

.orchard {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 48px;
  overflow: hidden;
  background:
    repeating-radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.62) 0 14px,
      rgba(205, 226, 236, 0.5) 16px 27px
    ),
    var(--sky);
  box-shadow: var(--shadow);
}

.orchard::after {
  position: absolute;
  inset: auto -8% -8% -8%;
  height: 30%;
  border-radius: 50% 50% 0 0;
  background: #f3c55e;
  content: "";
}

.fruit {
  position: absolute;
  z-index: 2;
  border: 3px solid rgba(65, 45, 20, 0.13);
  border-radius: 50%;
  box-shadow: inset -16px -22px 0 rgba(74, 45, 12, 0.08), 0 22px 36px rgba(80, 57, 21, 0.18);
}

.fruit span::before,
.fruit span::after {
  position: absolute;
  top: 46%;
  width: 9px;
  height: 13px;
  border-radius: 50%;
  background: #3e241c;
  content: "";
}

.fruit span::before {
  left: 35%;
}

.fruit span::after {
  right: 35%;
}

.watermelon {
  width: 250px;
  height: 250px;
  right: 44px;
  bottom: 54px;
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(21, 98, 44, 0.25) 31px 43px),
    linear-gradient(145deg, #52b849, #188046);
}

.orange {
  width: 124px;
  height: 124px;
  left: 30px;
  bottom: 45px;
  background: linear-gradient(145deg, #ffc152, #f07a2f);
}

.cherry {
  width: 96px;
  height: 96px;
  right: 18px;
  top: 40px;
  background: linear-gradient(145deg, #ff7664, #d72d2c);
}

.leaf {
  width: 68px;
  height: 34px;
  right: 68px;
  top: 18px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, #78a940, #28733b);
  transform: rotate(18deg);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.features article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 52px);
  background: rgba(255, 253, 246, 0.93);
}

.number {
  margin: 0 0 34px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
}

.features h2,
.closing h2,
.document h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  letter-spacing: -0.025em;
}

.features article > p:last-child,
.closing > p:last-child,
.document p,
.document li {
  color: var(--ink-soft);
  line-height: 1.72;
}

.closing {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.closing > p:last-child {
  max-width: 650px;
  margin: 22px auto 0;
  font-size: 1.08rem;
}

.document {
  width: min(760px, calc(100% - 32px));
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  padding: 74px 0 100px;
}

.document h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 5rem);
}

.document .intro {
  max-width: 680px;
  margin: 22px 0 50px;
}

.document section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.document section p,
.document ul,
.document ol {
  margin: 14px 0 0;
}

.document li + li {
  margin-top: 8px;
}

.document section a {
  color: var(--leaf-dark);
  font-weight: 760;
}

.site-footer {
  min-height: 92px;
  justify-content: flex-start;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer span {
  margin-right: auto;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .orchard {
    min-height: 440px;
  }

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

  .site-footer {
    flex-wrap: wrap;
    padding: 24px 0;
  }

  .site-footer span {
    flex-basis: 100%;
  }
}

@media (max-width: 430px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .site-header nav {
    width: 100%;
  }

  .site-header nav a {
    padding-left: 0;
    padding-right: 20px;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 4.6rem);
  }

  .orchard {
    min-height: 390px;
  }

  .watermelon {
    width: 210px;
    height: 210px;
    right: 18px;
  }

  .orange {
    width: 104px;
    height: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
