:root {
  --ink: #232720;
  --paper: #f7f8f2;
  --acid: #e5f65b;
  --quiet: #5e645c;
  --line: #dce0d5;
  --dark: #1a211e;
  --blue: #e6edf1;
  --warm: #f2eee4;
  --max: 1440px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #6e7905;
  outline-offset: 5px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 500;
}
h1 {
  font-size: clamp(44px, 5vw, 78px);
}
h2 {
  font-size: clamp(34px, 3.5vw, 54px);
}
h3 {
  font-size: 26px;
  line-height: 1.2;
}
p + p {
  margin-top: 18px;
}
ul,
ol {
  padding-left: 22px;
}
small,
.small {
  font-size: 15px;
  line-height: 1.5;
}
.wrap {
  max-width: var(--max);
  padding: 0 48px;
  margin: auto;
}
.section {
  padding: 90px 0;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 18px;
}
.muted {
  color: var(--quiet);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 24px;
  border: 1px solid transparent;
  min-height: 54px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  border-radius: 3px;
}
.btn:hover {
  background: #d5e946;
  text-decoration: none;
}
.btn.dark {
  background: var(--ink);
  color: #fff;
}
.btn.outline {
  border-color: currentColor;
  background: transparent;
}
.link-arrow {
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 20px;
}
.actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.skip {
  position: absolute;
  left: 12px;
  top: -70px;
  padding: 12px;
  background: var(--acid);
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.announcement {
  background: var(--acid);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 7px 20px;
}
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 94px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.055em;
}
.logo svg {
  width: 29px;
  height: 34px;
}
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav a {
  font-size: 15px;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  min-width: 48px;
  min-height: 48px;
  font-size: 24px;
}
.header-action {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 3px;
}
.hero {
  min-height: 690px;
  position: relative;
  isolation: isolate;
  color: white;
  display: flex;
  align-items: center;
  background: #262720;
}
.hero > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero > picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 16, 13, 0.5) 0%, transparent 80%);
}
.hero .wrap {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 90px;
}
.hero-copy {
  max-width: 590px;
}
.hero h1 {
  font-size: clamp(52px, 5.6vw, 86px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: var(--acid);
  font-style: normal;
}
.hero p {
  font-size: 19px;
  line-height: 1.55;
  max-width: 450px;
  margin-top: 26px;
  color: #eff1e7;
}
.hero .eyebrow {
  color: #eff1e7;
}
.hero-note {
  position: absolute;
  right: 26px;
  bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: #e1dfd6;
}
.hero .link-arrow {
  color: #fff;
}
.benefit-strip {
  background: var(--ink);
  color: white;
  padding: 24px 0;
}
.benefit-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-strip span {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.benefit-strip b {
  color: var(--acid);
  font-size: 24px;
  font-weight: 400;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: end;
  margin-bottom: 36px;
}
.section-head h2 {
  max-width: 700px;
}
.section-head p {
  max-width: 410px;
}
.tone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.tone-card {
  padding: 38px;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: var(--warm);
  display: grid;
  grid-template-columns: 1fr 45%;
  align-items: center;
  min-height: 340px;
}
.tone-card.daylight {
  background: var(--blue);
}
.tone-card .temp {
  font-size: clamp(44px, 4.6vw, 70px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.tone-card h3 {
  font-size: 26px;
  margin-top: 12px;
}
.tone-card p {
  font-size: 16px;
  max-width: 240px;
  margin-top: 15px;
}
.tone-card img {
  mix-blend-mode: multiply;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
}
.tone-card .link-arrow {
  margin-top: 17px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.product-miniature {
  min-width: 0;
}
.card-photo {
  display: block;
  position: relative;
  background: #fff;
  padding: 30px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.card-photo:hover img {
  transform: scale(1.025);
}
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--paper);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}
.card-detail {
  padding: 21px 0;
}
.card-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--quiet);
  margin-bottom: 8px;
}
.card-detail h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.card-meta {
  font-size: 15px;
  color: var(--quiet);
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 19px;
}
.price {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.price-check {
  display: block;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 1px;
}
.card-bottom a {
  font-size: 15px;
  font-weight: 700;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.statement {
  background: var(--acid);
  padding: 80px 0;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 85px;
  align-items: start;
}
.statement h2 {
  font-size: clamp(39px, 4vw, 64px);
}
.steps {
  counter-reset: steps;
  display: grid;
  gap: 28px;
}
.step {
  border-top: 1px solid #869237;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}
.step:before {
  counter-increment: steps;
  content: "0" counter(steps);
  font-size: 14px;
  font-weight: 700;
}
.step h3 {
  font-size: 23px;
  margin-bottom: 10px;
}
.step p {
  font-size: 16px;
  line-height: 1.65;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split > div {
  min-width: 0;
}
.split p {
  margin-top: 24px;
}
.split-photo {
  background: #fff;
  padding: 30px;
}
.split-photo img {
  width: 100%;
  max-height: 530px;
  object-fit: contain;
}
.film {
  background: var(--dark);
  color: #fff;
}
.film .eyebrow {
  color: var(--acid);
}
.film p {
  color: #d7ded2;
}
.video-shell {
  background: #111;
  position: relative;
}
video {
  display: block;
  width: 100%;
  aspect-ratio: 854/480;
  object-fit: contain;
}
.film-caption {
  font-size: 13px;
  margin-top: 14px;
  color: #c1cabb;
}
.buyer-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.buyer-grid h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.buyer-grid p {
  font-size: 16px;
  color: var(--quiet);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 90px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
summary {
  list-style: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  line-height: 1.4;
  min-height: 30px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 16px;
  color: var(--quiet);
  padding-top: 16px;
  max-width: 64ch;
}
.footer {
  background: var(--ink);
  color: #f1f4e9;
  padding: 65px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 75px;
}
.footer-intro p {
  max-width: 380px;
  font-size: 16px;
  margin-top: 18px;
  color: #bdc6b8;
}
.footer h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links {
  display: grid;
  gap: 6px;
}
.footer-links a {
  min-height: 36px;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.footer-bottom {
  border-top: 1px solid #495043;
  margin-top: 45px;
  padding-top: 25px;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  font-size: 12px;
  color: #bac1b4;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-disclosure {
  font-size: 12px;
  color: #bdc6b8;
  margin-top: 20px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 25px;
  color: var(--quiet);
  font-size: 13px;
}
.breadcrumb a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.page-intro {
  padding: 45px 0 46px;
  max-width: 880px;
}
.page-intro p {
  margin-top: 23px;
  font-size: 19px;
  max-width: 750px;
  color: var(--quiet);
}
.category-intro {
  padding-top: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}
.catalog-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 55px;
  padding: 50px 0 85px;
}
.filters {
  align-self: start;
}
.filters h2 {
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.filter-group {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 22px;
}
.filter-group label {
  font-size: 14px;
  font-weight: 600;
}
.filter-group select,
.search-input {
  width: 100%;
  border: 1px solid #aeb5a5;
  background: white;
  border-radius: 2px;
  padding: 12px;
  font-size: 15px;
  min-height: 48px;
}
.category-links {
  display: grid;
  gap: 4px;
  font-size: 15px;
}
.category-links a {
  padding: 10px 0;
  min-height: 44px;
}
.category-links a.active {
  font-weight: 700;
}
.catalog-results {
  min-width: 0;
}
.catalog-bar {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  font-size: 14px;
}
.catalog-layout .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.catalog-bar select {
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px;
  font-size: 14px;
  min-height: 44px;
  max-width: 210px;
}
.empty {
  padding: 40px 0;
}
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  padding: 35px 0 60px;
}
.gallery {
  min-width: 0;
}
.gallery-main {
  position: relative;
  background: #fff;
}
.gallery-main .zoom-link {
  display: block;
  aspect-ratio: 1;
  padding: 35px;
}
.gallery-main img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.zoom-text {
  display: block;
  background: var(--paper);
  padding: 11px 15px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.4;
}
.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.thumbs button {
  border: 1px solid var(--line);
  background: #fff;
  width: 82px;
  height: 82px;
  padding: 5px;
}
.thumbs button[aria-pressed="true"] {
  border: 2px solid var(--ink);
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.gallery-arrows button {
  font-size: 14px;
  background: none;
  border: 1px solid var(--line);
  padding: 9px 18px;
  min-height: 44px;
}
.pdp h1 {
  font-size: clamp(36px, 3.5vw, 53px);
  line-height: 1.05;
}
.pdp .lead {
  font-size: 17px;
  margin-top: 22px;
  color: var(--quiet);
}
.product-prices {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 25px;
}
.product-prices .price {
  font-size: 32px;
}
.product-prices .price-check {
  font-size: 13px;
  display: inline-block;
  margin-left: 12px;
}
.variant-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 24px 0 10px;
  font-weight: 700;
}
.variant-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variant-links a,
.variant-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 55px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-size: 14px;
}
.variant-links .selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.buy-area {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.buy-area .btn {
  width: 100%;
}
.buy-note {
  font-size: 13px;
  color: var(--quiet);
  margin-top: 12px;
}
.spec-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.spec-pills strong {
  display: block;
  font-size: 21px;
  font-weight: 500;
}
.spec-pills span {
  font-size: 12px;
  color: var(--quiet);
}
.product-story {
  border-top: 1px solid var(--line);
}
.product-story .split {
  margin-bottom: 80px;
}
.product-story .split:last-child {
  margin-bottom: 0;
}
.inline-photo {
  margin: 0;
  min-width: 0;
  background: #fff;
}
.inline-photo img {
  max-height: 550px;
  object-fit: contain;
  margin: auto;
}
.inline-photo a {
  display: block;
  padding: 25px;
}
.inline-photo figcaption {
  font-size: 13px;
  line-height: 1.5;
  padding: 15px 20px;
  border-top: 1px solid var(--line);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin-top: 30px;
}
.spec-table th,
.spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.spec-table th {
  font-weight: 600;
  width: 48%;
}
.spec-panel {
  background: #edf0e6;
}
.readable {
  max-width: 850px;
  margin: auto;
  padding: 40px 0 85px;
}
.readable h2 {
  font-size: 31px;
  margin: 45px 0 20px;
  line-height: 1.15;
}
.readable h3 {
  font-size: 24px;
  margin: 30px 0 15px;
}
.readable p,
.readable li {
  font-size: 17px;
  line-height: 1.85;
}
.readable a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-header {
  background: #edf0e5;
  padding: 45px 0 50px;
}
.service-header h1 {
  max-width: 950px;
}
.service-header p {
  margin-top: 22px;
  max-width: 760px;
}
.callout {
  background: var(--warm);
  padding: 26px 30px;
  margin: 30px 0;
  border-left: 3px solid #7c8c12;
}
.guide-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 65px;
  padding-bottom: 75px;
}
.guide-nav {
  padding-top: 45px;
  align-self: start;
  position: sticky;
  top: 30px;
  font-size: 14px;
}
.guide-nav a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  min-height: 44px;
}
.guide-body {
  min-width: 0;
}
.guide-body .readable {
  padding-top: 0;
}
.table-scroll {
  overflow: auto;
  max-width: 100%;
  min-width: 0;
}
.guide-product {
  background: #edf0e5;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 36px 0;
}
.guide-product img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: white;
}
.guide-product h3 {
  margin: 0 0 10px;
}
.guide-product p {
  font-size: 15px;
}
.guide-product .btn {
  margin-top: 15px;
  text-decoration: none;
}
.dialog {
  border: 0;
  padding: 20px;
  background: #fff;
  width: min(1100px, 95vw);
  max-height: 94vh;
}
.dialog::backdrop {
  background: #101611dd;
}
.dialog img {
  max-height: 78vh;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}
.dialog-close {
  background: var(--ink);
  color: #fff;
  border: 0;
  min-width: 48px;
  min-height: 48px;
  font-size: 24px;
}
.dialog-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
}
.dialog-nav button {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 9px 20px;
  min-height: 44px;
}
.hide,
[hidden] {
  display: none !important;
}
.not-found {
  padding: 100px 0 140px;
}
.not-found p {
  margin: 25px 0;
}
.guide-cover {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  margin: 35px 0;
}
.comparison {
  background: #eaf0df;
}
.comparison .table-scroll {
  margin-top: 30px;
}
.comparison table {
  min-width: 580px;
}
.comparison th:first-child {
  width: 35%;
}
.catalog-note {
  margin-top: 25px;
  font-size: 14px;
  color: var(--quiet);
}
.tone-chip {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  margin-right: 6px;
  background: #e9b467;
}
.tone-chip.cool {
  background: #a3bdcd;
}
.featured-guide {
  background: #edf0e5;
  padding: 42px;
}
.featured-guide h3 {
  font-size: 34px;
}
.featured-guide p {
  margin-top: 20px;
}
.film-title {
  font-size: clamp(38px, 3.5vw, 56px);
}
@media (min-width: 1600px) {
  body {
    font-size: 19px;
  }
  .wrap {
    max-width: 1600px;
    padding-left: 70px;
    padding-right: 70px;
  }
  .nav a {
    font-size: 17px;
  }
  .header-action {
    font-size: 16px;
  }
  .hero {
    min-height: 770px;
  }
  .hero-copy {
    max-width: 700px;
  }
  .hero h1 {
    font-size: 96px;
  }
  .hero p {
    font-size: 21px;
    max-width: 500px;
  }
  .card-detail h3 {
    font-size: 26px;
  }
  .card-meta,
  .card-bottom a {
    font-size: 17px;
  }
  .price-check {
    font-size: 14px;
  }
  .footer-links a {
    font-size: 17px;
  }
  .footer-disclosure,
  .footer-bottom {
    font-size: 14px;
  }
  .readable p,
  .readable li {
    font-size: 19px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    padding: 0 30px;
  }
  .nav {
    gap: 20px;
  }
  .header-action {
    display: none;
  }
  .split {
    gap: 40px;
  }
  .pdp {
    gap: 35px;
  }
  .catalog-layout {
    gap: 30px;
    grid-template-columns: 190px 1fr;
  }
  .tone-card {
    padding: 26px;
  }
  .faq-grid {
    gap: 40px;
  }
  .footer-top {
    gap: 40px;
  }
  .guide-layout {
    gap: 35px;
    grid-template-columns: 180px 1fr;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 17px;
  }
  .wrap {
    padding: 0 22px;
  }
  .announcement {
    font-size: 11px;
    padding: 8px 10px;
  }
  .header-inner {
    min-height: 78px;
  }
  .logo {
    font-size: 22px;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px 22px 25px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px #0001;
  }
  .nav.open {
    display: grid;
    gap: 0;
  }
  .nav a {
    padding: 12px 0;
    font-size: 17px;
  }
  .hero {
    min-height: 720px;
    align-items: start;
  }
  .hero .wrap {
    padding-top: 48px;
    padding-bottom: 230px;
  }
  .hero h1 {
    font-size: 54px;
    max-width: 360px;
  }
  .hero p {
    font-size: 17px;
    max-width: 325px;
    margin-top: 20px;
  }
  .hero-copy {
    max-width: 370px;
  }
  .hero > picture img {
    object-position: 67% center;
  }
  .hero:after {
    background: linear-gradient(180deg, #172019bb 0%, #17201980 48%, #17201922 100%);
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero .actions {
    gap: 15px;
    margin-top: 26px;
    align-items: start;
    flex-direction: column;
  }
  .hero .link-arrow {
    font-size: 14px;
  }
  .hero-note {
    font-size: 10px;
    right: 18px;
    bottom: 12px;
  }
  .benefit-strip {
    padding: 20px 0;
  }
  .benefit-strip .wrap {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .benefit-strip span {
    justify-content: start;
    font-size: 14px;
  }
  .benefit-strip b {
    width: 23px;
  }
  .section {
    padding: 60px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 25px;
  }
  .section-head p {
    margin-top: 20px;
  }
  .section-head .link-arrow {
    margin-top: 15px;
  }
  h2 {
    font-size: 36px;
  }
  .tone-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tone-card {
    min-height: 270px;
    padding: 27px;
    grid-template-columns: 1.05fr 1fr;
  }
  .tone-card .temp {
    font-size: 49px;
  }
  .tone-card h3 {
    font-size: 23px;
  }
  .tone-card p {
    font-size: 14px;
    line-height: 1.55;
  }
  .tone-card img {
    max-height: 190px;
  }
  .tone-card .link-arrow {
    font-size: 14px;
    gap: 10px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .card-photo {
    aspect-ratio: 1.08;
  }
  .card-detail {
    padding: 18px 0;
  }
  .card-detail h3 {
    font-size: 26px;
  }
  .card-bottom {
    margin-top: 15px;
  }
  .card-badge {
    font-size: 13px;
  }
  .statement {
    padding: 60px 0;
  }
  .statement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .statement h2 {
    font-size: 43px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split.reverse .copy {
    order: -1;
  }
  .film .split {
    gap: 36px;
  }
  .buyer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .buyer-grid > div + div {
    border-top: 1px solid var(--line);
    padding-top: 25px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer {
    padding-top: 45px;
  }
  .footer-bottom {
    display: block;
    font-size: 12px;
  }
  .footer-policy {
    margin-top: 20px;
    gap: 12px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .footer h3 {
    font-size: 12px;
  }
  .footer-disclosure {
    font-size: 12px;
    line-height: 1.65;
  }
  .page-intro {
    padding-top: 30px;
  }
  .page-intro h1 {
    font-size: 44px;
  }
  .page-intro p {
    font-size: 17px;
  }
  .catalog-layout {
    display: block;
    padding-top: 30px;
  }
  .filters {
    margin-bottom: 30px;
  }
  .filters h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .category-links {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
  }
  .category-links a {
    border: 1px solid var(--line);
    padding: 7px 11px;
    font-size: 13px;
  }
  .filter-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .filter-group {
    margin-top: 15px;
    padding-top: 12px;
  }
  .catalog-layout .product-grid {
    grid-template-columns: 1fr;
  }
  .catalog-bar {
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }
  .catalog-bar select {
    font-size: 13px;
    max-width: 175px;
  }
  .pdp {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 22px;
  }
  .pdp h1 {
    font-size: 40px;
  }
  .gallery-main .zoom-link {
    padding: 20px;
  }
  .gallery-arrows {
    margin-top: 10px;
  }
  .gallery-arrows button {
    font-size: 13px;
  }
  .pdp .eyebrow {
    font-size: 11px;
    margin-bottom: 15px;
  }
  .pdp .lead {
    font-size: 17px;
  }
  .spec-pills {
    gap: 10px;
  }
  .spec-pills strong {
    font-size: 21px;
  }
  .product-story .split {
    margin-bottom: 55px;
  }
  .product-story .split .inline-photo {
    order: 0;
  }
  .product-story .split .copy {
    order: 1;
  }
  .inline-photo a {
    padding: 15px;
  }
  .spec-table {
    font-size: 14px;
  }
  .spec-table th,
  .spec-table td {
    padding: 13px 8px;
  }
  .readable {
    padding-bottom: 55px;
  }
  .readable h2 {
    font-size: 28px;
    margin-top: 38px;
  }
  .readable p,
  .readable li {
    font-size: 16px;
  }
  .service-header {
    padding: 34px 0 40px;
  }
  .service-header h1 {
    font-size: 43px;
  }
  .service-header p {
    font-size: 17px;
  }
  .guide-layout {
    display: block;
  }
  .guide-nav {
    position: static;
    padding-top: 25px;
    padding-bottom: 35px;
  }
  .guide-nav a {
    font-size: 14px;
  }
  .guide-product {
    display: block;
    padding: 22px;
  }
  .guide-product img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  .guide-product h3 {
    font-size: 25px;
  }
  .callout {
    padding: 23px;
  }
  .dialog {
    padding: 12px;
  }
  .dialog-head {
    font-size: 12px;
  }
  .dialog img {
    max-height: 70vh;
  }
  .featured-guide {
    padding: 27px;
  }
  .featured-guide h3 {
    font-size: 30px;
  }
  .film-title {
    font-size: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
