:root {
  --bg: #f3eadc;
  --paper: #fffaf1;
  --text: #261f18;
  --muted: #756a5d;
  --green: #315846;
  --green-dark: #173729;
  --eucalypt: #6f8f76;
  --sand: #d6b06d;
  --clay: #9a6548;
  --line: #e2d1ba;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.site-header {
  min-height: 84vh;
  color: white;
  background:
    radial-gradient(circle at 78% 22%, rgba(214, 176, 109, 0.42), transparent 20%),
    radial-gradient(circle at 10% 88%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, var(--green-dark), var(--green) 58%, var(--eucalypt));
  overflow: hidden;
}

.nav {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.nav-links a:hover {
  color: white;
  text-decoration: underline;
}

.hero {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 82px 0 142px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 58px;
  align-items: center;
}

.hero-text {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: #f4ddaa;
  font-weight: 650;
  letter-spacing: 0.03em;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(4.4rem, 8.5vw, 7.8rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero h2 {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 520;
  line-height: 1.28;
}

.hero-art {
  margin: 0;
  align-self: center;
  justify-self: end;
}

.hero-art img {
  width: 100%;
  max-width: 410px;
  display: block;
  border-radius: 24px;
  background: #f7f1e7;
  border: 10px solid rgba(255, 250, 242, 0.18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

main {
  width: min(900px, calc(100% - 44px));
  margin: -82px auto 78px;
  position: relative;
  z-index: 2;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px 38px;
  margin-bottom: 22px;
  box-shadow: 0 18px 42px rgba(38, 31, 24, 0.08);
}

.card h2 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 1.9rem;
  line-height: 1.2;
}

.card p {
  margin: 0 0 16px;
}

.card p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 18px;
  padding-left: 1.25rem;
}

li {
  margin: 0.35rem 0;
}

a {
  color: #2f6954;
}

a:hover {
  color: var(--clay);
}

.contact-card a {
  font-weight: 650;
}

footer {
  padding: 36px 22px 58px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 68px 0 120px;
  }

  h1 {
    max-width: 100%;
  }

  .hero h2 {
    max-width: 760px;
  }

  .hero-art {
    justify-self: start;
    max-width: 390px;
  }
}

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

  main {
    margin-top: -72px;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 12px;
  }

  h1 {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .hero {
    padding-top: 54px;
  }

  .card {
    padding: 26px 24px;
    border-radius: 20px;
  }
}
