:root {
  --ink: #252622;
  --muted: #6d7069;
  --line: #dedfd9;
  --paper: #ffffff;
  --soft: #f5f4ef;
  --warm: #e9e0d2;
  --sage: #9aa98e;
  --accent: #506148;
  --sale: #b33a35;
  --shadow: 0 18px 50px rgba(40, 42, 36, 0.1);
  --radius: 6px;
  --max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-notice {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: #20211f;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-notice a {
  padding: 6px 16px;
}

.site-notice a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 223, 217, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 40px, var(--max));
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-logo {
  display: inline-flex;
  width: 150px;
}

.brand-logo img {
  width: 150px;
  height: auto;
}

.main-nav {
  justify-self: center;
}

.nav-list,
.footer-list,
.crumb-list,
.icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 42px);
}

.nav-list a {
  position: relative;
  display: inline-flex;
  padding: 30px 0 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon-button,
.menu-button,
.search-close,
.gallery-thumb {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.icon-button:hover,
.menu-button:hover {
  background: var(--soft);
}

.icon-button svg,
.menu-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.menu-button {
  display: none;
}

.search-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 7vh 24px;
  background: rgba(28, 29, 26, 0.62);
}

.search-dialog.is-open {
  display: block;
}

.search-panel {
  width: min(100%, 760px);
  margin-inline: auto;
  padding: clamp(24px, 5vw, 52px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.search-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.search-panel h2 {
  margin: 0;
  font-size: 22px;
}

.search-close {
  width: 38px;
  height: 38px;
  font-size: 24px;
}

.search-form {
  display: flex;
  border-bottom: 1px solid var(--ink);
}

.search-form input {
  width: 100%;
  min-width: 0;
  padding: 14px 2px;
  border: 0;
  outline: 0;
  font-size: 18px;
}

.search-form button {
  border: 0;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.search-links a,
.tag {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.toast-message {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: none;
  width: min(360px, calc(100% - 48px));
  padding: 18px 22px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.toast-message.is-visible {
  display: block;
  animation: toast-in 0.25s ease both;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-main {
  min-height: 60vh;
}

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

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

.section {
  padding-block: clamp(54px, 7vw, 104px);
}

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

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section--ink .eyebrow {
  color: #c8cabf;
}

.section-heading h1,
.section-heading h2,
.page-title,
.article-header h1,
.product-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.section-heading p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: #d9d4ca;
}

.home-hero img {
  width: 100%;
  min-height: 420px;
  max-height: calc(100vh - 124px);
  object-fit: contain;
}

.home-hero-note {
  position: absolute;
  right: clamp(18px, 4vw, 60px);
  bottom: clamp(18px, 4vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.quick-card {
  min-width: 0;
  text-align: center;
}

.quick-card-image {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--soft);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.quick-card:hover .quick-card-image {
  background: var(--warm);
  transform: translateY(-4px);
}

.quick-card-image img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.quick-card strong {
  display: block;
  margin-top: 13px;
  font-size: 14px;
  font-weight: 600;
}

.banner-stack {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
}

.image-banner {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.image-banner img {
  width: 100%;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.image-banner:hover img {
  transform: scale(1.015);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tile-card {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.tile-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.tile-card-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.story-grid img {
  width: 100%;
}

.story-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 500;
  line-height: 1.35;
}

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

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.mosaic-card:first-child {
  grid-row: 1 / 3;
}

.mosaic-card:last-child {
  grid-column: 2 / 4;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.mosaic-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.guide-grid,
.media-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.media-grid,
.collection-grid {
  grid-template-columns: repeat(3, 1fr);
}

.guide-card,
.media-card,
.collection-card {
  display: block;
  border: 1px solid var(--line);
  background: #fff;
}

.guide-card img,
.media-card img,
.collection-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.media-card img,
.collection-card img {
  aspect-ratio: 4 / 3;
}

.guide-card-body,
.media-card-body,
.collection-card-body {
  padding: 22px;
}

.guide-card h3,
.media-card h3,
.collection-card h3 {
  margin: 5px 0 8px;
  font-size: 18px;
  line-height: 1.45;
}

.guide-card p,
.media-card p,
.collection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.social-grid a {
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s ease;
}

.social-grid a:hover {
  transform: translateY(-4px);
}

.social-grid img {
  width: 100%;
}

.breadcrumbs {
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.crumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.page-hero {
  padding-block: clamp(58px, 8vw, 110px);
  background: var(--soft);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.page-title {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 62px);
}

.page-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
}

.page-hero-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.category-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(28px, 5vw, 70px);
}

.category-sidebar {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
}

.category-sidebar h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.category-sidebar a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.category-sidebar a:last-child {
  border-bottom: 0;
}

.category-results-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.category-results-top h2 {
  margin: 0;
  font-size: 26px;
}

.select-control {
  padding: 9px 34px 9px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.activity-hero,
.article-cover {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
}

.activity-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.activity-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.step::before {
  color: var(--sage);
  content: counter(steps, decimal-leading-zero);
  font-size: 25px;
  font-weight: 700;
}

.step h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

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

.article-header {
  padding-block: clamp(54px, 8vw, 106px) clamp(38px, 6vw, 70px);
  text-align: center;
}

.article-header h1 {
  max-width: 960px;
  margin-inline: auto;
  font-size: clamp(34px, 5vw, 58px);
}

.article-subtitle {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.article-body {
  padding-block: clamp(50px, 7vw, 90px);
  font-size: 17px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 2.2em 0 0.7em;
  line-height: 1.45;
}

.article-body h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.article-body h3 {
  font-size: 22px;
}

.article-body h4 {
  font-size: 18px;
}

.article-body p {
  margin: 0 0 1.3em;
}

.article-body img {
  width: auto;
  max-width: 100%;
  max-height: 820px;
  margin: 38px auto;
  object-fit: contain;
}

.article-body a {
  border-bottom: 1px solid currentColor;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.play-card {
  position: relative;
}

.play-card::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  content: "▶";
  font-size: 17px;
  transform: translate(-50%, -50%);
}

.brand-quote {
  margin: 0;
  padding: clamp(26px, 5vw, 58px);
  border-left: 3px solid var(--sage);
  background: var(--soft);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.55;
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-value {
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
}

.brand-value span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
}

.brand-value h2 {
  margin: 12px 0;
  font-size: 24px;
}

.brand-value p {
  margin: 0;
  color: var(--muted);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 115px;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumb {
  padding: 0;
  border: 1px solid transparent;
}

.gallery-thumb.is-active {
  border-color: var(--ink);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-kicker {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.product-title {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin: 28px 0;
}

.product-price strong {
  color: var(--sale);
  font-size: 34px;
}

.product-price del {
  color: var(--muted);
}

.product-features {
  margin: 0 0 28px;
  padding: 22px 22px 22px 44px;
  background: var(--soft);
}

.product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 28px;
}

.option-button {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

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

.primary-button,
.secondary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

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

.secondary-button {
  background: #fff;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.service-chip {
  padding: 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

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

.spec-table th {
  width: 140px;
  color: var(--muted);
  font-weight: 500;
}

.empty-state {
  padding: clamp(48px, 7vw, 90px);
  border: 1px solid var(--line);
  background: var(--soft);
  text-align: center;
}

.site-footer {
  padding: clamp(54px, 7vw, 86px) 0 24px;
  background: #262723;
  color: #f5f5f1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.footer-brand img {
  width: 150px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 340px;
  margin: 24px 0 0;
  color: #bdbfb7;
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.footer-list a,
.footer-list li {
  display: block;
  padding: 5px 0;
  color: #bdbfb7;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid #44463f;
  color: #92948d;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 160px 1fr auto;
    gap: 15px;
  }

  .nav-list {
    gap: 17px;
  }

  .nav-list a {
    letter-spacing: 0.04em;
  }

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

  .mosaic-grid {
    grid-template-rows: repeat(2, 230px);
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand-logo,
  .brand-logo img {
    width: 130px;
  }

  .menu-button {
    display: grid;
  }

  /* Positioned against .site-header: its sticky + backdrop-filter make it the containing
     block, so position: fixed would offset from the header, not the viewport. Anchor the
     panel to the header's bottom edge and stretch it full width (the desktop rule's
     justify-self: center would otherwise shrink it to a narrow centred column). */
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    justify-self: stretch;
    display: none;
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 16px 30px 34px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    display: block;
  }

  .nav-list a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav-list a::after {
    display: none;
  }

  .header-actions {
    position: absolute;
    right: 58px;
  }

  .home-hero img {
    min-height: 420px;
  }

  .story-grid,
  .page-hero-grid,
  .product-layout,
  .category-layout {
    grid-template-columns: 1fr;
  }

  .story-copy {
    order: -1;
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 220px 260px;
  }

  .mosaic-card:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .mosaic-card:last-child {
    grid-column: 1 / 3;
  }

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

  .category-sidebar {
    display: none;
  }

  .product-gallery {
    position: static;
  }

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

@media (max-width: 600px) {
  .container,
  .container--narrow,
  .header-inner {
    width: min(100% - 28px, var(--max));
  }

  .header-actions .account-button {
    display: none;
  }

  .home-hero img {
    min-height: 390px;
    object-position: 56% center;
  }

  .home-hero-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

  .section-heading {
    display: block;
  }

  .section-heading p,
  .section-heading .text-link {
    margin-top: 14px;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .tile-grid,
  .guide-grid,
  .media-grid,
  .collection-grid,
  .activity-gallery,
  .brand-values,
  .product-actions,
  .product-service,
  .social-grid {
    grid-template-columns: 1fr;
  }

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

  .mosaic-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 320px);
  }

  .mosaic-card:first-child,
  .mosaic-card:last-child {
    grid-column: auto;
  }

  .page-hero-image {
    max-height: 420px;
  }

  .category-results-top {
    display: block;
  }

  .select-control {
    width: 100%;
    margin-top: 15px;
  }

  .step {
    grid-template-columns: 46px 1fr;
  }

  .article-meta {
    display: block;
  }

  .product-layout {
    display: block;
  }

  .product-info {
    margin-top: 36px;
  }

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

  .footer-bottom {
    display: block;
  }
}

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