@import url("./tokens.css");
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}
a {
  color: inherit;
  text-underline-offset: 0.2em;
}
button,
input {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip {
  position: fixed;
  top: -50px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: #000;
  color: #fff;
}
.skip:focus {
  top: 12px;
}
.site-header {
  width: var(--page);
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
}
.wordmark {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.075em;
  text-decoration: none;
}
.header-meta {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header-meta a {
  color: #000;
}
.intro {
  width: var(--page);
  margin: auto;
  padding: 48px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.intro h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(36px, 4.5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}
.intro p {
  max-width: 610px;
  margin: 5px 0 0;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
}
.search {
  width: var(--page);
  margin: 4px auto 44px;
  position: relative;
}
.search label {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-58%);
  border: 1.5px solid #000;
  border-radius: 50%;
  font-size: 0;
  pointer-events: none;
}
.search label::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  border-top: 1.5px solid #000;
  content: "";
  transform: rotate(45deg);
}
.search input {
  width: 100%;
  height: 68px;
  padding: 0 24px 0 62px;
  border: 0;
  border-radius: 0;
  background: var(--soft);
  font-size: 18px;
  outline: none;
  appearance: none;
}
.search input:focus {
  box-shadow: inset 0 0 0 1px #000;
}
.catalog {
  width: var(--page);
  margin: 36px auto 80px;
}
.gender {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.list-panel {
  border-top: 1px solid #000;
}
.list-head {
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.result-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 150px;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: 0.15s;
}
.result-row:hover,
.result-row:focus-visible {
  outline: 0;
  background: #f4f4f2;
  padding-inline: 14px;
}
.thumb {
  width: 92px;
  height: 116px;
  background: var(--soft);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}
.image-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.result-copy h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.result-copy p {
  max-width: 880px;
  margin: 10px 0 12px;
  color: var(--muted);
}
.result-meta {
  display: flex;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result-score {
  text-align: right;
}
.result-score strong {
  display: block;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.result-score span {
  font-size: 10px;
  color: var(--muted);
}
.empty {
  display: none;
  padding: 60px 0;
  border-bottom: 1px solid #000;
  font-size: 22px;
}
.data-note {
  width: var(--page);
  margin: 0 auto 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #000;
  color: var(--muted);
  font-size: 11px;
}
.data-note a {
  color: #000;
}
/* Product detail */
.breadcrumb {
  width: var(--page);
  margin: 24px auto 0;
  font-size: 12px;
}
.detail-hero {
  width: var(--page);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  border-block: 1px solid #000;
}
.detail-image {
  background: var(--soft);
  overflow: hidden;
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}
.detail-copy {
  padding: 48px clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.detail-copy h1 {
  margin: 35px 0 8px;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.88;
}
.detail-description {
  max-width: 48ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.detail-score {
  margin-top: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.detail-score strong {
  font-size: clamp(92px, 11vw, 170px);
  font-weight: 400;
  letter-spacing: -0.095em;
  line-height: 0.75;
}
.detail-score div {
  padding-bottom: 4px;
}
.detail-score div span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.detail-main {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
}
.detail-section {
  padding: 70px 50px 70px 0;
}
.detail-section + .detail-section {
  padding-left: 50px;
  border-left: 1px solid var(--rule);
}
.detail-section h2 {
  margin: 12px 0 32px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}
.verdict {
  font-size: 18px;
  line-height: 1.6;
}
.decision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
  border-top: 1px solid #000;
}
.decision div {
  padding: 20px 20px 0 0;
}
.decision div + div {
  padding-left: 20px;
  border-left: 1px solid var(--rule);
}
.decision h3 {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.decision ul {
  margin: 0;
  padding-left: 18px;
}
.decision li + li {
  margin-top: 12px;
}
.theme-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #000;
}
.theme-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--rule);
}
.theme-list span {
  font-size: 10px;
}
.theme-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.distribution {
  margin-top: 56px;
}
.bar-row {
  display: grid;
  grid-template-columns: 14px 1fr 32px;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  font-size: 11px;
}
.track {
  height: 6px;
  background: #e7e7e5;
}
.fill {
  height: 100%;
  background: #000;
}
.source-table {
  width: 100%;
  margin-top: 44px;
  border-collapse: collapse;
  font-size: 12px;
}
.source-table th,
.source-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}
.source-table th {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detail-foot {
  width: var(--page);
  margin: 30px auto 70px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
  color: var(--muted);
}
.detail-foot a {
  color: #000;
}
.policy {
  width: min(100% - 40px, 880px);
  margin: 80px auto 100px;
}
.policy h1 {
  margin: 18px 0 34px;
  font-size: clamp(58px, 9vw, 112px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.9;
}
.policy-lead {
  max-width: 38ch;
  margin: 0 0 70px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
}
.policy section {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.policy section:last-child {
  border-bottom: 1px solid var(--rule);
}
.policy h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}
.policy section p {
  margin: 0;
  color: var(--muted);
}
.policy-foot {
  width: min(100% - 40px, 880px);
  margin: 0 auto 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
}
@media (max-width: 980px) {
  .intro {
    grid-template-columns: 1fr;
  }
  .detail-hero {
    grid-template-columns: 1fr;
  }
  .detail-image {
    min-height: 600px;
  }
  .detail-main {
    grid-template-columns: 1fr;
  }
  .detail-section,
  .detail-section + .detail-section {
    padding: 60px 0;
    border-left: 0;
  }
  .detail-section + .detail-section {
    border-top: 1px solid #000;
  }
}
@media (max-width: 620px) {
  :root {
    --page: min(100% - 28px, 1440px);
  }
  .site-header {
    min-height: 66px;
  }
  .header-meta span {
    display: none;
  }
  .intro {
    padding: 36px 0 26px;
  }
  .intro h1 {
    font-size: 42px;
  }
  .search {
    margin-bottom: 32px;
  }
  .search input {
    height: 60px;
    padding-left: 52px;
    font-size: 16px;
  }
  .search label {
    left: 19px;
  }
  .catalog {
    margin-top: 24px;
  }
  .result-row {
    grid-template-columns: 58px 1fr;
  }
  .thumb {
    width: 58px;
    height: 76px;
  }
  .result-score {
    grid-column: 2;
    display: flex;
    text-align: left;
    gap: 10px;
    align-items: baseline;
  }
  .result-score strong {
    font-size: 24px;
  }
  .result-copy h2 {
    font-size: 24px;
  }
  .result-copy p {
    font-size: 13px;
  }
  .data-note,
  .detail-foot {
    flex-direction: column;
  }
  .detail-image {
    min-height: 430px;
  }
  .detail-copy {
    min-height: 560px;
    padding: 36px 0;
  }
  .detail-copy h1 {
    font-size: 68px;
  }
  .detail-score strong {
    font-size: 112px;
  }
  .decision {
    grid-template-columns: 1fr;
  }
  .decision div + div {
    padding-left: 0;
    border-left: 0;
  }
  .detail-section {
    padding-block: 50px;
  }
  .policy {
    margin-top: 50px;
  }
  .policy section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

.not-found {
  width: var(--page);
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.not-found h1 {
  max-width: 800px;
}
