:root {
  --ink: #10252a;
  --ink-2: #183c2e;
  --green: #399444;
  --green-deep: #206a37;
  --mint: #d7ef86;
  --aqua: #9fe1e5;
  --clay: #d26432;
  --paper: #fbfbf7;
  --paper-cool: #f5f8f4;
  --white: #ffffff;
  --muted: #586764;
  --line: rgba(16, 37, 42, 0.16);
  --line-strong: rgba(16, 37, 42, 0.28);
  --heading: "Fraunces", Georgia, serif;
  --body: "Source Serif 4", Georgia, serif;
  --ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.56;
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1184px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

section[id] {
  scroll-margin-top: 104px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: #f7f5ed;
  background: transparent;
  border-bottom: 0;
}

.site-header::before {
  display: none;
  content: "";
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: var(--ui);
  font-weight: 600;
  letter-spacing: -0.012em;
}

.brand-logo {
  width: 258px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: rgba(247, 245, 237, 0.9);
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 400;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(247, 245, 237, 0.1);
}

.site-nav .nav-cta {
  margin-left: 10px;
  color: #f7f5ed;
  background: rgba(3, 38, 31, 0.9);
  box-shadow: none;
}

.site-nav .nav-cta:hover {
  color: #ffffff;
  background: #062f27;
}

.hero {
  position: relative;
  display: grid;
  overflow-x: hidden;
  background: var(--paper);
}

.hero::before {
  content: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: clamp(80px, 7vw, 96px);
  content: "";
  background: linear-gradient(to bottom, rgba(251, 251, 247, 0), rgba(251, 251, 247, 0.45));
  pointer-events: none;
}

.hero-bg {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  align-self: start;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-grid {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  min-height: min(56.28vw, 760px);
  display: flex;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
}

.hero-copy {
  position: relative;
  max-width: 620px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero .eyebrow {
  color: rgba(247, 245, 237, 0.78);
}

.hero h1 {
  max-width: 14.4ch;
  color: #f7f5ed;
}

.hero h1 span {
  color: #9ac321;
}

.hero .hero-subhead {
  color: rgba(247, 245, 237, 0.84);
}

.hero .button-primary {
  color: var(--ink);
  background: #f7f5ed;
  border-color: #f7f5ed;
}

.hero .button-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.hero .button-secondary {
  color: #f7f5ed;
  border-color: rgba(247, 245, 237, 0.82);
}

.hero .button-secondary:hover {
  color: var(--ink);
  background: rgba(247, 245, 237, 0.9);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--aqua);
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 12.7ch;
  margin-bottom: 28px;
  font-size: clamp(2.95rem, 4.08vw, 4.68rem);
}

h1 span {
  color: var(--green);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 4.6vw, 4.65rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.34rem;
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-subhead,
.section-copy p,
.product-card p,
.standards-list p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.hero-subhead {
  max-width: 540px;
  margin-bottom: 34px;
  color: #233b3c;
  font-size: 1.21rem;
  line-height: 1.42;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0 26px;
  font-family: var(--ui);
  font-weight: 400;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button::after {
  width: 9px;
  height: 9px;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: #07181c;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  color: var(--green-deep);
  background: rgba(159, 225, 229, 0.24);
}

.button-light {
  width: max-content;
  color: var(--ink);
  background: var(--aqua);
  border-color: var(--aqua);
}

.button-light:hover {
  background: var(--white);
  border-color: var(--white);
}

.about {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  padding-top: 0;
  padding-bottom: 112px;
  overflow: visible;
  background: transparent;
}

.about::after {
  position: absolute;
  top: 0;
  right: max(20px, calc((100% - 1184px) / 2));
  left: max(20px, calc((100% - 1184px) / 2));
  height: 260px;
  z-index: 0;
  content: "";
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -40px 92px rgba(16, 37, 42, 0.22), 0 24px 72px rgba(16, 37, 42, 0.1);
  pointer-events: none;
}

.about::before {
  position: absolute;
  inset: auto auto -48px -86px;
  width: min(620px, 72vw);
  height: 380px;
  content: "";
  background: url("assets/root-pattern.svg") center / contain no-repeat;
  opacity: 0.26;
  pointer-events: none;
}

.about-grid,
.quality-grid,
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: 88px;
  align-items: start;
}

.about-grid {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 77% 12%, rgba(215, 239, 134, 0.16), transparent 22rem),
    rgba(252, 250, 242, 0.98);
  border: 1px solid rgba(16, 37, 42, 0.1);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 132px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 132px), transparent 100%);
}

.about-grid::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  z-index: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(252, 250, 242, 0), var(--paper) 82%);
  pointer-events: none;
}

.about-grid > * {
  position: relative;
  z-index: 1;
}

.about h2 {
  max-width: 10.5ch;
}

.section-copy {
  max-width: 660px;
}

.section-copy p {
  font-size: 1.02rem;
}

.value-grid {
  display: grid;
  gap: 0;
  padding-top: 8px;
}

.value-card,
.product-card,
.standards-list article {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.value-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(16, 37, 42, 0.15);
}

.value-card:last-child {
  border-bottom: 0;
}

.value-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #7ea018;
  background: rgba(215, 239, 134, 0.24);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 34px;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.value-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.card-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.42rem;
  font-weight: 450;
  letter-spacing: 0;
}

.product-lines {
  background:
    linear-gradient(90deg, rgba(215, 239, 134, 0.34), transparent 44%),
    var(--paper-cool);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.product-card {
  min-height: 374px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.72);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-card.featured {
  background: rgba(215, 239, 134, 0.24);
}

.product-card:hover {
  background: var(--white);
}

.product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--aqua);
}

.product-card.featured .product-icon {
  background: var(--mint);
}

.product-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card p {
  margin-bottom: 28px;
}

.card-link,
.status-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 400;
}

.card-link {
  color: var(--white);
  background: var(--ink);
}

.card-link:hover {
  background: var(--green-deep);
}

.status-label {
  color: var(--ink);
  background: var(--mint);
}

.status-label.planned {
  color: var(--ink);
  background: rgba(210, 100, 50, 0.2);
}

.status-label.exploring {
  color: var(--ink);
  background: rgba(159, 225, 229, 0.72);
}

.quality {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.quality::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.56)),
    url("assets/root-pattern.svg") left -160px bottom -90px / 820px auto no-repeat;
  opacity: 0.86;
  pointer-events: none;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.standards-list article {
  min-height: 216px;
  padding: 28px;
  background: rgba(251, 251, 247, 0.78);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standards-list p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.contact-section {
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 30%, rgba(159, 225, 229, 0.24), transparent 22rem),
    linear-gradient(125deg, #07181c, var(--ink));
}

.contact-section h2 {
  max-width: 780px;
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.contact-actions {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(159, 225, 229, 0.28);
  border-radius: 999px;
  background: rgba(251, 251, 247, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.email-link {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: rgba(159, 225, 229, 0.96);
  font-family: var(--ui);
  font-size: 1.05rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.email-link:hover {
  color: var(--mint);
}

.contact-actions .button-light {
  min-height: 44px;
  padding: 0 20px;
  color: var(--white);
  background: rgba(159, 225, 229, 0.16);
  border-color: rgba(159, 225, 229, 0.36);
}

.contact-actions .button-light:hover {
  color: var(--ink);
  background: var(--aqua);
  border-color: var(--aqua);
}

.site-footer {
  padding: 46px 0;
  background: #07181c;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-note {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 8px;
  font-family: var(--ui);
  font-size: 0.92rem;
}

.footer-links a {
  color: var(--white);
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--aqua);
}

@media (max-width: 1080px) {
  .about-grid,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  h1 {
    max-width: 12.9ch;
    font-size: clamp(2.85rem, 7.5vw, 4.45rem);
  }

  .hero-copy {
    max-width: 560px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1184px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .site-header {
    position: relative;
    color: var(--ink);
    background: var(--paper);
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .brand-logo {
    width: 212px;
    filter: none;
    opacity: 1;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: flex-start;
    gap: 10px 12px;
    color: var(--ink);
    font-size: 0.88rem;
  }

  .site-nav a {
    min-height: 36px;
    padding-inline: 10px;
  }

  .site-nav a:hover {
    color: var(--green-deep);
    background: rgba(159, 225, 229, 0.22);
  }

  .site-nav .nav-cta {
    grid-column: 1 / -1;
    width: auto;
    max-width: 100%;
    margin-left: 0;
    margin-top: 4px;
    color: var(--white);
    background: var(--ink);
  }

  .site-nav .nav-cta:hover {
    color: var(--white);
    background: #07181c;
  }

  section[id] {
    scroll-margin-top: 158px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--paper);
  }

  .hero::before {
    display: none;
  }

  .hero-bg {
    order: 2;
    width: 100%;
    height: auto;
  }

  .hero-grid {
    order: 1;
    display: block;
    min-height: 0;
    padding-block: 48px 34px;
  }

  .hero-copy {
    max-width: 680px;
    text-shadow: none;
  }

  .hero .eyebrow {
    max-width: 34ch;
    color: var(--green-deep);
  }

  .hero h1 {
    max-width: 11.2ch;
    color: var(--ink);
  }

  .hero h1 span {
    color: var(--green);
  }

  .hero .hero-subhead {
    color: #233b3c;
  }

  .hero .button-primary {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }

  .hero .button-secondary {
    color: var(--ink);
    border-color: var(--ink);
    background: transparent;
  }

  .about {
    margin-top: -30px;
    padding-top: 0;
  }

  .about-grid {
    padding: 48px 24px;
    border-radius: 24px 24px 0 0;
  }

  .value-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
  }

  .value-icon {
    width: 52px;
    height: 52px;
  }

  .material-symbols-outlined {
    font-size: 29px;
  }

  h1 {
    max-width: 11.2ch;
    margin-bottom: 20px;
    font-size: clamp(2.42rem, 10.2vw, 3.08rem);
  }

  h2 {
    margin-bottom: 20px;
    font-size: clamp(2.38rem, 12vw, 3.45rem);
  }

  .hero-subhead {
    font-size: 1.03rem;
  }

  .button {
    width: 100%;
  }

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

  .product-card {
    min-height: 0;
  }

  .contact-section {
    padding: 76px 0;
  }

  .contact-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
    border-radius: 24px;
  }

  .email-link {
    justify-content: center;
    text-align: center;
  }

  .contact-actions .button-light {
    width: 100%;
  }

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

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1184px);
  }

  .brand-logo {
    width: 194px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .email-link {
    font-size: 1rem;
  }
}
