:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --bone: #f4f2ee;
  --ignite: #ff4a1c;
  --field: #1f3a2e;
  --ash: #5b5b5b;
  --line: #e5e5e5;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

textarea,
select {
  font: inherit;
}

.announcement {
  display: grid;
  min-height: 34px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 32px;
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 14px 30px rgba(10, 10, 10, 0.08);
}

.brand {
  display: block;
  width: 180px;
  height: 72px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 42px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 29px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--ignite);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.menu-button,
.quote-form button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button {
  display: none;
}

.inquiry-button {
  min-height: 44px;
  border: 1px solid rgba(255, 74, 28, 0.72);
  background:
    linear-gradient(135deg, var(--ignite) 0 16px, var(--ink) 16px 100%);
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 20px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 12px 26px rgba(255, 74, 28, 0.18);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.inquiry-button:hover {
  border-color: var(--ignite);
  background:
    linear-gradient(135deg, var(--paper) 0 14px, var(--ignite) 14px 100%);
  box-shadow: 0 16px 34px rgba(255, 74, 28, 0.28);
  transform: translateY(-2px);
}

.mobile-nav {
  position: sticky;
  top: 78px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav a {
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: 15px 20px;
  text-transform: uppercase;
}

.mobile-nav.is-open {
  display: grid;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 60% center;
}

.hero-scrim {
  background:
    radial-gradient(circle at 76% 34%, rgba(255, 74, 28, 0.2), rgba(255, 74, 28, 0) 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 38%, rgba(0, 0, 0, 0.18) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--max));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: 74px clamp(20px, 5.5vw, 80px) 118px;
}

.mono-line {
  margin: 0 0 18px;
  color: var(--ignite);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.anatomy-copy h2,
.custom-copy h2,
.trust strong {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.38);
  font-size: clamp(64px, 9.4vw, 132px);
  line-height: 0.9;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 28px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero .button {
  min-width: 220px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

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

.button-light:hover,
.button-dark:hover,
.product-card button:hover {
  background: var(--ignite);
  border-color: var(--ignite);
  color: var(--paper);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--paper);
}

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

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

.button-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

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

.hero-meta {
  position: absolute;
  right: clamp(20px, 5.5vw, 80px);
  bottom: 28px;
  left: clamp(20px, 5.5vw, 80px);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  max-width: var(--max);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.category-section,
.sports-inner,
.difference,
.featured {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 112px clamp(20px, 5.5vw, 80px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.section-heading-row > a {
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.section-heading h2,
.anatomy-copy h2,
.custom-copy h2 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.72) 100%);
  content: "";
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-label {
  position: absolute;
  bottom: 58px;
  left: 26px;
  z-index: 1;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.category-count {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sports-section {
  background: var(--paper);
}

.sports-inner {
  width: 100%;
  max-width: none;
  padding-right: 12px;
  padding-left: 12px;
}

.sports-inner .section-heading {
  width: min(100%, var(--max));
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  padding: 0 calc(clamp(20px, 5.5vw, 80px) - 12px);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.sport-card {
  --card-cut: clamp(14px, 1.65vw, 26px);
  position: relative;
  min-height: 462px;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - var(--card-cut)) 0, 100% var(--card-cut), 100% 100%, var(--card-cut) 100%, 0 calc(100% - var(--card-cut)));
  color: var(--paper);
  isolation: isolate;
}

.sport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, filter 650ms ease;
}

.sport-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 74, 28, 0.78) 45%, rgba(255, 74, 28, 0.78) 55%, transparent 58%) top right / 46px 46px no-repeat,
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.28) 45%, rgba(255, 255, 255, 0.28) 55%, transparent 58%) bottom left / 38px 38px no-repeat;
  content: "";
  opacity: 0.86;
  pointer-events: none;
}

.sport-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.74) 100%);
  content: "";
}

.sport-card:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.045);
}

.sport-card span {
  position: absolute;
  right: 18px;
  bottom: 28px;
  left: 18px;
  z-index: 3;
  display: block;
  color: var(--paper);
  font-size: clamp(23px, 1.85vw, 36px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
}

.sport-card-more p {
  position: absolute;
  right: 22px;
  bottom: 84px;
  left: 22px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
}

/* Gaelic games buyer hub */
.gaelic-games-hero img {
  object-position: center 24%;
}

.gaelic-answer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background: #f2f0ea;
}

.gaelic-answer h2,
.gaelic-range h2,
.gaelic-process h2,
.gaelic-buyer-check h2,
.gaelic-faq h2,
.gaelic-next h2 {
  max-width: 950px;
}

.gaelic-answer > p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.75;
}

.gaelic-range,
.gaelic-buyer-check {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.gaelic-range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(19, 22, 19, 0.22);
  border: 1px solid rgba(19, 22, 19, 0.22);
}

.gaelic-range-grid article {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
}

.gaelic-card-number {
  margin-bottom: 3rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: #e84c24;
}

.gaelic-range-grid h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.gaelic-range-grid p {
  margin: 0 0 2rem;
  line-height: 1.7;
}

.gaelic-range-grid a {
  margin-top: auto;
  color: #141714;
  font-weight: 800;
  text-underline-offset: 0.3em;
}

.gaelic-process {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  color: #fff;
  background: #101310;
}

.gaelic-process .mono-line {
  color: #ff6840;
}

.gaelic-process-list {
  max-width: 1160px;
  margin: 3rem auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.gaelic-process-list li {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.gaelic-process-list li > span {
  font-family: "JetBrains Mono", monospace;
  color: #ff6840;
}

.gaelic-process-list h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.gaelic-process-list p {
  max-width: 830px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.gaelic-faq {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background: #f2f0ea;
}

.gaelic-faq-list {
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

.gaelic-faq details {
  border-top: 1px solid rgba(19, 22, 19, 0.25);
}

.gaelic-faq details:last-child {
  border-bottom: 1px solid rgba(19, 22, 19, 0.25);
}

.gaelic-faq summary {
  padding: 1.5rem 2.75rem 1.5rem 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 800;
}

.gaelic-faq details p {
  max-width: 820px;
  margin: 0;
  padding: 0 0 1.5rem;
  line-height: 1.7;
}

.gaelic-next {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  color: #fff;
  background: linear-gradient(120deg, #123f2b, #0d1f17 72%);
}

.gaelic-next > div:first-child {
  max-width: 980px;
}

.gaelic-next > div:first-child > p:last-child {
  max-width: 820px;
  line-height: 1.7;
}

.gaelic-next .hero-actions {
  margin: 2rem 0 2.5rem;
}

.gaelic-next .page-link-grid a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 860px) {
  .gaelic-answer,
  .gaelic-range-grid {
    grid-template-columns: 1fr;
  }

  .gaelic-range-grid article {
    min-height: 0;
  }

  .gaelic-card-number {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 560px) {
  .gaelic-process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

/* Soccer manufacturing hub */
.soccer-hero img {
  object-position: center 20%;
}

.soccer-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(19, 22, 19, 0.22);
  border: 1px solid rgba(19, 22, 19, 0.22);
}

.soccer-program-grid article {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: #fff;
}

.soccer-program-grid h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.soccer-program-grid p {
  margin: 0 0 2rem;
  line-height: 1.7;
}

.soccer-program-grid a {
  margin-top: auto;
  color: #102137;
  font-weight: 800;
  text-underline-offset: 0.3em;
}

.soccer-page .gaelic-card-number,
.soccer-page .gaelic-process .mono-line,
.soccer-page .gaelic-process-list li > span {
  color: #55b8f2;
}

.soccer-page .gaelic-process {
  background: #0b1524;
}

.soccer-page .gaelic-next {
  background: linear-gradient(120deg, #123f6d, #091729 72%);
}

.soccer-geo {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: #eaf4fa;
}

@media (max-width: 760px) {
  .soccer-program-grid {
    grid-template-columns: 1fr;
  }

  .soccer-program-grid article {
    min-height: 0;
  }
}

/* Rugby manufacturing hub */
.rugby-hero img {
  object-position: center 24%;
}

.rugby-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(19, 22, 19, 0.22);
  border: 1px solid rgba(19, 22, 19, 0.22);
}

.rugby-program-grid article {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: #fff;
}

.rugby-program-grid h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.rugby-program-grid p {
  margin: 0 0 2rem;
  line-height: 1.7;
}

.rugby-program-grid a {
  margin-top: auto;
  color: #421b16;
  font-weight: 800;
  text-underline-offset: 0.3em;
}

.rugby-page .gaelic-card-number,
.rugby-page .gaelic-process .mono-line,
.rugby-page .gaelic-process-list li > span {
  color: #ff6840;
}

.rugby-page .gaelic-process {
  background: #17110f;
}

.rugby-page .gaelic-next {
  background: linear-gradient(120deg, #6a2416, #24100c 72%);
}

.rugby-geo {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: #f5ece7;
}

@media (max-width: 760px) {
  .rugby-program-grid {
    grid-template-columns: 1fr;
  }

  .rugby-program-grid article {
    min-height: 0;
  }
}

/* Netball, basketball, and activewear manufacturing hubs */
.category-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(19, 22, 19, 0.22);
  border: 1px solid rgba(19, 22, 19, 0.22);
}

.category-program-grid article {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: #fff;
}

.category-program-grid h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.category-program-grid p {
  margin: 0 0 2rem;
  line-height: 1.7;
}

.category-program-grid a {
  margin-top: auto;
  color: #171717;
  font-weight: 800;
  text-underline-offset: 0.3em;
}

.netball-hero img { object-position: center 19%; }
.basketball-hero img { object-position: center 20%; }
.activewear-hero img { object-position: center 21%; }

.netball-page .gaelic-card-number,
.netball-page .gaelic-process .mono-line,
.netball-page .gaelic-process-list li > span { color: #f28b38; }
.netball-page .gaelic-process { background: #21130d; }
.netball-page .gaelic-next { background: linear-gradient(120deg, #8a3a14, #2e130a 72%); }
.netball-geo { padding-block: clamp(4rem, 8vw, 8rem); background: #fbefe4; }

.basketball-page .gaelic-card-number,
.basketball-page .gaelic-process .mono-line,
.basketball-page .gaelic-process-list li > span { color: #ef7c2f; }
.basketball-page .gaelic-process { background: #101b1b; }
.basketball-page .gaelic-next { background: linear-gradient(120deg, #0f615b, #082824 72%); }
.basketball-geo { padding-block: clamp(4rem, 8vw, 8rem); background: #e8f4f2; }

.activewear-page .gaelic-card-number,
.activewear-page .gaelic-process .mono-line,
.activewear-page .gaelic-process-list li > span { color: #ff6840; }
.activewear-page .gaelic-process { background: #151719; }
.activewear-page .gaelic-next { background: linear-gradient(120deg, #3e454a, #131719 72%); }
.activewear-geo { padding-block: clamp(4rem, 8vw, 8rem); background: #edf0f1; }

@media (max-width: 760px) {
  .category-program-grid { grid-template-columns: 1fr; }
  .category-program-grid article { min-height: 0; }
}

/* Padel, hybrid fitness, golf, American football, and cricket hubs */
.padel-hero img { object-position: center 20%; }
.hyrox-hero img { object-position: center 18%; }
.golf-hero img { object-position: center 16%; }
.american-football-hero img { object-position: center 20%; }
.cricket-hero img { object-position: center 18%; }

.padel-page .gaelic-process { background: #102319; }
.padel-page .gaelic-next { background: linear-gradient(120deg, #276b3f, #102519 72%); }
.padel-geo { background: #eaf4ed; }
.hyrox-page .gaelic-process { background: #171b1d; }
.hyrox-page .gaelic-next { background: linear-gradient(120deg, #26363b, #111719 72%); }
.hyrox-geo { background: #edf1f2; }
.golf-page .gaelic-process { background: #122b21; }
.golf-page .gaelic-next { background: linear-gradient(120deg, #315e45, #12271d 72%); }
.golf-geo { background: #edf4ef; }
.american-football-page .gaelic-process { background: #211913; }
.american-football-page .gaelic-next { background: linear-gradient(120deg, #7b5b20, #261a0c 72%); }
.american-football-geo { background: #f5f0e5; }
.cricket-page .gaelic-process { background: #21100e; }
.cricket-page .gaelic-next { background: linear-gradient(120deg, #8a2f21, #2b100c 72%); }
.cricket-geo { background: #f7ece9; }

.padel-geo,
.hyrox-geo,
.golf-geo,
.american-football-geo,
.cricket-geo { padding-block: clamp(4rem, 8vw, 8rem); }

.difference {
  width: 100%;
  max-width: none;
  background: var(--bone);
}

.difference .section-heading,
.difference .capability-grid {
  width: min(100%, var(--max));
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: transparent;
  border: 0;
}

.capability {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(10, 10, 10, 0);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.capability::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 88px;
  height: 12px;
  background: var(--ignite);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  content: "";
  opacity: 0.82;
  transform: translateX(18px) skewX(-18deg);
  transition: opacity 260ms ease, transform 260ms ease;
}

.capability::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  pointer-events: none;
}

.capability:hover {
  border-color: rgba(255, 74, 28, 0.45);
  box-shadow: 0 28px 76px rgba(10, 10, 10, 0.18);
  transform: translateY(-8px);
}

.capability:hover::before {
  opacity: 1;
  transform: translateX(2px) skewX(-18deg);
}

.capability-media {
  position: relative;
  height: 246px;
  overflow: hidden;
  background: var(--ink);
}

.capability-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(135deg, rgba(255, 74, 28, 0.16), rgba(255, 74, 28, 0) 38%);
  content: "";
}

.capability-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 520ms ease, transform 520ms ease;
}

.capability:hover .capability-media img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.06);
}

.capability-body {
  position: relative;
  z-index: 1;
  min-height: 184px;
  padding: 26px 28px 30px;
}

.capability-icon,
.product-card p,
.spec-list dt,
.footer-bottom {
  font-family: "JetBrains Mono", monospace;
}

.capability-icon {
  display: block;
  margin-bottom: 30px;
  color: var(--ignite);
  font-size: 13px;
  font-weight: 700;
  transition: color 260ms ease, transform 260ms ease;
}

.capability h3,
.product-card h3,
.footer h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.capability p,
.anatomy-copy p,
.custom-copy p,
.footer p,
.footer address {
  color: var(--ash);
  font-size: 17px;
  line-height: 1.55;
}

.capability h3,
.capability p {
  transition: color 260ms ease, transform 260ms ease;
}

.capability-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--ignite);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.capability-link:hover {
  color: var(--ink);
}

.capability:hover .capability-icon,
.capability:hover h3,
.capability:hover p {
  transform: translateX(6px);
}

.capability:hover p {
  color: #333;
}

.anatomy,
.custom {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(36px, 6vw, 88px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 128px clamp(20px, 5.5vw, 80px);
}

.anatomy-media img,
.custom img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

.anatomy-copy,
.custom-copy {
  align-self: center;
}

.spec-list {
  display: grid;
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

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

.spec-list dt {
  color: var(--ash);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.product-rail {
  display: grid;
  grid-auto-columns: minmax(280px, 1fr);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.product-card {
  position: relative;
  display: grid;
  min-width: 280px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px;
  scroll-snap-align: start;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bone);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.new-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  background: var(--ignite);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.product-card h3 {
  margin-top: 18px;
}

.product-card p {
  margin: 7px 0 18px;
  color: var(--ash);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-card button {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--ignite);
  background:
    linear-gradient(135deg, var(--ignite) 0 16px, var(--ink) 16px 100%);
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: auto;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background:
    linear-gradient(135deg, rgba(255, 74, 28, 0.16) 0 1px, transparent 1px 72px),
    #1c1c1c;
  color: var(--paper);
}

.trust div {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 74, 28, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 36%),
    #080808;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  padding: clamp(28px, 5vw, 64px);
  text-align: center;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.trust div::before,
.trust div::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.trust div::before {
  top: 0;
  right: 0;
  left: -40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ignite), transparent);
  opacity: 0;
  transform: translateX(-36%);
  transition: opacity 260ms ease, transform 420ms ease;
}

.trust div::after {
  top: 24px;
  right: 24px;
  width: 72px;
  height: 10px;
  background: var(--ignite);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  opacity: 0.34;
  transform: skewX(-18deg);
  transition: opacity 260ms ease, transform 260ms ease;
}

.trust div:hover {
  z-index: 1;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 74, 28, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0) 38%),
    #0e0e0e;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-8px);
}

.trust div:hover::before {
  opacity: 1;
  transform: translateX(36%);
}

.trust div:hover::after {
  opacity: 0.82;
  transform: translateX(-10px) skewX(-18deg);
}

.trust strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--paper);
  font-size: clamp(68px, 9vw, 124px);
  line-height: 0.9;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
  transition: color 260ms ease, transform 260ms ease;
}

.trust span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 260ms ease, transform 260ms ease;
}

.trust div:hover strong {
  color: #fff7f4;
  transform: translateY(-4px);
}

.trust div:hover span {
  color: rgba(255, 255, 255, 0.94);
  transform: translateY(-4px);
}

.custom {
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
}

.custom img {
  min-height: 560px;
}

.sticky-inquiry {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 22px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  padding: 16px 18px 16px 20px;
}

.sticky-inquiry.is-visible {
  display: flex;
}

.sticky-inquiry span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sticky-inquiry a {
  background: var(--ignite);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-transform: uppercase;
}

.footer {
  background: #050608;
  color: var(--paper);
  scroll-margin-top: 96px;
}

.footer-cta,
.footer-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: clamp(20px, 5.5vw, 80px);
  padding-left: clamp(20px, 5.5vw, 80px);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #090c12;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-cta h2 {
  margin: 0;
  color: var(--paper);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-cta p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.5;
}

.footer-cta-actions,
.footer-action-row,
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-primary-action,
.footer-secondary-action,
.footer-action-row a,
.footer-trust-row span {
  display: inline-grid;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 0 16px;
  text-transform: uppercase;
}

.footer-primary-action {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  white-space: nowrap;
  border-color: rgba(255, 74, 28, 0.72);
  background: var(--ignite);
  box-shadow: 0 18px 44px rgba(255, 74, 28, 0.24);
}

.footer-primary-action::after {
  content: ">";
}

.footer-secondary-action {
  background: rgba(255, 255, 255, 0.02);
}

.footer-main {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 1.18fr) minmax(170px, 0.74fr) minmax(150px, 0.7fr) minmax(140px, 0.6fr) minmax(220px, 0.84fr);
  gap: clamp(26px, 3.2vw, 52px);
  padding-top: 80px;
  padding-bottom: 28px;
}

.footer-brand img {
  width: 212px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.footer-link-column,
.footer-office {
  padding-top: 120px;
}

.footer-brand p {
  max-width: 365px;
  margin: 24px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.62;
}

.footer-trust-row {
  margin-bottom: 28px;
}

.footer-trust-row span {
  min-height: 36px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 12px;
}

.footer-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.footer-cert-badge {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.86);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px 6px 7px;
  text-transform: uppercase;
}

.footer-cert-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-cert-mark-grs {
  color: #45c7d7;
}

.footer-cert-mark-ocs {
  color: #55bd63;
}

.footer-action-row a {
  min-height: 38px;
  min-width: 86px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.84);
  padding: 0 14px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-social-row a {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.86);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social-row a:hover,
.footer-social-row a:focus-visible {
  border-color: var(--ignite);
  background: var(--ignite);
  color: var(--paper);
  transform: translateY(-2px);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

.social-icon-facebook {
  width: 22px;
  height: 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: lowercase;
}

.social-icon-pinterest {
  width: 24px;
  height: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 700;
  line-height: 28px;
}

.social-icon-foursource {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4db768;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.social-icon-instagram {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.social-icon-instagram::before {
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.social-icon-instagram::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.footer-action-row a:hover,
.footer-secondary-action:hover,
.footer-link-column a:hover,
.footer-office a:hover {
  color: var(--paper);
  border-color: rgba(255, 74, 28, 0.7);
}

.footer-link-column h2,
.footer-office h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--paper);
  font-family: Anton, Impact, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-link-column h2 span,
.footer-office h2 span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--ignite);
}

.footer-link-column a {
  display: block;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-link-column a:hover {
  transform: translateX(4px);
}

.footer-office-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  padding: 12px 14px;
}

.footer-office-card article {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 0 0 8px;
}

.footer-office-card article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 8px;
}

.footer-office-card article:last-child {
  padding-bottom: 0;
}

.footer-office-card article > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 74, 28, 0.12);
  color: var(--ignite);
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  font-weight: 900;
}

.footer-office h3 {
  margin: 0 0 3px;
  color: var(--paper);
  font-size: 13px;
  line-height: 1.14;
}

.footer-office address,
.footer-office a {
  display: block;
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.footer-office a {
  overflow-wrap: normal;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 12px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-credit span {
  color: #ffffff;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #ffffff;
}

.footer-credit:focus-visible {
  outline: 2px solid #ff4a1c;
  outline-offset: 4px;
}

.text-link-button,
.text-menu-button {
  display: inline-grid;
  width: auto;
  min-width: 68px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-menu-button {
  display: none;
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 40px;
  min-height: 360px;
  align-items: end;
  background: var(--ink);
  color: var(--paper);
  padding: 72px clamp(20px, 5.5vw, 80px);
}

.crumb,
.sku,
.sku-line,
.chip,
.shop-toolbar,
.shop-card p,
.pdp-mini-table dt,
.spec-grid dt,
.standard-strip span,
.pdp-sticky {
  font-family: "JetBrains Mono", monospace;
}

.crumb {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero h1,
.pdp-info h1,
.pdp-section h2,
.editorial-break h2,
.cross-category span,
.faq-section h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.shop-hero h1 {
  font-size: clamp(76px, 10vw, 136px);
}

.shop-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.36;
}

.shop-hero-proof {
  display: grid;
  gap: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 28px;
}

.shop-hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.shop-shell,
.pdp-section,
.faq-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 58px clamp(20px, 5.5vw, 80px) 112px;
}

.shop-category-shell {
  width: min(100%, 1720px);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
  min-width: 0;
}

.shop-sidebar {
  position: sticky;
  top: 92px;
  min-width: 0;
}

.sidebar-card {
  border: 1px solid var(--line);
  background: var(--paper);
  max-height: calc(100vh - 118px);
  min-width: 0;
  overflow-y: auto;
  padding: 18px;
}

.sidebar-card h2 {
  margin: 4px 0 18px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-sidebar-list {
  display: grid;
  gap: 8px;
  max-width: 100%;
}

.category-sidebar-list a {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--bone);
  color: var(--ink);
  padding: 12px;
}

.category-sidebar-list span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.category-sidebar-list small {
  color: var(--ash);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.category-sidebar-list a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.category-sidebar-list a.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.category-sidebar-list a:hover small {
  color: rgba(255, 255, 255, 0.72);
}

.category-sidebar-list a.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

.sidebar-quote {
  display: grid;
  min-height: 46px;
  align-items: center;
  justify-items: center;
  margin-top: 16px;
  background: var(--ignite);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-catalog {
  min-width: 0;
}

.shop-category-toolbar {
  top: 76px;
  margin-bottom: 24px;
}

.shop-category-toolbar > div {
  display: grid;
  gap: 5px;
}

.shop-category-toolbar strong {
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.shop-category-toolbar p:last-child {
  max-width: 430px;
  line-height: 1.45;
  text-align: right;
}

.shop-summary-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 24px;
  background: var(--line);
  border: 1px solid var(--line);
}

.shop-summary-band div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  background: var(--paper);
  padding: 16px;
}

.shop-summary-band span {
  display: grid;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 900;
}

.shop-summary-band p {
  margin: 0;
  color: var(--ash);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.sport-category-panel {
  scroll-margin-top: 120px;
  border: 1px solid var(--line);
  background: var(--paper);
  margin-top: 18px;
}

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

.future-product-media:hover img {
  transform: scale(1.045);
}

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

.future-product-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px;
}

.future-product-card:nth-child(4n) {
  border-right: 0;
}

.future-product-media {
  display: block;
  aspect-ratio: 1 / 1.28;
  overflow: hidden;
  background: var(--bone);
  margin: -20px -20px 20px;
}

.future-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.future-product-card .sku {
  width: fit-content;
  background: rgba(255, 74, 28, 0.1);
  color: var(--ignite);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 9px;
}

.future-product-card h3 {
  margin: 16px 0 10px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.14;
  text-transform: uppercase;
}

.future-product-card p {
  margin: 0 0 22px;
  color: var(--ash);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.future-product-card button {
  align-self: end;
  min-height: 42px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 12px;
  text-transform: uppercase;
}

.future-product-card button:hover {
  border-color: var(--ignite);
  background: var(--ignite);
}

.teamwear-live-section {
  margin: 0 0 26px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: var(--ink);
  color: var(--paper);
}

.teamwear-live-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
  gap: 28px;
  align-items: end;
  padding: clamp(24px, 4vw, 42px);
}

.teamwear-live-header h2,
.customizer-hero h1,
.kitbuilder-page-heading h1,
.kitbuilder-customizer-toolbar h1,
.kitbuilder-copy h2,
.customizer-answer-section h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.teamwear-live-header h2 {
  max-width: 720px;
  font-size: clamp(42px, 5.4vw, 84px);
}

.teamwear-live-header p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.teamwear-live-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.teamwear-live-facts span {
  min-height: 72px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.35;
  padding: 18px;
  text-transform: uppercase;
}

.teamwear-live-facts span:last-child {
  border-right: 0;
}

.teamwear-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px clamp(18px, 3vw, 30px) 0;
}

.teamwear-filter-row button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 13px;
  text-transform: uppercase;
}

.teamwear-filter-row button:hover,
.teamwear-filter-row button.is-active {
  border-color: var(--ignite);
  background: var(--ignite);
  color: var(--paper);
}

.teamwear-status {
  margin: 18px clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.45;
  padding: 12px 14px;
  text-transform: uppercase;
}

.teamwear-status[data-tone="ready"] {
  border-color: rgba(255, 74, 28, 0.46);
  color: rgba(255, 255, 255, 0.9);
}

.teamwear-status[data-tone="error"] {
  border-color: rgba(255, 74, 28, 0.72);
}

.teamwear-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.teamwear-design-card {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
}

.teamwear-design-card[hidden] {
  display: none;
}

.teamwear-design-card:nth-child(4n) {
  border-right: 0;
}

.teamwear-design-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050505;
}

.teamwear-design-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.teamwear-design-card:hover .teamwear-design-media img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.04);
}

.teamwear-design-body {
  display: grid;
  align-content: start;
  padding: 18px;
}

.teamwear-design-body span,
.teamwear-card-action {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.teamwear-design-body span {
  color: var(--ignite);
}

.teamwear-design-body h3 {
  margin: 12px 0 10px;
  color: var(--paper);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.teamwear-design-body p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.48;
}

.teamwear-card-action {
  display: grid;
  min-height: 42px;
  align-items: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--paper);
}

.teamwear-card-action:hover {
  border-color: var(--ignite);
  background: var(--ignite);
}

.kitbuilder-catalog-page {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 44px clamp(20px, 5.5vw, 80px) 112px;
}

.kitbuilder-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.54fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  margin-bottom: 30px;
}

.kitbuilder-page-heading h1 {
  max-width: 760px;
  font-size: clamp(56px, 7vw, 104px);
}

.kitbuilder-page-heading > p {
  margin: 0;
  color: var(--ash);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.56;
}

.kitbuilder-catalog-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
  min-width: 0;
}

.kitbuilder-catalog-main {
  min-width: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}

.kitbuilder-catalog-main .shop-category-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  padding: 18px;
  border-bottom: 1px solid var(--ink);
}

.kitbuilder-catalog-main .shop-category-toolbar p {
  margin: 0;
}

.kitbuilder-catalog-main .shop-category-toolbar strong {
  color: var(--ink);
}

.kitbuilder-catalog-main .shop-category-toolbar p:last-child {
  color: var(--ash);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

.kitbuilder-catalog-main .teamwear-status {
  margin: 18px;
  border-color: var(--line);
  background: var(--bone);
  color: var(--ash);
}

.kitbuilder-catalog-main .teamwear-status[data-tone="ready"] {
  border-color: rgba(255, 74, 28, 0.42);
  color: var(--ink);
}

.kitbuilder-catalog-main .teamwear-status[data-tone="error"] {
  border-color: rgba(255, 74, 28, 0.72);
  color: var(--ink);
}

.kitbuilder-catalog-main .teamwear-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 24px;
}

.kitbuilder-catalog-main .teamwear-design-card,
.kitbuilder-catalog-main .teamwear-design-card:nth-child(4n) {
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.kitbuilder-catalog-main .teamwear-design-media {
  box-sizing: border-box;
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: #ffffff;
}

.kitbuilder-catalog-main .teamwear-design-media img {
  object-fit: contain;
  transform: none;
}

.kitbuilder-catalog-main .teamwear-design-card:hover .teamwear-design-media img {
  filter: saturate(1.08) contrast(1.05);
  transform: none;
}

.kitbuilder-catalog-main .teamwear-design-body {
  background: var(--paper);
}

.kitbuilder-catalog-main .teamwear-design-body h3 {
  color: var(--ink);
}

.kitbuilder-catalog-main .teamwear-design-body p {
  color: var(--ash);
}

.kitbuilder-catalog-main .teamwear-card-action {
  border-color: var(--ink);
  color: var(--ink);
}

.kitbuilder-catalog-main .teamwear-card-action:hover {
  border-color: var(--ignite);
  background: var(--ignite);
  color: var(--paper);
}

.kitbuilder-customizer-page {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 34px clamp(20px, 5.5vw, 80px) 96px;
}

.kitbuilder-customizer-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 20px;
}

.kitbuilder-customizer-toolbar h1 {
  font-size: clamp(44px, 5.2vw, 78px);
}

.kitbuilder-customizer-toolbar p:last-child {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--ash);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.kitbuilder-customizer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.teamwear-embed-frame-full,
.teamwear-embed-frame-full [data-kit-configurator] {
  min-height: calc(100vh - 250px);
}

@media (max-width: 1000px) {
  .kitbuilder-page-heading,
  .kitbuilder-catalog-layout,
  .kitbuilder-catalog-main .shop-category-toolbar,
  .kitbuilder-customizer-toolbar {
    grid-template-columns: 1fr;
  }

  .kitbuilder-catalog-main .shop-category-toolbar p:last-child {
    text-align: left;
  }

  .kitbuilder-catalog-main .teamwear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
  }

  .kitbuilder-sidebar {
    position: static;
  }

  .kitbuilder-customizer-actions {
    justify-content: stretch;
  }
}

@media (max-width: 640px) {
  .kitbuilder-catalog-page,
  .kitbuilder-customizer-page {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .kitbuilder-page-heading h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .kitbuilder-page-heading > p {
    font-size: 15px;
  }

  .kitbuilder-catalog-main .teamwear-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .kitbuilder-catalog-main .teamwear-design-media {
    padding: 14px;
  }

  .kitbuilder-customizer-toolbar h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .teamwear-embed-frame-full,
  .teamwear-embed-frame-full [data-kit-configurator] {
    min-height: 680px;
  }
}

.customizer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 42px;
  align-items: end;
  min-height: 560px;
  background:
    linear-gradient(135deg, rgba(255, 74, 28, 0.18), rgba(255, 74, 28, 0) 38%),
    linear-gradient(180deg, #111 0%, #050505 100%);
  color: var(--paper);
  padding: 74px clamp(20px, 5.5vw, 80px);
}

.customizer-hero-copy {
  max-width: 880px;
}

.customizer-hero h1 {
  max-width: 820px;
  font-size: clamp(60px, 8vw, 118px);
}

.customizer-hero-copy > p:not(.mono-line):not(.crumb) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.customizer-hero-panel {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.customizer-hero-panel span {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.45;
  padding: 18px;
  text-transform: uppercase;
}

.kitbuilder-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 58px clamp(20px, 5.5vw, 80px) 112px;
}

.kitbuilder-copy {
  align-self: start;
  position: sticky;
  top: 96px;
}

.kitbuilder-copy h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.kitbuilder-copy > p:not(.mono-line) {
  color: var(--ash);
  font-size: 17px;
  line-height: 1.58;
}

.kitbuilder-brief-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.kitbuilder-brief-grid article {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px;
}

.kitbuilder-brief-grid span {
  color: var(--ignite);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.kitbuilder-brief-grid h3 {
  margin: 8px 0 8px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.kitbuilder-brief-grid p {
  margin: 0;
  color: var(--ash);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.teamwear-embed-frame {
  min-height: 740px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.14);
  background: var(--bone);
  box-shadow: 0 24px 80px rgba(10, 10, 10, 0.12);
}

.teamwear-embed-frame [data-kit-configurator] {
  min-height: 740px;
}

.customizer-answer-section {
  border-top: 1px solid var(--line);
}

.catalog-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  min-height: calc(100vh - 112px);
  border-bottom: 1px solid var(--line);
}

.catalog-product-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--bone);
  padding: clamp(18px, 3vw, 42px);
}

.catalog-product-media img {
  width: min(100%, 620px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.14);
}

.catalog-product-gallery {
  display: grid;
  grid-template-columns: clamp(64px, 6vw, 88px) minmax(0, 620px);
  gap: 14px;
  align-content: start;
  align-items: start;
  justify-content: center;
  width: 100%;
}

.catalog-product-gallery .catalog-gallery-main {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.catalog-gallery-thumbs {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  align-items: start;
  gap: 8px;
  max-height: min(620px, calc(100vh - 210px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.catalog-gallery-thumbs button {
  aspect-ratio: 1;
  border: 2px solid transparent;
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.catalog-gallery-thumbs button.is-active {
  border-color: var(--ignite);
}

.catalog-gallery-thumbs img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  min-height: 0;
  object-fit: contain;
  background: #fff;
  display: block;
  box-shadow: none;
}

.catalog-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.5vw, 64px);
}

.catalog-product-info .crumb {
  color: var(--ash);
  margin-bottom: 26px;
}

.catalog-product-info h1,
.catalog-product-section h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.catalog-product-info h1 {
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 1.02;
}

.catalog-product-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 84px clamp(20px, 5.5vw, 80px);
}

.enhanced-product-section {
  border-bottom: 1px solid var(--line);
}

.answer-summary {
  max-width: 980px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.enhanced-detail-grid,
.enhanced-link-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.enhanced-detail-grid article,
.enhanced-link-row a {
  background: var(--paper);
  min-height: 150px;
  padding: 22px;
}

.enhanced-detail-grid p,
.enhanced-link-row span {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.enhanced-link-row a {
  color: var(--ink);
  text-decoration: none;
  display: grid;
  gap: 12px;
}

.enhanced-link-row strong {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.enhanced-spec-table {
  border: 1px solid var(--line);
  margin: 0;
}

.enhanced-spec-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) 1fr;
  border-bottom: 1px solid var(--line);
}

.enhanced-spec-table div:last-child {
  border-bottom: 0;
}

.enhanced-spec-table dt,
.enhanced-spec-table dd {
  margin: 0;
  padding: 18px 20px;
}

.enhanced-spec-table dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.enhanced-spec-table dd {
  color: var(--ink);
  line-height: 1.65;
}

.enhanced-faq-list {
  display: grid;
  gap: 10px;
}

.enhanced-faq-list details {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 20px;
}

.enhanced-faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.enhanced-faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.catalog-detail-grid article {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 28px;
}

.catalog-detail-grid article:last-child {
  border-right: 0;
}

.catalog-detail-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  margin-bottom: 44px;
}

.catalog-detail-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-detail-grid p {
  margin: 0;
  color: var(--ash);
  font-size: 14px;
  line-height: 1.55;
}

.chip-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 14px;
  text-transform: uppercase;
}

.chip.is-active,
.shop-toolbar button:hover,
.pagination-row nav a:hover,
.pagination-row nav a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.shop-toolbar {
  position: sticky;
  top: 66px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  padding: 18px 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-toolbar button,
.pagination-row nav a {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 14px;
  text-transform: uppercase;
}

.shop-toolbar p {
  margin: 0;
  color: var(--ash);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 30px;
}

.shop-card {
  position: relative;
  display: grid;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px;
}

.shop-card-image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bone);
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.05);
}

.shop-card .sku {
  position: absolute;
  top: 28px;
  right: 28px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 9px;
}

.shop-card h2 {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-card p {
  min-height: 34px;
  margin: 8px 0 16px;
  color: var(--ash);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.shop-card .shop-price {
  min-height: 0;
  border: 1px solid rgba(255, 74, 28, 0.32);
  background: rgba(255, 74, 28, 0.08);
  color: var(--ink);
  margin-top: -4px;
  padding: 10px;
}

.shop-card .shop-price span {
  display: block;
  color: var(--ignite);
  margin-top: 4px;
}

.shop-card button {
  min-height: 44px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-card button:hover,
.pdp-sticky button:hover {
  background: var(--ignite);
  border-color: var(--ignite);
}

.editorial-break {
  position: relative;
  display: grid;
  min-height: 440px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  margin: 74px 0 0;
  padding: clamp(28px, 5vw, 64px);
}

.editorial-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.editorial-break::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.14));
  content: "";
}

.editorial-break div {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.editorial-break h2 {
  font-size: clamp(52px, 7vw, 92px);
}

.editorial-break p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.38;
}

.pagination-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 38px;
}

.pagination-row nav {
  display: flex;
  gap: 8px;
}

.cross-category {
  padding-top: 92px;
}

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

.cross-category-grid a {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.cross-category-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 600ms ease;
}

.cross-category-grid a:hover img {
  transform: scale(1.05);
}

.cross-category-grid span {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  font-size: clamp(38px, 4vw, 58px);
}

.pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  min-height: calc(100vh - 112px);
  border-bottom: 1px solid var(--line);
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  background: var(--bone);
  padding: clamp(18px, 3vw, 40px);
}

.pdp-gallery--single {
  grid-template-columns: minmax(0, 1fr);
}

.pdp-gallery--single .main-product-image img {
  object-fit: contain;
  transform: none;
}

.thumb-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.thumb-column button {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--paper);
  cursor: pointer;
  padding: 0;
}

.thumb-column button.is-active {
  border-color: var(--ignite);
}

.thumb-column img,
.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-product-image {
  aspect-ratio: 1;
  align-self: start;
  overflow: hidden;
  background: var(--paper);
}

.pdp-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.5vw, 64px);
}

.pdp-info .crumb {
  color: var(--ash);
  margin-bottom: 26px;
}

.pdp-info h1 {
  font-size: clamp(64px, 7.5vw, 108px);
}

.sku-line {
  margin: 14px 0 0;
  color: var(--ash);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-summary {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ash);
  font-size: 17px;
  line-height: 1.55;
}

.price-callout {
  display: grid;
  max-width: 420px;
  border: 1px solid rgba(255, 74, 28, 0.38);
  background: rgba(255, 74, 28, 0.08);
  margin: 0 0 22px;
  padding: 18px;
}

.price-callout span,
.price-callout small {
  color: var(--ash);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-callout strong {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  margin: 8px 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}

.tag-row span {
  border: 1px solid var(--line);
  background: var(--bone);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.quantity-box {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.quantity-box label {
  color: var(--ash);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quantity-control {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  max-width: 280px;
  border: 1px solid var(--line);
}

.quantity-control button {
  border: 0;
  background: var(--paper);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.quantity-control input {
  min-height: 52px;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: center;
}

.quantity-box p {
  margin: 0;
  color: var(--ash);
  font-size: 13px;
  font-weight: 700;
}

.pdp-primary,
.pdp-secondary {
  width: 100%;
  max-width: 520px;
  margin-bottom: 12px;
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ignite);
  border-color: var(--ignite);
  color: var(--paper);
}

.pdp-mini-table,
.spec-grid {
  display: grid;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.pdp-mini-table div,
.spec-grid div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.pdp-mini-table dt,
.spec-grid dt {
  color: var(--ash);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-mini-table dd,
.spec-grid dd {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.custom-details {
  max-width: 520px;
  border: 1px solid var(--line);
  padding: 18px;
}

.custom-details summary,
.faq-list summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.custom-details ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--ash);
  line-height: 1.7;
}

.pdp-section h2,
.faq-section h2 {
  font-size: clamp(50px, 7vw, 86px);
}

.spec-grid {
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line);
}

.spec-grid div {
  border-right: 1px solid var(--line);
  padding: 18px;
}

.standard-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.standard-strip div {
  display: grid;
  min-height: 176px;
  align-content: center;
  gap: 10px;
  background: var(--bone);
  padding: 28px;
}

.standard-strip strong {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.standard-strip span {
  color: var(--ash);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-anatomy,
.pdp-custom {
  padding-top: 112px;
  padding-bottom: 112px;
}

.related-products {
  padding-top: 88px;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--ash);
  font-size: 16px;
  line-height: 1.55;
}

.pdp-sticky {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 65;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  padding: 14px 16px 14px 20px;
}

.pdp-sticky.is-visible {
  display: flex;
}

.pdp-sticky span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pdp-sticky button {
  min-height: 44px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 18px;
  text-transform: uppercase;
}

.pdp-sticky a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 18px;
  text-transform: uppercase;
}

.section-intro {
  max-width: 920px;
  color: var(--ash);
  font-size: 17px;
  line-height: 1.6;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.pricing-table article {
  display: grid;
  min-height: 280px;
  align-content: space-between;
  border: 1px solid var(--line);
  background: var(--bone);
  padding: 24px;
}

.pricing-table article.is-best {
  border-color: var(--ignite);
  background: var(--ink);
  color: var(--paper);
}

.pricing-table span,
.pricing-table small {
  color: var(--ash);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.pricing-table .is-best span,
.pricing-table .is-best small {
  color: rgba(255, 255, 255, 0.68);
}

.pricing-table strong {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  text-transform: uppercase;
}

.pricing-table p {
  color: var(--ignite);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  margin: 14px 0;
}

.product-story p + p {
  margin-top: 18px;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--bone);
  padding: clamp(22px, 4vw, 52px);
}

.quote-panel h2 {
  font-size: clamp(52px, 7vw, 94px);
}

.quote-panel p,
.quote-panel li {
  color: var(--ash);
  font-size: 16px;
  line-height: 1.6;
}

.quote-panel ul {
  padding-left: 20px;
}

.product-quote-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(18px, 3vw, 32px);
}

.product-quote-form label {
  color: var(--ash);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-quote-form input,
.product-quote-form select,
.product-quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
}

.product-quote-form button {
  width: 100%;
  margin-top: 8px;
}

.product-quote-form p {
  margin: 0;
  font-size: 12px;
}

.size-chart-table {
  display: grid;
  border-top: 1px solid var(--line);
  margin-top: 26px;
}

.size-chart-table > div {
  display: grid;
  grid-template-columns: 0.62fr 0.82fr 1.2fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.size-chart-table strong,
.size-chart-table span {
  font-size: 14px;
  line-height: 1.45;
}

.size-chart-table strong {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-chart-table span {
  color: var(--ash);
  font-weight: 700;
}

.shipping-steps {
  padding: 0;
}

.visual-spec-section {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 8vw, 118px) 0 clamp(82px, 8vw, 126px);
  isolation: isolate;
}

.visual-spec-parallax {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.visual-spec-parallax img {
  width: 100%;
  height: 124%;
  object-fit: cover;
  opacity: 0.64;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.visual-spec-parallax::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.76) 48%, rgba(10, 10, 10, 0.64)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.32) 42%, rgba(10, 10, 10, 0.88));
  content: "";
}

.visual-spec-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 74, 28, 0.14), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.08), transparent 34%);
  content: "";
  pointer-events: none;
}

.visual-spec-section .section-heading,
.spec-visual-grid {
  width: min(calc(100% - 40px), var(--max));
  margin-right: auto;
  margin-left: auto;
}

.visual-spec-section .section-heading {
  max-width: 1040px;
}

.visual-spec-section .section-intro {
  color: rgba(255, 255, 255, 0.76);
}

.spec-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.spec-visual-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 0.92fr);
  min-height: 282px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease, border-color 220ms ease, background 220ms ease;
}

.spec-visual-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.spec-visual-card:hover {
  border-color: rgba(255, 74, 28, 0.72);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}

.spec-visual-media {
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.spec-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 700ms ease;
}

.spec-visual-card:hover .spec-visual-media img {
  transform: scale(1);
}

.spec-visual-body {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: clamp(18px, 2.2vw, 26px);
}

.spec-visual-body > span {
  color: var(--ignite);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-visual-body h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.spec-visual-body dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.spec-visual-body dl div {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 8px;
}

.spec-visual-body dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-visual-body dd {
  margin: 0;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.32;
}

.spec-visual-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.content-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 74px);
  min-height: 608px;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 44px clamp(20px, 5.5vw, 80px);
}

.content-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 74, 28, 0.14), rgba(255, 74, 28, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.content-hero .crumb,
.content-hero-copy,
.content-hero > img {
  position: relative;
  z-index: 1;
}

.content-hero .crumb {
  grid-column: 1 / -1;
}

.content-hero h1,
.about-intro h2,
.story-grid-section h2,
.buyer-section h2,
.seo-copy-section h2,
.service-lines h2,
.process-section h2,
.service-feature h2,
.geo-section h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.content-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 5.4vw, 76px);
}

.content-hero p:not(.mono-line):not(.crumb) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.42;
}

.content-hero > img {
  width: 100%;
  min-height: 400px;
  max-height: 720px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.about-intro,
.story-grid-section,
.buyer-section,
.seo-copy-section,
.service-lines,
.process-section,
.geo-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 112px clamp(20px, 5.5vw, 80px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.about-intro h2,
.story-grid-section h2,
.buyer-section h2,
.seo-copy-section h2,
.service-lines h2,
.process-section h2,
.service-feature h2,
.geo-section h2 {
  font-size: clamp(48px, 7vw, 86px);
}

.rich-copy p,
.seo-copy-section p,
.service-feature p {
  margin: 0 0 22px;
  color: var(--ash);
  font-size: 18px;
  line-height: 1.62;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  color: var(--paper);
}

.metric-band div {
  display: grid;
  min-height: 230px;
  align-content: center;
  justify-items: center;
  background: #080808;
  padding: 34px 22px;
  text-align: center;
}

.metric-band strong {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.metric-band span,
.service-card-grid span,
.process-step-media span {
  font-family: "JetBrains Mono", monospace;
}

.metric-band span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-grid,
.buyer-grid,
.service-card-grid,
.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-grid article,
.buyer-grid article,
.service-card-grid article,
.geo-grid article {
  border: 1px solid var(--line);
  background: var(--paper);
}

.story-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.story-grid h3,
.buyer-grid h3,
.service-card-grid h3,
.geo-grid h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.18;
  text-transform: uppercase;
}

.story-grid h3,
.story-grid p {
  padding-right: 24px;
  padding-left: 24px;
}

.story-grid h3 {
  padding-top: 24px;
}

.story-grid p,
.buyer-grid p,
.service-card-grid p,
.geo-grid p {
  margin: 14px 0 0;
  color: var(--ash);
  font-size: 16px;
  line-height: 1.56;
}

.story-grid p {
  padding-bottom: 28px;
}

.buyer-section,
.process-section,
.geo-section {
  width: 100%;
  max-width: none;
  background: var(--bone);
}

.buyer-section .section-heading,
.buyer-grid,
.process-section .section-heading,
.process-list,
.geo-section .section-heading,
.geo-grid {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.buyer-grid article,
.geo-grid article {
  padding: 30px;
}

.seo-copy-section {
  max-width: var(--max);
}

:where(.buyer-section, .process-section, .geo-section) .section-heading {
  max-width: 920px;
  margin-right: 0;
  margin-left: 0;
}

.seo-copy-section p {
  max-width: 980px;
  margin-bottom: 0;
}

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

.service-card-grid article {
  min-height: 280px;
  padding: 30px;
  transition: border-color 220ms ease, transform 220ms ease;
}

.service-card-grid article:hover {
  border-color: rgba(255, 74, 28, 0.44);
  transform: translateY(-4px);
}

.service-card-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--ignite);
  font-size: 13px;
  font-weight: 700;
}

.process-list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.process-list li {
  position: relative;
  display: flex;
  min-height: 352px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-right: 0;
  padding: clamp(20px, 2.25vw, 30px);
  overflow: hidden;
}

.process-list li:last-child {
  border-right: 1px solid var(--line);
}

.process-list li::after {
  position: absolute;
  top: 88px;
  right: -18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-top: 1px solid var(--ignite);
  border-right: 1px solid var(--ignite);
  background: var(--paper);
  content: "";
  transform: rotate(45deg);
}

.process-list li:last-child::after {
  content: none;
}

.process-list li:hover {
  border-color: rgba(255, 74, 28, 0.48);
}

.process-step-media {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 14px;
}

.process-step-media span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--ignite);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.process-step-media img {
  width: min(100%, 136px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.08));
  transform-origin: left center;
  transition: transform 220ms ease;
}

.process-list li:hover .process-step-media img {
  transform: translateY(-4px) scale(1.04);
}

.process-step-copy {
  display: grid;
  gap: 14px;
}

.process-list strong {
  max-width: 230px;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.process-list p {
  max-width: 310px;
  margin: 0;
  color: var(--ash);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.56;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 120px clamp(20px, 5.5vw, 80px);
}

.service-feature > div {
  align-self: center;
}

.service-feature img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.corporate-page-hero img {
  aspect-ratio: 7 / 4;
}

.corporate-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  color: var(--paper);
}

.corporate-proof-strip span {
  display: grid;
  min-height: 112px;
  place-items: center;
  background: #080808;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 22px;
  text-align: center;
  text-transform: uppercase;
}

.quote-intake-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) clamp(20px, 5.5vw, 80px);
  align-items: start;
}

.quote-intake-copy h2,
.rfq-form-heading h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.quote-intake-copy h2 {
  max-width: 620px;
  font-size: clamp(48px, 6vw, 78px);
}

.quote-intake-copy > p:not(.mono-line) {
  margin: 18px 0 0;
  color: var(--ash);
  font-size: 18px;
  line-height: 1.62;
}

.quote-direct-card {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  border: 1px solid rgba(255, 74, 28, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 74, 28, 0.18), rgba(255, 74, 28, 0) 46%),
    var(--ink);
  color: var(--paper);
  padding: clamp(22px, 3vw, 34px);
}

.quote-direct-card strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.quote-direct-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.56;
}

.whatsapp-direct-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, #22b765 0 18px, #116d40 18px 100%);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 22px;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 18px 42px rgba(17, 109, 64, 0.24);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-direct-button:hover {
  background:
    linear-gradient(135deg, var(--paper) 0 18px, #22b765 18px 100%);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(17, 109, 64, 0.3);
}

.rfq-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(10, 10, 10, 0.14);
  background: var(--paper);
  padding: clamp(22px, 3.8vw, 42px);
  box-shadow: 0 30px 90px rgba(10, 10, 10, 0.1);
}

.rfq-form-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 4px;
}

.rfq-form-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.rfq-form-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--ash);
  font-size: 15px;
  line-height: 1.55;
}

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

.rfq-form label {
  display: grid;
  gap: 8px;
  color: var(--ash);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 14px 15px;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.rfq-form textarea {
  resize: vertical;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  outline: none;
  border-color: var(--ignite);
  box-shadow: 0 0 0 3px rgba(255, 74, 28, 0.12);
}

.rfq-file-field {
  border: 1px dashed rgba(10, 10, 10, 0.24);
  background: var(--bone);
  padding: 18px;
}

.rfq-file-field span {
  color: var(--ash);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.rfq-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr);
  gap: 14px;
  align-items: stretch;
}

.rfq-form-actions .button {
  width: 100%;
  min-height: 58px;
}

.whatsapp-direct-button-secondary {
  border-color: rgba(17, 109, 64, 0.4);
}

.rfq-status {
  min-height: 24px;
  margin: 0;
  color: var(--ash);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.rfq-status.is-success {
  color: #116d40;
}

.rfq-status.is-error {
  color: #b42318;
}

.corporate-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.page-link-grid a {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 16px;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.page-link-grid a:hover {
  border-color: var(--ignite);
  background: var(--ignite);
  color: var(--paper);
}

.country-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.08);
  backdrop-filter: saturate(130%) blur(12px);
}

.country-hero {
  position: relative;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.country-hero-media,
.country-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.country-hero-media {
  object-fit: cover;
  object-position: center center;
}

.country-hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.3) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 56%, rgba(0, 0, 0, 0.72) 100%);
}

.country-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--max));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: 74px clamp(20px, 5.5vw, 80px) 132px;
}

.country-hero .crumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(58px, 7.6vw, 112px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

.country-hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.38;
}

.country-hero-actions .button {
  min-width: 214px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.country-hero-meta {
  position: absolute;
  right: clamp(20px, 5.5vw, 80px);
  bottom: 28px;
  left: clamp(20px, 5.5vw, 80px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(calc(100% - 40px), calc(var(--max) - 160px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.country-hero-meta span {
  display: grid;
  min-height: 76px;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
}

.country-brief-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: clamp(26px, 4.8vw, 72px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 112px clamp(20px, 5.5vw, 80px);
}

.country-brief-copy h2,
.country-detail-section h2,
.country-faq-section h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.country-brief-copy p:not(.mono-line),
.country-detail-section p:not(.mono-line) {
  margin: 18px 0 0;
  color: var(--ash);
  font-size: 18px;
  line-height: 1.62;
}

.country-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-self: start;
  background: var(--ink);
}

.country-brief-grid article {
  min-height: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 26px;
}

.country-brief-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--ignite);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-brief-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.42;
}

.country-answer-section {
  padding-top: 94px;
  padding-bottom: 88px;
}

.country-detail-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 clamp(20px, 5.5vw, 80px) 120px;
}

.country-detail-section img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(16, 18, 22, 0.12);
}

.country-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.country-scope-grid ul,
.country-scope-grid article {
  border: 1px solid var(--line);
  background: var(--paper);
}

.country-scope-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.country-scope-grid li {
  min-height: 190px;
  border: 1px solid var(--line);
  border-width: 0 1px 1px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.32;
  padding: 28px;
}

.country-scope-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
}

.country-scope-grid h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.country-scope-grid p {
  margin: 0;
  color: var(--ash);
  font-size: 16px;
  line-height: 1.58;
}

.country-process-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

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

.country-process-list li {
  min-height: 360px;
}

.country-faq-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 112px clamp(20px, 5.5vw, 80px);
}

.country-faq-section .section-heading {
  max-width: 940px;
}

.country-cluster-section {
  padding-top: 0;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 14px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form button {
  width: auto;
  min-width: 52px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:where(h1, h2) {
  text-wrap: balance;
}

:where(.section-heading, .shop-hero-copy, .content-hero-copy, .pdp-info, .anatomy-copy, .custom-copy, .service-feature > div) {
  text-align: left;
}

.section-heading {
  max-width: 860px;
}

.section-heading-row {
  max-width: none;
}

:where(.section-heading h2, .anatomy-copy h2, .custom-copy h2, .pdp-section h2, .faq-section h2, .editorial-break h2, .content-hero h1, .about-intro h2, .story-grid-section h2, .buyer-section h2, .seo-copy-section h2, .service-lines h2, .process-section h2, .service-feature h2, .geo-section h2) {
  max-width: 920px;
}

:where(.product-card, .shop-card) {
  --product-cut: clamp(16px, 1.8vw, 28px);
  border-color: rgba(10, 10, 10, 0.13);
  clip-path: polygon(0 0, calc(100% - var(--product-cut)) 0, 100% var(--product-cut), 100% 100%, var(--product-cut) 100%, 0 calc(100% - var(--product-cut)));
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

:where(.product-card, .shop-card)::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 74px;
  height: 10px;
  background: var(--ignite);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  content: "";
  opacity: 0.72;
  transform: translateX(18px) skewX(-18deg);
  transition: opacity 220ms ease, transform 220ms ease;
}

:where(.product-card, .shop-card):hover {
  border-color: rgba(255, 74, 28, 0.42);
  box-shadow: 0 24px 68px rgba(10, 10, 10, 0.14);
  transform: translateY(-6px);
}

:where(.product-card, .shop-card):hover::before {
  opacity: 1;
  transform: translateX(2px) skewX(-18deg);
}

:where(.product-image, .shop-card-image, .main-product-image, .thumb-column button) {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 74, 28, 0.1), rgba(255, 74, 28, 0) 36%),
    var(--bone);
  clip-path: polygon(0 0, calc(100% - var(--product-cut, 22px)) 0, 100% var(--product-cut, 22px), 100% 100%, var(--product-cut, 22px) 100%, 0 calc(100% - var(--product-cut, 22px)));
}

:where(.product-image, .shop-card-image, .main-product-image)::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  content: "";
  pointer-events: none;
}

.product-rail {
  grid-auto-columns: minmax(320px, 1fr);
  gap: 26px;
}

.featured:not(.related-products) .product-rail {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.featured:not(.related-products) .product-rail::-webkit-scrollbar {
  display: none;
}

.featured:not(.related-products) {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 2.15vw, 44px);
  padding-left: clamp(18px, 2.15vw, 44px);
}

.product-card {
  min-width: 320px;
  padding: 16px;
}

.featured:not(.related-products) .featured-product-card {
  flex: 0 0 25%;
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(16px, 1.35vw, 22px);
  scroll-snap-align: start;
}

.featured:not(.related-products) .featured-product-card:nth-child(4n) {
  border-right: 1px solid var(--line);
}

.featured:not(.related-products) .featured-product-card p {
  min-height: 78px;
}

.featured:not(.related-products) .featured-product-card button {
  width: 100%;
}

.product-slider-heading-actions,
.product-slider-controls {
  display: flex;
  align-items: center;
}

.product-slider-heading-actions {
  gap: 24px;
}

.product-slider-controls {
  gap: 8px;
}

.product-slider-count {
  min-width: 76px;
  color: var(--ash);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-slider-count strong {
  color: var(--ink);
  font-size: 16px;
}

.product-slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.product-slider-controls button:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.product-slider-controls button:disabled {
  cursor: default;
  opacity: 0.32;
}

.product-image {
  aspect-ratio: 1 / 1.12;
}

.featured:not(.related-products) .product-image {
  aspect-ratio: 1 / 1.16;
}

.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.shop-card {
  padding: 14px;
}

.shop-card-image {
  aspect-ratio: 1 / 1.12;
}

:where(.product-image img, .shop-card-image img) {
  object-fit: cover;
  transform: scale(1.01);
}

:where(.product-card:hover .product-image img, .shop-card:hover .shop-card-image img) {
  transform: scale(1.085);
}

:where(.product-card button:hover, .shop-card button:hover, .pdp-sticky button:hover) {
  border-color: var(--ink);
  background:
    linear-gradient(135deg, var(--paper) 0 14px, var(--ignite) 14px 100%);
  color: var(--ink);
  transform: translateY(-2px);
}

.pdp-gallery {
  --product-cut: clamp(18px, 2vw, 34px);
}

.main-product-image {
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.14);
}

.main-product-image img {
  object-fit: cover;
  transform: scale(1.02);
}

.button[href="#quote"],
.button[href="request-quote.html"],
.button-outline-light,
.sticky-inquiry a,
.quote-form button {
  border-color: var(--ignite);
  background:
    linear-gradient(135deg, var(--ignite) 0 18px, var(--ink) 18px 100%);
  color: var(--paper);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 16px 38px rgba(255, 74, 28, 0.2);
}

.button[href="#quote"]:hover,
.button[href="request-quote.html"]:hover,
.button-outline-light:hover,
.sticky-inquiry a:hover,
.quote-form button:hover {
  border-color: var(--paper);
  background:
    linear-gradient(135deg, var(--paper) 0 16px, var(--ignite) 16px 100%);
  color: var(--ink);
}

.desktop-nav a[href="request-quote.html"] {
  margin-left: -4px;
  border: 1px solid rgba(255, 74, 28, 0.42);
  background: rgba(255, 74, 28, 0.08);
  padding-right: 16px;
  padding-left: 16px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.desktop-nav a[href="request-quote.html"]::after {
  display: none;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .category-grid,
  .capability-grid,
  .trust,
  .anatomy,
  .custom,
  .shop-hero,
  .pdp-hero,
  .standard-strip,
  .content-hero,
  .about-intro,
  .metric-band,
  .story-grid,
  .buyer-grid,
  .service-card-grid,
  .service-feature,
  .geo-grid,
  .quote-intake-section,
  .rfq-field-grid,
  .rfq-form-actions {
    grid-template-columns: 1fr;
  }

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

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

  .shop-sidebar {
    position: static;
  }

  .category-sidebar-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .category-sidebar-list a {
    min-width: 214px;
  }

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

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

  .footer-link-column,
  .footer-office {
    padding-top: 0;
  }

  .footer-brand,
  .footer-office {
    grid-column: 1 / -1;
  }

  .footer-office-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-office-card article,
  .footer-office-card article + article {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .shop-category-toolbar {
    position: static;
  }

  .shop-category-toolbar p:last-child {
    max-width: none;
    text-align: left;
  }

  .shop-summary-band,
  .catalog-product-hero,
  .catalog-detail-grid,
  .teamwear-live-header,
  .teamwear-live-facts,
  .customizer-hero,
  .kitbuilder-shell {
    grid-template-columns: 1fr;
  }

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

  .future-product-card,
  .future-product-card:nth-child(4n),
  .teamwear-design-card,
  .teamwear-design-card:nth-child(4n) {
    border-right: 0;
  }

  .future-product-card:nth-child(odd),
  .teamwear-design-card:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .teamwear-design-card:nth-child(odd) {
    border-right-color: rgba(255, 255, 255, 0.16);
  }

  .kitbuilder-copy {
    position: static;
  }

  .catalog-product-media img {
    width: min(100%, 560px);
  }

  .catalog-detail-grid article,
  .catalog-detail-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shop-hero-proof {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: 24px;
    padding-left: 0;
  }

  .shop-toolbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .cross-category-grid,
  .spec-grid,
  .pricing-table,
  .quote-panel,
  .spec-visual-grid,
  .spec-visual-card {
    grid-template-columns: 1fr;
  }

  .pdp-gallery {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .category-card,
  .category-card img {
    min-height: 440px;
  }

  .anatomy,
  .custom {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom img {
    min-height: auto;
  }

  .capability {
    min-height: auto;
  }

  .capability-media {
    height: 300px;
  }

  .trust div {
    min-height: 210px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  }

  .content-hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 76px;
  }

  .content-hero > img {
    min-height: 340px;
    max-height: 460px;
  }

  .about-intro,
  .story-grid-section,
  .buyer-section,
  .seo-copy-section,
  .service-lines,
  .process-section,
  .geo-section,
  .service-feature {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .quote-intake-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .metric-band div {
    min-height: 170px;
  }

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

  .process-list li {
    min-height: 330px;
    border-right: 1px solid var(--line);
  }

  .process-list li::after {
    content: none;
  }

  .process-step-media img {
    width: min(100%, 132px);
  }

  .corporate-proof-strip,
  .page-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .announcement {
    font-size: 10px;
    line-height: 1.35;
  }

  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand {
    width: 142px;
    height: 62px;
  }

  .inquiry-button {
    display: none;
  }

  .text-link-button {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: calc(100vh - 102px);
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.82) 52%, rgba(0, 0, 0, 0.92) 100%);
  }

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

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero-actions,
  .section-heading-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quote-intake-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .quote-intake-copy h2 {
    font-size: 46px;
  }

  .rfq-form {
    padding: 20px;
  }

  .rfq-form-heading h2 {
    font-size: 34px;
  }

  .rfq-form input,
  .rfq-form select,
  .rfq-form textarea {
    font-size: 14px;
  }

  .whatsapp-direct-button {
    width: 100%;
    min-height: 54px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 12px;
  }

  .enhanced-detail-grid,
  .enhanced-link-row {
    grid-template-columns: 1fr;
  }

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

  .enhanced-spec-table dt {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-cta,
  .footer-main {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-cta-actions,
  .footer-primary-action,
  .footer-secondary-action {
    width: 100%;
  }

  .footer-primary-action,
  .footer-secondary-action {
    justify-content: center;
    min-height: 50px;
    text-align: center;
  }

  .footer-main,
  .footer-office-card {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-office {
    grid-column: auto;
  }

  .footer-office-card article {
    padding-bottom: 12px;
  }

  .footer-office-card article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    padding-top: 12px;
  }

  .footer-office-card article:last-child {
    padding-bottom: 0;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .category-section,
  .sports-inner,
  .difference,
  .featured {
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .sport-card {
    min-height: 296px;
  }

  .sport-card span {
    bottom: 20px;
    font-size: 24px;
  }

  .sport-card-more p {
    bottom: 70px;
    font-size: 13px;
  }

  .section-heading h2,
  .anatomy-copy h2,
  .custom-copy h2 {
    font-size: 46px;
  }

  .capability-media {
    height: 228px;
  }

  .capability-body {
    min-height: 164px;
    padding: 22px 22px 26px;
  }

  .capability-icon {
    margin-bottom: 22px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .sticky-inquiry {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: space-between;
  }

  .shop-hero {
    min-height: 320px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .shop-shell,
  .pdp-section,
  .faq-section {
    padding-top: 38px;
    padding-bottom: 72px;
  }

  .sidebar-card {
    margin-right: -20px;
    margin-left: -20px;
    border-right: 0;
    border-left: 0;
  }

  .sidebar-quote {
    justify-items: center;
  }

  .shop-category-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-summary-band div {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 14px;
  }

  .shop-summary-band span {
    width: 36px;
    height: 36px;
  }

  .future-product-card {
    min-height: 218px;
    padding: 20px;
  }

  .future-product-grid,
  .teamwear-grid {
    grid-template-columns: 1fr;
  }

  .future-product-card,
  .future-product-card:nth-child(odd),
  .future-product-card:nth-child(4n),
  .teamwear-design-card,
  .teamwear-design-card:nth-child(odd),
  .teamwear-design-card:nth-child(4n) {
    border-right: 0;
  }

  .future-product-media {
    margin: -20px -20px 18px;
  }

  .teamwear-live-header,
  .customizer-hero,
  .kitbuilder-shell {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .teamwear-live-facts span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .teamwear-live-facts span:last-child {
    border-bottom: 0;
  }

  .customizer-hero h1 {
    font-size: clamp(56px, 17vw, 84px);
  }

  .teamwear-embed-frame,
  .teamwear-embed-frame [data-kit-configurator] {
    min-height: 680px;
  }

  .catalog-product-media {
    padding: 18px;
  }

  .catalog-product-media img {
    width: 100%;
  }

  .catalog-product-gallery {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
  }

  .catalog-gallery-thumbs {
    gap: 7px;
    max-height: calc(100vw - 36px);
  }

  .catalog-gallery-thumbs img {
    aspect-ratio: 1;
    height: auto;
    min-height: 0;
  }

  .catalog-gallery-thumbs button {
    min-height: 0;
  }

  .catalog-product-info {
    padding: 34px 20px 54px;
  }

  .catalog-product-info h1 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

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

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shop-card {
    padding: 10px;
  }

  .shop-card-image {
    aspect-ratio: 1 / 1.02;
  }

  .shop-card h2 {
    font-size: 15px;
  }

  .shop-card p {
    font-size: 10px;
  }

  .editorial-break {
    min-height: 360px;
    margin-top: 48px;
  }

  .pagination-row,
  .pdp-sticky {
    align-items: stretch;
    flex-direction: column;
  }

  .cross-category-grid {
    grid-template-columns: 1fr;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .thumb-column {
    display: flex;
    order: 2;
    overflow-x: auto;
  }

  .thumb-column button {
    width: 72px;
    flex: 0 0 72px;
  }

  .pdp-info {
    padding: 34px 20px 54px;
  }

  .pdp-mini-table div,
  .spec-grid div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .standard-strip {
    grid-template-columns: 1fr;
  }

  .pdp-sticky {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .pricing-table article {
    min-height: 220px;
  }

  .quote-panel {
    padding: 20px;
  }

  .product-quote-form {
    padding: 18px;
  }

  .size-chart-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .spec-visual-card {
    min-height: auto;
  }

  .spec-visual-media {
    aspect-ratio: 1.32;
  }

  .content-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .content-hero h1 {
    font-size: clamp(54px, 15vw, 76px);
  }

  .content-hero p:not(.mono-line):not(.crumb),
  .rich-copy p,
  .seo-copy-section p,
  .service-feature p {
    font-size: 16px;
  }

  .about-intro,
  .story-grid-section,
  .buyer-section,
  .seo-copy-section,
  .service-lines,
  .process-section,
  .geo-section,
  .service-feature {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .about-intro h2,
  .story-grid-section h2,
  .buyer-section h2,
  .seo-copy-section h2,
  .service-lines h2,
  .process-section h2,
  .service-feature h2,
  .geo-section h2 {
    font-size: 44px;
  }

  .story-grid h3,
  .story-grid p,
  .buyer-grid article,
  .service-card-grid article,
  .geo-grid article {
    padding-right: 22px;
    padding-left: 22px;
  }

  .service-card-grid article {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .service-card-grid span {
    margin-bottom: 28px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .process-list li {
    min-height: 0;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
  }

  .process-step-media {
    min-height: 0;
    gap: 10px;
  }

  .process-step-media span {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .process-step-media img {
    width: 78px;
  }

  .process-step-copy {
    gap: 10px;
  }

  .process-list strong {
    max-width: none;
    font-size: 18px;
  }

  .process-list p {
    max-width: none;
    font-size: 12px;
  }

  .service-feature img {
    min-height: 320px;
  }

  .corporate-proof-strip,
  .page-link-grid {
    grid-template-columns: 1fr;
  }

  .corporate-proof-strip span {
    min-height: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability,
  .capability::before,
  .capability-media img,
  .capability-icon,
  .capability h3,
  .capability p,
  .trust div,
  .trust div::before,
  .trust div::after,
  .trust strong,
  .trust span {
    transition: none;
  }

  .capability:hover,
  .capability:hover::before,
  .capability:hover .capability-media img,
  .capability:hover .capability-icon,
  .capability:hover h3,
  .capability:hover p,
  .trust div:hover,
  .trust div:hover strong,
  .trust div:hover span {
    transform: none;
  }
}

.buyer-section .section-heading,
.process-section .section-heading,
.geo-section .section-heading {
  max-width: 920px;
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 1000px) {
  .featured:not(.related-products) .product-rail {
    display: flex;
  }

  .featured:not(.related-products) .featured-product-card {
    flex-basis: 50%;
  }

  .country-brief-section,
  .country-detail-section,
  .country-scope-grid {
    grid-template-columns: 1fr;
  }

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

  .country-brief-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .country-scope-grid ul {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .featured:not(.related-products) .product-rail {
    display: flex;
  }

  .featured:not(.related-products) .featured-product-card {
    flex-basis: calc(100% - 38px);
  }

  .featured:not(.related-products) .featured-product-card p {
    min-height: 0;
  }

  .product-slider-heading-actions {
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
  }

  .product-slider-count {
    display: none;
  }

  .country-hero,
  .country-hero-content {
    min-height: calc(100vh - 102px);
  }

  .country-hero-media {
    object-position: 68% center;
  }

  .country-hero-scrim {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.82) 48%, rgba(0, 0, 0, 0.94) 100%);
  }

  .country-hero-content {
    justify-content: flex-end;
    padding: 68px 20px 154px;
  }

  .country-hero h1 {
    font-size: clamp(50px, 15vw, 78px);
  }

  .country-hero p,
  .country-brief-copy p:not(.mono-line),
  .country-detail-section p:not(.mono-line) {
    font-size: 16px;
  }

  .country-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 20px;
  }

  .country-hero-meta span {
    min-height: 54px;
    padding: 9px 10px;
    font-size: 9px;
  }

  .country-brief-grid,
  .country-process-list {
    grid-template-columns: 1fr;
  }

  .country-brief-grid article {
    min-height: 0;
    padding: 22px;
  }

  .country-brief-grid span {
    margin-bottom: 26px;
  }

  .country-brief-copy h2,
  .country-detail-section h2,
  .country-faq-section h2 {
    font-size: 42px;
  }

  .country-detail-section img {
    min-height: 240px;
  }

  .country-brief-section,
  .country-detail-section,
  .country-faq-section,
  .country-process-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .country-process-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .country-scope-grid li {
    min-height: 0;
    padding: 22px;
    font-size: 16px;
  }
}
