:root {
  --page: #f6f5f1;
  --surface: #ffffff;
  --surface-soft: #eeeee7;
  --ink: #171717;
  --muted: #62625c;
  --line: #d9d6cb;
  --accent: #2f6f63;
  --accent-dark: #184c43;
  --gold: #d9a441;
  --blue: #57738e;
  --content: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--page);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 320px);
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  min-height: 76px;
  padding: 16px max(clamp(24px, 4vw, 56px), calc((100vw - var(--content)) / 2));
  background: rgb(246 245 241 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.affiliate-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(18px, 4vw, 56px);
  color: #373731;
  background: #fff8df;
  border-bottom: 1px solid #e6d89d;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.affiliate-banner a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 46px;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  min-width: 0;
  white-space: nowrap;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #24241f;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
}

.primary-nav a:hover {
  color: var(--accent);
}

.primary-nav a:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.topic-guide-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 72%, white);
  outline-offset: 4px;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 180px;
  height: 42px;
  color: #2f2f2f;
}

.search-icon {
  position: absolute;
  left: 15px;
  pointer-events: none;
}

.search input {
  width: 100%;
  height: 100%;
  padding: 0 18px 0 39px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.search input:focus {
  box-shadow: 0 0 0 2px var(--accent) inset;
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.62fr) minmax(480px, 0.78fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: stretch;
  max-width: var(--content);
  margin: 0 auto;
  padding: 62px clamp(24px, 4vw, 56px) 64px;
}

.hero-copy,
.hero-carousel {
  max-width: none;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(54px, 5.2vw, 80px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow,
.tag {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}

.button-dark {
  color: var(--surface);
  background: var(--ink);
  border: 1px solid var(--ink);
}

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

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgb(23 23 23 / 16%);
}

.hero-carousel {
  position: relative;
  min-height: 460px;
}

.hero-track,
.hero-slide {
  height: 100%;
  min-height: 460px;
}

.hero-track {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 520ms ease,
    transform 720ms ease;
  transform: scale(1.015);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 34%, rgb(0 0 0 / 76%) 100%);
}

.hero-slide-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
  color: var(--surface);
}

.hero-slide-copy span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-slide-copy h2 {
  max-width: 520px;
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.hero-slide-copy p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 82%);
  line-height: 1.5;
}

.hero-slide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.hero-slide-meta strong,
.hero-slide-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  background: rgb(255 255 255 / 14%);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.hero-slide-meta a {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

.hero-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgb(255 255 255 / 42%);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-dots button.active {
  width: 26px;
  background: var(--surface);
}

.coverage-strip {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px) 18px;
}

.coverage-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.button-light {
  width: max-content;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--surface);
}

.section {
  max-width: var(--content);
  margin: 0 auto;
  padding: 58px clamp(24px, 4vw, 56px);
}

.section:nth-of-type(even) {
  background: color-mix(in srgb, var(--surface) 68%, var(--page));
}

.section-heading {
  display: block;
  max-width: 760px;
  margin: 0 0 28px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.topic-guides {
  border-top: 1px solid var(--line);
}

.topic-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
}

.topic-guide-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 26px;
  background: var(--surface);
  border-top: 3px solid var(--ink);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.topic-guide-card:hover {
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  transform: translateY(-4px);
  box-shadow: 0 8px 8px rgb(23 23 23 / 10%);
}

.topic-guide-card h3 {
  max-width: 17ch;
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.1;
  text-wrap: balance;
}

.topic-guide-card p:last-of-type {
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.topic-guide-card span {
  margin-top: auto;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.collection-page {
  max-width: var(--content);
  margin: 0 auto;
  padding: 42px clamp(24px, 4vw, 56px) 88px;
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(34px, 6vw, 76px) 0 clamp(38px, 5vw, 62px);
  border-bottom: 1px solid var(--line);
  min-height: 390px;
  padding: clamp(34px, 6vw, 76px);
  color: var(--surface);
  background-color: #254d48;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}

.collection-hero h1 {
  max-width: 14ch;
  margin: 12px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  text-wrap: balance;
}

.collection-hero p:last-child {
  max-width: 46ch;
  margin: 0;
  color: rgb(255 255 255 / 90%);
  font-size: 17px;
  line-height: 1.7;
}

.guide-desk .collection-hero,
.guide-cable .collection-hero,
.guide-work .collection-hero {
  background-image: url("assets/editorial/compact-workspace-guide-hero.png");
}

.guide-kitchen .collection-hero,
.guide-sink .collection-hero {
  background-image: url("assets/daily-2026-07-17/realinn-under-sink-organizer/kitchen-pantry.jpg");
}

.guide-bedroom .collection-hero {
  background-image: url("assets/daily-2026-07-17/amazon-basics-over-door-shoe-organizer/bedroom-door.jpg");
}

.collection-hero .eyebrow {
  color: #d4f0e7;
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: clamp(28px, 6vw, 96px);
  padding: 42px 0;
}

.collection-intro h2,
.collection-section h2 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  text-wrap: balance;
}

.collection-intro p,
.collection-section > p {
  max-width: 62ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.fit-check {
  align-self: start;
  padding: 22px;
  background: var(--surface-soft);
}

.fit-check h2 {
  font-size: 18px;
}

.fit-check ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: #3c3c37;
  font-size: 14px;
  line-height: 1.55;
}

.fit-check li {
  padding-left: 18px;
  position: relative;
}

.fit-check li::before {
  position: absolute;
  left: 0;
  content: "•";
  color: var(--accent);
  font-weight: 900;
}

.collection-section {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.collection-faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.collection-faq details {
  padding: 20px 0;
  border-top: 2px solid var(--ink);
}

.collection-faq summary {
  cursor: pointer;
  font-weight: 800;
  line-height: 1.4;
}

.collection-faq p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.quick-filters a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 8px rgb(23 23 23 / 9%);
}

.decision-card {
  display: flex;
  flex-direction: column;
}

.product-media {
  display: block;
  min-height: 168px;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.product-media img,
.article-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbar {
  background:
    linear-gradient(90deg, transparent 18%, #f7e6a7 18% 82%, transparent 82%),
    linear-gradient(180deg, #30302d 0 16%, transparent 16%),
    linear-gradient(135deg, #2f6f63, #d5dccf);
}

.stand {
  background:
    linear-gradient(12deg, transparent 0 42%, #2f6f63 43% 51%, transparent 52%),
    linear-gradient(0deg, transparent 0 68%, #171717 69% 76%, transparent 77%),
    linear-gradient(135deg, #e7e2d4, #57738e);
}

.cable {
  background:
    radial-gradient(circle at 35% 42%, transparent 0 16%, #171717 17% 22%, transparent 23%),
    linear-gradient(90deg, transparent 20%, #d9a441 21% 78%, transparent 79%),
    linear-gradient(135deg, #f6f5f1, #6f7f72);
}

.mouse {
  background:
    radial-gradient(ellipse at 52% 54%, #171717 0 20%, transparent 21%),
    radial-gradient(ellipse at 55% 54%, #57738e 0 34%, transparent 35%),
    linear-gradient(135deg, #e7e2d4, #2f6f63);
}

.mat {
  background:
    linear-gradient(0deg, transparent 0 22%, #171717 23% 30%, transparent 31%),
    linear-gradient(90deg, transparent 0 16%, #57738e 17% 83%, transparent 84%),
    linear-gradient(135deg, #d9a441, #f6f5f1);
}

.footrest {
  background:
    linear-gradient(12deg, transparent 0 38%, #171717 39% 48%, transparent 49%),
    radial-gradient(ellipse at 50% 64%, #2f6f63 0 30%, transparent 31%),
    linear-gradient(135deg, #e7e2d4, #d9a441);
}

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

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
}

.product-body h3,
.guide-layout h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.buying-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.buying-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: #2d2d29;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.drawback {
  margin-top: 14px !important;
  color: #4d4b45 !important;
}

.product-body ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 18px 0;
  color: #3c3c37;
  font-size: 14px;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-note {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.affiliate-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.muted-link {
  color: var(--accent-dark);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.card-actions .muted-link {
  min-height: 40px;
  padding: 0 12px;
  color: var(--surface);
  background: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  text-decoration: none;
}

.card-actions .muted-link:hover {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.card-actions .text-link:first-child {
  min-height: 40px;
  align-items: center;
}

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

.article-page {
  max-width: var(--content);
  margin: 0 auto;
  padding: 58px clamp(24px, 4vw, 56px) 96px;
}

.article-shell {
  max-width: 1180px;
  margin: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 800;
}

.article-shell h1 {
  max-width: 860px;
  margin: 10px 0 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.article-intro {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.article-hero {
  min-height: 320px;
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.article-shell section {
  max-width: 920px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.article-shell h2 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.12;
  text-wrap: balance;
}

.article-shell p,
.article-shell li {
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}

.article-shell ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.verdict-box {
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.pros-cons > div {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.source-note {
  max-width: 680px;
  margin: 28px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  margin: 34px 0;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
}

.gallery-thumbs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.gallery-thumbs button {
  display: block;
  width: 86px;
  height: 86px;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.gallery-thumbs button.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink) inset;
}

.gallery-thumbs img,
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gallery-main figcaption {
  padding: 10px 14px;
  color: var(--muted);
  background: var(--surface);
  font-size: 13px;
  line-height: 1.5;
}

.score-card {
  align-self: start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.score-card h2 {
  margin: 10px 0 10px;
  font-size: 30px;
  line-height: 1.05;
}

.score-card p {
  color: var(--muted);
  line-height: 1.65;
}

.score-table {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.score-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(110px, 0.75fr) 54px;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
}

.score-track {
  height: 10px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.score-track i {
  display: block;
  height: 100%;
  background: var(--accent-dark);
}

.deep-review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deep-review h2,
.fit-grid h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.deep-review p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.image-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px !important;
}

.image-detail-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-detail-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-detail-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}

.image-detail-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.image-detail-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.fit-grid > div {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-section {
  background: var(--surface-soft);
  max-width: none;
}

.guide-section .section-heading,
.guide-layout {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(24px, 4vw, 56px);
  padding-left: clamp(24px, 4vw, 56px);
}

.guide-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 58px;
}

.guide-section.section {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.guide-layout article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-layout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.info-section {
  padding-top: 76px;
  padding-bottom: 52px;
  border-top: 1px solid var(--line);
}

.info-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.info-head p {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.info-head h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-wrap: balance;
}

.info-head span {
  display: block;
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

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

.info-card {
  min-height: 168px;
  padding: 24px;
  background: color-mix(in srgb, var(--surface) 86%, var(--page));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card h3 {
  max-width: 18ch;
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
  text-wrap: balance;
}

.info-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

.contact-band {
  display: grid;
  justify-items: center;
  max-width: none;
  padding-top: 62px;
  padding-bottom: 82px;
  text-align: center;
  background: var(--ink);
  color: var(--surface);
}

.contact-band h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
  text-wrap: balance;
}

.contact-band p {
  margin: 16px 0 24px;
  color: rgb(255 255 255 / 72%);
  font-size: 17px;
  line-height: 1.6;
}

.contact-band .button-dark {
  min-width: min(420px, 100%);
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 520px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(36px, 7vw, 96px);
  max-width: var(--content);
  margin: 0 auto;
  padding: 44px clamp(24px, 4vw, 56px) 56px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  line-height: 1.6;
}

.footer-disclosure {
  margin-top: 8px !important;
  font-size: 13px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  justify-content: end;
  gap: 16px 30px;
  width: 100%;
  padding-top: 4px;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand search"
      "nav nav";
    padding: 14px 28px;
  }

  .brand {
    grid-area: brand;
  }

  .primary-nav {
    grid-area: nav;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .search {
    grid-area: search;
  }

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

  .coverage-strip {
    grid-template-columns: 1fr;
  }

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

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

  .site-footer nav {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 18px 24px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-carousel,
  .hero-track,
  .hero-slide {
    min-height: 340px;
  }

  .coverage-strip {
    padding: 0 18px 10px;
  }

  .hero-slide-copy {
    padding: 20px;
  }

  .section {
    padding: 42px 18px;
  }

  .article-page {
    padding: 38px 18px 56px;
  }

  .article-shell h1 {
    font-size: 42px;
  }

  .article-intro {
    font-size: 17px;
    line-height: 1.65;
  }

  .product-grid,
  .topic-guide-grid,
  .guide-layout,
  .info-grid,
  .pros-cons,
  .product-detail-panel,
  .deep-review,
  .image-detail-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .collection-page {
    padding: 24px 18px 56px;
  }

  .collection-hero,
  .collection-intro,
  .collection-faq {
    grid-template-columns: 1fr;
  }

  .collection-hero h1 {
    font-size: 42px;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
  }

  .gallery-main {
    min-height: 320px;
  }

  .site-footer {
    padding: 34px 18px 42px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button,
  .card-actions .muted-link,
  .card-actions .text-link:first-child {
    min-height: 44px;
  }
}
