﻿:root {
  --ink: #121316;
  --muted: #666c74;
  --line: #ded9d1;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --accent: #2f7d6f;
  --accent-strong: #19594e;
  --warm: #c76f3a;
  --blue: #436ca7;
  --shadow: 0 24px 60px rgba(18, 19, 22, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 238, 0.96) 420px),
    var(--paper);
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 3.65rem;
  font-weight: 760;
}

h2 {
  font-size: 2.8rem;
  font-weight: 720;
}

h3 {
  font-size: 1.1rem;
}

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 720;
}

.brand-logo {
  width: 34px;
  aspect-ratio: 1;
  border-radius: 8px;
}

.brand-mark {
  width: 26px;
  aspect-ratio: 1;
  border: 7px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: rgba(18, 19, 22, 0.08);
  color: var(--ink);
}

.hero,
.product-hero,
.contact-hero,
.page-hero,
.section,
.split-section,
.cta-band,
.comparison-section,
.materials-section,
.specs-section,
.form-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 42px;
  padding: 34px 0 80px;
}

.hero-copy,
.product-hero-copy {
  display: grid;
  gap: 24px;
}

.lead {
  max-width: 650px;
  font-size: 1.2rem;
}

.lead.narrow {
  max-width: 780px;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 720;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button.secondary {
  border-color: rgba(18, 19, 22, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.hero-media,
.detail-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ece6dc;
  box-shadow: var(--shadow);
}

.hero-media img,
.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  aspect-ratio: 4 / 5;
}

.hero-media img {
  object-position: 54% center;
}

.home-hero {
  min-height: auto;
  display: block;
  padding: 34px 0 44px;
}

.hero-slider {
  position: relative;
  min-height: min(660px, calc(100vh - 190px));
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 19, 22, 0.94), rgba(42, 55, 60, 0.9)),
    #121316;
  color: white;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 42px;
  padding: clamp(34px, 6vw, 72px);
  opacity: 0;
  animation: heroFade 12s infinite;
}

.hero-slide:nth-child(1) {
  opacity: 1;
}

.hero-slide-alt {
  animation-delay: 6s;
  background:
    radial-gradient(circle at 78% 22%, rgba(199, 111, 58, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(17, 47, 41, 0.86), rgba(18, 19, 22, 0.94));
}

.hero-slide h1,
.hero-slide p {
  color: white;
}

.hero-slide .lead {
  color: rgba(255, 255, 255, 0.76);
}

.hero-slide .eyebrow {
  color: #89d0c2;
}

.hero-slide .button.primary {
  background: white;
  color: var(--ink);
}

.hero-slide .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.hero-slide .hero-media {
  max-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero-product-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-product-art::before {
  content: "";
  width: min(64%, 330px);
  aspect-ratio: 1;
  border: 34px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow:
    0 -120px 0 -74px rgba(255, 255, 255, 0.5),
    0 120px 0 -74px rgba(255, 255, 255, 0.5),
    0 30px 70px rgba(0, 0, 0, 0.3);
}

.hero-product-art::after {
  content: "";
  position: absolute;
  width: min(28%, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, #89d0c2, #c76f3a, #436ca7, #89d0c2);
  box-shadow: inset 0 0 0 12px rgba(18, 19, 22, 0.84);
}

.hero-dots {
  position: absolute;
  left: clamp(34px, 6vw, 72px);
  bottom: 28px;
  display: flex;
  gap: 9px;
  z-index: 3;
}

.hero-dots span {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-dots span:first-child {
  animation: dotPulse 12s infinite;
}

.hero-dots span:last-child {
  animation: dotPulse 12s infinite 6s;
}

@keyframes heroFade {
  0%,
  45% {
    opacity: 1;
    z-index: 2;
  }

  50%,
  95% {
    opacity: 0;
    z-index: 1;
  }

  100% {
    opacity: 1;
    z-index: 2;
  }
}

@keyframes dotPulse {
  0%,
  45% {
    background: white;
  }

  50%,
  100% {
    background: rgba(255, 255, 255, 0.28);
  }
}

.trust-strip {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: rgba(18, 19, 22, 0.09);
}

.trust-strip div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-strip strong {
  font-size: 1.85rem;
  line-height: 1;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding-top: 36px;
}

.section-heading {
  max-width: 740px;
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading.with-action {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading.with-action > div {
  max-width: 740px;
  display: grid;
  gap: 14px;
}

.value-grid,
.detail-grid,
.scenario-list,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-item,
.detail-grid article,
.scenario-list article,
.compare-grid div,
.contact-card,
.contact-notes,
.option-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
}

.value-item,
.detail-grid article,
.scenario-list article,
.compare-grid div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}

.value-icon {
  width: 42px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 125, 111, 0.12);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 760;
}

.split-section,
.materials-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 42px;
  padding: 84px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-section > div:first-child,
.materials-section > div:first-child {
  display: grid;
  gap: 16px;
}

.text-link {
  width: fit-content;
  color: var(--accent-strong);
  font-weight: 760;
  border-bottom: 2px solid rgba(47, 125, 111, 0.24);
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-strip div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.spec-strip strong {
  font-size: 2.15rem;
}

.spec-strip span {
  color: rgba(255, 255, 255, 0.68);
}

.scenario-list article {
  min-height: 170px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 82px;
  padding: 34px;
  border-radius: 8px;
  background: #e8eee9;
  border: 1px solid rgba(47, 125, 111, 0.18);
}

.cta-band div {
  max-width: 760px;
  display: grid;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  max-width: 420px;
  display: grid;
  gap: 12px;
}

.site-footer p {
  font-weight: 760;
  color: var(--ink);
}

.site-footer .footer-brand p {
  font-weight: 400;
  color: var(--muted);
}

.site-footer nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-hero {
  display: grid;
  gap: 18px;
  padding: 88px 0 42px;
}

.products-hero {
  padding-bottom: 34px;
}

.product-highlights {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
  padding-bottom: 76px;
}

.product-highlights div {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.product-highlights span {
  width: 42px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 125, 111, 0.12);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 760;
}

.product-highlights strong {
  display: block;
  font-size: 1.24rem;
}

.product-grid {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 16px;
  margin: 0 auto;
  padding-bottom: 82px;
}

.product-card {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 19, 22, 0.09);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card img,
.product-placeholder {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.9) 0 22%, transparent 23%),
    linear-gradient(135deg, #22252b, #6d7477);
}

.product-card.featured img {
  aspect-ratio: 1 / 0.68;
}

.product-placeholder {
  position: relative;
}

.product-placeholder::before {
  content: "";
  position: absolute;
  inset: 24% 32%;
  border: 16px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow:
    0 -42px 0 -23px rgba(255, 255, 255, 0.5),
    0 42px 0 -23px rgba(255, 255, 255, 0.5);
}

.product-placeholder.sport {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.88) 0 22%, transparent 23%),
    linear-gradient(135deg, #1e3d35, #d1834a);
}

.product-placeholder.lite {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9) 0 22%, transparent 23%),
    linear-gradient(135deg, #d9d8d0, #436ca7);
}

.product-placeholder.classic {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.88) 0 22%, transparent 23%),
    linear-gradient(135deg, #202329, #b6b7b4 52%, #2f7d6f);
}

.product-placeholder.mini {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    linear-gradient(135deg, #f0eee7, #89d0c2 48%, #202329);
}

.product-placeholder.outdoor {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.86) 0 22%, transparent 23%),
    linear-gradient(135deg, #1e3d35, #637057 52%, #c76f3a);
}

.product-placeholder.nova {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9) 0 22%, transparent 23%),
    linear-gradient(135deg, #d9d8d0, #b6b7b4 45%, #2f7d6f);
}

.product-placeholder.pulse {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.88) 0 22%, transparent 23%),
    linear-gradient(135deg, #202329, #c76f3a 50%, #89d0c2);
}

.product-placeholder.urban {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.86) 0 22%, transparent 23%),
    linear-gradient(135deg, #22252b, #436ca7 54%, #d9d8d0);
}

.product-card-copy {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.product-catalogue {
  padding-top: 0;
  padding-bottom: 82px;
}

.catalogue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
}

.catalogue-card h2 {
  font-size: 1.45rem;
}

.catalogue-card img,
.catalogue-card .product-placeholder {
  aspect-ratio: 1 / 0.74;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18, 19, 22, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.product-showcase {
  padding-bottom: 82px;
}

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

.home-product-card {
  overflow: hidden;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.home-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.home-product-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.home-product-card img,
.home-product-card .product-placeholder {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
}

.feature-section {
  padding-top: 0;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 22px;
  align-items: center;
  min-height: 280px;
  padding: 16px;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.feature-card > div:last-child {
  display: grid;
  gap: 12px;
  padding: 8px 8px 8px 0;
}

.feature-image {
  min-height: 240px;
  border-radius: 8px;
  background: #e8eee9;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.health-image {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.92) 0 20%, transparent 21%),
    linear-gradient(135deg, #2f7d6f, #89d0c2);
}

.battery-image {
  background:
    linear-gradient(90deg, transparent 0 21%, rgba(255, 255, 255, 0.82) 21% 75%, transparent 75%),
    linear-gradient(135deg, #202329, #c76f3a);
}

.sport-image {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72) 0 16%, transparent 17%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, #1e3d35, #436ca7);
}

.durable-image {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(255, 255, 255, 0.86) 29% 38%, transparent 39%),
    linear-gradient(135deg, #22252b, #637057);
}

.review-section {
  padding-top: 0;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 0 18px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(18, 19, 22, 0.28) transparent;
}

.review-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  scroll-snap-align: start;
}

.review-card p {
  margin-top: auto;
}

.stars {
  color: var(--warm);
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}

.comparison-section {
  padding: 10px 0 92px;
}

.product-compare {
  padding-top: 0;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.05fr 1.6fr repeat(3, minmax(0, 0.9fr));
  gap: 1px;
  background: var(--line);
}

.comparison-row > * {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.comparison-row a {
  color: inherit;
  text-decoration: none;
}

.comparison-row a:hover {
  color: var(--accent);
}

.comparison-head > * {
  min-height: 52px;
  background: var(--ink);
  color: white;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-grid div {
  min-height: 180px;
}

.compare-grid span {
  color: var(--warm);
  font-size: 0.8rem;
  font-weight: 760;
  text-transform: uppercase;
}

.compare-grid strong {
  display: block;
  font-size: 1.4rem;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 42px;
  padding: 64px 0 86px;
}

.outdoor-product-hero {
  padding-bottom: 36px;
}

.detail-media {
  aspect-ratio: 5 / 4;
}

.product-hero-banner {
  aspect-ratio: 16 / 11;
}

.product-hero-banner img {
  object-position: center;
}

.product-spec-strip {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 auto 86px;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: rgba(18, 19, 22, 0.09);
}

.product-spec-strip div {
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.product-spec-strip strong {
  font-size: 1.7rem;
  line-height: 1;
}

.product-spec-strip span {
  color: var(--muted);
}

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

.detail-grid article {
  min-height: 230px;
}

.product-feature-section {
  padding-top: 0;
}

.product-feature-grid,
.function-grid,
.health-grid,
.key-spec-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.product-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-feature-grid article,
.function-grid article,
.health-grid article,
.key-spec-grid article,
.faq-grid article {
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.product-feature-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.product-feature-grid span {
  width: 42px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 125, 111, 0.12);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 760;
}

.product-story-section {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 0 0 76px;
}

.product-story-section.reverse {
  grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1.35fr);
}

.product-story-section.reverse .story-banner {
  order: 2;
}

.story-banner {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #121316;
  box-shadow: var(--shadow);
}

.story-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: grid;
  gap: 16px;
}

.smart-functions-section {
  padding-top: 8px;
}

.function-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.function-grid article,
.faq-grid article {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.health-section,
.review-summary-section,
.faq-section,
.related-products-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.health-section {
  padding: 8px 0 86px;
}

.health-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.health-grid article,
.key-spec-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.health-grid strong,
.key-spec-grid strong {
  font-size: 1.12rem;
}

.health-grid span,
.key-spec-grid span {
  color: var(--muted);
}

.note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(199, 111, 58, 0.2);
  border-radius: 8px;
  background: rgba(199, 111, 58, 0.08);
  color: var(--ink);
}

.outdoor-specs {
  padding-bottom: 78px;
}

.key-spec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.key-spec-grid article {
  background: #e7eef8;
  text-align: center;
}

.full-spec-table {
  margin-top: 24px;
}

.full-spec-table div {
  grid-template-columns: 190px 1fr;
}

.review-summary-section {
  padding-bottom: 86px;
}

.review-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: #eef3ec;
}

.review-summary-card > div:first-child {
  display: grid;
  gap: 14px;
}

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

.review-summary-grid article {
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.review-summary-grid span {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 760;
  text-transform: uppercase;
}

.faq-section {
  padding-bottom: 86px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-products-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 82px;
  padding: 34px;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.related-products-section div {
  max-width: 760px;
  display: grid;
  gap: 12px;
}

.related-products-section p,
.related-products-section h2 {
  color: white;
}

.related-products-section .eyebrow {
  color: #89d0c2;
}

.related-products-section .button.primary {
  background: white;
  color: var(--ink);
}

.materials-section {
  margin-bottom: 86px;
}

.option-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
}

.option-panel div {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  background: rgba(18, 19, 22, 0.04);
}

.swatch {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(18, 19, 22, 0.14);
}

.swatch.graphite {
  background: #202329;
}

.swatch.silver {
  background: linear-gradient(135deg, #ffffff, #b6b7b4);
}

.swatch.olive {
  background: #637057;
}

.specs-section {
  padding-bottom: 86px;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.spec-table dt {
  font-weight: 760;
}

.spec-table dd {
  margin: 0;
  color: var(--muted);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: end;
  padding: 88px 0 46px;
}

.page-hero h1,
.product-hero h1,
.contact-hero h1 {
  font-size: 3.25rem;
}

.contact-hero > div:first-child {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.contact-card h2,
.contact-notes h2 {
  font-size: 1.25rem;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
  padding: 0 0 86px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(18, 19, 22, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 19, 22, 0.16);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

.contact-notes {
  padding: 24px;
}

.contact-notes ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.2rem;
  }

  .page-hero h1,
  .product-hero h1,
  .contact-hero h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero,
  .product-hero,
  .contact-hero,
  .product-story-section,
  .product-story-section.reverse,
  .review-summary-card,
  .split-section,
  .materials-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .home-hero {
    padding-top: 28px;
  }

  .hero-slider {
    min-height: 700px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
  }

  .hero-media {
    aspect-ratio: 16 / 11;
  }

  .product-grid,
  .home-product-grid,
  .product-highlights,
  .value-grid,
  .feature-grid,
  .product-feature-grid,
  .function-grid,
  .health-grid,
  .key-spec-grid,
  .faq-grid,
  .review-summary-grid,
  .product-spec-strip,
  .detail-grid,
  .scenario-list,
  .compare-grid,
  .spec-strip,
  .trust-strip,
  .option-panel {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card > div:last-child {
    padding: 4px;
  }

  .product-story-section.reverse .story-banner {
    order: 0;
  }

  .product-story-section {
    padding-bottom: 62px;
  }

  .product-spec-strip {
    margin-bottom: 62px;
  }

  .product-grid {
    padding-bottom: 56px;
  }

  .catalogue-grid {
    padding-bottom: 0;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 760px;
  }

  .spec-table {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .related-products-section {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
  }

  .site-nav a {
    padding: 9px 8px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .page-hero h1,
  .product-hero h1,
  .contact-hero h1 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .section {
    padding: 62px 0;
  }

  .product-showcase,
  .feature-section,
  .review-section {
    padding-bottom: 62px;
  }

  .outdoor-product-hero {
    padding-bottom: 30px;
  }

  .home-hero {
    padding-bottom: 20px;
  }

  .section-heading.with-action {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-slider {
    min-height: 620px;
  }

  .hero-slide {
    padding: 26px;
  }

  .hero-slide .hero-media {
    max-height: 310px;
  }

  .hero-dots {
    left: 26px;
    bottom: 22px;
  }

  .trust-strip div {
    min-height: 92px;
  }

  .feature-image {
    min-height: 190px;
  }

  .product-spec-strip div {
    min-height: 96px;
  }

  .product-feature-grid article,
  .function-grid article,
  .faq-grid article {
    min-height: auto;
  }

  .health-section,
  .outdoor-specs,
  .review-summary-section,
  .faq-section {
    padding-bottom: 62px;
  }

  .full-spec-table div {
    grid-template-columns: 1fr;
  }

  .review-summary-card,
  .related-products-section {
    padding: 24px;
  }

  .page-hero,
  .contact-hero {
    padding-top: 52px;
  }

  .products-hero {
    padding-bottom: 30px;
  }

  .product-highlights {
    padding-bottom: 56px;
  }

  .product-highlights div {
    min-height: 180px;
  }

  .form-grid,
  .spec-table div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* MingDaln homepage visual direction inspired by modern sport-tech brand sites. */
.home-page {
  --ink: #050505;
  --muted: #5f646d;
  --line: #e7e7e7;
  --paper: #ffffff;
  --panel: #f5f6f7;
  --accent: #64d51f;
  --accent-strong: #3ba900;
  --warm: #64d51f;
  --shadow: none;
  background: #ffffff;
  color: #050505;
}

.home-page .site-header,
.home-page .site-footer,
.home-page .trust-strip,
.home-page .section {
  width: min(1280px, calc(100% - 48px));
}

.home-page .site-header {
  min-height: 74px;
  border-bottom: 1px solid #eeeeee;
}

.home-page .brand {
  gap: 0;
}

.home-page .wordmark-logo {
  width: 132px;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
}

.home-page .site-nav {
  gap: 24px;
  color: #1d1d1f;
  font-size: 0.92rem;
  font-weight: 650;
}

.home-page .site-nav a {
  padding: 8px 0;
  border-radius: 0;
}

.home-page .site-nav a[aria-current="page"],
.home-page .site-nav a:hover {
  background: transparent;
  color: #050505;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.home-page h1,
.home-page h2,
.home-page h3 {
  color: #050505;
  letter-spacing: 0;
}

.home-page h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.92;
  font-weight: 820;
}

.home-page h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
  line-height: 0.96;
  font-weight: 800;
}

.home-page h3 {
  font-size: 1.18rem;
  font-weight: 760;
}

.home-page p {
  color: var(--muted);
  line-height: 1.55;
}

.home-page .eyebrow {
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 820;
}

.home-page .button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 760;
}

.home-page .button.primary {
  background: #050505;
  color: #ffffff;
}

.home-page .button.secondary {
  border-color: #d6d6d6;
  background: #ffffff;
  color: #050505;
}

.home-page .home-hero {
  width: 100%;
  padding: 0;
}

.home-page .hero-slider {
  width: 100%;
  min-height: calc(100vh - 74px);
  border-radius: 0;
  background: #050505;
  box-shadow: none;
}

.home-page .hero-slide {
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 36px;
  padding: clamp(42px, 6vw, 86px) max(48px, calc((100vw - 1280px) / 2));
}

.home-page .hero-slide-alt {
  background: #050505;
}

.home-page .hero-slide h1,
.home-page .hero-slide p {
  color: #ffffff;
}

.home-page .hero-slide .lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.home-page .hero-slide .eyebrow {
  color: var(--accent);
}

.home-page .hero-slide .button.primary {
  background: #ffffff;
  color: #050505;
}

.home-page .hero-slide .button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
}

.home-page .hero-slide .hero-media {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 0;
  background: #111111;
}

.home-page .hero-slide .hero-media img {
  object-position: center;
}

.home-page .hero-dots {
  left: max(48px, calc((100vw - 1280px) / 2));
  bottom: 46px;
}

.home-page .hero-dots span {
  width: 42px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
}

.home-page .trust-strip {
  margin-top: 32px;
  border: 0;
  border-radius: 0;
  background: #f2f3f4;
  gap: 0;
}

.home-page .trust-strip div {
  min-height: 126px;
  background: #f5f6f7;
  border-right: 1px solid #ffffff;
}

.home-page .trust-strip strong {
  font-size: 2.15rem;
  font-weight: 820;
}

.home-page .product-showcase {
  padding: 110px 0 92px;
}

.home-page .section-heading {
  margin-bottom: 42px;
}

.home-page .home-product-grid {
  gap: 22px;
}

.home-page .home-product-card {
  border: 0;
  border-radius: 0;
  background: #f5f6f7;
  box-shadow: none;
}

.home-page .home-product-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.home-page .home-product-card img,
.home-page .home-product-card .product-placeholder {
  aspect-ratio: 1 / 0.92;
}

.home-page .product-card-copy {
  gap: 12px;
  padding: 24px;
}

.home-page .feature-section {
  width: 100%;
  padding: 104px 0;
  background: #050505;
}

.home-page .feature-section .section-heading,
.home-page .feature-section .feature-grid {
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.home-page .feature-section .section-heading {
  max-width: none;
  justify-items: start;
  text-align: left;
}

.home-page .feature-section h2,
.home-page .feature-card h3 {
  color: #ffffff;
}

.home-page .feature-section p {
  color: rgba(255, 255, 255, 0.66);
}

.home-page .feature-grid {
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.home-page .feature-card {
  min-height: 340px;
  grid-template-columns: 1fr;
  border: 0;
  border-radius: 0;
  background: #121212;
  padding: 0;
}

.home-page .feature-card > div:last-child {
  padding: 26px;
}

.home-page .feature-image {
  min-height: 230px;
  border-radius: 0;
}

.home-page .review-section {
  padding: 112px 0 96px;
}

.home-page .review-track {
  gap: 18px;
  grid-auto-columns: minmax(300px, 390px);
}

.home-page .review-card {
  min-height: 230px;
  border: 1px solid #eeeeee;
  border-radius: 0;
  background: #ffffff;
}

.home-page .stars {
  color: var(--accent-strong);
}

.home-page .site-footer {
  border-top: 1px solid #eeeeee;
}

@media (max-width: 900px) {
  .home-page .site-header,
  .home-page .site-footer,
  .home-page .trust-strip,
  .home-page .section,
  .home-page .feature-section .section-heading,
  .home-page .feature-section .feature-grid {
    width: min(100% - 32px, 1280px);
  }

  .home-page .hero-slider {
    min-height: 780px;
  }

  .home-page .hero-slide {
    grid-template-columns: 1fr;
    padding: 42px 24px 74px;
  }

  .home-page .hero-slide .hero-media {
    aspect-ratio: 16 / 9;
  }

  .home-page .hero-dots {
    left: 24px;
  }
}

@media (max-width: 620px) {
  .home-page .site-header {
    padding: 18px 0 14px;
  }

  .home-page .wordmark-logo {
    width: 122px;
  }

  .home-page .site-nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .home-page h1 {
    font-size: 3.1rem;
  }

  .home-page h2 {
    font-size: 2.35rem;
  }

  .home-page .hero-slider {
    min-height: 760px;
  }

  .home-page .hero-slide {
    padding: 34px 18px 68px;
  }

  .home-page .hero-slide .hero-media {
    aspect-ratio: 4 / 3;
  }

  .home-page .trust-strip {
    margin-top: 20px;
  }

  .home-page .product-showcase,
  .home-page .feature-section,
  .home-page .review-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

.home-page .review-section {
  width: 100%;
  max-width: none;
  padding: 112px 0 110px;
  background: #f4f4f4;
  overflow: hidden;
}

.home-page .review-heading {
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.home-page .review-stage {
  width: 100%;
  overflow: hidden;
  padding: 4px 0 8px;
}

.home-page .review-stage .review-track {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  margin: 0 auto;
  padding: 4px max(0px, calc((100% - 520px) / 2)) 10px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
}

.home-page .review-stage .review-track::-webkit-scrollbar {
  display: none;
}

.home-page .review-card {
  min-height: 480px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  padding: 34px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #050505;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.05);
  scroll-snap-align: center;
}

.home-page .review-card.review-side {
  transform: scale(0.94);
  opacity: 0.42;
  filter: blur(2.2px);
}

.home-page .review-card.is-featured {
  min-height: 540px;
  grid-auto-columns: minmax(420px, 520px);
  transform: scale(1);
  opacity: 1;
  filter: none;
}

.home-page .quote-mark {
  height: 34px;
  color: #c6c6c6;
  font-size: 4.2rem;
  font-weight: 820;
  line-height: 0.8;
  font-family: Georgia, serif;
}

.home-page .review-avatar {
  width: 92px;
  aspect-ratio: 1;
  display: block;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.9) 0 10%, transparent 11%),
    linear-gradient(135deg, #202020, #64d51f);
  object-fit: cover;
  overflow: hidden;
}

.home-page .avatar-1 { background: linear-gradient(135deg, #101010, #77856d 46%, #d8e8c6); }
.home-page .avatar-2 { background: linear-gradient(135deg, #162218, #64d51f 48%, #c9d7ff); }
.home-page .avatar-3 { background: linear-gradient(135deg, #f2a65a, #111111 52%, #d8d8d8); }
.home-page .avatar-4 { background: linear-gradient(135deg, #2d2d2d, #6fa8dc 50%, #f6f6f6); }
.home-page .avatar-5 { background: linear-gradient(135deg, #111111, #c5d86d 48%, #ffffff); }
.home-page .avatar-6 { background: linear-gradient(135deg, #e6e6e6, #2c7a3f 48%, #111111); }
.home-page .avatar-7 { background: linear-gradient(135deg, #121212, #b7b7b7 52%, #64d51f); }
.home-page .avatar-8 { background: linear-gradient(135deg, #d7efff, #050505 52%, #64d51f); }
.home-page .avatar-9 { background: linear-gradient(135deg, #202020, #ffb84d 52%, #e8e8e8); }
.home-page .avatar-10 { background: linear-gradient(135deg, #0b0b0b, #6f8f72 48%, #f2f2f2); }

.home-page .review-copy {
  color: #050505;
  font-size: 1.32rem;
  font-weight: 650;
  line-height: 1.55;
}

.home-page .review-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.home-page .review-meta h3 {
  margin-bottom: 6px;
  color: #050505;
  font-size: 1.05rem;
}

.home-page .review-meta span {
  color: #777b82;
  font-size: 0.92rem;
}

.home-page .review-meta .stars {
  color: #f4a300;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .home-page .review-stage .review-track {
    width: min(100% - 32px, 1180px);
    grid-auto-columns: minmax(300px, 82vw);
    padding-inline: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .home-page .review-card,
  .home-page .review-card.is-featured {
    min-height: 500px;
  }

  .home-page .review-card.review-side {
    transform: none;
    opacity: 1;
    filter: none;
  }
}

@media (max-width: 620px) {
  .home-page .review-section {
    padding: 72px 0;
  }

  .home-page .review-heading {
    width: min(100% - 32px, 1280px);
    text-align: left;
    justify-items: start;
  }

  .home-page .review-stage .review-track {
    grid-auto-columns: minmax(296px, 88vw);
  }

  .home-page .review-card,
  .home-page .review-card.is-featured {
    min-height: 460px;
    padding: 26px;
  }

  .home-page .review-copy {
    font-size: 1.06rem;
  }

  .home-page .review-avatar {
    width: 76px;
  }

  .home-page .review-meta {
    align-items: start;
    flex-direction: column;
  }
}

.home-page .review-stage .review-track {
  grid-auto-flow: unset;
  grid-auto-columns: unset;
  grid-template-columns: 300px 520px repeat(8, 300px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  padding: 4px 0 10px;
}

.home-page .review-card {
  min-width: 0;
}

.home-page .review-card.is-featured {
  min-height: 540px;
}

@media (max-width: 900px) {
  .home-page .review-stage .review-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 82vw);
    grid-template-columns: none;
    width: min(100% - 32px, 1180px);
    padding-inline: 0;
  }
}

@media (max-width: 620px) {
  .home-page .review-stage .review-track {
    grid-auto-columns: minmax(296px, 88vw);
  }
}

.home-page .review-stage {
  position: relative;
}

.home-page .review-stage .review-track {
  display: flex;
  grid-template-columns: none;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 330px 18px;
}

.home-page .review-stage .review-card {
  flex: 0 0 300px;
  transition:
    flex-basis 320ms ease,
    opacity 320ms ease,
    filter 320ms ease,
    transform 320ms ease;
}

.home-page .review-stage .review-card.is-featured {
  flex-basis: 520px;
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.home-page .review-stage .review-card.review-side {
  opacity: 0.34;
  filter: blur(2.2px);
  transform: scale(0.94);
}

.home-page .review-arrow {
  position: absolute;
  top: 58%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #050505;
  cursor: pointer;
  font: inherit;
  font-size: 1.55rem;
  font-weight: 760;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.home-page .review-arrow:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: #ffffff;
}

.home-page .review-arrow-prev {
  left: max(24px, calc((100vw - 1180px) / 2 - 78px));
}

.home-page .review-arrow-next {
  right: max(24px, calc((100vw - 1180px) / 2 - 78px));
}

@media (max-width: 900px) {
  .home-page .review-stage .review-track {
    width: min(100% - 32px, 1180px);
    padding: 4px 0 18px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .home-page .review-stage .review-card,
  .home-page .review-stage .review-card.is-featured {
    flex-basis: min(82vw, 520px);
  }

  .home-page .review-stage .review-card.review-side {
    opacity: 0.42;
    filter: blur(1.6px);
    transform: scale(0.96);
  }

  .home-page .review-arrow {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .home-page .review-arrow-prev {
    left: 24px;
  }

  .home-page .review-arrow-next {
    right: 24px;
  }
}

@media (max-width: 620px) {
  .home-page .review-stage {
    padding-bottom: 68px;
  }

  .home-page .review-stage .review-card,
  .home-page .review-stage .review-card.is-featured {
    flex-basis: 88vw;
  }
}

.home-page .review-stage .review-track {
  scroll-snap-type: none;
}

.home-page .review-stage .review-card {
  scroll-snap-align: none;
}

.home-page .review-stage .review-track {
  width: max-content;
  margin: 0;
  padding: 4px 0 18px;
  overflow: visible;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  -webkit-mask-image: none;
  mask-image: none;
}

.home-page .review-stage .review-card {
  scroll-snap-align: none;
}

@media (max-width: 900px) {
  .home-page .review-stage .review-track {
    width: max-content;
    margin: 0;
    padding: 4px 0 18px;
    overflow: visible;
  }
}

.home-page .review-card,
.home-page .review-copy,
.home-page .review-meta {
  min-width: 0;
}

.home-page .review-copy {
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .home-page .review-copy {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

.home-page .review-copy {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

@media (max-width: 620px) {
  .home-page .review-copy {
    word-break: normal;
    overflow-wrap: normal;
  }
}

@media (max-width: 620px) {
  .home-page .review-stage .review-card,
  .home-page .review-stage .review-card.is-featured {
    flex-basis: 92vw;
  }

  .home-page .review-copy {
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

/* Review card spacing correction: keep the active quote text close to the avatar. */
.home-page .review-card,
.home-page .review-stage .review-card {
  grid-template-rows: auto auto auto 1fr;
  gap: 18px;
  align-content: start;
}

.home-page .review-stage .review-card {
  min-height: 440px;
}

.home-page .review-stage .review-card.is-featured {
  min-height: 490px;
}

.home-page .review-card p,
.home-page .review-copy {
  margin-top: 0;
  align-self: start;
}

.home-page .review-meta {
  align-self: end;
}

@media (max-width: 620px) {
  .home-page .review-stage .review-card,
  .home-page .review-stage .review-card.is-featured {
    min-height: 420px;
    gap: 16px;
  }
}

/* Shared MingDaln brand styling for inner pages. */
.brand-page {
  --ink: #050505;
  --muted: #5f646d;
  --line: #e7e7e7;
  --paper: #ffffff;
  --panel: #f5f6f7;
  --accent: #64d51f;
  --accent-strong: #3ba900;
  --warm: #64d51f;
  --shadow: none;
  background: #ffffff;
  color: #050505;
}

.brand-page .site-header,
.brand-page .site-footer,
.brand-page .page-hero,
.brand-page .section,
.brand-page .product-highlights,
.brand-page .product-grid,
.brand-page .comparison-section,
.brand-page .product-hero,
.brand-page .product-spec-strip,
.brand-page .product-story-section,
.brand-page .health-section,
.brand-page .specs-section,
.brand-page .review-summary-section,
.brand-page .faq-section,
.brand-page .related-products-section,
.brand-page .support-band {
  width: min(1280px, calc(100% - 48px));
}

.brand-page .site-header {
  min-height: 74px;
  border-bottom: 1px solid #eeeeee;
}

.brand-page .brand {
  gap: 0;
}

.brand-page .wordmark-logo {
  width: 132px;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
}

.brand-page .site-nav {
  gap: 24px;
  color: #1d1d1f;
  font-size: 0.92rem;
  font-weight: 650;
}

.brand-page .site-nav a {
  padding: 8px 0;
  border-radius: 0;
}

.brand-page .site-nav a[aria-current="page"],
.brand-page .site-nav a:hover {
  background: transparent;
  color: #050505;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.brand-page h1,
.brand-page h2,
.brand-page h3 {
  color: #050505;
  letter-spacing: 0;
}

.brand-page h1 {
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
  line-height: 0.94;
  font-weight: 820;
}

.brand-page h2 {
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  line-height: 0.98;
  font-weight: 800;
}

.brand-page h3 {
  font-size: 1.18rem;
  font-weight: 760;
}

.brand-page p {
  color: var(--muted);
  line-height: 1.55;
}

.brand-page .eyebrow {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.brand-page .button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 760;
}

.brand-page .button.primary {
  background: #050505;
  color: #ffffff;
}

.brand-page .button.secondary {
  border-color: #d6d6d6;
  background: #ffffff;
  color: #050505;
}

.brand-page .page-hero {
  padding: 104px 0 54px;
}

.brand-page .products-hero,
.brand-page .support-hero {
  min-height: 520px;
  align-content: end;
  padding-bottom: 72px;
  border-bottom: 1px solid #eeeeee;
}

.brand-page .products-hero .lead,
.brand-page .support-hero .lead {
  max-width: 680px;
}

.brand-page .product-highlights {
  gap: 1px;
  padding: 0 0 96px;
  background: #ffffff;
}

.brand-page .product-highlights div,
.brand-page .support-grid article,
.brand-page .product-feature-grid article,
.brand-page .function-grid article,
.brand-page .health-grid article,
.brand-page .key-spec-grid article,
.brand-page .faq-grid article,
.brand-page .review-summary-grid article {
  border: 0;
  border-radius: 0;
  background: #f5f6f7;
  box-shadow: none;
}

.brand-page .product-highlights div {
  min-height: 240px;
}

.brand-page .product-highlights span,
.brand-page .support-grid span,
.brand-page .product-feature-grid span {
  background: #e9f8df;
  color: var(--accent-strong);
}

.brand-page .product-catalogue {
  padding-top: 104px;
  border-top: 1px solid #eeeeee;
}

.brand-page .catalogue-grid {
  gap: 24px;
}

.brand-page .product-card,
.brand-page .home-product-card {
  border: 0;
  border-radius: 0;
  background: #f5f6f7;
  box-shadow: none;
}

.brand-page .product-card:hover,
.brand-page .home-product-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.brand-page .catalogue-card h2 {
  font-size: 1.55rem;
}

.brand-page .product-tags span {
  background: #ffffff;
  color: #111111;
}

.brand-page .text-link {
  color: #050505;
  border-bottom-color: var(--accent);
}

.brand-page .product-compare {
  padding: 0 0 104px;
}

.brand-page .comparison-table {
  border: 0;
  border-radius: 0;
  background: #eeeeee;
}

.brand-page .comparison-row > * {
  background: #ffffff;
}

.brand-page .comparison-head > * {
  background: #050505;
  color: #ffffff;
}

.brand-page .outdoor-product-hero {
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  padding: 64px 0 64px;
}

.brand-page .outdoor-product-hero h1 {
  font-size: clamp(3.1rem, 5.8vw, 5.8rem);
}

.brand-page .detail-media,
.brand-page .story-banner {
  border-radius: 0;
  box-shadow: none;
}

.brand-page .product-spec-strip {
  margin-bottom: 104px;
  border: 0;
  border-radius: 0;
  background: #eeeeee;
}

.brand-page .product-spec-strip div {
  background: #f5f6f7;
}

.brand-page .product-feature-section,
.brand-page .smart-functions-section {
  padding-top: 0;
}

.brand-page .product-feature-grid,
.brand-page .function-grid,
.brand-page .health-grid,
.brand-page .key-spec-grid,
.brand-page .faq-grid,
.brand-page .support-grid {
  display: grid;
  gap: 1px;
  background: #eeeeee;
}

.brand-page .product-feature-grid article,
.brand-page .function-grid article,
.brand-page .faq-grid article,
.brand-page .support-grid article {
  min-height: 230px;
}

.brand-page .product-story-section {
  padding-bottom: 104px;
}

.brand-page .story-copy {
  gap: 18px;
}

.brand-page .health-section,
.brand-page .review-summary-section,
.brand-page .faq-section {
  padding-bottom: 104px;
}

.brand-page .note {
  border: 0;
  border-left: 4px solid var(--accent);
  border-radius: 0;
  background: #f5f6f7;
}

.brand-page .key-spec-grid article {
  background: #f5f6f7;
}

.brand-page .spec-table {
  border: 0;
  border-radius: 0;
  background: #eeeeee;
}

.brand-page .spec-table div {
  background: #ffffff;
}

.brand-page .review-summary-card,
.brand-page .related-products-section,
.brand-page .support-band {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-page .review-summary-card,
.brand-page .support-band {
  background: #f5f6f7;
}

.brand-page .related-products-section {
  background: #050505;
}

.brand-page .related-products-section h2,
.brand-page .related-products-section p {
  color: #ffffff;
}

.brand-page .related-products-section .eyebrow {
  color: var(--accent);
}

.brand-page .related-products-section .button.primary {
  background: #ffffff;
  color: #050505;
}

.brand-page .support-topic-section {
  padding-top: 104px;
}

.brand-page .support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-page .support-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.brand-page .support-grid span {
  width: 42px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 760;
}

.brand-page .support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 36px;
  align-items: center;
  margin: 0 auto 82px;
  padding: 42px;
}

.brand-page .support-band > div:first-child {
  display: grid;
  gap: 14px;
}

.brand-page .support-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brand-page .support-spec-list span {
  min-height: 64px;
  display: grid;
  place-items: center;
  background: #ffffff;
  font-weight: 760;
}

@media (max-width: 900px) {
  .brand-page .site-header,
  .brand-page .site-footer,
  .brand-page .page-hero,
  .brand-page .section,
  .brand-page .product-highlights,
  .brand-page .product-grid,
  .brand-page .comparison-section,
  .brand-page .product-hero,
  .brand-page .product-spec-strip,
  .brand-page .product-story-section,
  .brand-page .health-section,
  .brand-page .specs-section,
  .brand-page .review-summary-section,
  .brand-page .faq-section,
  .brand-page .related-products-section,
  .brand-page .support-band {
    width: min(100% - 32px, 1280px);
  }

  .brand-page .outdoor-product-hero,
  .brand-page .support-band {
    grid-template-columns: 1fr;
  }

  .brand-page .support-grid {
    grid-template-columns: 1fr;
  }

  .brand-page .product-highlights,
  .brand-page .product-catalogue,
  .brand-page .product-compare,
  .brand-page .health-section,
  .brand-page .review-summary-section,
  .brand-page .faq-section,
  .brand-page .support-topic-section {
    padding-bottom: 72px;
  }
}

@media (max-width: 620px) {
  .brand-page .site-header {
    padding: 18px 0 14px;
  }

  .brand-page .wordmark-logo {
    width: 122px;
  }

  .brand-page .site-nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .brand-page h1,
  .brand-page .outdoor-product-hero h1 {
    font-size: 3rem;
  }

  .brand-page h2 {
    font-size: 2.25rem;
  }

  .brand-page .products-hero,
  .brand-page .support-hero,
  .brand-page .outdoor-product-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .brand-page .support-band,
  .brand-page .review-summary-card,
  .brand-page .related-products-section {
    padding: 24px;
  }

  .brand-page .support-spec-list {
    grid-template-columns: 1fr;
  }
}

/* Product FAQ accordion: Amazfit-inspired row layout. */
.brand-page .product-faq-section {
  padding-top: 0;
}

.brand-page .faq-title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.brand-page .faq-title-row h2 {
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(2.75rem, 4.8vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: #050505;
}

.brand-page .faq-title-line {
  flex: 1 1 auto;
  height: 6px;
  min-width: 80px;
  background: #eeeeee;
}

.brand-page .faq-accordion {
  border-top: 1px solid #e7e7e7;
}

.brand-page .faq-accordion details {
  border-bottom: 1px solid #e7e7e7;
}

.brand-page .faq-accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-size: 1.16rem;
  font-weight: 760;
  line-height: 1.3;
  color: #050505;
}

.brand-page .faq-accordion summary::-webkit-details-marker {
  display: none;
}

.brand-page .faq-accordion summary:focus-visible {
  outline: 3px solid rgba(82, 196, 26, 0.35);
  outline-offset: 4px;
}

.brand-page .faq-plus {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(5, 5, 5, 0.08);
}

.brand-page .faq-plus::before,
.brand-page .faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: #050505;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand-page .faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.brand-page .faq-accordion details[open] .faq-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.brand-page .faq-accordion p {
  max-width: 820px;
  margin: -4px 72px 26px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 720px) {
  .brand-page .faq-title-row {
    display: grid;
    gap: 16px;
  }

  .brand-page .faq-title-row h2 {
    font-size: 2.5rem;
  }

  .brand-page .faq-title-line {
    width: 100%;
    min-width: 0;
  }

  .brand-page .faq-accordion summary {
    min-height: 72px;
    gap: 16px;
    font-size: 1rem;
  }

  .brand-page .faq-plus {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-page .faq-accordion p {
    margin-right: 0;
    font-size: 0.95rem;
  }
}



/* Product detail line icons for spec strip and smart function cards. */
.brand-page .line-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: #050505;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.brand-page .product-spec-strip > div {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  align-content: center;
  column-gap: 16px;
  row-gap: 0;
}

.brand-page .product-spec-strip .line-icon {
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 50%;
  background: #e9f8df;
  color: #2fa600;
}

.brand-page .product-spec-strip .stat-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: inherit;
}

.brand-page .product-spec-strip .stat-copy small {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.25;
}

.brand-page .function-grid h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-page .function-grid .line-icon {
  padding: 7px;
  border-radius: 50%;
  background: #e9f8df;
  color: #2fa600;
}

@media (max-width: 620px) {
  .brand-page .product-spec-strip > div {
    column-gap: 12px;
    padding: 18px;
  }

  .brand-page .product-spec-strip .line-icon {
    width: 38px;
    height: 38px;
  }

  .brand-page .function-grid h3 {
    align-items: flex-start;
    gap: 10px;
  }

  .brand-page .function-grid .line-icon {
    width: 34px;
    height: 34px;
  }
}

/* Generated product detail pages from product-info screenshots. */
.brand-page .source-gallery-section,
.brand-page .source-reference-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 104px;
}

.brand-page .generated-main-shot {
  background: #f5f6f7;
}

.brand-page .generated-main-shot img {
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.brand-page .source-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.brand-page .source-shot {
  margin: 0;
  background: #f5f6f7;
  overflow: hidden;
}

.brand-page .source-shot img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #ffffff;
}

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

.brand-page .source-reference-grid a {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f5f6f7;
  overflow: hidden;
}

.brand-page .source-reference-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  transition: transform 160ms ease;
}

.brand-page .source-reference-grid a:hover img {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .brand-page .source-gallery-section,
  .brand-page .source-reference-section {
    width: min(100% - 32px, 1280px);
    padding-bottom: 72px;
  }

  .brand-page .source-gallery,
  .brand-page .source-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-page .source-gallery,
  .brand-page .source-reference-grid {
    grid-template-columns: 1fr;
  }

  .brand-page .generated-main-shot img {
    padding: 10px;
  }
}

/* SEO-friendly generated product pages: product visuals beside real HTML copy. */
.brand-page .generated-story-media {
  background: #f5f6f7;
}

.brand-page .generated-story-media img,
.brand-page .generated-main-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.brand-page .generated-story-media img {
  padding: 18px;
}

.brand-page .generated-main-shot img {
  padding: 28px;
}

.brand-page .generated-story-section {
  align-items: center;
}

@media (max-width: 620px) {
  .brand-page .generated-story-media img,
  .brand-page .generated-main-shot img {
    padding: 12px;
  }
}

/* SEO heading correction for homepage hero carousel. */
.home-page .seo-page-title {
  display: none;
}

.hero-slide h2,
.hero-slide p {
  color: white;
}

.home-page .hero-slide h2 {
  color: #ffffff;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.92;
  font-weight: 820;
}

@media (max-width: 620px) {
  .home-page .hero-slide h2 {
    font-size: 3.1rem;
  }
}

/* Homepage heading scale refinement. */
.home-page h2 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.02;
}

.home-page .hero-slide h2 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.94;
}

@media (max-width: 620px) {
  .home-page h2 {
    font-size: 2rem;
  }

  .home-page .hero-slide h2 {
    font-size: 2.75rem;
  }
}

/* Product detail heading scale refinement. */
.brand-page.product-detail-page h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.45rem);
  line-height: 1.04;
}

.brand-page.product-detail-page .faq-title-row h2 {
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  line-height: 1;
}

.brand-page.product-detail-page .related-products-section h2 {
  font-size: clamp(1.9rem, 3vw, 3.25rem);
}

@media (max-width: 620px) {
  .brand-page.product-detail-page h2,
  .brand-page.product-detail-page .faq-title-row h2,
  .brand-page.product-detail-page .related-products-section h2 {
    font-size: 2rem;
    line-height: 1.05;
  }
}

/* Product detail hero H1 scale refinement. */
.brand-page.product-detail-page h1,
.brand-page.product-detail-page .outdoor-product-hero h1 {
  font-size: clamp(2.65rem, 4.6vw, 4.6rem);
  line-height: 0.98;
}

@media (max-width: 620px) {
  .brand-page.product-detail-page h1,
  .brand-page.product-detail-page .outdoor-product-hero h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }
}

/* Sitewide heading and product story refinement. */
h1,
.page-hero h1,
.product-hero h1,
.contact-hero h1,
.brand-page h1,
.brand-page.product-detail-page h1,
.brand-page.product-detail-page .outdoor-product-hero h1 {
  font-size: clamp(2.25rem, 3.6vw, 3.65rem);
  line-height: 1.04;
  font-weight: 800;
}

h2,
.home-page h2,
.brand-page h2,
.brand-page.product-detail-page h2,
.brand-page.product-detail-page .faq-title-row h2,
.brand-page.product-detail-page .related-products-section h2 {
  font-size: clamp(1.65rem, 2.35vw, 2.65rem);
  line-height: 1.08;
  font-weight: 780;
}

.home-page .hero-slide h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.45rem);
  line-height: 0.98;
}

.brand-page .catalogue-card h2 {
  font-size: clamp(1.15rem, 1.35vw, 1.42rem);
  line-height: 1.14;
}

.product-feature-section .section-heading h2,
.smart-functions-section .section-heading h2,
.health-section .section-heading h2,
.specs-section .section-heading h2 {
  max-width: 820px;
}

.brand-page .product-story-section {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: min(1280px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto 72px;
  padding: 0;
  border-radius: 28px;
  background: #f5f6f7;
  box-shadow: 0 18px 45px rgba(18, 19, 22, 0.06);
}

.brand-page .product-story-section .story-copy {
  order: 1;
}

.brand-page .product-story-section .story-banner {
  order: 2;
}

.brand-page .product-story-section.reverse .story-banner {
  order: 1;
}

.brand-page .product-story-section.reverse .story-copy {
  order: 2;
}

.brand-page .product-story-section .story-banner {
  overflow: hidden;
  min-height: 430px;
  margin: 0;
  border-radius: 0;
  background: #111111;
  box-shadow: none;
}

.brand-page .product-story-section .story-banner img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.brand-page .product-story-section .story-copy {
  align-content: center;
  gap: 24px;
  padding: clamp(42px, 5vw, 72px);
  background: #f5f7e9;
}

.brand-page .product-story-section.reverse .story-copy {
  background: #f8e7ec;
}

.brand-page .product-story-section .story-copy h2 {
  max-width: 560px;
  color: #1a1a1a;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.05;
}

.story-points {
  display: grid;
  border-top: 1px solid rgba(18, 19, 22, 0.18);
}

.story-points > div {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(18, 19, 22, 0.16);
}

.story-points strong {
  color: #1d1d1f;
  font-size: 1rem;
  font-weight: 780;
}

.story-points p {
  max-width: 620px;
  color: #5f6671;
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .brand-page .product-story-section,
  .brand-page .product-story-section.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }

  .brand-page .product-story-section .story-copy,
  .brand-page .product-story-section .story-banner,
  .brand-page .product-story-section.reverse .story-copy,
  .brand-page .product-story-section.reverse .story-banner {
    order: initial;
  }

  .brand-page .product-story-section .story-banner,
  .brand-page .product-story-section .story-banner img {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  h1,
  .page-hero h1,
  .product-hero h1,
  .contact-hero h1,
  .brand-page h1,
  .brand-page.product-detail-page h1,
  .brand-page.product-detail-page .outdoor-product-hero h1 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  h2,
  .home-page h2,
  .brand-page h2,
  .brand-page.product-detail-page h2,
  .brand-page.product-detail-page .faq-title-row h2,
  .brand-page.product-detail-page .related-products-section h2 {
    font-size: 1.65rem;
    line-height: 1.12;
  }

  .home-page .hero-slide h2 {
    font-size: 2.25rem;
  }

  .brand-page .product-story-section {
    width: min(100% - 28px, 1280px);
    margin-bottom: 48px;
  }

  .brand-page .product-story-section .story-copy {
    padding: 30px 22px;
  }

  .brand-page .product-story-section .story-copy h2 {
    font-size: 1.85rem;
  }
}

/* Heading scale correction v2: keep product and section titles proportional. */
h1,
.page-hero h1,
.product-hero h1,
.contact-hero h1,
.brand-page h1,
.brand-page .outdoor-product-hero h1,
.brand-page.product-detail-page h1,
.brand-page.product-detail-page .outdoor-product-hero h1 {
  max-width: 680px;
  font-size: clamp(1.95rem, 2.65vw, 3rem);
  line-height: 1.08;
  font-weight: 790;
}

h2,
.home-page h2,
.brand-page h2,
.brand-page .section-heading h2,
.brand-page.product-detail-page h2,
.brand-page.product-detail-page .faq-title-row h2,
.brand-page.product-detail-page .related-products-section h2 {
  max-width: 760px;
  font-size: clamp(1.35rem, 1.85vw, 2.15rem);
  line-height: 1.14;
  font-weight: 760;
}

.home-page .hero-slide h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 1.04;
}

.brand-page .product-story-section .story-copy h2 {
  max-width: 520px;
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  line-height: 1.12;
}

.brand-page .catalogue-card h2 {
  font-size: clamp(1.05rem, 1.18vw, 1.25rem);
  line-height: 1.18;
}

@media (max-width: 620px) {
  h1,
  .page-hero h1,
  .product-hero h1,
  .contact-hero h1,
  .brand-page h1,
  .brand-page .outdoor-product-hero h1,
  .brand-page.product-detail-page h1,
  .brand-page.product-detail-page .outdoor-product-hero h1 {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  h2,
  .home-page h2,
  .brand-page h2,
  .brand-page .section-heading h2,
  .brand-page.product-detail-page h2,
  .brand-page.product-detail-page .faq-title-row h2,
  .brand-page.product-detail-page .related-products-section h2 {
    font-size: 1.35rem;
    line-height: 1.18;
  }

  .home-page .hero-slide h2 {
    font-size: 2rem;
  }
}

/* Heading scale correction v3: stricter final cap after visual review. */
h1,
.page-hero h1,
.product-hero h1,
.contact-hero h1,
.brand-page h1,
.brand-page .outdoor-product-hero h1,
.brand-page.product-detail-page h1,
.brand-page.product-detail-page .outdoor-product-hero h1 {
  max-width: 620px !important;
  font-size: clamp(1.8rem, 2.15vw, 2.55rem) !important;
  line-height: 1.12 !important;
  font-weight: 780 !important;
}

h2,
.home-page h2,
.brand-page h2,
.brand-page .section-heading h2,
.brand-page.product-detail-page h2,
.brand-page.product-detail-page .faq-title-row h2,
.brand-page.product-detail-page .related-products-section h2 {
  max-width: 680px !important;
  font-size: clamp(1.25rem, 1.45vw, 1.8rem) !important;
  line-height: 1.18 !important;
  font-weight: 740 !important;
}

.home-page .hero-slide h2 {
  max-width: 640px !important;
  font-size: clamp(1.85rem, 2.75vw, 2.9rem) !important;
  line-height: 1.08 !important;
}

.brand-page .product-story-section .story-copy h2 {
  max-width: 500px !important;
  font-size: clamp(1.3rem, 1.65vw, 1.9rem) !important;
  line-height: 1.18 !important;
}

.brand-page .catalogue-card h2 {
  font-size: clamp(1rem, 1.08vw, 1.18rem) !important;
  line-height: 1.22 !important;
}

@media (max-width: 620px) {
  h1,
  .page-hero h1,
  .product-hero h1,
  .contact-hero h1,
  .brand-page h1,
  .brand-page .outdoor-product-hero h1,
  .brand-page.product-detail-page h1,
  .brand-page.product-detail-page .outdoor-product-hero h1 {
    font-size: 1.75rem !important;
  }

  h2,
  .home-page h2,
  .brand-page h2,
  .brand-page .section-heading h2,
  .brand-page.product-detail-page h2,
  .brand-page.product-detail-page .faq-title-row h2,
  .brand-page.product-detail-page .related-products-section h2 {
    font-size: 1.25rem !important;
  }
}

/* Product hero spacing correction: reduce empty first-screen whitespace. */
.brand-page.product-detail-page .product-hero,
.brand-page.product-detail-page .outdoor-product-hero {
  min-height: 0 !important;
  align-items: center;
  padding-top: clamp(28px, 4vw, 46px) !important;
  padding-bottom: clamp(28px, 4vw, 46px) !important;
}

.brand-page.product-detail-page .product-hero-copy {
  gap: 18px;
}

.brand-page.product-detail-page .product-hero-banner {
  max-height: 520px;
}

.brand-page.product-detail-page .product-hero-banner img {
  max-height: 520px;
}

.brand-page.product-detail-page .product-spec-strip {
  margin-top: 0 !important;
  margin-bottom: clamp(56px, 6vw, 76px) !important;
}

@media (max-width: 900px) {
  .brand-page.product-detail-page .product-hero,
  .brand-page.product-detail-page .outdoor-product-hero {
    gap: 28px;
    padding-top: 28px !important;
    padding-bottom: 30px !important;
  }

  .brand-page.product-detail-page .product-hero-banner,
  .brand-page.product-detail-page .product-hero-banner img {
    max-height: none;
  }
}

@media (max-width: 620px) {
  .brand-page.product-detail-page .product-hero,
  .brand-page.product-detail-page .outdoor-product-hero {
    width: min(100% - 28px, 1280px);
    gap: 22px;
    padding-top: 18px !important;
    padding-bottom: 24px !important;
  }

  .brand-page.product-detail-page .product-hero-copy {
    gap: 14px;
  }

  .brand-page.product-detail-page .product-spec-strip {
    margin-bottom: 44px !important;
  }
}
