:root {
  --ink: #111612;
  --ink-soft: #3d443f;
  --paper: #fbfaf5;
  --paper-2: #f0f3ed;
  --green: #153f2d;
  --green-bright: #9ad85f;
  --blue: #7fb7d6;
  --red: #d94836;
  --line: rgba(17, 22, 18, 0.14);
  --shadow: 0 18px 60px rgba(17, 22, 18, 0.14);
  --max: 1180px;
}

* {
  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;
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--green-bright);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(251, 250, 245, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.announcement {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: var(--green-bright);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.nav-shell {
  display: grid;
  max-width: var(--max);
  min-height: 76px;
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-mark {
  display: inline-flex;
  width: 132px;
  align-items: center;
}

.brand-mark img {
  width: 100%;
  height: auto;
  padding: 4px;
  background: #fff;
  border-radius: 8px;
}

.site-menu {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-menu a {
  position: relative;
}

.site-menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.product-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 900;
}

.nav-cta {
  padding: 0 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.is-scrolled .nav-cta,
.menu-active .nav-cta {
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

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

.hero-media {
  background-image: url("assets/img/webp/hero-wide.webp");
  background-position: center top;
  background-size: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background: rgba(8, 16, 11, 0.64);
}

.hero-inner {
  position: relative;
  display: flex;
  max-width: var(--max);
  min-height: 700px;
  align-items: flex-end;
  margin: 0 auto;
  padding: 160px 24px 58px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow,
.shop-panel .eyebrow {
  color: var(--green-bright);
}

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

h1,
h2 {
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: 5.4rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 3.4rem;
}

h3 {
  line-height: 1.05;
  font-size: 1.28rem;
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

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

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.hero-proof {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof div {
  padding: 18px 20px 0 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.1rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.ticker div {
  min-height: 72px;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.ticker div:nth-child(2) {
  background: var(--blue);
}

.ticker div:nth-child(3) {
  background: var(--green);
  color: #fff;
}

.ticker div:nth-child(4) {
  border-right: 0;
  background: var(--red);
  color: #fff;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 22, 18, 0.08);
}

.product-card picture {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-2);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card a:hover img,
.product-card a:focus-visible img {
  transform: scale(1.04);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 54px;
  margin-bottom: 10px;
}

.product-card p {
  min-height: 72px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 18px;
}

.swatches span {
  display: inline-flex;
  width: 34px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 900;
}

.swatches .muted {
  opacity: 0.32;
  text-decoration: line-through;
}

.product-link {
  width: 100%;
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
}

.price-check {
  background: var(--green);
  color: #fff;
}

.price-check-inner {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 86px 24px;
}

.price-check h2 {
  margin-bottom: 0;
}

.price-check p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.price-bars {
  display: grid;
  gap: 12px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.price-row span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.price-row strong {
  font-size: 1.35rem;
}

.price-row.malarkey {
  background: var(--green-bright);
  color: var(--ink);
}

.price-row.malarkey span {
  color: var(--ink);
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 52px;
  align-items: center;
}

.fit-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.feature-list span {
  color: var(--red);
  font-weight: 950;
}

.feature-list h3 {
  margin-bottom: 6px;
}

.feature-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.fit-media {
  position: relative;
}

.fit-media picture {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.fit-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.spec-stack {
  display: grid;
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(220px, calc(100% - 32px));
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 22, 18, 0.2);
}

.spec-stack div {
  padding: 16px;
  background: var(--ink);
  color: #fff;
}

.spec-stack div + div {
  background: var(--green-bright);
  color: var(--ink);
}

.spec-stack strong,
.spec-stack span {
  display: block;
}

.spec-stack strong {
  font-size: 1.55rem;
  line-height: 1;
}

.spec-stack span {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-band {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.image-band picture,
.image-band img {
  width: 100%;
  height: 100%;
}

.image-band picture {
  position: absolute;
  inset: 0;
}

.image-band img {
  object-fit: cover;
  opacity: 0.58;
}

.image-band-copy {
  position: relative;
  display: flex;
  max-width: var(--max);
  min-height: 360px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 42px 24px;
}

.image-band-copy span {
  max-width: 720px;
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.image-band-copy a {
  min-width: 190px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.story-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

figure {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

blockquote {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.28;
}

figcaption {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.shop-panel {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto 96px;
  padding: 46px 24px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.shop-panel h2 {
  margin-bottom: 8px;
}

.shop-panel p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(240px, 0.8fr) 1fr;
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 44px 24px 56px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 154px;
  margin-bottom: 12px;
  padding: 4px;
  background: #fff;
  border-radius: 8px;
}

.site-footer p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer a {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }

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

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

  .price-check-inner,
  .fit-section,
  .story-section {
    grid-template-columns: 1fr;
  }

  .price-check p {
    grid-column: auto;
  }

  .story-media {
    max-width: 520px;
  }
}

@media (max-width: 780px) {
  .announcement {
    min-height: 38px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.7rem;
  }

  .nav-shell {
    min-height: 68px;
    grid-template-columns: 118px auto;
    gap: 12px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 112px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-menu {
    position: fixed;
    top: 106px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .menu-active .site-menu {
    display: flex;
  }

  .site-menu a {
    min-height: 48px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-menu a:last-child {
    border-bottom: 0;
  }

  .site-menu a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-media {
    background-position: center top;
  }

  .hero-overlay {
    background: rgba(8, 16, 11, 0.72);
  }

  .hero-inner {
    padding: 142px 18px 36px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

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

  .ticker div {
    min-height: 62px;
    padding: 18px 12px;
  }

  .section {
    padding: 66px 18px;
  }

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

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

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

  .price-check-inner {
    padding: 66px 18px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 84px;
    padding: 14px 16px;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-list p {
    grid-column: auto;
  }

  .image-band-copy {
    min-height: 320px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 34px 18px;
  }

  .image-band-copy span {
    font-size: 2.4rem;
  }

  .quote-grid,
  .shop-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .shop-panel {
    margin: 0 18px 66px;
    padding: 34px 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
