:root {
  --ink: #10202f;
  --muted: #5e6971;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #dfe3e2;
  --teal: #1f8a80;
  --teal-dark: #0f5f5a;
  --coral: #ff6b4a;
  --blue: #315d83;
  --gold: #d8a640;
  --soft-green: #dfeee4;
  --soft-coral: #ffe2d7;
  --soft-blue: #dce8f2;
  --shadow: 0 24px 60px rgba(16, 32, 47, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.has-cookie-banner {
  padding-bottom: var(--cookie-banner-space, 210px);
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.93);
  border-bottom: 1px solid rgba(16, 32, 47, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-shell,
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-menu a,
.text-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 4px;
  cursor: pointer;
}

.site-menu a:hover,
.text-button:hover {
  color: var(--ink);
  background: rgba(16, 32, 47, 0.06);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 56px;
  align-items: center;
  padding: 62px 0 54px;
}

.hero h1,
.legal-hero h1,
.section-heading h2,
.intro-band h2,
.feature-copy h2,
.standards-grid h2,
.contact-grid h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(3.4rem, 9.6vw, 8rem);
  overflow-wrap: anywhere;
}

.hero h1 span {
  color: var(--coral);
  white-space: nowrap;
}

.lead {
  margin: 24px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.hero-actions,
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(16, 32, 47, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

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

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 38px 30px;
  background:
    linear-gradient(135deg, rgba(255, 107, 74, 0.12), transparent 32%),
    linear-gradient(160deg, #fff 0%, #edf5f2 100%);
  border: 1px solid rgba(16, 32, 47, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(16, 32, 47, 0.09);
}

.ppe-visual {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  min-height: 540px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(56, 182, 165, 0.18), transparent 36%),
    linear-gradient(160deg, #ffffff 0%, #eef7f5 100%);
}

.ppe-visual::before {
  content: none;
}

.photo-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 47, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 32, 47, 0.13);
}

.photo-card img,
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 4px;
  color: #fff;
  background: rgba(16, 32, 47, 0.78);
  font-weight: 800;
}

.photo-primary {
  grid-row: 1 / span 2;
}

.photo-secondary {
  min-height: 235px;
}

.spec-card {
  display: grid;
  align-content: end;
  min-height: 180px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.spec-card span {
  margin-bottom: 8px;
  color: #9be0d7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
}

.spec-card strong {
  font-size: 1.38rem;
  line-height: 1.12;
}

.shelf {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 22px;
  min-height: 126px;
  margin: 22px 0;
  padding: 0 18px 20px;
}

.shelf::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: var(--ink);
}

.jar,
.box,
.bottle,
.tin,
.pouch,
.tube,
.card-stack,
.round-case,
.label-block {
  position: relative;
  display: block;
  box-shadow: 0 14px 26px rgba(16, 32, 47, 0.15);
}

.jar {
  width: 72px;
  height: 104px;
  border-radius: 28px 28px 8px 8px;
  background: linear-gradient(180deg, #f9f4ea 0 30%, var(--gold) 30% 55%, #fff 55%);
}

.jar.small {
  width: 54px;
  height: 76px;
}

.jar.tall {
  height: 132px;
}

.box {
  width: 120px;
  height: 98px;
  background: var(--soft-coral);
  border: 9px solid var(--coral);
}

.box.coral::before,
.tin.blue::before,
.label-block::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 22px;
  height: 8px;
  background: rgba(16, 32, 47, 0.22);
}

.bottle {
  width: 66px;
  height: 142px;
  border-radius: 24px 24px 8px 8px;
  background: linear-gradient(180deg, var(--teal) 0 18%, #dff3ef 18% 58%, var(--teal) 58%);
}

.tin {
  width: 112px;
  height: 74px;
  border-radius: 8px 8px 4px 4px;
  background: var(--soft-blue);
  border-top: 16px solid var(--blue);
}

.pouch {
  width: 92px;
  height: 118px;
  border-radius: 10px 10px 36px 36px;
  background: linear-gradient(180deg, #fff 0 36%, var(--soft-green) 36%);
  border: 4px solid var(--teal);
}

.tube {
  width: 54px;
  height: 128px;
  border-radius: 8px 8px 26px 26px;
  background: linear-gradient(180deg, var(--coral) 0 20%, #fff 20% 64%, var(--ink) 64%);
}

.card-stack {
  width: 150px;
  height: 86px;
  background: repeating-linear-gradient(180deg, #fff 0 18px, var(--line) 18px 20px);
  border-left: 12px solid var(--gold);
}

.round-case {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 18%, var(--soft-blue) 19% 55%, var(--blue) 56%);
}

.label-block {
  width: 126px;
  height: 96px;
  background: #fff;
  border: 10px solid var(--teal);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  background: #fff;
  padding: 22px clamp(20px, 5vw, 54px);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 4px;
}

.section-shell {
  padding: 84px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-band h2,
.section-heading h2,
.feature-copy h2,
.standards-grid h2,
.contact-grid h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.intro-band p:not(.eyebrow),
.feature-copy p,
.standards-grid > div > p,
.contact-grid > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.collection-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.collection-card h3,
.standards-list h3,
.legal-card h2 {
  margin: 18px 0 8px;
  line-height: 1.15;
}

.collection-card p,
.standards-list p,
.legal-card p,
.legal-card li,
.legal-card td,
.legal-card th {
  color: var(--muted);
}

.collection-card a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  color: var(--teal-dark);
}

.product-photo {
  height: 190px;
  border-radius: 6px;
  border: 1px solid rgba(16, 32, 47, 0.08);
  background: #fff;
}

.product-visual {
  height: 190px;
  border-radius: 6px;
  border: 1px solid rgba(16, 32, 47, 0.08);
  background:
    linear-gradient(180deg, transparent 0 72%, rgba(16, 32, 47, 0.1) 72% 75%, transparent 75%),
    var(--soft-green);
  position: relative;
  overflow: hidden;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  bottom: 48px;
  box-shadow: 0 8px 20px rgba(16, 32, 47, 0.15);
}

.home-care::before {
  width: 54px;
  height: 100px;
  left: 34px;
  border-radius: 18px 18px 6px 6px;
  background: var(--teal);
}

.home-care::after {
  width: 82px;
  height: 74px;
  right: 30px;
  background: #fff;
  border: 7px solid var(--coral);
}

.personal-care {
  background-color: var(--soft-coral);
}

.personal-care::before {
  width: 78px;
  height: 112px;
  left: 38px;
  border-radius: 8px 8px 34px 34px;
  background: #fff;
  border: 5px solid var(--blue);
}

.personal-care::after {
  width: 58px;
  height: 92px;
  right: 42px;
  border-radius: 24px 24px 8px 8px;
  background: var(--gold);
}

.travel {
  background-color: var(--soft-blue);
}

.travel::before {
  width: 116px;
  height: 82px;
  left: 34px;
  border-radius: 12px;
  background: var(--blue);
}

.travel::after {
  width: 64px;
  height: 104px;
  right: 36px;
  border-radius: 6px;
  background: #fff;
  border: 6px solid var(--teal);
}

.workday {
  background-color: #f4ebcd;
}

.workday::before {
  width: 88px;
  height: 104px;
  left: 36px;
  background: repeating-linear-gradient(180deg, #fff 0 15px, #e0e4e2 15px 17px);
  border-left: 10px solid var(--gold);
}

.workday::after {
  width: 82px;
  height: 70px;
  right: 34px;
  background: var(--coral);
  border-radius: 6px 6px 20px 20px;
}

.shield-kit {
  background-color: var(--soft-blue);
}

.shield-kit::before {
  width: 118px;
  height: 96px;
  left: 34px;
  border-radius: 54px 54px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(49, 93, 131, 0.18));
  border: 7px solid var(--blue);
}

.shield-kit::after {
  width: 80px;
  height: 78px;
  right: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #fff 0 16%, var(--gold) 17% 26%, var(--ink) 27% 32%, transparent 33%),
    linear-gradient(180deg, #fff 0 40%, var(--teal) 41%);
}

.gown-kit {
  background-color: #eef5ec;
}

.gown-kit::before {
  width: 88px;
  height: 118px;
  left: 40px;
  border-radius: 34px 34px 8px 8px;
  background: linear-gradient(180deg, var(--teal) 0 18%, #fff 18% 32%, var(--soft-green) 32%);
  border: 5px solid var(--teal-dark);
}

.gown-kit::after {
  width: 96px;
  height: 86px;
  right: 34px;
  border-radius: 44px 44px 12px 12px;
  background: linear-gradient(180deg, #fff 0 38%, var(--coral) 38% 48%, #fff 48%);
  border: 5px solid var(--coral);
}

.standards-section {
  background: var(--ink);
  color: #fff;
}

.standards-section .eyebrow,
.standards-section p {
  color: rgba(255, 255, 255, 0.72);
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
}

.standards-list {
  display: grid;
  gap: 14px;
}

.standards-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.standards-list h3 {
  color: #fff;
  margin-top: 0;
}

.standards-list p {
  grid-column: 2;
  margin: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 46px;
  align-items: center;
}

.policy-links {
  display: grid;
  gap: 10px;
}

.policy-links a {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.policy-links a::after {
  content: ">";
  color: var(--coral);
}

.contact-band {
  background: var(--soft-green);
  border-top: 1px solid rgba(16, 32, 47, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.button:focus-visible,
.site-menu a:focus-visible,
.text-button:focus-visible {
  outline: 3px solid rgba(31, 138, 128, 0.35);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 0.92rem;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  color: var(--muted);
  margin: 7px 0;
  text-decoration: none;
}

.footer-brand span {
  color: var(--ink);
}

.legal-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 36px;
}

.legal-hero h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.legal-hero p {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.12rem;
}

.legal-layout {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 80px;
  display: grid;
  gap: 18px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card a {
  color: var(--teal-dark);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--ink);
  background: #f5f7f5;
}

tr:last-child td {
  border-bottom: 0;
}

.notice-box {
  background: #fff8ed;
  border: 1px solid #edd6a5;
  border-radius: 6px;
  padding: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-toggles {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-toggles label {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

@media (max-width: 940px) {
  .hero,
  .intro-band,
  .standards-grid,
  .feature-row,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
    gap: 34px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .ppe-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .photo-primary,
  .photo-secondary {
    grid-row: auto;
    min-height: 260px;
  }

  .trust-strip,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .nav-shell,
  .section-shell,
  .footer-grid,
  .hero,
  .legal-hero,
  .legal-layout {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(16, 32, 47, 0.13);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 12px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 3.9rem);
  }

  .hero-visual {
    min-height: 360px;
    padding: 22px 14px;
  }

  .ppe-visual {
    min-height: auto;
    padding: 12px;
  }

  .photo-primary,
  .photo-secondary {
    min-height: 220px;
  }

  .spec-card {
    min-height: 148px;
  }

  .shelf {
    gap: 12px;
    min-height: 98px;
    margin: 14px 0;
  }

  .jar,
  .bottle,
  .tube {
    transform: scale(0.82);
    transform-origin: bottom;
  }

  .box,
  .tin,
  .card-stack,
  .label-block,
  .pouch,
  .round-case {
    transform: scale(0.78);
    transform-origin: bottom;
  }

  .trust-strip,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 58px 0;
  }

  .collection-card {
    padding: 14px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }
}
