:root {
  color-scheme: light;
  --bg: #f7f3ea;
  --surface: #fffdf8;
  --surface-soft: #fbf7ef;
  --ink: #171a18;
  --muted: #606963;
  --line: #e2ded4;
  --line-strong: #d5d0c4;
  --accent: #1f6f5f;
  --accent-dark: #145246;
  --gold: #c9912c;
  --rose: #c56658;
  --shadow: 0 24px 70px rgba(30, 28, 23, 0.1);
  --soft-shadow: 0 14px 40px rgba(30, 28, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.95), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand,
.nav-links,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 680;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: 52px;
  align-items: center;
  padding: 68px 0 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.lede {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(23, 26, 24, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.panel-bar {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
}

.panel-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rose);
}

.panel-bar span:nth-child(2) {
  background: var(--gold);
}

.panel-bar span:nth-child(3) {
  background: var(--accent);
}

.panel-content {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.panel-kicker {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-kicker {
  margin-bottom: 0;
}

.mini-product {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 14px;
}

.mini-product span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 820;
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.08);
}

.mini-product strong {
  display: block;
  line-height: 1.25;
}

.products-section {
  padding: 10px 0 72px;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

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

.product-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--soft-shadow);
  padding: 24px;
}

.product-card.featured {
  border-color: rgba(31, 111, 95, 0.24);
}

.product-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.2;
  padding: 10px 17px;
  text-align: center;
}

.button {
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 28px 0 34px;
}

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

.site-footer a {
  font-weight: 680;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 0 58px;
  }

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

  .product-card {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 1120px);
  }

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

  .nav-links {
    gap: 14px;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .lede {
    font-size: 1.04rem;
  }

  .panel-content,
  .product-card {
    padding: 20px;
  }
}
