@font-face {
  font-family: Manrope;
  src: url("/media/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --ink: #122c35;
  --muted: #53666d;
  --paper: #fff;
  --mist: #edf2f4;
  --line: #d5dfe2;
  --accent: #e4f46b;
  --blue: #dce8ed;
  --max: 1440px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.65 Manrope,
    Arial,
    sans-serif;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
a.btn {
  cursor: pointer;
}
button {
  color: inherit;
}
img,
video {
  max-width: 100%;
  display: block;
}
img {
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 650;
}
h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.9rem);
}
h2 {
  font-size: clamp(2rem, 3.2vw, 3.6rem);
}
h3 {
  font-size: 1.4rem;
}
p {
  max-width: 67ch;
}
p + p {
  margin-top: 1em;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid #1682a3;
  outline-offset: 5px;
}
.wrap {
  max-width: var(--max);
  margin: auto;
  padding-inline: 4.5%;
}
.section {
  padding-block: 88px;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.muted {
  color: var(--muted);
}
.skip {
  position: fixed;
  left: 20px;
  top: -80px;
  background: var(--accent);
  padding: 10px;
  z-index: 100;
}
.skip:focus {
  top: 8px;
}
.topline {
  background: var(--ink);
  color: white;
  text-align: center;
  font-size: 0.8rem;
  padding: 8px 20px;
  letter-spacing: 0.03em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
}
.logo {
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 1;
}
.logo span {
  color: #779311;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
}
.main-nav a:hover {
  box-shadow: 0 2px var(--ink);
}
.header-help {
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: white;
  padding: 8px 14px;
}
.btn {
  border: 1px solid var(--ink);
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 23px;
  background: var(--ink);
  color: white;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.93rem;
  min-height: 50px;
  line-height: 1.3;
}
.btn:hover {
  background: #244b5b;
}
.btn.accent {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn.accent:hover {
  background: #d4e74a;
}
.btn.light {
  background: transparent;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}
.arrow {
  font-size: 1.2rem;
  line-height: 1;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--ink);
  color: white;
  min-height: 610px;
}
.hero-copy {
  padding: clamp(45px, 5vw, 86px) 8.5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 5.5vw, 6.5rem);
  line-height: 1.02;
  margin-bottom: 26px;
}
.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--accent);
}
.hero-copy > p:not(.eyebrow) {
  font-size: 1.05rem;
  color: #dde7eb;
  max-width: 39ch;
  margin-bottom: 32px;
}
.hero-image {
  position: relative;
  overflow: hidden;
  background: #e8eef1;
  min-width: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 84% 50%;
  min-height: 610px;
}
.hero-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  color: var(--ink);
}
.hero-caption span {
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-caption strong {
  display: block;
  font-size: 1rem;
}
.hero-caption a {
  flex-shrink: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.quick-facts {
  background: var(--accent);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 21px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}
.quick-facts span + span {
  border-left: 1px solid #9eae45;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 32px;
}
.section-head h2 {
  max-width: 15ch;
}
.section-head p {
  max-width: 42ch;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.category-card {
  background: var(--mist);
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.category-photo {
  height: 300px;
  background: #f4f6f7;
  overflow: hidden;
}
.category-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 28px;
  transition: transform 0.3s;
}
.category-card:hover img {
  transform: scale(1.035);
}
.category-copy {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.category-copy p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 10px;
}
.category-copy .arrow {
  font-size: 1.6rem;
}
.soft {
  background: var(--mist);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px 24px;
}
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.product-photo {
  display: block;
  background: #fff;
  aspect-ratio: 1.13;
  position: relative;
  border: 1px solid #e3e9eb;
  padding: 28px;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pack-label {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--mist);
  padding: 4px 9px;
  font-size: 0.75rem;
  font-weight: 750;
  z-index: 1;
}
.product-card h3 {
  font-size: 1.13rem;
  letter-spacing: -0.02em;
  margin-top: 19px;
  line-height: 1.4;
}
.product-card h3 a {
  text-decoration: none;
}
.product-card .tag {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 5px;
}
.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 17px;
}
.price {
  font-size: 1.3rem;
  font-weight: 750;
  white-space: nowrap;
}
.checked {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}
.product-card-bottom .text-link {
  font-size: 0.875rem;
}
.compare-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.compare-band .copy > p {
  margin-block: 22px 28px;
}
.light-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.light-pair > a {
  padding: 26px;
  background: white;
  display: block;
  text-decoration: none;
}
.light-pair img {
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 20px;
}
.light-pair strong {
  font-size: 1.1rem;
}
.light-pair span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 5px;
}
.film-section {
  background: var(--ink);
  color: white;
}
.film-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 50px;
  align-items: center;
}
.film-layout p:not(.eyebrow) {
  margin-top: 22px;
  color: #cfdee3;
}
.film-layout video {
  aspect-ratio: 16/9;
  width: 100%;
  background: #0d2028;
}
.film-layout figcaption {
  font-size: 0.8rem;
  color: #c3d0d5;
  margin-top: 13px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 50px;
}
.value-item {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.value-num {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 24px;
}
.value-item p {
  font-size: 0.95rem;
  margin-top: 15px;
  color: var(--muted);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 75px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary:after {
  content: "+";
  font-size: 1.35rem;
}
details[open] summary:after {
  content: "−";
}
.faq-list details p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.story-strip {
  background: var(--blue);
  padding-block: 60px;
}
.story-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.story-strip p {
  max-width: 65ch;
}
.story-strip h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.site-footer {
  background: var(--ink);
  color: white;
  padding-top: 65px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 45px;
  padding-bottom: 50px;
}
.footer-main .logo {
  display: block;
  margin-bottom: 24px;
}
.footer-main p {
  font-size: 0.9rem;
  color: #c9d7dc;
}
.footer-main h2 {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-main li {
  margin-bottom: 9px;
}
.footer-main a:not(.logo) {
  font-size: 0.9rem;
  color: #d9e4e8;
  text-decoration: none;
}
.footer-main a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #47616b;
  padding-block: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #c5d5dc;
  font-size: 0.8rem;
}
.footer-bottom p {
  max-width: 76ch;
}
.breadcrumbs {
  padding-block: 24px;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  text-decoration: none;
}
.page-intro {
  padding-block: 45px 60px;
}
.page-intro h1 {
  margin-bottom: 23px;
  max-width: 20ch;
}
.page-intro p {
  max-width: 61ch;
  color: var(--muted);
  font-size: 1.08rem;
}
.category-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.category-tabs a {
  border: 1px solid var(--line);
  padding: 10px 18px;
  text-decoration: none;
  font-size: 0.9rem;
}
.category-tabs a.current {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.toolbar {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  margin-block: 35px;
}
.toolbar label {
  font-size: 0.85rem;
  font-weight: 700;
}
.toolbar input,
.toolbar select {
  padding: 11px;
  background: white;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  max-width: 100%;
  border-radius: 0;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.results-count {
  font-size: 0.875rem;
  color: var(--muted);
}
.empty {
  padding: 60px 20px;
  text-align: center;
  border: 1px solid var(--line);
  grid-column: 1/-1;
}
.empty[hidden],
.product-card[hidden] {
  display: none;
}
.product-detail {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 65px;
  align-items: start;
  padding-bottom: 70px;
}
.gallery-main {
  background: #f5f7f8;
  padding: 35px;
  aspect-ratio: 1.08;
  position: relative;
}
.gallery-main a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.gallery-main .zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: white;
  padding: 6px 12px;
  font-size: 0.8rem;
  pointer-events: none;
}
.thumbs {
  display: flex;
  gap: 10px;
  padding-top: 15px;
  overflow-x: auto;
}
.thumbs button {
  flex: 0 0 72px;
  width: 72px;
  height: 76px;
  padding: 6px;
  background: white;
  border: 1px solid var(--line);
}
.thumbs button[aria-pressed="true"] {
  border: 2px solid var(--ink);
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 0.85rem;
}
.gallery-nav button {
  border: 1px solid var(--line);
  background: white;
  padding: 8px 16px;
}
.product-info h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  margin-bottom: 15px;
}
.product-info .pack {
  font-size: 0.9rem;
  color: var(--muted);
  margin-block: 12px 23px;
}
.product-info .lead {
  font-size: 1rem;
  margin-bottom: 25px;
}
.buy-area {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
  margin-block: 25px;
}
.buy-area .price {
  font-size: 1.85rem;
  margin-bottom: 20px;
}
.buy-area form,
.buy-area button {
  width: 100%;
}
.buy-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 13px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.feature-list li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 0.95rem;
}
.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.spec-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.95rem;
}
.spec-table th,
.spec-table td {
  padding: 16px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 42%;
  font-weight: 700;
}
.illustrated {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
  padding-block: 60px;
  border-bottom: 1px solid var(--line);
}
.illustrated:nth-child(even) figure {
  order: 2;
}
.illustrated h2 {
  font-size: clamp(2rem, 2.7vw, 3rem);
  margin-bottom: 25px;
}
.illustrated figure a {
  background: var(--mist);
  display: block;
}
.illustrated figure img {
  width: 100%;
  max-height: 530px;
  object-fit: contain;
}
.illustrated figcaption {
  font-size: 0.8rem;
  margin-top: 10px;
  color: var(--muted);
}
.illustrated p {
  font-size: 1rem;
  color: var(--muted);
}
.prose {
  max-width: 820px;
  margin-inline: auto;
  padding-block: 55px 85px;
}
.prose h1 {
  margin-bottom: 30px;
}
.prose h2 {
  font-size: 1.9rem;
  margin-top: 45px;
  margin-bottom: 20px;
}
.prose h3 {
  font-size: 1.25rem;
  margin-top: 25px;
  margin-bottom: 12px;
}
.prose p,
.prose li {
  color: var(--muted);
}
.prose ul,
.prose ol {
  padding-left: 24px;
}
.prose li + li {
  margin-top: 9px;
}
.prose .eyebrow {
  color: var(--ink);
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-block: 35px;
}
.help-card {
  padding: 30px;
  background: var(--mist);
}
.help-card h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.help-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.comparison {
  overflow-x: auto;
}
.comparison table {
  border-collapse: collapse;
  width: 100%;
  min-width: 580px;
  font-size: 0.95rem;
}
.comparison th,
.comparison td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 20px 16px;
  vertical-align: top;
}
.comparison th {
  background: var(--mist);
}
.comparison img {
  width: 150px;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 14px;
}
.note {
  border-left: 4px solid var(--ink);
  padding: 20px 25px;
  background: var(--mist);
  margin-block: 25px;
}
.dialog {
  border: 0;
  padding: 0;
  width: min(1120px, 95vw);
  max-height: 94vh;
  background: white;
  color: var(--ink);
}
.dialog::backdrop {
  background: rgba(8, 20, 28, 0.85);
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}
.dialog-head p {
  font-size: 0.875rem;
}
.dialog-head button {
  border: 1px solid var(--ink);
  background: white;
  padding: 8px 16px;
  font-size: 0.9rem;
}
.zoom-image {
  width: 100%;
  height: min(78vh, 900px);
  object-fit: contain;
}
.dialog-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px;
}
.dialog-controls button {
  background: white;
  border: 1px solid var(--line);
  padding: 8px 20px;
}
.notfound {
  padding-block: 90px;
  text-align: center;
}
.notfound h1 {
  margin-block: 15px 25px;
}
.notfound p {
  margin: auto auto 30px;
}
.nojs-gallery {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.nojs-gallery a {
  font-size: 0.85rem;
}
@media (min-width: 1800px) {
  body {
    font-size: 18px;
  }
  .hero {
    min-height: 720px;
  }
  .hero-image img {
    min-height: 720px;
  }
  .wrap {
    max-width: 1600px;
  }
  .header-inner {
    min-height: 96px;
  }
  .hero-copy {
    padding-left: max(8.5%, calc((100vw - 1600px) / 2));
  }
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 20px;
  }
  .header-help {
    display: none;
  }
  .hero {
    min-height: 530px;
  }
  .hero-image img {
    min-height: 530px;
  }
  .hero h1 {
    font-size: 4.6rem;
  }
  .hero-copy {
    padding-inline: 9%;
  }
  .product-detail {
    gap: 35px;
  }
  .product-grid {
    gap: 30px 18px;
  }
  .film-layout {
    gap: 35px;
  }
  .footer-main {
    gap: 25px;
  }
  .faq-layout {
    gap: 45px;
  }
  .category-photo {
    height: 240px;
  }
  .product-photo {
    padding: 20px;
  }
  .compare-band {
    gap: 35px;
  }
  .light-pair > a {
    padding: 17px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 75px;
  }
  .wrap {
    padding-inline: 6%;
  }
  .section {
    padding-block: 56px;
  }
  .topline {
    font-size: 0.75rem;
  }
  .header-inner {
    min-height: 72px;
    gap: 20px;
  }
  .logo {
    font-size: 2.2rem;
  }
  .menu-toggle {
    display: block;
    font-size: 0.875rem;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 6%;
    box-shadow: 0 12px 20px #102b3510;
    flex-wrap: wrap;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding-block: 10px;
    font-size: 1rem;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 45px 6% 42px;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 12vw, 5rem);
    max-width: 11ch;
    margin-bottom: 22px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    max-width: 45ch;
  }
  .hero-image {
    height: 390px;
  }
  .hero-image img {
    min-height: 0;
    object-position: center 58%;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .hero-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
  }
  .hero-caption strong {
    font-size: 0.9rem;
  }
  .hero-caption span,
  .hero-caption a {
    font-size: 0.8rem;
  }
  .quick-facts {
    grid-template-columns: 1fr;
    padding-block: 14px;
    gap: 9px;
    font-size: 0.83rem;
  }
  .quick-facts span + span {
    border: 0;
  }
  .section-head {
    display: block;
  }
  .section-head h2 {
    max-width: none;
  }
  .section-head p,
  .section-head > a {
    margin-top: 23px;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .category-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
  }
  .category-photo {
    height: 200px;
  }
  .category-photo img {
    padding: 20px;
  }
  .category-copy {
    border: 0;
    padding: 22px 20px;
  }
  .category-copy h3 {
    font-size: 1.4rem;
  }
  .category-copy p {
    font-size: 0.85rem;
  }
  .category-copy .arrow {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }
  .product-card h3 {
    font-size: 1rem;
  }
  .product-photo {
    padding: 16px;
    aspect-ratio: 1;
  }
  .product-card .tag {
    font-size: 0.8rem;
  }
  .pack-label {
    font-size: 0.75rem;
    top: 7px;
    left: 7px;
    padding: 3px 6px;
  }
  .product-card-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .product-card-bottom .text-link {
    font-size: 0.85rem;
  }
  .price {
    font-size: 1.2rem;
  }
  .compare-band,
  .film-layout,
  .faq-layout,
  .spec-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .light-pair {
    gap: 16px;
  }
  .light-pair > a {
    padding: 20px;
  }
  .light-pair strong {
    font-size: 1rem;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  .value-num {
    margin-bottom: 18px;
  }
  .value-item h3 {
    font-size: 1.5rem;
  }
  .story-strip {
    padding-block: 44px;
  }
  .story-strip .wrap {
    display: block;
  }
  .story-strip a {
    margin-top: 25px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 0.8rem;
  }
  .page-intro {
    padding-block: 25px 35px;
  }
  .page-intro p {
    font-size: 1rem;
  }
  .category-tabs {
    gap: 8px;
  }
  .category-tabs a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .search-box {
    width: 100%;
    flex-wrap: wrap;
    gap: 7px;
  }
  .search-box input {
    width: 100%;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 45px;
  }
  .product-info h1 {
    font-size: 2.55rem;
  }
  .gallery-main {
    padding: 24px;
  }
  .illustrated {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 40px;
  }
  .illustrated:nth-child(even) figure {
    order: 0;
  }
  .illustrated h2 {
    font-size: 2rem;
  }
  .illustrated figure img {
    max-height: none;
  }
  .spec-grid h2 {
    font-size: 2rem;
  }
  .prose {
    padding: 35px 6% 60px;
  }
  .prose h1 {
    font-size: 2.6rem;
  }
  .prose h2 {
    font-size: 1.7rem;
  }
  .help-grid {
    grid-template-columns: 1fr;
  }
  .help-card {
    padding: 25px;
  }
  .breadcrumbs {
    padding-block: 20px;
    font-size: 0.8rem;
  }
  .dialog-head {
    padding: 12px;
    gap: 15px;
  }
  .dialog-head p {
    font-size: 0.8rem;
  }
  .zoom-image {
    height: 70vh;
  }
  .dialog-controls {
    padding: 10px;
  }
  .dialog-controls button {
    font-size: 0.875rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

.hero-image img {
  object-fit: contain;
  object-position: center;
  padding: 50px 45px 115px;
  mix-blend-mode: multiply;
}
.hero-image {
  background: #eef2f4;
}
@media (max-width: 760px) {
  .hero-image img {
    object-fit: contain;
    padding: 25px 35px 95px;
  }
}

.gallery,
.product-info {
  min-width: 0;
}
.thumbs {
  max-width: 100%;
}

.site-header {
  background: #fff;
}
.gallery-main {
  padding-bottom: 58px;
}
.gallery-main .zoom-hint {
  bottom: 8px;
  right: 12px;
}
@media (min-width: 1800px) {
  .main-nav a,
  .header-help,
  .footer-main a:not(.logo),
  .footer-main p,
  .btn,
  .text-link,
  .product-card-bottom .text-link {
    font-size: 1rem;
  }
  .product-card h3 {
    font-size: 1.3rem;
  }
  .product-card .tag,
  .value-item p {
    font-size: 1rem;
  }
  .checked,
  .footer-bottom {
    font-size: 0.875rem;
  }
  .price {
    font-size: 1.5rem;
  }
}

.product-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.product-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 28px;
}
@media (max-width: 760px) {
  .product-photo img {
    padding: 16px;
  }
}

.product-card-bottom {
  margin-top: auto;
  padding-top: 17px;
}
@media (max-width: 760px) {
  .footer-main > div:last-child {
    grid-column: 1/-1;
  }
  .comparison table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.8rem;
  }
  .comparison th,
  .comparison td {
    padding: 14px 8px;
    overflow-wrap: anywhere;
  }
  .comparison img {
    width: 100%;
    max-width: 150px;
  }
  .comparison .text-link {
    font-size: 0.8rem;
    gap: 4px;
  }
}
