:root {
  color-scheme: light;
  --ink: #14201c;
  --muted: #5c6b65;
  --quiet: #7f8d88;
  --paper: #f6f2ea;
  --surface: #fffdf8;
  --line: rgba(20, 32, 28, 0.14);
  --green: #385846;
  --blue: #285d78;
  --gold: #c18435;
  --shadow: 0 22px 70px rgba(20, 32, 28, 0.13);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 234, 0.92);
}

.nav,
main,
.site-footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark,
.product-icon,
.product-glyph {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 72px 0 64px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 5.6rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.hero-copy p:not(.eyebrow),
.body-copy,
.product-card p,
.contact-section p,
.hero-panel p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 560;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 34px;
}

.product-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  margin-bottom: 34px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 18px solid rgba(56, 88, 70, 0.16);
  border-right-color: var(--gold);
  border-radius: 50%;
}

.product-glyph {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(56, 88, 70, 0.24);
}

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

.section-heading {
  max-width: 520px;
  margin-bottom: 24px;
}

.product-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 800px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  padding: 26px;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--green);
}

.product-card a,
.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--green);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.55fr);
  gap: 42px;
}

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

.contact-section {
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 34px;
}

.site-footer {
  padding: 24px 0 42px;
  color: var(--quiet);
  font-size: 0.92rem;
  font-weight: 650;
}

@media (max-width: 760px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

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

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

  .hero {
    min-height: auto;
    gap: 34px;
    padding: 54px 0;
  }

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