:root {
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --ink: #2d2d21;
  --muted: #6f6a5d;
  --green: #4d6a2e;
  --green-dark: #35481f;
  --brown: #8b5d2e;
  --strawberry: #cc4b32;
  --line: #e5decf;
  --shadow: 0 18px 45px rgba(45, 45, 33, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 22px clamp(20px, 5vw, 48px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 48px;
  object-fit: contain;
  width: auto;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  color: var(--green-dark);
  text-decoration: none;
}

.button {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 8px;
  color: #fffdf8;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.hero {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  margin: 0 auto;
  max-width: 1120px;
  min-height: calc(100vh - 96px);
  padding: clamp(44px, 7vw, 84px) clamp(20px, 5vw, 48px) 56px;
}

.hero-copy {
  align-self: center;
  min-width: 0;
}

h1,
h2 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  color: var(--green-dark);
  font-size: clamp(3.6rem, 10vw, 7.6rem);
  letter-spacing: 0;
}

h2 {
  color: var(--green-dark);
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0;
}

.lead {
  color: var(--brown);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin: 18px 0 0;
  max-width: 720px;
  overflow-wrap: break-word;
}

.body-copy {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 18px 0 0;
  max-width: 680px;
  overflow-wrap: break-word;
}

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

.hero-art {
  align-self: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  min-height: 420px;
  min-width: 0;
  place-items: center;
  position: relative;
}

.hero-art img {
  max-width: min(76%, 290px);
  width: 100%;
}

.hero-art::after {
  background:
    radial-gradient(circle at 18px 18px, rgba(77, 106, 46, 0.14) 0 2px, transparent 2px),
    radial-gradient(circle at 58px 48px, rgba(139, 93, 46, 0.13) 0 2px, transparent 2px);
  background-size: 84px 76px;
  border-radius: inherit;
  content: "";
  inset: 18px;
  opacity: 0.7;
  position: absolute;
  z-index: 0;
}

.hero-art img {
  position: relative;
  z-index: 1;
}

.section {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1120px;
  padding: 52px clamp(20px, 5vw, 48px);
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.tile h3 {
  color: var(--green-dark);
  font-size: 1.08rem;
  margin: 0;
}

.tile p {
  color: var(--muted);
  margin: 10px 0 0;
}

.legal-page {
  margin: 0 auto;
  max-width: 850px;
  padding: 44px clamp(20px, 5vw, 48px) 72px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.legal-page h2 {
  font-size: 1.55rem;
  margin-top: 34px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin: 0 auto;
  max-width: 1120px;
  padding: 26px clamp(20px, 5vw, 48px) 38px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

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

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 26px;
  }

  .hero-copy,
  .hero-art {
    max-width: 354px;
  }

  .hero-art {
    min-height: 310px;
    overflow: hidden;
  }

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

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .lead {
    font-size: 1.12rem;
    line-height: 1.35;
  }

  .actions {
    flex-direction: column;
  }

  .actions .button {
    flex-basis: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .site-header,
  .hero,
  .section,
  .legal-page,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

}
