:root {
  --ink: #171311;
  --muted: #625e59;
  --faint: #958e86;
  --paper: #ffffff;
  --soft: #ffffff;
  --warm: #ffffff;
  --line: #e8e1d9;
  --accent: #380c0c;
  --accent-soft: #5a2020;
  --shadow: 0 18px 48px rgba(23, 19, 17, 0.08);
  --topbar: 32px;
  --header: 72px;
  --hero-height: 600px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1180px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Calibre, "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2 {
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 5.5vw, 5.85rem);
  font-weight: 580;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 4.25vw, 5rem);
  font-weight: 580;
}

h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.18;
}

p {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  gap: 34px;
  height: var(--topbar);
  padding: 0 48px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.075em;
  line-height: var(--topbar);
  text-transform: uppercase;
}

.top-strip span:not(:first-child)::before {
  margin-right: 34px;
  color: rgba(255, 254, 250, 0.36);
  content: "/";
}

.site-header {
  position: sticky;
  top: var(--topbar);
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  height: var(--header);
  padding: 0 48px;
  background: rgba(255, 254, 250, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-left {
  flex: 0 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo-img {
  width: 124px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.mobile-menu-toggle {
  display: none;
}

.footer-logo-img {
  width: 116px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.site-nav {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 28px;
  height: var(--header);
  color: var(--ink);
  font-size: clamp(0.82rem, 0.78vw, 0.9rem);
  font-weight: 650;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.product-nav {
  flex: 1 1 auto;
  justify-content: flex-start;
  min-width: 0;
}

.site-search {
  display: flex;
  flex: 0 1 clamp(180px, 13.9vw, 200px);
  align-items: center;
  height: clamp(36px, 2.8vw, 40px);
  margin-left: auto;
  background: #fff;
  border: 1px solid rgba(26, 18, 15, 0.58);
}

.site-search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0 0 0 clamp(14px, 1.1vw, 16px);
  color: var(--ink);
  font: inherit;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  border: 0;
  outline: 0;
}

.site-search input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.site-search button {
  display: grid;
  flex: 0 0 clamp(38px, 2.8vw, 42px);
  place-items: center;
  height: 100%;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: 0;
}

.site-search svg {
  width: clamp(19px, 1.55vw, 22px);
  height: clamp(19px, 1.55vw, 22px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-search:focus-within {
  border-color: var(--accent);
}

.utility-nav {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 34px;
  margin-left: 0;
}

.site-nav a:not(.nav-cta) {
  display: inline-flex;
  align-items: center;
  height: var(--header);
  padding-top: 2px;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta).is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.product-mega-menu {
  position: absolute;
  top: var(--header);
  right: 0;
  left: 0;
  z-index: 75;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  align-items: start;
  column-gap: clamp(22px, 2.4vw, 42px);
  row-gap: 34px;
  padding: 30px 36px 38px;
  overflow: visible;
  visibility: hidden;
  background: rgba(255, 254, 250, 0.99);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 42px rgba(23, 19, 17, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.product-mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-mega-menu section {
  min-width: 0;
}

.product-mega-menu .mega-heading {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-mega-menu .mega-heading:hover {
  color: var(--accent);
}

.product-mega-menu section div {
  display: grid;
  gap: 13px;
}

.product-mega-menu section div a {
  color: var(--ink);
  font-size: clamp(0.98rem, 1vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.28;
  text-transform: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.product-mega-menu section div a:hover {
  color: var(--accent);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.nav-cta,
.button-dark {
  color: var(--paper);
  background: var(--accent);
  border: 1px solid var(--accent);
}

.nav-cta:hover,
.button-dark:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.button-light,
.button-outline {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
}

.button-light:hover,
.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 82px 48px;
}

.section-heading {
  margin-bottom: 36px;
}

.center-heading {
  max-width: 760px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.7fr);
  gap: 42px;
  align-items: end;
}

.home-hero-v2 {
  position: relative;
  display: block;
  width: 100%;
  height: var(--hero-height);
  min-height: var(--hero-height);
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 0;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--ink);
}

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

.home-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.solution-banner {
  height: 600px;
  min-height: 600px;
}

.solution-banner .home-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 19, 17, 0.72) 0%, rgba(23, 19, 17, 0.42) 44%, rgba(23, 19, 17, 0.1) 100%);
  content: "";
}

.solution-banner-copy {
  max-width: 780px;
}

.solution-banner-copy h1 {
  max-width: 760px;
}

.solution-banner-copy p:not(.eyebrow) {
  max-width: 720px;
}

.product-hero.is-yoga-banner .home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.product-hero.is-fitness-banner .home-hero-media img {
  transform: scale(1.018);
}

.home-hero-copy {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 760px;
  color: var(--paper);
}

.home-hero-actions-only {
  max-width: 760px;
}

.home-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(38px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.home-hero-copy p:not(.eyebrow),
.product-hero-copy p:not(.eyebrow),
.page-hero p,
.split-copy p,
.contact-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.52;
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 45px;
  color: var(--paper);
  font-size: 24px;
  line-height: 1.35;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.26);
}

.product-hero-copy {
  top: 36%;
}

.product-hero-copy .eyebrow {
  display: none;
}

.product-hero-copy h1,
.product-hero-copy p:not(.eyebrow) {
  color: var(--accent);
  text-shadow: none;
}

.product-hero.is-yoga-banner .product-hero-copy h1,
.product-hero.is-yoga-banner .product-hero-copy p:not(.eyebrow),
.product-hero.is-recovery-banner .product-hero-copy h1,
.product-hero.is-recovery-banner .product-hero-copy p:not(.eyebrow) {
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.product-hero.is-recovery-banner .product-hero-copy {
  top: 43%;
}

.product-hero.is-recovery-banner .product-hero-copy p:not(.eyebrow) {
  max-width: 575px;
}

.product-hero-copy p:not(.eyebrow) {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.home-hero-copy .button-dark {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.home-hero-copy .button {
  min-width: 174px;
  height: 60px;
  padding: 0 30px;
  font-size: 1.17rem;
}

.home-hero-copy .button-dark:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.home-quick-info {
  background: var(--soft);
  border-bottom: 0;
}

.home-quick-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  min-height: 76px;
  padding: 12px 48px;
  color: var(--paper);
  background: var(--ink);
}

.home-quick-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--paper);
  font-size: 1.08rem;
  font-weight: 580;
  line-height: 1.4;
  text-align: center;
}

.home-quick-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: clamp(52px, 3.1vw, 60px);
  padding: 0 30px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.92rem;
  font-weight: 650;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.home-quick-cta a:hover {
  color: var(--ink);
  background: var(--paper);
  transform: scale(1.04);
}

.home-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  min-height: 160px;
  padding: 22px 9vw;
  background: #f7f7f7;
}

.home-quick-stats article {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 116px;
  padding: 0 38px;
  text-align: center;
  border-right: 1px solid rgba(23, 19, 17, 0.24);
}

.home-quick-stats article:last-child {
  border-right: 0;
}

.home-quick-stats strong {
  color: var(--ink);
  font-size: clamp(2.3rem, 3.1vw, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.home-quick-stats span {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  font-weight: 580;
  line-height: 1.25;
}

.home-product-tabs {
  position: sticky;
  top: calc(var(--topbar) + var(--header));
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 48px;
  padding: 0 48px;
  background: rgba(255, 254, 250, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.home-product-tabs a {
  display: inline-flex;
  align-items: center;
  height: 48px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-product-tabs a:first-child,
.home-product-tabs a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.home-brand-support {
  display: grid;
  justify-items: center;
  gap: clamp(50px, 3vw, 64px);
  padding: 96px 64px 64px;
  text-align: center;
  background: var(--paper);
  border: 0;
}

.home-brand-heading {
  display: grid;
  gap: 8px;
}

.home-brand-heading p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}

.home-brand-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

.home-brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.home-brand-row img {
  width: clamp(130px, 10vw, 190px);
  height: 86px;
  object-fit: contain;
  background: transparent;
}

.home-brand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 58px;
  padding: 0 34px;
  color: var(--paper);
  background: var(--accent);
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.home-brand-button:hover {
  transform: scale(1.04);
}

.home-star-section,
.home-product-showcase,
.home-more-section,
.home-advantage-section,
.home-process-section {
  padding: 82px 64px;
}

.home-star-section {
  padding-top: 62px;
  padding-bottom: 62px;
}

.home-center-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.home-solution-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 42px);
}

.solution-entry-card {
  position: relative;
  display: block;
  min-height: clamp(280px, 17.1vw, 350px);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.solution-entry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transform: scale(1);
  transition: transform 220ms ease, opacity 180ms ease;
}

.solution-entry-card::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  content: "";
}

.solution-entry-card:hover img {
  opacity: 0.82;
  transform: scale(1.035);
}

.solution-entry-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  height: 100%;
  padding: clamp(22px, 2vw, 36px);
}

.solution-entry-card h3 {
  max-width: 560px;
  margin-bottom: 10px;
  color: var(--paper);
  font-size: clamp(1.35rem, 1.6vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.solution-entry-card p {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(0.9rem, 0.9vw, 1rem);
  font-weight: 580;
  line-height: 1.45;
}

.solution-entry-card span {
  justify-self: start;
  color: var(--paper);
  border-bottom: 2px solid currentColor;
  font-size: clamp(0.9rem, 0.9vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-featured-products {
  padding: clamp(74px, calc(4.2vw + 10px), 102px) 64px clamp(80px, calc(4.8vw + 10px), 114px);
  background: var(--paper);
}

.home-pilates-products,
.home-fitness-products,
.home-cardio-products {
  padding-top: clamp(38px, calc(2.8vw + 10px), 64px);
  padding-bottom: clamp(64px, calc(4vw + 10px), 96px);
}

.home-featured-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 3.2vw, 60px);
  padding-bottom: 22px;
}

.home-featured-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.35vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
}

.home-featured-heading a {
  color: var(--ink);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 22px;
  font-size: clamp(0.9rem, 0.95vw, 1.05rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 58px);
}

.featured-product-card {
  display: block;
  color: var(--ink);
}

.featured-product-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.featured-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 220ms ease;
}

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

.featured-product-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 600;
  line-height: 1.25;
}

.product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 18px;
}

.star-card,
.product-card {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.star-card img,
.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: var(--soft);
  transition: opacity 160ms ease;
}

.product-card img {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
}

.star-card:hover img,
.product-card:hover img {
  opacity: 0.9;
}

.star-card div,
.product-card-body {
  padding: 14px 0 0;
}

.product-card-body {
  padding-top: 10px;
}

.star-card span,
.product-card-body .eyebrow,
.home-advantage-grid span,
.home-process-track span,
.service-card span,
.roadmap-grid span,
.capability-grid span,
.contact-methods span {
  display: block;
  margin-bottom: 8px;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.star-card p,
.product-card-body p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.product-card-body .eyebrow {
  margin-bottom: 6px;
  font-size: 0.66rem;
}

.product-card-body p:not(.eyebrow) {
  font-size: 0.84rem;
  line-height: 1.38;
}

.product-card-body h3 {
  margin-bottom: 7px;
  font-size: 0.9rem;
  line-height: 1.18;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  color: var(--muted);
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
}

.home-product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  padding: 38px 72px 72px;
  background: var(--paper);
}

.showcase-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.showcase-card-tall {
  grid-row: auto;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1);
  transition: opacity 180ms ease, transform 220ms ease;
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  content: "";
}

.showcase-card:hover img {
  opacity: 0.86;
  transform: scale(1.035);
}

.showcase-card div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 78%;
  text-align: center;
}

.showcase-card h2 {
  margin-bottom: 20px;
  color: var(--paper);
  font-size: clamp(2.5rem, 2.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.02;
}

.showcase-card p {
  margin-bottom: 32px;
  color: var(--paper);
  font-size: clamp(1.08rem, 1.12vw, 1.34rem);
  font-weight: 580;
  line-height: 1.45;
}

.showcase-card span {
  color: #8fbe58;
  border-bottom: 2px solid currentColor;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-statement {
  display: grid;
  justify-items: center;
  padding: 76px 17vw;
  text-align: center;
  background: var(--warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-statement h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.12;
}

.home-advantage-grid,
.home-process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-advantage-grid article,
.home-process-track article {
  min-height: 210px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.home-advantage-grid h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.home-advantage-grid p {
  max-width: 270px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.42;
}

.home-advantage-grid article:last-child,
.home-process-track article:last-child {
  border-right: 0;
}

.home-category-grid {
  display: flex;
  gap: var(--category-gap);
  width: max-content;
  will-change: transform;
  animation: categoryMarquee 54s linear infinite;
}

.home-category-carousel {
  width: calc(100% + 96px);
  margin-right: -48px;
  margin-left: -48px;
  overflow: hidden;
  --category-gap: 18px;
  --category-card-width: 202px;
}

.home-category-grid a {
  position: relative;
  flex: 0 0 var(--category-card-width);
  width: var(--category-card-width);
  min-width: var(--category-card-width);
  aspect-ratio: 4 / 3.1;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.home-category-grid a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.42));
  content: "";
}

.home-category-grid span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--paper);
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.05;
}

.carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-button:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

@keyframes categoryMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--category-gap) / 2)));
  }
}

.cta-band,
.capability-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 48px 82px;
  padding: 44px 48px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.cta-band h2,
.cta-band p,
.capability-band h2,
.capability-band p,
.capability-band strong {
  color: var(--paper);
}

.cta-band .button-dark {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.page-hero,
.split-hero,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 46px;
  min-height: var(--hero-height);
  padding: clamp(42px, 4vw, 72px) 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.solutions-hero {
  min-height: var(--hero-height);
  padding-top: clamp(42px, 4vw, 72px);
  padding-bottom: clamp(42px, 4vw, 72px);
}

.solutions-hero h1 {
  max-width: 850px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
}

.solutions-hero > p {
  align-self: center;
  max-width: 600px;
  font-size: 22px;
  line-height: 1.45;
}

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: var(--hero-height);
  min-height: var(--hero-height);
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 17, 0.42);
  content: "";
}

.about-hero-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(980px, calc(100% - 96px));
  text-align: center;
}

.about-hero-overlay h1 {
  max-width: 920px;
  margin: 0;
  color: var(--paper);
  font-family: "PingFang SC", "PingFang TC", "Helvetica Neue", Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
}

.about-snapshot {
  padding: 56px 48px 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-snapshot-copy {
  max-width: 1180px;
}

.about-snapshot-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 580;
  line-height: 0.98;
}

.about-snapshot-copy p {
  max-width: 1280px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.45;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 42px;
}

.about-metrics article {
  min-height: 220px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 18px 0 24px;
  color: var(--accent);
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.metric-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.about-metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 520;
  line-height: 0.9;
  letter-spacing: 0;
}

.about-metrics p {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.4;
}

body[data-page="about"] .about-page-v2 {
  background: #fff;
  color: #171717;
}

body[data-page="about"] .about-page-v2 img {
  display: block;
  max-width: 100%;
}

body[data-page="about"] .about-hero-v2 {
  position: relative;
  min-height: 495px;
  overflow: hidden;
  background: #14110f;
}

body[data-page="about"] .about-hero-v2 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="about"] .about-hero-v2::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.12));
  content: "";
}

body[data-page="about"] .about-hero-content {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 88px 0 74px;
  color: #fff;
}

body[data-page="about"] .about-hero-content p,
body[data-page="about"] .about-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="about"] .about-hero-content p {
  color: #fff;
}

body[data-page="about"] .about-hero-content h1 {
  max-width: 560px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

body[data-page="about"] .about-hero-content > span {
  display: block;
  max-width: 445px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

body[data-page="about"] .about-hero-button,
body[data-page="about"] .about-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  margin-top: 34px;
  padding: 0 28px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

body[data-page="about"] .about-hero-button:hover,
body[data-page="about"] .about-cta a:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

body[data-page="about"] .about-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(1398px, calc(100% - 86px));
  margin: 0 auto;
  padding: 90px 0 120px;
  background: #fff;
}

body[data-page="about"] .about-stats article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 162px;
  padding: 0 36px;
  text-align: center;
  border-left: 1px solid #dedede;
}

body[data-page="about"] .about-stats article:first-child {
  border-left: 0;
}

body[data-page="about"] .about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: #4B0704;
}

body[data-page="about"] .about-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="about"] .about-stats strong {
  color: #111;
  font-size: clamp(32px, 3.05vw, 42px);
  font-weight: 600;
  line-height: 1;
}

body[data-page="about"] .about-stats sup {
  font-size: 0.5em;
}

body[data-page="about"] .about-stats p {
  margin: 14px 0 0;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

body[data-page="about"] .about-story-v2 {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  width: min(1398px, calc(100% - 86px));
  margin: 0 auto;
  padding: 0 0 68px;
}

body[data-page="about"] .about-story-copy {
  width: 100%;
  min-width: 0;
  padding-left: 60px;
}

body[data-page="about"] .about-story-image {
  width: min(100%, 660px);
  aspect-ratio: 1.82;
  object-fit: cover;
  border-radius: 9px;
}

body[data-page="about"] .about-team-signature {
  width: 180px;
  height: auto;
  margin-top: 2px;
  object-fit: contain;
  background: transparent;
}

body[data-page="about"] .about-story-v2 h2,
body[data-page="about"] .about-section-title h2,
body[data-page="about"] .about-values h2,
body[data-page="about"] .about-certifications h2 {
  margin: 0 0 28px;
  color: #141414;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

body[data-page="about"] .about-story-v2 p:not(.about-kicker),
body[data-page="about"] .about-certifications p,
body[data-page="about"] .about-cta p {
  margin: 0 0 28px;
  color: #242424;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.58;
}

body[data-page="about"] .about-quality {
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 54px 0 70px;
  border-top: 0;
}

body[data-page="about"] .about-quality .about-section-title h2 {
  font-weight: 600;
}

body[data-page="about"] .about-section-title {
  margin-bottom: 56px;
}

body[data-page="about"] .quality-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="about"] .quality-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-width: 0;
  text-align: center;
  border-left: 0;
}

body[data-page="about"] .quality-grid article:first-child {
  border-left: 0;
}

body[data-page="about"] .quality-grid .about-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border: 1px solid #e5d6ce;
  border-radius: 50%;
}

body[data-page="about"] .quality-grid .about-icon svg {
  width: 26px;
  height: 26px;
}

body[data-page="about"] .quality-grid h3 {
  margin: 0 8px 8px;
  color: #181818;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

body[data-page="about"] .quality-grid p {
  min-height: 48px;
  margin: 0 12px 16px;
  color: #403834;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

body[data-page="about"] .quality-grid img {
  justify-self: center;
  width: 250px;
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

body[data-page="about"] .about-values {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin-top: 12px;
  background: #111;
}

body[data-page="about"] .about-values > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

body[data-page="about"] .about-values::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  content: "";
}

body[data-page="about"] .about-values-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 54px 0;
  color: #fff;
}

body[data-page="about"] .about-values .about-kicker,
body[data-page="about"] .about-values h2,
body[data-page="about"] .about-values h3,
body[data-page="about"] .about-values p {
  color: #fff;
}

body[data-page="about"] .about-values article {
  min-width: 0;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

body[data-page="about"] .about-values h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 850;
}

body[data-page="about"] .about-values p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

body[data-page="about"] .about-certifications {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 44px 0 34px;
}

body[data-page="about"] .about-certifications img {
  width: 100%;
  aspect-ratio: 1.54;
  object-fit: cover;
  border-radius: 6px;
}

body[data-page="about"] .cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
}

body[data-page="about"] .cert-logos strong {
  color: #111;
  font-size: 22px;
  font-weight: 900;
}

body[data-page="about"] .about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1360px, calc(100% - 72px));
  margin: 30px auto 66px;
  min-height: 74px;
  padding: 48px 26px;
  background: #f5eee9;
  border-radius: 4px;
}

body[data-page="about"] .about-cta strong {
  display: block;
  margin-bottom: 6px;
  color: #151515;
  font-size: 24px;
  font-weight: 600;
}

body[data-page="about"] .about-cta p {
  margin: 0;
  font-weight: 400;
}

body[data-page="about"] .about-cta a {
  flex: 0 0 auto;
  margin-top: 0;
  font-weight: 600;
}

body[data-page="package-design"] {
  background: #fff;
}

.privacy-page {
  background: #f7f7f7;
  padding: 76px 64px 92px;
}

.privacy-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 72px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.privacy-heading {
  margin-bottom: 38px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.privacy-heading p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 580;
}

.privacy-article h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.privacy-article h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.12;
}

.privacy-article h3 {
  margin: 28px 0 10px;
  font-size: 1.18rem;
}

.privacy-article p,
.privacy-article li,
.privacy-article td,
.privacy-article th {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-article p {
  margin-bottom: 18px;
}

.privacy-article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-article ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.privacy-article li + li {
  margin-top: 8px;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--line);
}

.privacy-article table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

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

.privacy-article th {
  background: #f7f7f7;
  font-weight: 650;
}

.privacy-article tr:last-child td {
  border-bottom: 0;
}

.package-design-page {
  background: #fff;
}

.package-hero {
  position: relative;
  min-height: clamp(360px, 34vw, 520px);
  overflow: hidden;
}

.package-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  content: "";
}

.package-hero div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(100% - 80px, 1360px);
  min-height: clamp(360px, 34vw, 520px);
  margin: 0 auto;
}

.package-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, calc(5.2vw - 18px), 68px);
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.package-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 74px 38px;
  width: min(100% - 88px, 1360px);
  margin: 0 auto;
  padding: 68px 0 98px;
}

.package-type-grid article {
  min-width: 0;
}

.package-type-grid img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
  background: #f7f7f7;
}

.package-type-grid h2 {
  margin: 22px 0 0;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.package-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  gap: 92px;
  align-items: start;
  width: min(100% - 88px, 1360px);
  margin: 0 auto;
  padding: 0 0 72px;
}

.package-request > img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
  background: #f3f0f4;
}

.package-request-form {
  display: grid;
  gap: 18px;
  padding-top: 6px;
}

.package-request-form h2 {
  max-width: 620px;
  margin: 0 0 12px;
  color: #111;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 850;
  line-height: 1.22;
  text-align: center;
}

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

.package-request-form input,
.package-request-form select,
.package-request-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  color: #111;
  font-size: 14px;
  font-weight: 450;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  outline: 0;
}

.package-request-form textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.package-upload {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 18px;
  text-align: center;
  border: 1px dashed #c9c9c9;
}

.package-upload span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 30px;
  margin-bottom: 14px;
  color: #777;
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
}

.package-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.package-upload small {
  max-width: 560px;
  color: #333;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.package-request-form button {
  width: 132px;
  height: 46px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  background: #000;
  border: 0;
}

@media (max-width: 980px) {
  body[data-page="about"] .about-stats,
  body[data-page="about"] .quality-grid,
  body[data-page="about"] .about-values-content,
  body[data-page="about"] .about-certifications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="about"] .about-story-v2 {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .package-request {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body[data-page="about"] .about-stats article:nth-child(odd),
  body[data-page="about"] .quality-grid article:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  body[data-page="about"] .about-hero-content,
  body[data-page="about"] .about-stats,
  body[data-page="about"] .about-story-v2,
  body[data-page="about"] .about-quality,
  body[data-page="about"] .about-values-content,
  body[data-page="about"] .about-certifications,
  body[data-page="about"] .about-cta {
    width: min(100% - 32px, 1120px);
  }

  body[data-page="about"] .about-hero-v2 {
    min-height: 560px;
  }

  .package-hero div,
  .package-type-grid,
  .package-request {
    width: min(100% - 32px, 1360px);
  }

  .package-type-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 38px 0 56px;
  }

  .package-form-grid {
    grid-template-columns: 1fr;
  }

  .package-request-form h2 {
    text-align: left;
  }

  body[data-page="about"] .about-stats,
  body[data-page="about"] .quality-grid,
  body[data-page="about"] .about-values-content,
  body[data-page="about"] .about-certifications {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-stats article,
  body[data-page="about"] .quality-grid article,
  body[data-page="about"] .about-values article {
    border-left: 0;
  }

  body[data-page="about"] .about-cta {
    display: grid;
  }

  body[data-page="about"] .about-cta a {
    justify-content: center;
  }
}

.product-hero-visual,
.split-image,
.image-text > div:first-child {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.product-hero-visual {
  aspect-ratio: 16 / 10;
}

.catalogue-rail {
  display: none;
}

.product-section {
  padding-top: 58px;
}

.product-browse-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.product-filter-panel {
  position: sticky;
  top: calc(var(--topbar) + var(--header) + 24px);
  max-height: calc(100vh - var(--topbar) - var(--header) - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 22px;
  scrollbar-width: none;
}

.product-filter-panel::-webkit-scrollbar {
  width: 0;
}

.product-filter-panel.has-scrollbar {
  scrollbar-width: auto;
}

.product-filter-panel.has-scrollbar::-webkit-scrollbar {
  width: 12px;
}

.product-filter-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-filter-top h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.product-filter-top a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.2;
}

.product-filter-groups {
  display: grid;
  gap: 28px;
  margin-top: 24px;
}

.product-filter-group {
  display: grid;
  gap: 18px;
}

.product-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
  text-align: left;
  cursor: pointer;
}

.product-filter-group.is-active .product-filter-heading,
.product-filter-heading:hover {
  color: var(--accent);
}

.product-filter-group div {
  display: grid;
  gap: 16px;
}

.product-filter-group.is-collapsed div {
  display: none;
}

.product-filter-chevron {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg) translateY(2px);
  transform-origin: center;
}

.product-filter-group.is-collapsed .product-filter-chevron {
  transform: rotate(225deg) translateY(-2px);
}

.product-filter-link {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.28;
  text-align: left;
  cursor: pointer;
}

.product-filter-check {
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--paper);
  border: 1px solid rgba(23, 19, 17, 0.55);
}

.product-filter-link.is-active .product-filter-check::after {
  display: block;
  width: 9px;
  height: 5px;
  margin: 4px 0 0 3px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
  transform: rotate(-45deg);
}

.product-filter-link:hover,
.product-filter-link.is-active {
  color: var(--ink);
}

.product-browse-results .product-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: clamp(38px, calc(2.2vw + 10px), 52px) clamp(24px, 2vw, 36px);
}

.product-browse-results .product-card-media {
  position: relative;
  display: block;
  width: min(330px, 100%);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.product-browse-results .product-card img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  background: #fff;
  border-radius: 0;
  box-sizing: border-box;
  transition: transform 220ms ease, opacity 160ms ease;
}

.product-browse-results .product-card:hover img {
  transform: scale(1.035);
}

.product-browse-results .product-card-body {
  padding-top: 18px;
}

.product-browse-results .product-card-body .eyebrow,
.product-browse-results .product-card-body p:not(.eyebrow),
.product-browse-results .product-card-body .tag-row {
  display: none;
}

.product-browse-results .product-card-body h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.25;
}

.product-listing-heading {
  margin: 0 0 34px;
}

.product-listing-heading:empty {
  display: none;
}

.product-listing-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 2.35vw, 2rem);
  line-height: 1.08;
}

.product-listing-heading p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.filter-bar {
  position: sticky;
  top: calc(var(--topbar) + var(--header));
  z-index: 50;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  height: 64px;
  margin: 0 -48px 42px;
  padding: 0 48px;
  overflow-x: auto;
  white-space: nowrap;
  background: rgba(255, 254, 250, 0.97);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.filter-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 64px;
  padding: 2px 0 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.buyer-notes {
  background: var(--warm);
}

.solutions-section {
  padding: 0 48px 82px;
}

.solution-tabs {
  position: sticky;
  top: calc(var(--topbar) + var(--header));
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
  margin: 0 -48px 48px;
  padding: 0 48px;
  background: rgba(255, 254, 250, 0.97);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.solution-tab {
  display: inline-flex;
  align-items: center;
  height: 64px;
  padding: 2px 0 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  cursor: pointer;
}

.solution-tab:hover,
.solution-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.solution-panel[hidden] {
  display: none;
}

.gym-solution-module {
  margin-bottom: 36px;
  padding: 30px 28px 36px;
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.8), rgba(251, 248, 244, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gym-module-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.gym-module-heading h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.08;
}

.gym-module-heading p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

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

.gym-supply-grid section {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  background: rgba(255, 254, 250, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(23, 19, 17, 0.04);
}

.gym-supply-grid section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(75, 21, 18, 0.08));
  content: "";
}

.gym-supply-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  padding: 7px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  fill: var(--accent);
}

.gym-supply-grid h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.gym-supply-grid section > p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 540;
  line-height: 1.45;
}

.gym-product-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin-top: 4px;
  padding: 8px;
  background: var(--soft);
  border: 1px solid rgba(232, 225, 217, 0.72);
  border-radius: 12px;
}

.gym-product-strip figure {
  min-width: 0;
  margin: 0;
}

.gym-product-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 225, 217, 0.9);
  border-radius: 8px;
  object-fit: cover;
}

.gym-product-strip figcaption {
  margin-top: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-panel-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 46px;
  margin-bottom: 42px;
}

.solution-panel-hero h2 {
  max-width: 780px;
  font-size: 56px;
  line-height: 1.04;
}

.solution-panel-hero p {
  max-width: 620px;
  font-size: 1.16rem;
}

.solution-panel-hero img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.solution-content-grid section {
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.solution-overview-page {
  padding: 34px 64px 66px;
  background: #ffffff;
}

.solution-audience-section {
  max-width: 1560px;
  margin: 0 auto 42px;
}

.solution-audience-section h1 {
  margin: 0;
  text-align: center;
  font-size: 32px;
  font-weight: 760;
  line-height: 1.12;
}

.solution-title-rule {
  width: 48px;
  height: 2px;
  margin: 12px auto 24px;
  background: var(--accent-soft);
}

.solution-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.solution-audience-card {
  position: relative;
  min-height: 356px;
  overflow: hidden;
  background: #fffdfb;
  border: 1px solid rgba(232, 225, 217, 0.92);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(23, 19, 17, 0.05);
}

.solution-audience-card > img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  border-bottom: 1px solid rgba(232, 225, 217, 0.92);
}

.solution-audience-card:first-child > img {
  object-position: 100% 50%;
}

.solution-audience-card:nth-child(3) > img {
  object-position: 48% 50%;
}

.solution-card-icon {
  position: absolute;
  top: 142px;
  left: 32px;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #373330;
  background: #ffffff;
  border: 1px solid rgba(232, 225, 217, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(23, 19, 17, 0.13);
}

.solution-card-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.solution-card-copy {
  padding: 52px 34px 28px;
}

.solution-card-copy h2 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 760;
  line-height: 1.08;
}

.solution-card-copy p {
  max-width: 210px;
  margin: 0;
  color: #5d5853;
  font-size: 19px;
  font-weight: 520;
  line-height: 1.35;
}

.solution-oem-section {
  display: grid;
  grid-template-columns: minmax(390px, 0.52fr) minmax(680px, 1fr);
  gap: 54px;
  max-width: 1560px;
  margin: 0 auto;
  align-items: start;
}

.solution-oem-copy {
  padding-top: 2px;
}

.solution-oem-copy h2 {
  margin-bottom: 12px;
  font-size: 31px;
  font-weight: 760;
  line-height: 1.14;
}

.solution-copy-rule {
  width: 46px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--accent-soft);
}

.solution-oem-copy p {
  max-width: 520px;
  margin-bottom: 24px;
  color: #5d5853;
  font-size: 17px;
  font-weight: 520;
  line-height: 1.32;
}

.solution-oem-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.solution-oem-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-oem-list li {
  position: relative;
  min-height: 23px;
  padding-left: 34px;
  color: #5d5853;
  font-size: 18px;
  font-weight: 680;
  line-height: 1.28;
}

.solution-oem-list li::before,
.solution-oem-list li::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.solution-oem-list li::before {
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-soft);
}

.solution-oem-list li::after {
  top: 8px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent-soft);
}

.solution-process-card {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 28px minmax(150px, 1fr) 28px minmax(150px, 1fr) 28px minmax(150px, 1fr);
  align-items: center;
  min-height: 248px;
  padding: 18px 22px 20px;
  background: linear-gradient(90deg, #fbfbfa 0%, #ffffff 52%, #f7f6f5 100%);
  border: 1px solid rgba(232, 225, 217, 0.92);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(23, 19, 17, 0.05);
}

.solution-process-step {
  display: grid;
  align-content: end;
  justify-items: center;
  min-width: 0;
  min-height: 204px;
}

.solution-process-step h3 {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 820;
  line-height: 1;
}

.solution-process-arrow {
  display: inline-grid;
  place-items: center;
  color: #2c2926;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.solution-sketch {
  display: grid;
  place-items: center;
  width: 100%;
  height: 154px;
}

.solution-sketch svg {
  width: 100%;
  max-width: 210px;
  height: 100%;
  fill: none;
  stroke: #c8c3bf;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.solution-sketch text {
  fill: #c8c3bf;
  stroke: none;
  font-size: 16px;
  font-weight: 800;
}

.solution-product-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 154px;
}

.solution-product-visual img {
  width: 142px;
  height: 142px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.25) brightness(0.54);
}

.solution-product-visual span,
.solution-package-box span {
  position: absolute;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.03;
  text-align: center;
}

.solution-product-visual span {
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
}

.solution-package-box {
  position: relative;
  width: 116px;
  height: 128px;
  margin-bottom: 16px;
  background: linear-gradient(145deg, #282625 0%, #11100f 65%);
  border-radius: 4px;
  box-shadow: 0 18px 28px rgba(23, 19, 17, 0.18);
}

.solution-package-box::before {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 94px;
  height: 28px;
  background: #22201f;
  clip-path: polygon(0 100%, 74% 0, 100% 32%, 27% 100%);
  content: "";
}

.solution-package-box::after {
  position: absolute;
  top: -28px;
  right: -26px;
  width: 26px;
  height: 128px;
  background: #181716;
  clip-path: polygon(0 20%, 100% 36%, 100% 100%, 0 100%);
  content: "";
}

.solution-package-box span {
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
}

.solution-truck-visual {
  display: grid;
  place-items: end center;
  width: 100%;
  height: 154px;
  overflow: hidden;
  background: linear-gradient(180deg, #d8e8f2 0%, #f7f7f5 62%, #ded8d1 63%, #c9c0b8 100%);
  border-radius: 0 8px 0 0;
}

.solution-truck-visual svg {
  width: 100%;
  max-width: 190px;
  height: 126px;
  margin-bottom: 8px;
  fill: #8d4a2c;
  stroke: #2f2c29;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.solution-overview-page {
  padding: 136px 48px 100px;
  background: #ffffff;
}

.solution-finder-section,
.solution-why-section,
.solution-cta-section {
  max-width: 1420px;
  margin-right: auto;
  margin-left: auto;
}

.solution-finder-heading {
  margin-bottom: 26px;
  text-align: center;
}

.solution-finder-heading h1 {
  margin-bottom: 8px;
  font-size: 34px;
  font-weight: 780;
  line-height: 1.1;
}

.solution-finder-heading p {
  margin-bottom: 12px;
  color: #3f3b37;
  font-size: 17px;
  font-weight: 470;
}

.solution-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.solution-finder-card {
  position: relative;
  overflow: hidden;
  min-height: 678px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  border: 1px solid rgba(232, 225, 217, 0.92);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(23, 19, 17, 0.05);
}

.solution-finder-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid rgba(232, 225, 217, 0.82);
}

.solution-finder-card:first-child > img {
  object-position: 86% 50%;
}

.solution-finder-card:nth-child(2) > img {
  object-position: 45% 52%;
}

.solution-finder-card:nth-child(3) > img {
  object-position: 50% 50%;
}

.solution-finder-card .solution-card-icon {
  top: 262px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  color: var(--accent);
}

.solution-finder-card .solution-card-icon svg {
  width: 38px;
  height: 38px;
}

.solution-finder-copy {
  display: grid;
  justify-items: start;
  padding: 58px 46px 34px;
  text-align: left;
}

.solution-finder-copy h2 {
  margin-bottom: 10px;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.08;
}

.solution-finder-copy > p {
  max-width: 300px;
  min-height: 48px;
  margin-bottom: 28px;
  color: #46423e;
  font-size: 16px;
  font-weight: 470;
  line-height: 1.34;
}

.solution-check-list {
  display: grid;
  gap: 12px;
  width: min(280px, 100%);
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.solution-check-list li {
  position: relative;
  min-height: 22px;
  padding-left: 26px;
  color: #4d4844;
  font-size: 15px;
  font-weight: 520;
  line-height: 1.3;
}

.solution-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--accent);
  border: 1.6px solid var(--accent);
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.solution-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 16px;
  margin-top: auto;
  min-width: 190px;
  height: 44px;
  padding: 0 22px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.solution-card-link span {
  font-size: 19px;
  line-height: 0.8;
}

.solution-card-link:hover {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.solution-why-section {
  margin-top: 50px;
  margin-bottom: 40px;
  padding: 50px 42px 56px;
  background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
  border: 1px solid rgba(232, 225, 217, 0.78);
  border-radius: 14px;
  box-shadow: 0 15px 34px rgba(23, 19, 17, 0.04);
}

.solution-why-section h2 {
  margin-bottom: 22px;
  text-align: center;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.12;
}

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

.solution-why-grid article {
  display: grid;
  justify-items: center;
  min-height: 104px;
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(232, 225, 217, 0.98);
}

.solution-why-grid article:last-child {
  border-right: 0;
}

.solution-why-grid svg {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.solution-why-grid h3 {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 760;
}

.solution-why-grid p {
  max-width: 170px;
  margin: 0;
  color: #514c48;
  font-size: 14px;
  font-weight: 460;
  line-height: 1.28;
}

.solution-cta-section {
  position: relative;
  min-height: 250px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 12px;
  background: #eee6dc;
  border: 1px solid rgba(232, 225, 217, 0.86);
}

.solution-cta-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 56%;
}

.solution-cta-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 238, 229, 0.96) 0%, rgba(244, 238, 229, 0.82) 34%, rgba(244, 238, 229, 0.18) 72%, rgba(244, 238, 229, 0.04) 100%);
  content: "";
}

.solution-cta-section > div {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 46px 0 42px 112px;
}

.solution-cta-section h2 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.14;
}

.solution-cta-section p {
  margin-bottom: 22px;
  color: #37322e;
  font-size: 16px;
}

.solution-cta-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.solution-cta-primary,
.solution-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  height: 50px;
  padding: 0 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.solution-cta-primary {
  gap: 12px;
  color: #ffffff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.solution-cta-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(23, 19, 17, 0.58);
}

.solution-cta-primary:hover {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.solution-cta-secondary:hover {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

body[data-page="solution"] main h1,
body[data-page="solution"] main h2,
body[data-page="solution"] main h3,
body[data-page="solution"] main strong,
body[data-page="solution"] main .solution-card-link,
body[data-page="solution"] main .solution-check-list li::before,
body[data-page="solution"] main .solution-cta-primary,
body[data-page="solution"] main .solution-cta-secondary {
  font-weight: 600;
}

.statement-grid,
.service-grid,
.roadmap-grid,
.capability-grid,
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.roadmap-grid,
.capability-grid,
.contact-methods {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.statement-grid article,
.service-card,
.roadmap-grid article,
.capability-grid article,
.contact-methods article,
.inquiry-form {
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.image-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.image-text.reverse {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
}

.image-text img {
  aspect-ratio: 4 / 3;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  color: var(--muted);
}

.check-list li::before {
  margin-right: 10px;
  color: var(--accent);
  content: "•";
}

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

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label,
.form-row legend {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.option-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  border: 0;
}

.option-fieldset legend {
  flex: 0 0 100%;
}

.option-fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: var(--accent);
}

.form-row small,
.form-status {
  color: var(--accent);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 17, 0.55);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(460px, 1.05fr) minmax(420px, 0.95fr);
  width: min(1280px, calc(100vw - 48px));
  max-height: min(780px, 92vh);
  overflow: auto;
  background: #fdfaf5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: #fdfaf5;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.modal-media {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: start;
  gap: 18px;
  padding: 46px 28px 28px;
  background: #fdfaf5;
}

.modal-media > #modalImage {
  width: min(560px, 100%);
  height: auto;
  max-height: min(62vh, 560px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--paper);
  border-radius: 10px;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: min(560px, 100%);
}

.modal-thumb {
  display: block;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.modal-thumb.is-active {
  border-color: var(--accent);
}

.modal-thumb img {
  min-height: 0;
  aspect-ratio: 1;
}

.modal-content {
  padding: 62px 42px 42px;
  background: #fdfaf5;
}

#modalTitle {
  margin-bottom: 32px;
  font-size: clamp(1.725rem, calc(4.05vw - 10px), 3.425rem);
  line-height: 0.98;
}

#modalSummary {
  display: none;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 4px 0 16px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
}

#modalInquiry {
  margin-top: 12px;
  height: 42px;
  padding-right: 23px;
  padding-left: 23px;
}

.spec-list .spec-color-row {
  position: relative;
  align-items: center;
  grid-template-columns: 120px minmax(280px, 1fr);
  border-bottom: 0;
  overflow: visible;
}

.spec-list .spec-color-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.spec-list .spec-color-row + div {
  border-top: 0;
}

.spec-list .spec-color-row dd {
  min-width: 0;
  overflow: visible;
  border-bottom: 0;
}

.color-swatch-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding: 10px 10px 10px 0;
  border-bottom: 0;
  white-space: nowrap;
  scrollbar-width: none;
}

.spec-list .color-swatch-list {
  border-bottom: 0;
}

.color-swatch-list::-webkit-scrollbar {
  display: none;
}

.color-swatch {
  display: inline-block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--swatch-color);
  border: 1px solid rgba(23, 19, 17, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.color-swatch.is-active {
  outline: 2px solid rgba(23, 19, 17, 0.58);
  outline-offset: 5px;
}

.contact-page-v2 {
  background: #fff;
}

.contact-office-section {
  position: relative;
  max-width: 1760px;
  margin: 0 auto;
  padding: 56px 64px 0;
}

.contact-office-heading {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-office-heading h1 {
  margin-bottom: 16px;
  color: #1d1d1f;
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  font-weight: 650;
  line-height: 1.1;
}

.contact-office-heading p {
  margin: 0;
  color: #252525;
  font-size: clamp(0.9rem, 0.9vw, 1.05rem);
  font-weight: 600;
  line-height: 1.35;
}

.contact-map-panel {
  position: relative;
  min-height: clamp(430px, 36vw, 650px);
  overflow: hidden;
  background: url("asset/contactus.webp") center / cover no-repeat;
}

.contact-map-panel::before {
  content: none;
}

.contact-office-card {
  position: absolute;
  right: 8%;
  top: 32%;
  z-index: 1;
  width: min(470px, 36%);
  padding: 38px 42px;
  color: #171717;
  background: #fff;
}

.contact-office-card h2 {
  margin: 0 0 20px;
  color: #171717;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.contact-office-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 18px;
  color: #171717;
  font-size: clamp(0.9rem, 0.9vw, 1.05rem);
  font-weight: 600;
  line-height: 1.35;
}

.contact-whatsapp {
  position: fixed;
  right: 36px;
  top: 22%;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: #3A0C0A;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(66, 87, 41, 0.28);
}

.contact-whatsapp svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.contact-thank-you {
  max-width: 840px;
  margin: 82px auto 106px;
  padding: 0 32px;
  text-align: center;
}

.contact-thank-you p {
  margin: 0;
  color: #202124;
  font-size: clamp(1.625rem, calc(3.2vw - 6px), 2.825rem);
  font-weight: 450;
  line-height: 1.28;
}

.contact-form-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px 82px;
}

.contact-form-section h2,
.contact-faq-section h2 {
  margin: 0 0 42px;
  color: #202124;
  font-size: clamp(2.2rem, 3.2vw, 3.55rem);
  font-weight: 450;
  line-height: 1.1;
}

.contact-simple-form {
  display: grid;
  gap: 22px;
}

.contact-simple-form .form-row {
  gap: 0;
  margin: 0;
}

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

.contact-simple-form input,
.contact-simple-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  color: #171717;
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid #777;
  border-radius: 0;
}

.contact-simple-form textarea {
  min-height: 120px;
  padding-top: 20px;
  resize: vertical;
}

.contact-simple-form input::placeholder,
.contact-simple-form textarea::placeholder {
  color: #3a3a3a;
  opacity: 1;
}

.contact-send-button {
  justify-self: start;
  min-width: 165px;
  min-height: 56px;
  padding: 0 36px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #3A0C0A;
  border: 0;
  cursor: pointer;
}

.contact-simple-form .form-status {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  margin: 6px 0 0;
  color: #171717;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 650;
  line-height: 1.35;
}

.contact-simple-form .form-status:empty {
  display: none;
}

.contact-simple-form .form-status--success::before {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 21px;
  text-align: center;
  content: "\2713";
  background: #3c8847;
  border-radius: 50%;
}

.contact-simple-form .form-status--pending,
.contact-simple-form .form-status--error {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 650;
}

.contact-faq-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 32px 96px;
}

.contact-faq-section h2 {
  text-align: center;
}

.contact-faq-list {
  border-top: 1px solid #e4e4e4;
}

.contact-faq-list details {
  padding: 18px 0 20px;
  border-bottom: 1px solid #e4e4e4;
}

.contact-faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 16px;
  gap: 14px;
  align-items: start;
  color: #202124;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.contact-faq-list summary::-webkit-details-marker {
  display: none;
}

.contact-faq-list summary::before {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #5f6f4b;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  border: 1px solid #7f8873;
  content: "✓";
}

.contact-faq-list summary::after {
  justify-self: end;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  content: "⌄";
}

.contact-faq-list details[open] summary::after {
  content: "^";
}

.contact-faq-list p {
  margin: 12px 30px 0 36px;
  color: #202124;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
}

.contact-question-band {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 70px 32px 82px;
  color: #fff;
  text-align: center;
  background: #3A0C0A;
}

.contact-question-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
}

.contact-question-band p {
  max-width: 640px;
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-question-band .contact-link-line {
  color: #fff;
  font-size: clamp(calc(1.05rem + 2px), calc(1.35vw + 2px), calc(1.35rem + 2px));
  font-weight: 700;
}

.contact-question-band a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-question-band .contact-link-line span {
  text-decoration: none;
}

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr minmax(280px, 1.25fr);
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(54px, 5vw, 90px) 64px;
}

.footer-column,
.footer-connect {
  display: grid;
  align-content: start;
  gap: 20px;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer h3::after {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 38px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.footer-column a {
  color: var(--ink);
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  font-weight: 450;
  line-height: 1.35;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px;
  margin: 18px 0 0;
  white-space: nowrap;
}

.footer-socials a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease, color 180ms ease;
}

.footer-socials a:nth-child(2),
.footer-socials a:nth-child(5) {
  color: var(--ink);
  background: transparent;
}

.footer-socials a:nth-child(2) svg {
  color: #fff;
  background: #111;
  border-radius: 2px;
  padding: 4px;
}

.footer-socials a:nth-child(5) svg {
  color: #fff;
  background: #111;
  border-radius: 7px;
  padding: 4px;
}

.footer-socials a:nth-child(4) {
  position: relative;
}

.footer-socials a:nth-child(4) svg {
  display: none;
}

.footer-socials a:nth-child(4)::before {
  position: absolute;
  left: 1px;
  top: 7px;
  width: 40px;
  height: 28px;
  background: #111;
  border-radius: 7px;
  content: "";
}

.footer-socials a:nth-child(4)::after {
  position: absolute;
  left: 17px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  content: "";
}

.footer-socials a:hover {
  color: var(--accent);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.footer-socials a:nth-child(2):hover,
.footer-socials a:nth-child(5):hover {
  color: var(--ink);
  background: transparent;
}

.footer-socials a:nth-child(4):hover {
  color: var(--ink);
  background: transparent;
}

.footer-socials svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  box-sizing: border-box;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 30px 64px;
  border-top: 1px solid var(--line);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  font-weight: 450;
}

.footer-bottom > a:last-child {
  justify-self: center;
}

.footer-logo-link {
  justify-self: start;
}

.footer-logo-img {
  display: block;
  width: clamp(112px, 8vw, 150px);
  height: auto;
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-connect {
    grid-column: 1 / -1;
  }

  .product-browse-layout {
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
    gap: 30px;
  }

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

  .home-brand-row {
    flex-wrap: wrap;
    gap: 34px;
  }

  .home-solution-entry-grid {
    grid-template-columns: 1fr;
  }

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

  .home-product-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .showcase-card,
  .showcase-card-tall {
    grid-row: auto;
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .site-search {
    display: none;
  }
}

@media (max-width: 760px) {
  .contact-office-section {
    padding: 42px 20px 0;
  }

  .contact-office-heading {
    margin-bottom: 30px;
  }

  .contact-map-panel {
    min-height: 520px;
  }

  .contact-office-card {
    right: 22px;
    left: 22px;
    top: auto;
    bottom: 28px;
    width: auto;
    padding: 28px 26px;
  }

  .contact-whatsapp {
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-thank-you {
    margin: 42px auto 56px;
  }

  .contact-form-section,
  .contact-faq-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 46px 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 26px 24px;
  }

  .footer-bottom > a:last-child {
    justify-self: start;
  }

  .product-browse-layout {
    grid-template-columns: 1fr;
  }

  .product-filter-panel {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .product-filter-groups {
    grid-template-columns: 1fr;
  }

  .product-browse-results .product-grid {
    grid-template-columns: 1fr;
  }

  .home-featured-products {
    padding: 66px 24px 74px;
  }

  .home-featured-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-featured-heading a {
    padding-bottom: 12px;
  }

  .home-featured-grid {
    grid-template-columns: 1fr;
  }

  .home-brand-support {
    gap: 38px;
    padding: 36px 24px 16px;
  }

  .home-brand-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .home-brand-button {
    width: 100%;
    min-width: 0;
  }

  .home-quick-cta {
    flex-direction: column;
    gap: 18px;
    padding: 28px 22px;
  }

  .home-quick-stats {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .home-quick-stats article {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 19, 17, 0.18);
  }

  .home-quick-stats article:last-child {
    border-bottom: 0;
  }

  .home-product-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 20px;
  }

  .showcase-card,
  .showcase-card-tall {
    min-height: 0;
  }
}

@media (max-width: 1024px) {
  body {
    min-width: 0;
  }

  img,
  video,
  iframe,
  table {
    max-width: 100%;
  }

  img {
    height: auto;
  }

  .home-hero-media img,
  .about-hero img,
  body[data-page="about"] .about-hero-v2 > img,
  .package-hero > img,
  .solution-entry-card img,
  .showcase-card img,
  .solution-cta-section > img {
    height: 100%;
    object-fit: cover;
  }

  .top-strip {
    position: relative;
    top: auto;
    flex-wrap: wrap;
    gap: 8px 18px;
    height: auto;
    min-height: var(--topbar);
    padding: 8px 24px;
    line-height: 1.25;
    text-align: center;
  }

  .top-strip span:not(:first-child)::before {
    margin-right: 18px;
  }

  .site-header {
    position: sticky;
    top: 0;
    flex-wrap: wrap;
    align-content: center;
    gap: 0 22px;
    height: auto;
    min-height: var(--header);
    padding: 10px 24px 0;
  }

  .brand-left {
    order: 1;
  }

  .brand-logo-img {
    width: 112px;
  }

  .product-nav,
  .utility-nav {
    height: 46px;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-nav::-webkit-scrollbar,
  .utility-nav::-webkit-scrollbar {
    display: none;
  }

  .product-nav {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }

  .utility-nav {
    order: 2;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
    margin-left: auto;
  }

  .site-nav a:not(.nav-cta) {
    height: 46px;
  }

  .product-mega-menu {
    top: 100%;
    max-height: calc(100vh - 120px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-y: auto;
    padding: 24px;
  }

  .section,
  .solutions-section,
  .solution-overview-page,
  .home-star-section,
  .home-product-showcase,
  .home-more-section,
  .home-advantage-section,
  .home-process-section,
  .home-featured-products,
  .about-snapshot,
  .privacy-page,
  .contact-office-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .home-hero-v2,
  .solution-banner {
    height: clamp(500px, 62vw, 600px);
    min-height: clamp(500px, 62vw, 600px);
  }

  .home-hero-copy {
    left: 32px;
    width: min(680px, calc(100% - 64px));
  }

  .home-hero-copy h1 {
    font-size: clamp(34px, 5vw, 44px);
  }

  .home-hero-copy p:not(.eyebrow) {
    max-width: 640px;
    font-size: clamp(18px, 2.5vw, 22px);
  }

  .home-hero-copy .button {
    min-height: 52px;
    height: 52px;
    font-size: 1rem;
  }

  .home-quick-cta,
  .home-featured-heading,
  .cta-band,
  .capability-band,
  .solution-cta-actions {
    flex-wrap: wrap;
  }

  .home-quick-stats,
  .home-solution-entry-grid,
  .home-featured-grid,
  .home-product-showcase,
  .star-product-grid,
  .product-grid,
  .about-metrics,
  .gym-supply-grid,
  .solution-finder-grid,
  .solution-audience-grid,
  .solution-content-grid,
  .solution-why-grid,
  .statement-grid,
  .roadmap-grid,
  .capability-grid,
  .contact-methods,
  .package-type-grid,
  body[data-page="about"] .about-stats,
  body[data-page="about"] .quality-grid,
  body[data-page="about"] .about-values-content,
  body[data-page="about"] .about-certifications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .home-advantage-grid,
  .home-process-track,
  .gym-product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-heading,
  .page-hero,
  .split-hero,
  .contact-layout,
  .solution-panel-hero,
  .solution-oem-section,
  .image-text,
  .image-text.reverse,
  body[data-page="about"] .about-story-v2,
  .package-request {
    grid-template-columns: 1fr;
  }

  .product-browse-layout {
    grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
    gap: 28px;
  }

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

  .product-browse-results .product-card-media {
    width: 100%;
  }

  .filter-bar,
  .solution-tabs,
  .home-product-tabs {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 32px;
    padding-left: 32px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar,
  .solution-tabs::-webkit-scrollbar,
  .home-product-tabs::-webkit-scrollbar {
    display: none;
  }

  .solution-process-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .solution-process-arrow {
    display: none;
  }

  .solution-process-step {
    min-height: 0;
  }

  .solution-cta-section > div {
    max-width: 58%;
    padding-left: 40px;
  }

  .package-hero div,
  .package-type-grid,
  .package-request,
  body[data-page="about"] .about-hero-content,
  body[data-page="about"] .about-stats,
  body[data-page="about"] .about-story-v2,
  body[data-page="about"] .about-quality,
  body[data-page="about"] .about-values-content,
  body[data-page="about"] .about-certifications,
  body[data-page="about"] .about-cta {
    width: min(100% - 64px, 1360px);
  }

  .modal {
    padding: 24px;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    width: min(720px, calc(100vw - 48px));
  }

  .modal-media,
  .modal-content {
    padding-right: 28px;
    padding-left: 28px;
  }

  .spec-list .spec-color-row {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .color-swatch-list {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .contact-office-card {
    width: min(430px, 48%);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 32px;
    padding-left: 32px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    padding-right: 32px;
    padding-left: 32px;
  }

  .footer-bottom > a:last-child {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  :root {
    --topbar: 30px;
    --header: auto;
  }

  body {
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    line-height: 1.08;
  }

  .top-strip {
    display: none;
  }

  .site-header {
    padding: 10px 18px 0;
  }

  .brand-logo-img {
    width: 104px;
  }

  .utility-nav {
    flex: 1 1 0;
    gap: 16px;
    justify-content: flex-end;
    font-size: 0.72rem;
  }

  .product-nav {
    gap: 20px;
    height: 44px;
    font-size: 0.74rem;
  }

  .site-nav a:not(.nav-cta) {
    height: 44px;
  }

  .product-mega-menu {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 104px);
    padding: 20px 18px 24px;
  }

  .nav-cta,
  .button,
  .button-dark,
  .button-light,
  .button-outline,
  .home-quick-cta a,
  .home-brand-button,
  .solution-card-link,
  .solution-cta-primary,
  .solution-cta-secondary,
  .contact-send-button,
  .package-request-form button,
  #modalInquiry {
    min-height: 44px;
    height: auto;
    white-space: normal;
  }

  .section,
  .solutions-section,
  .solution-overview-page,
  .home-star-section,
  .home-product-showcase,
  .home-more-section,
  .home-advantage-section,
  .home-process-section,
  .home-featured-products,
  .about-snapshot,
  .privacy-page,
  .contact-office-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-hero-v2,
  .solution-banner {
    height: 520px;
    min-height: 520px;
  }

  .home-hero-copy {
    left: 20px;
    top: auto;
    bottom: 42px;
    width: calc(100% - 40px);
    transform: none;
  }

  .product-hero-copy,
  .product-hero.is-recovery-banner .product-hero-copy {
    top: auto;
  }

  .home-hero-copy h1,
  .solutions-hero h1,
  .about-hero-overlay h1,
  body[data-page="about"] .about-hero-content h1,
  .solution-panel-hero h2,
  .package-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .home-hero-copy p:not(.eyebrow),
  .solutions-hero > p,
  .solution-panel-hero p {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions,
  .solution-cta-actions {
    width: 100%;
  }

  .hero-actions .button,
  .solution-cta-primary,
  .solution-cta-secondary {
    width: 100%;
  }

  .home-quick-cta,
  .home-featured-heading,
  .cta-band,
  .capability-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-quick-cta {
    padding: 26px 20px;
  }

  .home-quick-cta p {
    text-align: left;
  }

  .home-quick-cta a,
  .home-brand-button {
    width: 100%;
    min-width: 0;
  }

  .home-brand-support {
    padding: 54px 20px 28px;
  }

  .home-brand-row {
    gap: 24px;
  }

  .home-brand-row img {
    width: min(42vw, 148px);
    height: 58px;
  }

  .home-quick-stats,
  .home-solution-entry-grid,
  .home-featured-grid,
  .home-product-showcase,
  .star-product-grid,
  .product-grid,
  .about-metrics,
  .gym-supply-grid,
  .gym-product-strip,
  .solution-finder-grid,
  .solution-audience-grid,
  .solution-content-grid,
  .solution-why-grid,
  .statement-grid,
  .service-grid,
  .roadmap-grid,
  .capability-grid,
  .contact-methods,
  .package-type-grid,
  .package-form-grid,
  .form-grid,
  .contact-form-grid,
  body[data-page="about"] .about-stats,
  body[data-page="about"] .quality-grid,
  body[data-page="about"] .about-values-content,
  body[data-page="about"] .about-certifications {
    grid-template-columns: 1fr;
  }

  .home-quick-stats article,
  .home-advantage-grid article,
  .home-process-track article,
  .solution-why-grid article,
  body[data-page="about"] .about-stats article,
  body[data-page="about"] .quality-grid article {
    border-right: 0;
    border-left: 0;
  }

  .home-advantage-grid,
  .home-process-track {
    grid-template-columns: 1fr;
  }

  .home-featured-heading {
    gap: 16px;
  }

  .home-featured-heading a {
    white-space: normal;
  }

  .home-statement {
    padding: 54px 20px;
  }

  .home-statement h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-hero,
  .split-hero,
  .contact-layout {
    min-height: 0;
    padding: 52px 20px;
  }

  .about-hero,
  body[data-page="about"] .about-hero-v2,
  .package-hero {
    min-height: 440px;
  }

  .about-hero-overlay,
  .package-hero div,
  .package-type-grid,
  .package-request,
  body[data-page="about"] .about-hero-content,
  body[data-page="about"] .about-stats,
  body[data-page="about"] .about-story-v2,
  body[data-page="about"] .about-quality,
  body[data-page="about"] .about-values-content,
  body[data-page="about"] .about-certifications,
  body[data-page="about"] .about-cta {
    width: calc(100% - 40px);
  }

  body[data-page="about"] .about-hero-content {
    padding: 64px 0 56px;
  }

  body[data-page="about"] .about-story-v2 img,
  body[data-page="about"] .quality-grid img,
  .package-type-grid img,
  .featured-product-media img,
  .product-card img,
  .star-card img {
    max-width: 100%;
    height: auto;
  }

  .package-type-grid {
    gap: 30px;
    padding: 42px 0 62px;
  }

  .package-request-form button {
    width: 100%;
  }

  .product-browse-layout {
    grid-template-columns: 1fr;
  }

  .product-filter-panel {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .product-filter-top a,
  .product-filter-heading,
  .product-filter-link {
    min-height: 44px !important;
    align-items: center !important;
  }

  .product-browse-results .product-grid {
    grid-template-columns: 1fr;
  }

  .product-browse-results .product-card-media {
    width: 100%;
  }

  .filter-bar,
  .solution-tabs,
  .home-product-tabs {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .solution-overview-page {
    padding-top: 70px;
    padding-bottom: 68px;
  }

  .solution-finder-card {
    min-height: 0;
  }

  .solution-finder-copy {
    padding: 54px 24px 30px;
  }

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

  .solution-sketch,
  .solution-product-visual,
  .solution-truck-visual {
    height: 132px;
  }

  .solution-why-section {
    padding: 36px 22px 42px;
  }

  .solution-cta-section {
    min-height: 0;
  }

  .solution-cta-section::after {
    background: rgba(244, 238, 229, 0.9);
  }

  .solution-cta-section > div {
    max-width: none;
    padding: 36px 22px;
  }

  .modal {
    align-items: stretch;
    padding: 14px;
  }

  .modal-panel {
    width: 100%;
    max-height: calc(100vh - 28px);
  }

  .modal-media,
  .modal-content {
    padding: 26px 18px;
  }

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

  .spec-list div,
  .spec-list .spec-color-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .color-swatch-list {
    padding-right: 0;
  }

  .contact-office-section {
    padding-top: 42px;
  }

  .contact-map-panel {
    min-height: 520px;
  }

  .contact-office-card {
    right: 20px;
    bottom: 26px;
    left: 20px;
    top: auto;
    width: auto;
    padding: 26px 22px;
  }

  .contact-whatsapp {
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .contact-thank-you {
    margin: 52px auto 68px;
    padding: 0 20px;
  }

  .contact-form-section,
  .contact-faq-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-simple-form input,
  .contact-simple-form textarea {
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-faq-list p {
    margin-right: 0;
  }

  .privacy-table-wrap,
  .filter-bar,
  .solution-tabs,
  .home-product-tabs,
  .product-nav,
  .utility-nav {
    -webkit-overflow-scrolling: touch;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 46px 20px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 24px 20px;
  }

  .footer-socials {
    flex-wrap: wrap;
    white-space: normal;
  }
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(23, 19, 17, 0.18);
    border-radius: 999px;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
    border-radius: 2px;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto 46px;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 10px 24px;
  }

  .site-header .brand-left {
    order: 0;
  }

  .site-header .mobile-menu-toggle {
    order: 1;
  }

  .site-header .site-search,
  .site-header .product-nav,
  .site-header .utility-nav {
    display: none;
  }

  .site-header.is-mobile-menu-open {
    position: fixed;
    inset: 0;
    z-index: 120;
    grid-template-columns: auto 46px;
    grid-template-rows: auto auto auto auto;
    align-content: start;
    min-height: 100vh;
    overflow-y: auto;
    background: #fffefa;
  }

  .site-header.is-mobile-menu-open .site-search,
  .site-header.is-mobile-menu-open .product-nav,
  .site-header.is-mobile-menu-open .utility-nav {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-mobile-menu-open .site-search {
    order: 2;
    height: 48px;
    margin: 28px 0 12px;
  }

  .site-header.is-mobile-menu-open .product-nav,
  .site-header.is-mobile-menu-open .utility-nav {
    height: auto;
    gap: 0;
    overflow: visible;
    border-top: 1px solid var(--line);
  }

  .site-header.is-mobile-menu-open .product-nav {
    order: 3;
    margin: 0;
  }

  .site-header.is-mobile-menu-open .utility-nav {
    order: 4;
    justify-content: stretch;
    margin: 0;
  }

  .site-header.is-mobile-menu-open .site-nav a:not(.nav-cta) {
    min-height: 56px;
    height: auto;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
    line-height: 1.2;
    white-space: normal;
  }

  .site-header.is-mobile-menu-open .site-nav a:not(.nav-cta)::after {
    content: ">";
    color: var(--faint);
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    margin-bottom: -2px;
    rotate: 45deg;
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    margin-top: -2px;
    rotate: -45deg;
  }

  .top-strip {
    display: none;
  }

  .home-hero-v2,
  .solution-banner,
  .about-hero,
  body[data-page="about"] .about-hero-v2,
  .package-hero {
    display: grid;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #fff;
  }

  .home-hero-media,
  .about-hero img,
  body[data-page="about"] .about-hero-v2 > img,
  .package-hero > img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: clamp(320px, 45vw, 460px);
    min-height: 0;
  }

  .home-hero-media picture,
  .home-hero-media img,
  .about-hero img,
  body[data-page="about"] .about-hero-v2 > img,
  .package-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-hero-copy,
  .product-hero-copy,
  .solution-banner-copy,
  .product-hero.is-recovery-banner .product-hero-copy,
  .package-hero div,
  .about-hero-overlay,
  body[data-page="about"] .about-hero-content {
    position: relative;
    inset: auto;
    width: min(100% - 64px, 760px);
    max-width: none;
    margin: 0 auto;
    padding: 34px 0 46px;
    color: var(--ink);
    text-align: left;
    transform: none;
  }

  .home-hero-copy h1,
  .product-hero-copy h1,
  .solution-banner-copy h1,
  .package-hero h1,
  .about-hero-overlay h1,
  body[data-page="about"] .about-hero-content h1 {
    max-width: none;
    margin-bottom: 14px;
    color: var(--ink) !important;
    font-size: clamp(2.3rem, 6vw, 4rem);
    line-height: 1.06;
    text-shadow: none !important;
  }

  .home-hero-copy p:not(.eyebrow),
  .product-hero-copy p:not(.eyebrow),
  .solution-banner-copy p:not(.eyebrow) {
    max-width: none;
    margin-bottom: 24px;
    color: var(--muted) !important;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
    text-shadow: none !important;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 48px;
  }

  .solution-banner .home-hero-media::after,
  .product-hero.is-yoga-banner .home-hero-media::after,
  .about-hero::after,
  body[data-page="about"] .about-hero-v2::after {
    content: none;
  }

  .section,
  .home-featured-products,
  .home-star-section,
  .home-product-showcase,
  .solution-overview-page,
  .contact-office-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-solution-entry-grid,
  .home-featured-grid,
  .home-product-showcase,
  .solution-finder-grid,
  .solution-audience-grid,
  .solution-content-grid,
  .solution-why-grid,
  .package-type-grid,
  body[data-page="about"] .about-stats,
  body[data-page="about"] .quality-grid {
    gap: 24px;
  }

  .solution-entry-card,
  .solution-finder-card,
  .solution-audience-card,
  .package-type-grid article,
  .featured-product-card,
  .showcase-card {
    width: 100%;
  }

  .split-hero,
  .page-hero,
  .solution-panel-hero,
  .solution-oem-section,
  .image-text,
  .image-text.reverse,
  body[data-page="about"] .about-story-v2,
  .package-request {
    grid-template-columns: 1fr;
  }

  .split-image,
  .image-text > div:first-child,
  .solution-panel-hero img,
  body[data-page="about"] .about-story-v2 img {
    order: -1;
  }

  .contact-simple-form input,
  .contact-simple-form textarea,
  .form-row input,
  .form-row select,
  .form-row textarea,
  .package-request-form input,
  .package-request-form select,
  .package-request-form textarea {
    max-width: 100%;
  }

  .footer-main {
    align-items: start;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .home-quick-stats,
  .home-solution-entry-grid,
  .home-featured-grid,
  .home-product-showcase,
  .product-browse-results .product-grid,
  .package-type-grid,
  .solution-finder-grid,
  .solution-audience-grid,
  .solution-content-grid,
  .solution-why-grid,
  body[data-page="about"] .about-stats,
  body[data-page="about"] .quality-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-browse-layout {
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  }

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

  .hero-actions .button {
    width: auto;
    min-width: 190px;
  }
}

@media (max-width: 767px) {
  .site-header {
    grid-template-columns: auto 44px;
    min-height: 62px;
    padding: 9px 16px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .brand-logo-img {
    width: 104px;
  }

  .site-header.is-mobile-menu-open {
    padding: 14px 20px 28px;
  }

  .home-hero-media,
  .about-hero img,
  body[data-page="about"] .about-hero-v2 > img,
  .package-hero > img {
    height: clamp(240px, 72vw, 330px);
  }

  .home-hero-copy,
  .product-hero-copy,
  .solution-banner-copy,
  .package-hero div,
  .about-hero-overlay,
  body[data-page="about"] .about-hero-content {
    width: calc(100% - 40px);
    padding: 26px 0 42px;
  }

  .home-hero-copy h1,
  .product-hero-copy h1,
  .solution-banner-copy h1,
  .package-hero h1,
  .about-hero-overlay h1,
  body[data-page="about"] .about-hero-content h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-actions .button,
  .home-quick-cta a,
  .home-brand-button,
  .solution-cta-primary,
  .solution-cta-secondary,
  .contact-send-button,
  .package-request-form button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }

  .section,
  .home-featured-products,
  .home-star-section,
  .home-product-showcase,
  .solution-overview-page,
  .contact-office-section {
    padding: 52px 20px;
  }

  .home-solution-entry-grid,
  .home-product-showcase,
  .solution-finder-grid,
  .solution-audience-grid,
  .solution-content-grid,
  .solution-why-grid,
  .package-type-grid,
  body[data-page="about"] .about-stats,
  body[data-page="about"] .quality-grid,
  .footer-main,
  .contact-form-grid,
  .package-form-grid,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .home-featured-grid,
  .product-browse-results .product-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 14px !important;
  }

  .featured-product-media,
  .product-browse-results .product-card-media,
  .product-card img,
  .star-card img {
    aspect-ratio: 1 / 1;
  }

  .product-card-body h3,
  .featured-product-card h3 {
    font-size: 0.92rem !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere;
  }

  .home-solution-entry-grid,
  .solution-finder-grid,
  .solution-audience-grid {
    display: flex;
    gap: 16px;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .solution-entry-card,
  .solution-finder-card,
  .solution-audience-card {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: start;
  }

  .solution-entry-card {
    min-height: 310px;
  }

  .solution-finder-card,
  .solution-audience-card {
    min-height: 0;
  }

  .solution-entry-card div,
  .solution-finder-copy,
  .solution-card-copy {
    padding: 24px;
  }

  .product-browse-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-filter-panel {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .contact-simple-form input,
  .contact-simple-form textarea,
  .form-row input,
  .form-row select,
  .form-row textarea,
  .package-request-form input,
  .package-request-form select,
  .package-request-form textarea {
    width: 100%;
  }

  .contact-office-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 18px;
  }

  .contact-map-panel {
    min-height: 300px;
  }

  .footer-main {
    gap: 30px;
    padding: 42px 20px;
  }

  .footer-column,
  .footer-connect {
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 339px) {
  .home-featured-grid,
  .product-browse-results .product-grid,
  .product-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1024px) {
  body.mobile-menu-open,
  body.modal-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    width: 100%;
    background: rgba(255, 254, 250, 0.98);
  }

  .site-header.is-mobile-menu-open {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    padding: max(22px, env(safe-area-inset-top)) 44px 44px;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: none;
  }

  .site-header.is-mobile-menu-open .brand-logo-img {
    width: clamp(150px, 24vw, 220px);
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle {
    width: 60px;
    height: 60px;
    border-color: rgba(23, 19, 17, 0.16);
    box-shadow: 0 6px 20px rgba(23, 19, 17, 0.05);
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle span {
    width: 27px;
    height: 3px;
  }

  .site-header.is-mobile-menu-open .site-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 60px;
    height: 58px;
    margin: 44px 0 28px;
    border-color: rgba(23, 19, 17, 0.55);
  }

  .site-header.is-mobile-menu-open .site-search input {
    padding-left: 22px;
    font-size: 1.18rem;
  }

  .site-header.is-mobile-menu-open .site-search button {
    width: 60px;
    min-height: 56px;
  }

  .site-header.is-mobile-menu-open .site-search svg {
    width: 30px;
    height: 30px;
  }

  .site-header.is-mobile-menu-open .site-nav {
    color: #171311;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .site-header.is-mobile-menu-open .product-nav {
    max-width: min(420px, 100%);
    border-top: 1px solid #e7dfd8;
  }

  .site-header.is-mobile-menu-open .utility-nav {
    margin-top: 28px;
    border-top: 1px solid #e7dfd8;
  }

  .site-header.is-mobile-menu-open .site-nav a:not(.nav-cta) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 74px;
    align-items: center;
    padding: 20px 0;
    color: #171311;
    border-bottom: 1px solid #e7dfd8;
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    font-weight: 760;
    line-height: 1;
  }

  .site-header.is-mobile-menu-open .product-nav a:not(.nav-cta) {
    font-size: clamp(1.55rem, 3.7vw, 2.5rem);
  }

  .site-header.is-mobile-menu-open .site-nav a:not(.nav-cta).is-active {
    color: var(--accent);
  }

  .site-header.is-mobile-menu-open .site-nav a:not(.nav-cta)::after {
    content: ">";
    color: #918b85;
    font-size: 0.85em;
    font-weight: 800;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-backdrop {
    background: rgba(23, 19, 17, 0.52);
    backdrop-filter: blur(10px);
  }

  .modal-panel {
    width: 100vw;
    max-width: 100vw;
    max-height: min(92dvh, 920px);
    grid-template-columns: 1fr;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -20px 60px rgba(23, 19, 17, 0.2);
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .modal-media {
    padding: 62px 20px 18px;
  }

  .modal-content {
    padding: 22px 24px max(34px, env(safe-area-inset-bottom));
  }

  .modal-media > #modalImage {
    width: min(520px, 100%);
    max-height: 44dvh;
    aspect-ratio: 1 / 1;
  }

  .modal-thumbs {
    display: flex;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .modal-thumb {
    flex: 0 0 66px;
    width: 66px;
  }

  #modalTitle {
    margin-bottom: 18px;
    font-size: clamp(1.75rem, 5vw, 2.8rem);
    line-height: 1.08;
  }

  .spec-list {
    gap: 0;
    margin: 22px 0;
  }

  .spec-list div,
  .spec-list .spec-color-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 14px 0;
  }

  #modalInquiry {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 88px;
    padding: max(18px, env(safe-area-inset-top)) 32px 16px;
    border-bottom: 1px solid #e7dfd8;
  }

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

  .mobile-menu-toggle {
    width: 58px;
    height: 58px;
    border-color: rgba(23, 19, 17, 0.18);
  }

  .mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    margin: 3px 0;
  }

  .site-header.is-mobile-menu-open {
    grid-template-columns: auto 60px;
    padding: max(24px, env(safe-area-inset-top)) 42px max(36px, env(safe-area-inset-bottom));
  }

  .site-header.is-mobile-menu-open .brand-logo-img {
    width: 164px;
  }

  .site-header.is-mobile-menu-open .site-search {
    margin-top: 48px;
  }

  .site-header.is-mobile-menu-open .product-nav {
    max-width: 100%;
  }

  .site-header.is-mobile-menu-open .site-nav a:not(.nav-cta) {
    min-height: 66px;
    font-size: clamp(1.75rem, 7.6vw, 2.45rem);
  }

  .site-header.is-mobile-menu-open .product-nav a:not(.nav-cta) {
    min-height: 66px;
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .home-hero-v2,
  .product-hero,
  .solution-banner,
  .about-hero,
  body[data-page="about"] .about-hero-v2,
  .package-hero {
    border-bottom: 1px solid #e7dfd8;
  }

  .home-hero-media,
  .about-hero img,
  body[data-page="about"] .about-hero-v2 > img,
  .package-hero > img {
    height: min(62vw, 310px);
  }

  .home-hero-copy,
  .product-hero-copy,
  .solution-banner-copy,
  .package-hero div,
  .about-hero-overlay,
  body[data-page="about"] .about-hero-content {
    width: calc(100% - 64px);
    padding: 30px 0 44px;
  }

  .home-hero-copy h1,
  .product-hero-copy h1,
  .solution-banner-copy h1,
  .package-hero h1,
  .about-hero-overlay h1,
  body[data-page="about"] .about-hero-content h1 {
    font-size: clamp(2.05rem, 8.8vw, 3rem);
  }

  .home-hero-copy p:not(.eyebrow),
  .product-hero-copy p:not(.eyebrow),
  .solution-banner-copy p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .home-featured-products,
  .home-star-section,
  .home-product-showcase,
  .section,
  .solution-overview-page,
  .contact-office-section,
  .contact-form-section,
  .contact-faq-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .home-featured-heading {
    padding-bottom: 0;
    margin-bottom: 28px;
  }

  .home-featured-heading h2,
  .product-filter-top h2,
  .contact-form-section h2,
  .contact-faq-section h2 {
    font-size: clamp(1.55rem, 6vw, 2.25rem);
    line-height: 1.1;
  }

  .product-browse-layout {
    gap: 26px;
  }

  .product-filter-panel {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .product-filter-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 0 0 18px;
  }

  .mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    color: #fff;
    background: var(--accent);
    border: 0;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 760;
    text-transform: uppercase;
  }

  .product-filter-top h2 {
    margin: 0;
  }

  .product-filter-top > a {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 34px !important;
  }

  .product-filter-groups {
    display: none;
    gap: 16px;
    margin-top: 8px;
    padding: 18px;
    background: #fffefa;
    border: 1px solid #e7dfd8;
    border-radius: 18px;
  }

  .product-filter-panel.is-mobile-filter-open .product-filter-groups {
    display: grid;
  }

  .product-filter-group {
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e7dfd8;
  }

  .product-filter-group:last-child {
    border-bottom: 0;
  }

  .product-filter-heading,
  .product-filter-link {
    min-height: 48px !important;
    font-size: 1rem;
  }

  .product-card-body h3,
  .featured-product-card h3 {
    min-height: 2.5em;
  }

  .contact-simple-form input,
  .contact-simple-form textarea,
  .form-row input,
  .form-row select,
  .form-row textarea,
  .package-request-form input,
  .package-request-form select,
  .package-request-form textarea {
    min-height: 54px;
    border-radius: 12px;
  }

  .contact-send-button,
  .package-request-form button {
    border-radius: 999px;
  }

  .contact-faq-list details {
    padding: 0;
  }

  .contact-faq-list summary {
    min-height: 62px;
    align-items: center;
    padding: 16px 0;
  }

  .footer-main {
    gap: 0;
    padding: 38px 32px;
  }

  .footer-column,
  .footer-connect {
    gap: 0;
    padding: 0;
    border-bottom: 1px solid #e7dfd8;
  }

  .site-footer h3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 62px;
    margin: 0;
    font-size: 1.08rem;
    cursor: pointer;
  }

  .site-footer h3::before {
    justify-self: end;
    color: #918b85;
    content: "+";
  }

  .site-footer h3::after {
    display: none;
  }

  .footer-column a,
  .footer-socials {
    display: none;
  }

  .footer-column.is-footer-open a {
    display: block;
    padding: 8px 0 16px;
    font-size: 1.05rem;
  }

  .footer-connect.is-footer-open .footer-socials {
    display: flex;
    padding: 6px 0 20px;
  }

  .footer-column.is-footer-open h3::before,
  .footer-connect.is-footer-open h3::before {
    content: "-";
  }

  .footer-bottom {
    padding: 24px 32px max(30px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 1024px) {
  .site-header.is-mobile-menu-open {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-auto-rows: max-content;
    align-items: center;
    gap: 0;
  }

  .site-header.is-mobile-menu-open .brand-left {
    justify-self: start;
  }

  .site-header.is-mobile-menu-open .site-search,
  .site-header.is-mobile-menu-open .product-nav,
  .site-header.is-mobile-menu-open .utility-nav {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-mobile-menu-open .site-search {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

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

  .site-footer {
    background: #fffefa;
  }

  .footer-main {
    display: block;
    padding: 34px 28px 20px;
  }

  .footer-column,
  .footer-connect {
    display: block;
    width: 100%;
    border-bottom: 1px solid #e7dfd8;
  }

  .site-footer h3 {
    display: flex;
    width: 100%;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    margin: 0;
    color: #171311;
    font-size: clamp(1.18rem, 5.4vw, 1.55rem);
    font-weight: 780;
    line-height: 1.05;
    letter-spacing: 0;
    text-align: left;
  }

  .site-footer h3::before {
    content: none !important;
  }

  .site-footer h3::after {
    position: static;
    display: inline-flex;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: #918b85;
    background: transparent;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1;
    content: "+";
  }

  .footer-column.is-footer-open h3::after,
  .footer-connect.is-footer-open h3::after {
    content: "-";
  }

  .footer-column a {
    display: none;
    min-height: 48px;
    align-items: center;
    padding: 5px 0;
    color: #171311;
    font-size: 1.12rem;
    line-height: 1.35;
  }

  .footer-column.is-footer-open a {
    display: flex;
  }

  .footer-column.is-footer-open,
  .footer-connect.is-footer-open {
    padding-bottom: 18px;
  }

  .footer-socials {
    display: none;
    gap: 18px;
    margin: 0;
    padding: 4px 0 10px;
    overflow-x: auto;
  }

  .footer-connect.is-footer-open .footer-socials {
    display: flex;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
    padding: 32px 28px max(34px, env(safe-area-inset-bottom));
    border-top: 0;
  }

  .footer-bottom > a:last-child,
  .footer-logo-link {
    justify-self: start;
  }

  .footer-logo-img {
    width: 152px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .top-strip {
    display: none !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    width: 100%;
    max-width: 100vw;
    min-height: 112px;
    gap: 16px;
    padding: max(24px, env(safe-area-inset-top)) 32px 18px;
  }

  .site-header .brand-left {
    min-width: 0;
  }

  .site-header .brand-logo-img {
    width: clamp(142px, 42vw, 176px);
    max-width: 100%;
  }

  .site-header .mobile-menu-toggle {
    justify-self: end;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .site-header.is-mobile-menu-open {
    position: fixed;
    grid-template-columns: minmax(0, 1fr) 58px;
    width: 100vw;
    max-width: 100vw;
    min-height: 100dvh;
    padding: max(28px, env(safe-area-inset-top)) 32px max(34px, env(safe-area-inset-bottom));
  }

  .site-header.is-mobile-menu-open .site-search,
  .site-header.is-mobile-menu-open .product-nav,
  .site-header.is-mobile-menu-open .utility-nav {
    max-width: 100%;
    min-width: 0;
  }

  .main,
  main,
  section,
  .section,
  .product-browse-layout,
  .product-browse-results,
  .product-grid,
  .product-card,
  .product-card-body,
  .home-hero-v2,
  .product-hero {
    max-width: 100%;
    min-width: 0;
  }

  .product-hero {
    display: grid;
    grid-template-columns: 1fr;
    overflow: clip;
  }

  .product-hero .home-hero-media {
    width: 100%;
    height: clamp(220px, 62vw, 300px);
  }

  .product-hero-copy {
    width: auto !important;
    max-width: none;
    padding: 28px 28px 38px !important;
  }

  .product-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.7rem) !important;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .product-hero-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem !important;
    line-height: 1.55;
  }

  .product-section {
    padding: 34px 20px 56px !important;
  }

  .product-browse-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    width: 100%;
  }

  .product-filter-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-filter-toggle {
    width: 100%;
    min-height: 48px;
  }

  .product-filter-top > a {
    justify-self: start;
  }

  .product-listing-heading h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 2rem);
    overflow-wrap: anywhere;
  }

  .product-browse-results .product-grid,
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 18px !important;
    width: 100%;
  }

  .product-browse-results .product-card,
  .product-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-browse-results .product-card-media,
  .featured-product-media,
  .product-card img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-browse-results .product-card img {
    object-fit: contain;
  }

  .product-browse-results .product-card-body h3,
  .product-card-body h3,
  .featured-product-card h3 {
    max-width: 100%;
    min-height: 0;
    font-size: 0.95rem !important;
    line-height: 1.22 !important;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .site-header {
    min-height: 104px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .product-section {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .product-browse-results .product-grid,
  .product-grid {
    gap: 26px 14px !important;
  }
}

@media (max-width: 767px) {
  .site-header {
    left: 0;
    right: auto;
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .site-header .mobile-menu-toggle {
    display: grid !important;
  }

  .home-hero-v2,
  .product-hero,
  .product-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
  }

  .product-hero-copy,
  .product-browse-layout {
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-filter-panel,
  .product-browse-results,
  .product-listing-heading,
  .product-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-browse-results .product-grid {
    grid-template-columns: repeat(2, calc((100% - 14px) / 2)) !important;
    column-gap: 14px !important;
  }

  .product-browse-results .product-card-media {
    width: 100% !important;
    max-width: none !important;
  }

  .product-browse-results .product-card img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .mobile-filter-toggle {
    max-width: 100% !important;
  }
}
