:root {
  --cream: #fff7e8;
  --paper: #fffdf7;
  --ink: #14213d;
  --muted: #6e705f;
  --coral: #ff715b;
  --sage: #9fbd8f;
  --sky: #8ecae6;
  --yellow: #ffd166;
  --line: #eadfc9;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 209, 102, 0.34), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(142, 202, 230, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(20, 33, 61, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 33, 61, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.top {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 10px 0 rgba(20, 33, 61, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 900;
}

.brand-sun {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--coral);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--sky);
  color: var(--ink);
  outline: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.12fr) minmax(0, 0.88fr);
  gap: 40px;
  align-items: center;
  width: min(var(--max), calc(100% - 28px));
  margin: 64px auto 96px;
}

.hero-art {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--sage);
  overflow: hidden;
}

.hero-art::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 150px;
  height: 54px;
  content: "";
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 16px, var(--yellow) 16px 32px, var(--sky) 32px 48px);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 6.7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.05;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
}

.button.secondary {
  background: var(--paper);
}

.map-section,
.garden,
.path,
.hello {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto 96px;
}

.map-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--sky);
}

.map-section p:last-child {
  align-self: end;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 22px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.plots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plots article {
  min-height: 330px;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: var(--paper);
}

.plots article:nth-child(1) { box-shadow: 8px 8px 0 var(--sage); }
.plots article:nth-child(2) { box-shadow: 8px 8px 0 var(--sky); }
.plots article:nth-child(3) { box-shadow: 8px 8px 0 var(--yellow); }
.plots article:nth-child(4) { box-shadow: 8px 8px 0 var(--coral); }

.icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 66px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
}

.plots p {
  margin-bottom: 0;
  color: var(--muted);
}

.path {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
}

.path ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
}

.path li span {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

.path li strong {
  font-size: 23px;
  line-height: 1.14;
}

.hello {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--sage);
  box-shadow: 12px 12px 0 var(--ink);
}

.hello h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.hello > div {
  min-width: 0;
  max-width: 100%;
}

.subhead {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.content-section {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto 96px;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 12px 12px 0 var(--sky);
}

.content-section h3 {
  margin-top: 36px;
}

.content-section h4 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.12;
}

.content-section p,
.content-section li,
.content-section blockquote {
  color: var(--muted);
  font-size: 18px;
}

.content-section a:not(.button),
.service-list a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.large-copy {
  max-width: 900px;
  color: var(--muted);
  font-size: 22px;
}

.service-list,
.detail-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.service-list article,
.detail-grid article,
.timeline-grid article {
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
}

.service-list article:nth-child(4n + 1),
.detail-grid article:nth-child(4n + 1),
.timeline-grid article:nth-child(4n + 1) {
  box-shadow: 7px 7px 0 var(--sage);
}

.service-list article:nth-child(4n + 2),
.detail-grid article:nth-child(4n + 2),
.timeline-grid article:nth-child(4n + 2) {
  box-shadow: 7px 7px 0 var(--sky);
}

.service-list article:nth-child(4n + 3),
.detail-grid article:nth-child(4n + 3),
.timeline-grid article:nth-child(4n + 3) {
  box-shadow: 7px 7px 0 var(--yellow);
}

.service-list article:nth-child(4n),
.detail-grid article:nth-child(4n),
.timeline-grid article:nth-child(4n) {
  box-shadow: 7px 7px 0 var(--coral);
}

.timeline-grid strong {
  display: block;
  color: var(--coral);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.9;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  padding-left: 0;
  list-style: none;
}

blockquote {
  margin: 18px 0;
  padding: 18px;
  border-left: 6px solid var(--coral);
  border-radius: 12px;
  background: var(--cream);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 15px;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 900;
}

@media (max-width: 940px) {
  .hero,
  .map-section,
  .path {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 50px;
  }

  .plots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .top {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

  h1 {
    font-size: 46px;
  }

  .lede,
  .map-section p:last-child {
    font-size: 18px;
  }

  .plots,
  .path li {
    grid-template-columns: 1fr;
  }

  .plots article {
    min-height: auto;
  }

  .icon {
    margin-bottom: 34px;
  }

  .hello {
    align-items: flex-start;
    flex-direction: column;
  }

  .hello p,
  .hello h2,
  .hello h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .service-list,
  .detail-grid,
  .timeline-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 24px;
    box-shadow: 6px 6px 0 var(--sky);
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art,
  .map-section,
  .hello {
    box-shadow: 6px 6px 0 var(--sage);
  }

  .plots article,
  .service-list article,
  .detail-grid article,
  .timeline-grid article {
    box-shadow: 5px 5px 0 var(--sky) !important;
  }
}
