@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #111211;
  --ink-soft: #242624;
  --paper: #ffffff;
  --mist: #f3f4f1;
  --mist-dark: #e6e8e2;
  --line: #d8dbd4;
  --muted: #62665f;
  --accent: #f35b35;
  --accent-dark: #cf4020;
  --accent-soft: #fff0ea;
  --success: #276344;
  --radius: 6px;
  --radius-large: 14px;
  --shadow: 0 18px 45px rgba(15, 18, 14, 0.09);
  --container: 1240px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #ffad91;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-140%);
}

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 3.35rem);
  font-weight: 750;
}

h3 {
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
  font-weight: 700;
}

.lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: #fff;
  background: var(--accent);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
}

.button--dark:hover {
  border-color: #303330;
  background: #303330;
}

.button--outline {
  border-color: currentColor;
  color: var(--ink);
  background: transparent;
}

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

.button--light-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: transparent;
}

.button--light-outline:hover {
  border-color: #fff;
  color: var(--ink);
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(17, 18, 17, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  width: 148px;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 38px;
  object-fit: cover;
  object-position: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link,
.nav-trigger {
  padding: 24px 0 21px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-trigger:hover {
  border-bottom-color: var(--accent);
}

.nav-dropdown-wrap {
  position: relative;
}

.nav-trigger::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: 285px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 13px;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-dropdown a:hover {
  background: var(--mist);
}

.header-amazon {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

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

.hero-grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
}

.hero-copy {
  display: flex;
  align-items: center;
  padding: 80px max(40px, calc((100vw - var(--container)) / 2));
  padding-right: clamp(40px, 6vw, 92px);
}

.hero-copy-inner {
  max-width: 680px;
}

.hero h1 {
  max-width: 760px;
}

.hero .lede {
  max-width: 610px;
  color: #c7cac4;
}

.hero-media {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  background: #e7e9e5;
}

.hero-media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: var(--accent);
  content: "";
}

.hero-media::after {
  position: absolute;
  inset: auto 7% 6% auto;
  width: 42%;
  height: 12px;
  background: var(--ink);
  content: "";
}

.hero-product-frame {
  position: relative;
  z-index: 1;
  width: min(78%, 560px);
  padding: clamp(18px, 3vw, 38px);
  background: #fff;
  box-shadow: 0 24px 80px rgba(11, 12, 11, 0.25);
  transform: rotate(-2deg);
}

.hero-product-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.trust-strip {
  color: #fff;
  background: var(--ink-soft);
}

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

.trust-item {
  min-height: 112px;
  padding: 28px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.trust-item span {
  color: #afb3ab;
  font-size: 0.79rem;
}

.section {
  padding: 92px 0;
}

.section--mist {
  background: var(--mist);
}

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

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

.section-head-copy {
  max-width: 760px;
}

.section-head p {
  margin: 17px 0 0;
  color: var(--muted);
}

.section--dark .section-head p {
  color: #b9bdb6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  position: relative;
  display: grid;
  min-height: 390px;
  align-content: end;
  overflow: hidden;
  border-radius: var(--radius-large);
  color: #fff;
  background: #1a1c1a;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transition: transform 450ms ease, opacity 300ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(9, 10, 9, 0.88) 100%);
  content: "";
}

.category-card-content {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.category-card p {
  max-width: 520px;
  margin: 13px 0 0;
  color: #d4d7d1;
}

.category-card:hover img {
  opacity: 0.78;
  transform: scale(1.025);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--accent);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  isolation: isolate;
  border-bottom: 2px solid var(--ink);
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.product-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 1 / 0.86;
  background: var(--mist);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  mix-blend-mode: multiply;
  transition: transform 350ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border-radius: 3px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: 21px 2px 22px;
}

.product-card h3 {
  min-height: 2.3em;
}

.product-card p {
  min-height: 4.6em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.product-card-body > .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 20px;
}

.brand-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.brand-band::after {
  position: absolute;
  top: -70px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 58px solid var(--accent);
  border-radius: 50%;
  content: "";
  opacity: 0.94;
}

.brand-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 420px;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
}

.brand-band-copy {
  padding: 80px 0;
}

.brand-band p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #c1c5be;
}

.brand-mark-large {
  position: relative;
  z-index: 1;
  padding: 58px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.page-hero {
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.page-hero .lede {
  max-width: 810px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: #a3a79f;
  content: "/";
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 38px;
}

.filter-chip {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.filter-chip:hover,
.filter-chip[aria-current="page"] {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.product-detail {
  padding: 60px 0 92px;
}

.product-detail-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(44px, 7vw, 96px);
}

.gallery-main {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: contain;
  padding: clamp(24px, 5vw, 64px);
  mix-blend-mode: multiply;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 84px;
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  padding: 6px;
  border: 2px solid transparent;
  border-radius: 4px;
  background: var(--mist);
  cursor: pointer;
}

.gallery-thumb[aria-current="true"] {
  border-color: var(--accent);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-summary {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.product-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-summary h1 {
  font-size: clamp(2.05rem, 4vw, 4rem);
}

.product-summary-text {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.variant-block {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.variant-label {
  margin: 0 0 11px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.variant-option {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 0.76rem;
  font-weight: 650;
  cursor: pointer;
}

.variant-option:hover,
.variant-option[aria-pressed="true"] {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.product-price {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.price-meta [data-variant-availability]:not([hidden]) {
  color: #23743c;
  font-weight: 750;
}

.amazon-cta {
  width: 100%;
  margin-top: 25px;
}

.external-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.product-spec-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.selected-reference {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  margin: 18px 0 0;
  padding: 13px 14px;
  border-left: 3px solid var(--accent);
  background: var(--mist);
  color: var(--muted);
  font-size: 0.74rem;
}

.selected-reference strong {
  color: var(--ink);
}

.selected-reference span:last-child {
  grid-column: 1 / -1;
}

.selected-reference code,
.lede code {
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--ink);
  background: #e6e8e3;
  font-family: inherit;
  font-size: 0.9em;
  font-weight: 750;
}

.product-fact-strip {
  padding: 0 0 28px;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.product-fact {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.product-fact:last-child {
  border-right: 0;
}

.product-fact dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-fact dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
}

.product-fit {
  padding-top: 72px;
  padding-bottom: 72px;
}

.product-fit-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 110px);
}

.product-fit-copy {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

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

.feature-grid--adaptive {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.feature {
  padding: 27px;
  border-top: 3px solid var(--accent);
  background: #fff;
}

.feature p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.product-story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(42px, 7vw, 94px);
}

.product-story--reverse .product-story-media {
  order: 2;
}

.product-story-media {
  overflow: hidden;
  background: var(--mist);
}

.product-story-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-story-copy p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
}

.product-checks {
  background: var(--ink);
  color: #fff;
}

.product-checks .section-head p,
.product-checks .purchase-check p {
  color: #b9bdb6;
}

.purchase-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.purchase-check {
  padding: 28px;
  background: var(--ink);
}

.purchase-check p {
  margin: 13px 0 0;
  font-size: 0.88rem;
}

.comparison-scroll {
  max-width: 100%;
  overflow-x: auto;
  border-top: 1px solid var(--ink);
}

.comparison-scroll:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.82rem;
}

.comparison-table thead th,
.comparison-table tbody th {
  color: var(--ink);
  font-weight: 750;
}

.comparison-table td {
  color: var(--muted);
}

.product-closing-cta {
  padding: 64px 0;
  color: #fff;
  background: var(--accent);
}

.product-closing-cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
}

.product-closing-cta .eyebrow,
.product-closing-cta p {
  color: #fff;
}

.product-closing-cta p:last-child {
  max-width: 720px;
  margin: 14px 0 0;
}

.product-grid--related {
  grid-template-columns: repeat(auto-fill, minmax(260px, 380px));
}

.spec-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 60px;
}

.spec-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  font-size: 0.79rem;
  font-weight: 750;
}

.spec-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.faq {
  border-top: 1px solid var(--ink);
}

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

.faq summary {
  position: relative;
  padding: 22px 48px 22px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--accent);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  max-width: 880px;
  margin: -3px 0 22px;
  color: var(--muted);
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 110px);
}

.story-mark {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.story-mark::before,
.story-mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.story-mark::before {
  top: -80px;
  right: -90px;
  width: 310px;
  height: 310px;
  border: 50px solid var(--accent);
}

.story-mark::after {
  bottom: -120px;
  left: -70px;
  width: 290px;
  height: 290px;
  border: 40px solid #fff;
  opacity: 0.14;
}

.story-mark img {
  position: relative;
  z-index: 1;
  width: min(72%, 420px);
  padding: 34px;
  background: #fff;
}

.story-copy p {
  margin: 20px 0 0;
  color: var(--muted);
}

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

.value {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.value-number {
  display: block;
  margin-bottom: 38px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.value p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.site-footer {
  padding: 70px 0 28px;
  color: #fff;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(140px, 0.48fr));
  gap: 60px;
}

.legal-container {
  max-width: 860px;
}

.page-hero--legal {
  padding-bottom: clamp(54px, 7vw, 86px);
}

.legal-updated {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.legal-copy h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

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

.legal-copy p {
  margin: 0;
  color: var(--muted);
}

.legal-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.footer-brand img {
  display: block;
  width: min(220px, 100%);
  height: auto;
  aspect-ratio: 520 / 189;
  object-fit: contain;
  padding: 10px 14px;
  background: #fff;
}

.footer-brand p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #afb3ab;
  font-size: 0.86rem;
}

.footer-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #c5c8c2;
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #8f948b;
  font-size: 0.7rem;
}

.empty-state {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--mist);
}

/* Blog */
.blog-hero,
.article-header {
  color: #fff;
  background: var(--ink);
}

.blog-hero-inner {
  padding-block: 86px 96px;
}

.blog-hero .breadcrumb,
.article-header .breadcrumb,
.blog-hero .lede {
  color: #bfc3bb;
}

.blog-hero h1 {
  max-width: 900px;
}

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

.article-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-card-media {
  display: grid;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  place-items: center;
  padding: 22px;
  background: linear-gradient(145deg, #eff1ed 0 72%, var(--accent) 72% 75%, #1b1d1b 75%);
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.025);
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.article-card-body h3 {
  margin-top: 15px;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
}

.article-card-body > p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-card-body .text-link {
  margin-top: auto;
}

.article-meta,
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.article-meta span:first-child {
  color: var(--accent-dark);
}

.article-card--featured {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  overflow: hidden;
  border: 0;
  background: var(--mist);
}

.article-card--featured .article-card-media {
  min-width: 0;
  min-height: 480px;
}

.article-card--featured .article-card-body {
  min-width: 0;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.article-card--featured h3 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.article-header-inner {
  max-width: 1040px;
  padding-block: 52px 82px;
}

.article-header h1 {
  max-width: 1000px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.article-deck {
  max-width: 800px;
  margin: 24px 0 0;
  color: #c8ccc4;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.article-byline {
  margin-top: 28px;
  color: #aeb3aa;
}

.article-cover {
  display: grid;
  min-height: 520px;
  margin-top: -34px;
  place-items: center;
  padding: clamp(30px, 6vw, 72px);
  background: linear-gradient(145deg, #eff1ed 0 76%, var(--accent) 76% 79%, #1b1d1b 79%);
}

.article-cover img {
  width: min(100%, 760px);
  max-height: 500px;
  object-fit: contain;
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: center;
  gap: clamp(42px, 6vw, 88px);
  padding-block: 86px 110px;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  max-height: calc(100vh - var(--header-height) - 60px);
  overflow: auto;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}

.article-toc > p,
.article-toc-mobile summary {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc nav,
.article-toc-mobile nav {
  display: grid;
  gap: 10px;
}

.article-toc a,
.article-toc-mobile a {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.article-toc a:hover,
.article-toc-mobile a:hover {
  color: var(--accent-dark);
}

.article-toc .toc-level-3,
.article-toc-mobile .toc-level-3 {
  padding-left: 14px;
}

.article-toc-mobile {
  display: none;
}

.article-content {
  min-width: 0;
  color: #272a26;
  font-size: 1.02rem;
}

.article-content h2 {
  margin: 76px 0 22px;
  scroll-margin-top: calc(var(--header-height) + 28px);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 46px 0 16px;
  scroll-margin-top: calc(var(--header-height) + 28px);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.article-content h4 {
  margin: 32px 0 12px;
  font-size: 1.12rem;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-table-wrap {
  margin: 0 0 24px;
}

.article-content ul,
.article-content ol {
  padding-left: 26px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-content a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content blockquote {
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  font-size: 1.1rem;
  font-weight: 600;
}

.article-content blockquote p {
  margin: 0;
}

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

.article-content table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.article-content th,
.article-content td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: #fff;
  background: var(--ink);
}

.related-articles .article-card-media {
  aspect-ratio: 16 / 9;
}

@media (max-width: 1050px) {
  .desktop-nav,
  .header-amazon {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    padding: 22px 20px 46px;
    color: #fff;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-inner {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .mobile-nav-link,
  .mobile-products-toggle {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 4px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
  }

  .mobile-products-toggle::after {
    content: "+";
    color: var(--accent);
    font-size: 1.4rem;
  }

  .mobile-products-toggle[aria-expanded="true"]::after {
    content: "–";
  }

  .mobile-products-list {
    display: none;
    margin: 0;
    padding: 8px 0 12px 16px;
    list-style: none;
  }

  .mobile-products-list[data-open="true"] {
    display: block;
  }

  .mobile-products-list a {
    display: block;
    padding: 12px 4px;
    color: #c7cac4;
    font-size: 0.88rem;
  }

  .mobile-amazon {
    width: 100%;
    margin-top: 28px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 540px;
    padding: 76px 36px;
  }

  .hero-media {
    min-height: 530px;
  }

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

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

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

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

  .product-story--reverse .product-story-media {
    order: 0;
  }

  .product-summary {
    position: static;
  }

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

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

  .article-card--featured {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-card--featured .article-card-media {
    min-height: 400px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .article-toc {
    display: none;
  }

  .article-toc-mobile {
    display: block;
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: var(--mist);
  }

  .article-toc-mobile summary {
    margin: 0;
    cursor: pointer;
  }

  .article-toc-mobile[open] summary {
    margin-bottom: 16px;
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    width: 128px;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 62px 0 56px;
  }

  .hero-copy {
    min-height: 480px;
    padding: 62px 22px;
  }

  .hero-media {
    min-height: 400px;
  }

  .hero-product-frame {
    width: 78%;
  }

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

  .trust-item,
  .trust-item:last-child {
    min-height: 0;
    padding: 21px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head .button {
    margin-top: 22px;
  }

  .category-grid,
  .product-grid,
  .article-grid,
  .article-grid--home,
  .feature-grid,
  .values-grid,
  .story-grid,
  .brand-band-grid,
  .footer-grid,
  .spec-layout {
    grid-template-columns: 1fr;
  }

  .blog-hero-inner {
    padding-block: 60px 68px;
  }

  .article-card--featured .article-card-media {
    min-height: 300px;
  }

  .article-header-inner {
    padding-block: 34px 64px;
  }

  .article-cover {
    min-height: 340px;
    margin-top: -22px;
    padding: 28px;
  }

  .article-cover img {
    max-height: 300px;
  }

  .article-layout {
    gap: 34px;
    padding-block: 54px 72px;
  }

  .article-content {
    font-size: 0.96rem;
  }

  .article-content h2 {
    margin-top: 58px;
  }

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

  .product-fact:nth-child(2n) {
    border-right: 0;
  }

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

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

  .category-card {
    min-height: 330px;
  }

  .category-card-content {
    padding: 26px;
  }

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

  .brand-band-grid {
    gap: 0;
    padding-bottom: 78px;
  }

  .brand-band::after {
    width: 260px;
    height: 260px;
    border-width: 42px;
  }

  .brand-mark-large {
    width: 82%;
    margin: 0 auto;
    padding: 36px;
  }

  .product-detail {
    padding-top: 30px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 64px;
  }

  .spec-layout {
    gap: 32px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .story-mark {
    min-height: 330px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span + span {
    margin-top: 8px;
  }
}

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

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