:root {
  --forest: #1f5a2e;
  --forest-deep: #15371f;
  --leaf: #78a943;
  --earth: #5b3e30;
  --earth-deep: #352b13;
  --cream: #fbeece;
  --mist: #f5f8ee;
  --ink: #263026;
  --muted: #66715f;
  --line: rgba(53, 43, 19, 0.14);
  --shadow: 0 24px 70px rgba(38, 48, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "ABeeZee", "Segoe UI", Arial, sans-serif;
  background: #f4f4f4 url("assets/bg.png") center center fixed;
  background-size: cover cover;
  line-height: 1.6;
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(31, 90, 46, 0.96), rgba(21, 55, 31, 0.94)),
    #1f5a2e;
  box-shadow: var(--shadow);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 210px;
  padding: 22px clamp(20px, 4vw, 48px);
}

.brand img {
  display: block;
  width: 170px;
  height: auto;
}

.intro {
  color: #fff8df;
  min-width: 0;
}

.kicker {
  margin: 0 0 8px;
  color: #d9eeb9;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 248, 223, 0.88);
  font-size: 1.08rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px clamp(20px, 4vw, 48px);
  background: rgba(251, 238, 206, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--earth-deep);
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-color: rgba(91, 62, 48, 0.2);
  background: #fff8df;
}

.content-shell {
  position: relative;
  min-height: 640px;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 238, 206, 0.98), rgba(237, 252, 209, 0.98));
  box-shadow: var(--shadow);
}

.content-shell::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 220px;
  background: url("assets/content-bottom.png") repeat-x left bottom;
  background-size: min(100%, 976px) auto;
  pointer-events: none;
}

.content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 5vw, 56px);
  padding-bottom: 150px;
}

.content-main {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(120, 169, 67, 0.16);
  color: var(--forest-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

h2 {
  margin: 0 0 18px;
  color: var(--earth-deep);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin: 34px 0 10px;
  color: var(--forest-deep);
  font-size: 1.3rem;
  line-height: 1.25;
}

p {
  margin: 0 0 18px;
  overflow-wrap: break-word;
}

.lead {
  color: var(--earth);
  font-size: 1.16rem;
}

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

.quality-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.quality-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--earth-deep);
  font-size: 1.04rem;
}

.facts {
  align-self: start;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(91, 62, 48, 0.18);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.72);
}

.facts h3 {
  margin-top: 0;
}

.facts dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.facts dd {
  margin: 2px 0 0;
  color: var(--earth-deep);
}

.legal-page .content-grid {
  display: block;
}

.legal-page .content-main {
  max-width: 860px;
}

.legal-page section {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.site-footer {
  margin-bottom: 32px;
  border-radius: 0 0 8px 8px;
  color: #fff8df;
  background:
    linear-gradient(90deg, rgba(42, 30, 22, 0.9), rgba(91, 62, 48, 0.9)),
    url("assets/footer.jpg") repeat-x left top;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 48px);
}

.contact-lines {
  display: grid;
  gap: 4px 24px;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  margin: 0;
  font-size: 0.94rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.footer-nav a {
  color: #fff8df;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .header-inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

.header-inner {
	grid-auto-flow: column;

  .brand img {
    width: 140px;
  }

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

  .content-shell {
    padding: 28px 20px;
  }

  .content-grid {
    padding-bottom: 120px;
  }

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

@media (max-width: 520px) {
  .page {
    width: 100%;
  }

  .site-header {
    margin-top: 0;
    border-radius: 0;
  }

  .main-nav a {
    flex: 1 1 100%;
  }

  .site-footer {
    margin-bottom: 0;
    border-radius: 0;
  }
}
