:root {
  --ink: #0d2328;
  --ink-deep: #07181c;
  --ink-soft: #17383d;
  --paper: #f4f3ec;
  --paper-deep: #e8e4d7;
  --white: #ffffff;
  --muted: #647174;
  --line: rgba(13, 35, 40, 0.15);
  --lime: #d8ff62;
  --lime-soft: #ebffad;
  --coral: #ff8268;
  --blue: #b8dfe1;
  --shadow: 0 24px 64px rgba(5, 28, 33, 0.14);
  --shell: min(1180px, calc(100% - 48px));
  --announcement-height: 30px;
  --header-height: 70px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--announcement-height) + var(--header-height) + 22px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow-shell {
  max-width: 900px;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 8px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.announcement {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: var(--announcement-height);
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 24, 28, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 24, 28, 0.98);
  box-shadow: 0 12px 34px rgba(3, 17, 20, 0.2);
}

.header-inner {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo,
.footer-brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.82rem;
  font-weight: 750;
}

.site-nav > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.75);
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  padding: 10px 17px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  box-shadow: 0 10px 26px rgba(216, 255, 98, 0.2);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 32px rgba(216, 255, 98, 0.14);
}

.button-primary:hover {
  background: var(--lime-soft);
  box-shadow: 0 18px 36px rgba(216, 255, 98, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(13, 35, 40, 0.34);
}

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.text-link-dark {
  color: var(--ink);
  border-bottom-color: rgba(13, 35, 40, 0.32);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-dark {
  color: #335c61;
}

.store-hero {
  position: relative;
  min-height: 690px;
  padding: calc(var(--announcement-height) + var(--header-height) + 58px) 0 54px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.store-hero::before {
  position: absolute;
  top: -200px;
  left: -150px;
  width: 560px;
  height: 560px;
  content: "";
  background: radial-gradient(circle, rgba(216, 255, 98, 0.13), transparent 70%);
  pointer-events: none;
}

.store-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(460px, 1.02fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.hero-copy h1 {
  max-width: 670px;
  margin-top: 20px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 680;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li::before {
  margin-right: 8px;
  color: var(--lime);
  content: "✓";
}

.hero-product-visual {
  position: relative;
  min-height: 510px;
}

.hero-product-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 24, 28, 0.08), rgba(7, 24, 28, 0.72));
  border-radius: var(--radius-lg);
}

.product-sheet {
  position: absolute;
  z-index: 2;
  display: grid;
  padding: 20px 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.product-sheet span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-sheet strong {
  margin-top: 5px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.product-sheet small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.76rem;
}

.product-sheet-one {
  right: -18px;
  bottom: 45px;
  min-width: 210px;
}

.product-sheet-two {
  bottom: 152px;
  left: -34px;
  max-width: 260px;
}

.store-trust-strip {
  color: var(--white);
  background: var(--ink-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-strip-grid p {
  display: grid;
  gap: 2px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip-grid p:first-child {
  padding-left: 0;
}

.trust-strip-grid p:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip-grid strong {
  font-size: 0.83rem;
}

.trust-strip-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.section {
  padding: 86px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 38px;
}

.section-heading h2,
.included-copy h2,
.final-cta h2,
.editorial-grid h2,
.fit-grid h2 {
  max-width: 760px;
  margin-top: 13px;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  font-weight: 680;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

.section-heading > p,
.included-copy > p,
.editorial-grid > div:last-child,
.fit-grid > div:last-child {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.centered-heading {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px rgba(10, 37, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card-lime {
  border-top: 5px solid var(--lime);
}

.product-card-coral {
  border-top: 5px solid var(--coral);
}

.product-card-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  border-top: 5px solid var(--blue);
}

.product-card-dark > p,
.product-card-dark .product-price span,
.product-card-dark .product-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.product-card-dark .check-list li {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}

.product-card-dark .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.product-card-dark .button-secondary:hover {
  color: var(--ink);
}

.product-card-top {
  min-height: 137px;
}

.product-kicker,
.small-label,
.package-panel-label,
.product-badge {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--coral);
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.product-card h3 {
  max-width: 270px;
  margin-top: 10px;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 22px;
}

.product-price strong {
  font-size: 1.55rem;
}

.product-price span {
  color: var(--muted);
  font-size: 0.72rem;
}

.product-card > p {
  min-height: 92px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  color: #3c5155;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.check-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  color: #507125;
  content: "✓";
  font-weight: 900;
}

.compact-list {
  margin: 12px 0 22px;
}

.product-card .button {
  width: 100%;
  margin-top: auto;
}

.included-section {
  background: var(--paper-deep);
}

.included-grid,
.details-grid,
.editorial-grid,
.fit-grid,
.faq-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 108px);
}

.included-copy > p {
  margin-top: 22px;
}

.included-copy .text-link {
  margin-top: 24px;
}

.included-list {
  border-top: 1px solid rgba(13, 35, 40, 0.22);
}

.included-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(13, 35, 40, 0.22);
}

.included-list article > span,
.process-grid > li > span {
  color: #527079;
  font-size: 0.72rem;
  font-weight: 850;
}

.included-list h3,
.process-grid h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.included-list p,
.process-grid p {
  color: var(--muted);
  font-size: 0.85rem;
}

.process-section,
.fit-section {
  color: var(--white);
  background: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid li {
  min-height: 210px;
  padding: 25px 25px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid li:first-child {
  padding-left: 0;
}

.process-grid li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-grid > li > span {
  color: var(--lime);
}

.process-grid h3 {
  margin-top: 38px;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.comparison-section {
  background: var(--white);
}

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

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  text-align: left;
}

thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.86rem;
}

thead th span {
  display: block;
  margin-top: 5px;
  color: var(--lime);
}

tbody th {
  color: var(--muted);
  font-weight: 750;
}

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

th:last-child,
td:last-child {
  border-right: 0;
}

.faq-preview-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1.25fr);
}

.faq-preview h2 {
  margin-top: 13px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.faq-preview-grid > div:first-child > p:last-child {
  margin-top: 20px;
  color: var(--muted);
}

.faq-list,
.faq-page-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 20px 42px 20px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 750;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 18px;
  right: 3px;
  color: #547178;
  content: "+";
  font-size: 1.35rem;
  font-weight: 450;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 740px;
  padding: 0 42px 20px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.centered-action {
  margin-top: 34px;
  text-align: center;
}

.final-cta {
  padding: 58px 0;
  color: var(--white);
  background: var(--ink-soft);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.page-hero,
.product-hero {
  padding: calc(var(--announcement-height) + var(--header-height) + 72px) 0 70px;
  color: var(--white);
  background: var(--ink-deep);
}

.page-hero h1,
.product-hero h1 {
  margin-top: 15px;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  font-weight: 680;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.page-hero .narrow-shell > p:last-child,
.about-hero-grid > div > p:last-child,
.product-hero-copy > p {
  max-width: 770px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.04rem;
  line-height: 1.7;
}

.compact-page-hero,
.policy-hero {
  padding-bottom: 54px;
}

.compact-page-hero h1,
.policy-hero h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 60px;
}

.about-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.editorial-grid > div:last-child p + p {
  margin-top: 18px;
}

.company-facts {
  padding: 48px 0;
  color: var(--white);
  background: var(--ink);
}

.company-facts dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-facts dl > div {
  padding: 10px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.company-facts dl > div:first-child {
  padding-left: 0;
}

.company-facts dl > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.company-facts dt {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-facts dd {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.product-hero-lime {
  background: linear-gradient(120deg, var(--ink-deep), #163b38);
}

.product-hero-coral {
  background: linear-gradient(120deg, var(--ink-deep), #482d2d);
}

.product-hero-dark {
  background: linear-gradient(120deg, #07181c, #19363c);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.product-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.product-label {
  color: var(--lime) !important;
  font-size: 0.82rem !important;
  font-weight: 800;
}

.product-purchase-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
}

.large-price {
  display: grid;
  margin: 0 !important;
}

.large-price strong {
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1;
}

.large-price span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.purchase-note {
  margin-top: 15px !important;
  font-size: 0.75rem !important;
}

.package-panel {
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.package-panel > strong {
  display: block;
  margin-top: 18px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.package-panel > span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.package-tags span {
  padding: 8px 10px;
  color: #40575c;
  background: var(--paper);
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 700;
}

.details-grid {
  grid-template-columns: minmax(0, 1fr) 370px;
}

.details-grid h2,
.format-card h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.large-check-list {
  max-width: 710px;
  margin-top: 30px;
}

.large-check-list li {
  padding: 15px 0 15px 30px;
  font-size: 0.92rem;
}

.large-check-list li::before {
  top: 15px;
}

.format-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px rgba(10, 37, 42, 0.06);
}

.format-card h2 {
  font-size: 1.7rem;
}

.format-card ul {
  margin: 22px 0;
  padding-left: 18px;
  color: #40575c;
  font-size: 0.84rem;
}

.format-card li + li {
  margin-top: 10px;
}

.format-card > p:last-child {
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.fit-grid {
  align-items: center;
}

.fit-grid h3 {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 1.15rem;
}

.fit-grid .text-link {
  margin-top: 20px;
}

.light-process {
  color: var(--ink);
  border-color: var(--line);
}

.light-process li {
  border-color: var(--line);
}

.light-process > li > span {
  color: #486a70;
}

.light-process p {
  color: var(--muted);
}

.faq-page-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-page-list summary {
  padding-block: 24px;
  font-size: 1.02rem;
}

.faq-page-list details p {
  padding-bottom: 25px;
}

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

.contact-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.contact-card > span {
  color: #486a70;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: auto;
  font-size: 1.3rem;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.83rem;
}

.effective-date {
  display: block;
  margin-top: 22px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
}

.policy-layout aside {
  position: sticky;
  top: calc(var(--announcement-height) + var(--header-height) + 28px);
  align-self: start;
  display: grid;
  gap: 9px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.policy-layout aside p {
  margin-bottom: 5px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-layout aside a {
  color: var(--muted);
  font-size: 0.8rem;
}

.policy-layout aside a:hover {
  color: var(--ink);
}

.policy-content section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-content section + section {
  padding-top: 28px;
}

.policy-content h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.policy-content p {
  color: #465b5f;
  font-size: 0.91rem;
  line-height: 1.75;
}

.policy-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 58px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 45px;
  padding-bottom: 44px;
}

.footer-brand-block > p {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
}

.footer-title {
  margin-bottom: 13px;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-main a:not(.footer-brand) {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
}

.footer-main a:hover {
  color: var(--white);
}

.footer-legal {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  align-items: end;
  gap: 30px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.footer-legal > div:first-child,
.footer-contact {
  display: grid;
  gap: 4px;
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact a:hover {
  color: var(--white);
}

.reveal.is-reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .store-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 45px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 5.4vw, 4.25rem);
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
    min-height: 450px;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: calc(var(--announcement-height) + var(--header-height));
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px 18px 22px;
    background: rgba(7, 24, 28, 0.99);
    box-shadow: 0 18px 35px rgba(3, 17, 20, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
  }

  .menu-button {
    display: block;
  }

  .store-hero {
    padding-top: calc(var(--announcement-height) + var(--header-height) + 48px);
  }

  .store-hero-grid,
  .about-hero-grid,
  .product-hero-grid,
  .included-grid,
  .details-grid,
  .editorial-grid,
  .fit-grid,
  .faq-preview-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-visual {
    min-height: 430px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .product-card,
  .product-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

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

  .product-card-top {
    min-height: 120px;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-grid li:first-child,
  .process-grid li:nth-child(3) {
    padding-left: 0;
  }

  .light-process li:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .company-facts dl,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-facts dl > div {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .company-facts dl > div:nth-child(2),
  .company-facts dl > div:last-child {
    border-right: 0;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .policy-layout aside {
    position: static;
    grid-template-columns: repeat(5, auto);
    overflow-x: auto;
  }

  .policy-layout aside p {
    display: none;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

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

  .footer-legal > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
    --announcement-height: 36px;
    --header-height: 64px;
  }

  .announcement {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .brand-logo,
  .footer-brand img {
    width: 180px;
  }

  .store-hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-copy h1,
  .page-hero h1,
  .product-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .hero-actions,
  .product-purchase-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .product-purchase-row .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .hero-product-visual {
    min-height: 390px;
  }

  .product-sheet {
    padding: 15px 16px;
  }

  .product-sheet-one {
    right: -4px;
    bottom: 22px;
  }

  .product-sheet-two {
    bottom: 135px;
    left: -5px;
  }

  .trust-strip-grid,
  .process-grid,
  .company-facts dl,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid p,
  .trust-strip-grid p:first-child,
  .trust-strip-grid p:last-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip-grid p:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .included-copy h2,
  .final-cta h2,
  .editorial-grid h2,
  .fit-grid h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .product-card {
    padding: 24px;
  }

  .product-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }

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

  .product-card > p {
    margin-top: 18px;
  }

  .process-grid li,
  .process-grid li:first-child,
  .process-grid li:nth-child(3),
  .process-grid li:last-child {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 18px;
  }

  .light-process li,
  .light-process li:first-child,
  .light-process li:nth-child(3),
  .light-process li:last-child {
    border-bottom-color: var(--line);
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .about-hero img {
    height: 270px;
  }

  .company-facts dl > div,
  .company-facts dl > div:first-child,
  .company-facts dl > div:last-child {
    padding: 18px 0;
    border-right: 0;
  }

  .contact-card {
    min-height: 205px;
  }

  .policy-layout aside {
    grid-template-columns: repeat(5, max-content);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-legal > p {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Retail storefront */
body.cart-open {
  overflow: hidden;
}

.cart-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  padding: 8px 12px 8px 15px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cart-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.cart-icon {
  position: relative;
  width: 14px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-top: 0;
  border-radius: 2px;
}

.cart-icon::before {
  position: absolute;
  top: -5px;
  left: 3px;
  width: 6px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  content: "";
}

.cart-count {
  display: grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.68rem;
}

.category-rail {
  position: relative;
  z-index: 20;
  margin-top: calc(var(--announcement-height) + var(--header-height));
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.category-rail-inner {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-rail-inner::-webkit-scrollbar {
  display: none;
}

.category-rail a {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 750;
  transition: color 160ms ease;
}

.category-rail a:hover {
  color: #527500;
}

.category-rail a:first-child {
  color: #365300;
}

.retail-hero {
  padding: 28px 0 30px;
  background: linear-gradient(120deg, #edf2e9 0%, #e7eee3 64%, #f2f4ec 100%);
  border-bottom: 1px solid var(--line);
}

.retail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
  align-items: center;
  gap: 40px;
}

.retail-hero-copy h1 {
  max-width: 650px;
  margin: 10px 0 14px;
  font-size: clamp(2.6rem, 4.1vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.retail-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: #415257;
  font-size: 1rem;
}

.retail-hero-copy .hero-actions {
  margin: 22px 0 18px;
}

.retail-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  color: #4d5d60;
  font-size: 0.73rem;
  font-weight: 750;
}

.retail-hero-notes li::before {
  content: "✓";
  margin-right: 6px;
  color: #365300;
}

.featured-product {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  min-height: 286px;
  background: var(--white);
  border: 1px solid rgba(13, 35, 40, 0.18);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(13, 35, 40, 0.13);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.featured-product:hover {
  box-shadow: 0 26px 62px rgba(13, 35, 40, 0.17);
  transform: translateY(-3px);
}

.featured-product-art {
  padding: 14px;
  background: #d8ff62;
}

.featured-product-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.featured-product-info .product-badge {
  position: static;
  align-self: flex-start;
  margin-bottom: 12px;
}

.featured-product-info h2 {
  margin: 4px 0 8px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.featured-product-info > p:not(.product-badge, .product-kicker) {
  color: var(--muted);
  font-size: 0.84rem;
}

.featured-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  list-style: none;
}

.featured-inclusions li {
  padding: 5px 7px;
  color: #465457;
  background: #f0f2ec;
  border: 1px solid rgba(13, 35, 40, 0.08);
  border-radius: 4px;
  font-size: 0.58rem;
  font-weight: 750;
}

.product-art {
  position: relative;
  display: flex;
  min-height: 258px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  color: var(--ink);
  background: #d8ff62;
  border: 1px solid rgba(13, 35, 40, 0.18);
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(13, 35, 40, 0.08);
}

.product-art-coral {
  background: #ff9b86;
}

.product-art-dark {
  color: var(--white);
  background: #143239;
  border-color: rgba(255, 255, 255, 0.25);
}

.product-art::after {
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.product-art-layer {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 6px;
  opacity: 0.16;
  pointer-events: none;
}

.product-art-layer-one {
  top: 42%;
  right: 18px;
  width: 74px;
  height: 92px;
  transform: rotate(7deg);
}

.product-art-layer-two {
  top: 46%;
  right: 30px;
  width: 74px;
  height: 92px;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-4deg);
}

.product-art-dark::after {
  background: rgba(216, 255, 98, 0.13);
}

.product-art-brand,
.product-art-copy,
.product-art-count,
.product-art-preview {
  position: relative;
  z-index: 1;
}

.product-art-brand {
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-art-copy span,
.product-art-count span {
  display: block;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-art-copy strong {
  display: block;
  max-width: 240px;
  margin-top: 5px;
  font-size: 1.55rem;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-art-count b {
  display: block;
  font-size: 2.5rem;
  line-height: 0.9;
}

.product-art-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.product-art-preview span {
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.product-art-featured {
  height: 100%;
  min-height: 258px;
}

.retail-benefit-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.retail-benefit-strip .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.retail-benefit-strip p {
  position: relative;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
}

.retail-benefit-strip p::before {
  display: grid;
  float: left;
  width: 26px;
  height: 26px;
  margin: 2px 10px 0 0;
  place-items: center;
  color: var(--ink);
  background: var(--lime-soft);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
}

.retail-benefit-strip p:nth-child(1)::before { content: "↗"; }
.retail-benefit-strip p:nth-child(2)::before { content: "✓"; }
.retail-benefit-strip p:nth-child(3)::before { content: "$"; }
.retail-benefit-strip p:nth-child(4)::before { content: "↓"; }

.retail-benefit-strip p:first-child {
  padding-left: 0;
}

.retail-benefit-strip p:last-child {
  border-right: 0;
}

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

.retail-benefit-strip strong {
  font-size: 0.77rem;
}

.retail-benefit-strip span {
  color: var(--muted);
  font-size: 0.68rem;
}

.retail-product-section,
.shop-catalog {
  padding-block: 54px;
  background: var(--paper);
}

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

.retail-section-heading h2 {
  margin-top: 6px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.retail-section-heading > a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-grid {
  gap: 18px;
}

.retail-product-card {
  display: flex;
  overflow: hidden;
  min-height: 0;
  flex-direction: column;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(13, 35, 40, 0.16);
  border-radius: 14px;
  box-shadow: none;
}

.retail-product-card:hover {
  box-shadow: 0 16px 38px rgba(13, 35, 40, 0.1);
  transform: translateY(-3px);
}

.product-card-visual {
  position: relative;
  display: block;
  padding: 14px;
  background: #e2e5db;
  overflow: hidden;
}

.product-card-visual .product-art {
  transition: transform 220ms ease;
}

.retail-product-card:hover .product-card-visual .product-art {
  transform: scale(1.018);
}

.product-card-visual .product-badge {
  position: absolute;
  z-index: 3;
  top: 23px;
  right: 22px;
  width: auto;
  padding: 6px 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.retail-product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.retail-product-info h3 {
  margin: 3px 0 7px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.retail-product-info > p:not(.product-kicker, .product-price, .product-fit) {
  min-height: 44px;
  color: var(--muted);
  font-size: 0.8rem;
}

.retail-product-info .product-fit {
  margin-bottom: 7px;
  color: #476400;
  font-size: 0.67rem;
  font-weight: 800;
}

.product-kicker {
  color: #547200;
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.product-meta span {
  padding: 5px 8px;
  color: #405054;
  background: #eef0e8;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 750;
}

.product-details-link {
  align-self: flex-start;
  margin-top: 16px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
}

.product-details-link span {
  display: inline-block;
  transition: transform 160ms ease;
}

.product-details-link:hover span {
  transform: translateX(3px);
}

.retail-product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}

.product-price strong,
.large-price strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
}

.product-price span,
.large-price span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-cart {
  min-height: 40px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(13, 35, 40, 0.14);
}

.button-cart.is-added,
.retail-add-button.is-added,
.final-cta .button.is-added {
  color: var(--ink);
  background: var(--lime-soft);
  border-color: var(--ink);
}

.retail-category-section {
  padding-block: 54px;
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-grid a {
  display: flex;
  min-height: 175px;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-grid a:hover {
  background: var(--lime-soft);
}

.category-grid span {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.68rem;
}

.category-grid strong {
  font-size: 1rem;
}

.category-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
}

.retail-delivery-section {
  padding-block: 60px;
  background: #e9efe5;
}

.retail-delivery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.retail-delivery-image {
  overflow: hidden;
  height: 360px;
  border-radius: 12px;
}

.retail-delivery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retail-delivery-grid h2 {
  margin: 8px 0 24px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.retail-delivery-grid ol {
  margin-bottom: 20px;
  list-style: none;
}

.retail-delivery-grid li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.retail-delivery-grid li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 850;
}

.retail-delivery-grid li p {
  color: var(--muted);
  font-size: 0.8rem;
}

.retail-delivery-grid li strong {
  display: block;
  color: var(--ink);
}

.shop-heading {
  padding: 44px 0 34px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.shop-heading .shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.shop-heading h1 {
  margin: 5px 0 8px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.shop-heading p:not(.eyebrow) {
  color: var(--muted);
}

.catalog-count {
  flex: 0 0 auto;
  font-size: 0.72rem;
  text-align: right;
  text-transform: uppercase;
}

.catalog-count strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.shop-category-links {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
}

.shop-category-links a {
  flex: 0 0 auto;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
  scroll-margin-top: 165px;
}

.shop-category-links a.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--ink);
}

.retail-product-page {
  padding: 28px 0 64px;
  background: var(--white);
}

.retail-breadcrumbs {
  padding: 0 0 24px;
  color: var(--muted);
}

.retail-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 68px;
}

.retail-detail-art {
  padding: 30px;
  background: #e8ebe2;
  border-radius: 14px;
}

.product-art-detail {
  min-height: 520px;
  padding: 40px;
}

.product-art-detail .product-art-preview span {
  padding: 7px 10px;
  font-size: 0.62rem;
}

.product-art-detail .product-art-copy strong {
  max-width: 440px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.product-art-detail .product-art-count b {
  font-size: 4rem;
}

.retail-detail-info h1 {
  margin: 8px 0 6px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.retail-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: #f8f9f4;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.retail-detail-info .product-label {
  margin-bottom: 18px;
  color: #476400 !important;
  font-size: 0.78rem;
  font-weight: 800;
}

.retail-detail-info > p:not(.product-kicker, .product-label, .large-price) {
  color: var(--muted);
}

.retail-detail-info .large-price {
  margin: 24px 0 14px;
}

.retail-detail-info .large-price strong {
  color: var(--ink);
}

.retail-detail-info .large-price span {
  color: var(--muted);
}

.retail-add-button {
  width: 100%;
  border-radius: 7px;
  cursor: pointer;
}

.retail-purchase-facts {
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.retail-purchase-facts li {
  padding: 4px 0;
  color: #4f5d60;
  font-size: 0.73rem;
}

.retail-purchase-facts li::before {
  content: "✓";
  margin-right: 8px;
  color: #476400;
  font-weight: 900;
}

.small-email-order {
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 0.7rem;
}

.cart-backdrop {
  position: fixed;
  z-index: 1190;
  inset: 0;
  background: rgba(2, 15, 18, 0.56);
  backdrop-filter: blur(2px);
}

.cart-drawer {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(460px, 100%);
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  box-shadow: -20px 0 60px rgba(2, 15, 18, 0.24);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header p {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-header h2 {
  font-size: 1.45rem;
}

.cart-close {
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  padding: 60px 0;
  text-align: center;
}

.cart-empty p {
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-swatch {
  display: block;
  width: 42px;
  height: 52px;
  background: var(--lime);
  border: 1px solid rgba(13, 35, 40, 0.18);
  border-radius: 5px;
  box-shadow: inset 0 -14px 0 rgba(255, 255, 255, 0.22);
}

.cart-item-swatch-coral { background: #ff9b86; }
.cart-item-swatch-dark { background: #143239; }

.cart-item p {
  margin-bottom: 3px;
  color: #547200;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-item strong {
  font-size: 0.88rem;
}

.cart-item > div:last-child {
  flex: 0 0 auto;
  text-align: right;
}

.cart-item span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
}

.cart-item button {
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.63rem;
  cursor: pointer;
}

.cart-summary {
  padding: 20px 24px 24px;
  background: #f0f1eb;
  border-top: 1px solid var(--line);
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-subtotal strong {
  font-size: 1.35rem;
}

.cart-summary > p,
.cart-summary small {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
}

.cart-order-button {
  width: 100%;
  margin: 16px 0 8px;
  border-radius: 7px;
}

@media (max-width: 1040px) {
  .retail-hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
  }

  .featured-product {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

@media (max-width: 860px) {
  .site-nav {
    z-index: 4;
  }

  .cart-button {
    margin-left: auto;
    margin-right: 10px;
  }

  .retail-hero-grid,
  .retail-product-detail {
    grid-template-columns: 1fr;
  }

  .retail-hero-grid {
    gap: 28px;
  }

  .retail-hero-copy h1 {
    font-size: clamp(2.8rem, 9vw, 4.8rem);
  }

  .retail-benefit-strip .shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .retail-benefit-strip p:nth-child(2) {
    border-right: 0;
  }

  .retail-benefit-strip p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .retail-benefit-strip p:nth-child(3) {
    padding-left: 0;
  }

  .retail-delivery-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .retail-delivery-image {
    height: 300px;
  }

  .retail-product-detail {
    gap: 34px;
  }

  .product-art-detail {
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  .cart-button-label,
  .nav-cta {
    display: none;
  }

  .cart-button {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }

  .category-rail-inner {
    width: calc(100% - 28px);
    gap: 20px;
  }

  .retail-hero {
    padding: 28px 0 30px;
  }

  .retail-hero-grid {
    width: calc(100% - 28px);
  }

  .retail-hero-copy h1 {
    font-size: 2.75rem;
  }

  .retail-hero-copy .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .featured-product-art {
    padding: 12px;
  }

  .product-art-featured {
    min-height: 230px;
  }

  .retail-benefit-strip .shell {
    width: calc(100% - 28px);
  }

  .retail-benefit-strip p {
    padding: 12px;
  }

  .retail-product-section,
  .shop-catalog,
  .retail-category-section,
  .retail-delivery-section {
    padding-block: 42px;
  }

  .retail-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .retail-section-heading h2 {
    font-size: 2.35rem;
  }

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

  .category-grid a {
    min-height: 135px;
  }

  .retail-delivery-image {
    height: 230px;
  }

  .shop-heading {
    padding-block: 34px 28px;
  }

  .shop-heading .shell {
    align-items: start;
    flex-direction: column;
  }

  .shop-heading h1 {
    font-size: 3rem;
  }

  .catalog-count {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .retail-product-page {
    padding-top: 20px;
  }

  .retail-detail-art {
    padding: 14px;
  }

  .retail-detail-info {
    padding: 24px 20px;
  }

  .product-art-detail {
    min-height: 360px;
    padding: 24px;
  }

  .product-art-detail .product-art-copy strong {
    font-size: 2.7rem;
  }

  .retail-detail-info h1 {
    font-size: 3.2rem;
  }
}
