:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5f6c66;
  --line: #d9e0dc;
  --paper: #f8f6f1;
  --white: #ffffff;
  --teal: #126b63;
  --teal-dark: #0a433f;
  --coral: #cf6047;
  --gold: #d6a84b;
  --shadow: 0 18px 45px rgba(23, 32, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(248, 246, 241, 0.86);
  border-bottom: 1px solid rgba(217, 224, 220, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
}

.nav {
  gap: clamp(14px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 246, 241, 0.94) 0%, rgba(248, 246, 241, 0.86) 38%, rgba(248, 246, 241, 0.18) 72%),
    linear-gradient(0deg, rgba(23, 32, 28, 0.14), rgba(23, 32, 28, 0.02));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #3f4a45;
  font-size: clamp(16px, 2vw, 20px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(18, 107, 99, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(23, 32, 28, 0.2);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p:last-child,
.product-info p,
.steps p,
.contact-band p {
  color: var(--muted);
}

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

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-media {
  min-height: 210px;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, var(--teal), var(--gold));
}

.media-two {
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, #293c5f, var(--coral));
}

.media-three {
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #4f6f52, #9a6655);
}

.product-info {
  padding: 20px;
}

.tag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(214, 168, 75, 0.17);
  color: #795616;
  font-size: 12px;
  font-weight: 800;
}

.product-info h3,
.steps h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.product-info p,
.steps p {
  margin: 0 0 18px;
}

.product-info strong {
  font-size: 22px;
}

.process {
  border-top: 1px solid var(--line);
}

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

.steps article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.steps span {
  color: var(--coral);
  font-weight: 900;
}

.contact-band {
  display: flex;
  width: min(1120px, calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 56px;
  padding: 34px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: var(--white);
}

.contact-band .section-kicker,
.contact-band p {
  color: #f1d7af;
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(248, 246, 241, 0.96) 0%, rgba(248, 246, 241, 0.86) 48%, rgba(248, 246, 241, 0.28) 100%);
  }

  .hero-content {
    align-self: start;
    margin: 0 auto;
    padding-top: 58px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(38px, 13vw, 56px);
  }

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

  .section {
    padding: 52px 0;
  }

  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-band .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .button {
    width: 100%;
  }
}
