@import url("https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --red: #fe0000;
  --red-dark: #b8000b;
  --black: #0b0b0b;
  --charcoal: #1c1c1c;
  --graphite: #303030;
  --grey: #a7a7a7;
  --mid-grey: #6f7478;
  --line: #d9d9d9;
  --line-dark: #2f2f2f;
  --light: #f4f4f4;
  --white: #ffffff;
  --container: 1180px;
  --radius: 3px;
  --shadow: 0 16px 36px rgba(11, 11, 11, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Onest", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.filters-open {
  overflow: hidden;
}

img,
svg,
iframe,
object {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-140%);
}

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

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

.section {
  padding: 104px 0;
}

.section.compact {
  padding: 72px 0;
}

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

.section.dark {
  color: var(--white);
  background: var(--black);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.56fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 46px;
}

.section-header.center {
  display: block;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow,
.meta {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #fe0000;
}

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

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 5vw, 4.35rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

.lead {
  max-width: 720px;
  color: var(--mid-grey);
  font-size: 1.12rem;
}

.dark .lead,
.hero .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: var(--mid-grey);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--charcoal);
  border-radius: 0;
  background: transparent;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn::after {
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(3px) rotate(45deg);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.btn-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.btn-outline {
  color: var(--charcoal);
  background: transparent;
  border-color: var(--line-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: var(--paper, #fbfaf7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 52px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--black);
  font-size: 1.02rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--mid-grey);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
  gap: 16px;
}

.site-nav a {
  position: relative;
  color: var(--charcoal);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--white) !important;
  background: var(--red);
  border: 1px solid var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--black);
  content: "";
  transition: transform 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(0) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero {
  min-height: 720px;
}

.hero-media,
.hero-media img,
.hero::before {
  position: absolute;
  inset: 0;
}

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

.hero::before {
  z-index: 1;
  background: rgba(11, 11, 11, 0.72);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.44fr);
  gap: 70px;
  align-items: end;
  min-height: 720px;
  padding: 118px 0 76px;
}

.hero-copy {
  align-self: center;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(2.45rem, 4.5vw, 4.1rem);
}

.hero-actions,
.cta-row,
.product-actions,
.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 11, 11, 0.72);
}

.proof-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-row:last-child {
  border-bottom: 0;
}

.proof-number {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.proof-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 112px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.35rem;
  font-weight: 900;
}

.trust-item span {
  color: var(--mid-grey);
  font-size: 0.88rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.product-card,
.benefit-card,
.cert-card,
.industry-card,
.value-card,
.doc-card,
.market-card,
.contact-card,
.metric-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.product-card > a {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  border-color: var(--grey);
  box-shadow: var(--shadow);
  transform: none;
}

.benefit-card:hover,
.cert-card:hover,
.industry-card:hover,
.doc-card:hover,
.metric-card:hover {
  border-color: var(--grey);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card::before,
.benefit-card::before,
.cert-card::before,
.industry-card::before,
.value-card::before,
.doc-card::before,
.metric-card::before,
.contact-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--red);
  content: "";
}

.product-media {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 18px;
  background: var(--light);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 220ms ease;
}

.product-card:hover .product-media img {
  transform: none;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-body h3 {
  margin-bottom: 12px;
  min-height: calc(1.25rem * 1.05 * 2);
}

.product-body > p:not(.meta) {
  flex: 1;
  margin-bottom: 0;
}

.product-body p,
.benefit-card p,
.cert-card p,
.industry-card p,
.value-card p,
.market-card p,
.contact-card p,
.metric-card p {
  color: var(--mid-grey);
}

.spec-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.spec-line span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--charcoal);
  background: var(--light);
  font-size: 0.76rem;
  font-weight: 800;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--graphite);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.category-tag::before {
  width: 18px;
  height: 2px;
  background: var(--red);
  content: "";
  flex-shrink: 0;
}

.product-body .category-tag {
  margin-bottom: 10px;
}

.doc-card .category-tag {
  min-height: 28px;
  gap: 0;
  padding: 0 10px;
  color: var(--white);
  background: var(--black);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.doc-card .category-tag::before {
  display: none;
}

.benefit-card,
.cert-card,
.industry-card,
.value-card,
.market-card,
.contact-card,
.metric-card {
  padding: 28px;
}

.benefit-card .brand-card-logo {
  display: block;
  max-width: 100%;
  max-height: 140px;
  margin-top: 20px;
  object-fit: contain;
}

.benefit-card .index,
.value-card .index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
}

.cert-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}

.cert-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--red);
  border: 2px solid var(--red);
  font-size: 1.08rem;
  font-weight: 900;
}

.engineering-band {
  color: var(--white);
  background: var(--black);
}

.engineering-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
  gap: 56px;
  align-items: center;
}

.system-diagram {
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: var(--charcoal);
}

.system-diagram svg {
  width: 100%;
  height: auto;
}

.diagram-label {
  fill: #ffffff;
  font: 700 13px "Onest", Arial, sans-serif;
}

.diagram-small {
  fill: #b9b9b9;
  font: 600 11px "Onest", Arial, sans-serif;
}

.diagram-node {
  fill: #262626;
  stroke: #a7a7a7;
  stroke-width: 1.4;
}

.diagram-node-hot {
  fill: #221112;
  stroke: #fe0000;
  stroke-width: 1.8;
}

.diagram-line {
  fill: none;
  stroke: #a7a7a7;
  stroke-width: 1.5;
}

.diagram-line-hot {
  fill: none;
  stroke: #fe0000;
  stroke-width: 2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.58fr);
  gap: 56px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  color: inherit;
}

.feature-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--red);
  content: "";
}

.cta-section {
  color: var(--white);
  background: var(--black);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(250px, 0.42fr);
  gap: 40px;
  align-items: center;
  padding: 58px;
  border: 1px solid var(--line-dark);
  background: var(--charcoal);
}

.cta-panel h2 {
  margin-bottom: 18px;
}

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

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: 54px;
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 22px;
}

.page-hero-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: var(--charcoal);
}

.page-hero-visual img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  opacity: 0.82;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-panel {
  padding: 34px;
  color: var(--white);
  background: var(--black);
}

.quote-panel blockquote {
  margin: 0 0 24px;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
}

.quote-panel cite {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 700;
}

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

.catalogue-sidebar {
  position: sticky;
  top: 98px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.catalogue-sidebar h2 {
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.filter-row {
  display: grid;
  gap: 8px;
}

.filter-chip {
  justify-content: space-between;
  min-height: 42px;
  width: 100%;
  border-color: var(--line);
  background: var(--white);
  text-align: left;
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.catalogue-main {
  min-width: 0;
}

.catalogue-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.filter-toggle {
  display: none;
}

.search-input,
.form-control {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--charcoal);
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea.form-control {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

.search-input:focus,
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(254, 0, 0, 0.12);
}

.catalogue-meta {
  margin: 0 0 22px;
  color: var(--mid-grey);
  font-weight: 700;
}

.product-card.is-hidden {
  display: none;
}

.product-page-hero {
  color: var(--charcoal);
  background: var(--white);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.68fr);
  gap: 58px;
  align-items: center;
}

.product-hero-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--light);
}

.product-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.product-nav {
  position: sticky;
  top: 78px;
  z-index: 30;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.product-nav-inner {
  display: flex;
  gap: 28px;
  overflow-x: auto;
}

.product-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  color: var(--mid-grey);
  font-weight: 900;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.product-nav a.is-active,
.product-nav a:hover,
.product-nav a:focus-visible {
  color: var(--black);
  border-color: var(--red);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

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

.spec-table th {
  width: 34%;
  color: var(--black);
  background: var(--light);
  font-weight: 900;
}

.documents-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.pdf-viewer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pdf-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--light);
}

.pdf-viewer-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.doc-card.is-active {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.doc-list .doc-card {
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.pdf-viewer object {
  width: 100%;
  min-height: 620px;
  border: 0;
}

.pdf-fallback {
  padding: 30px;
}

.doc-list {
  display: grid;
  gap: 14px;
}

.doc-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.doc-card strong {
  display: block;
  margin-bottom: 4px;
}

.doc-card span {
  color: var(--mid-grey);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.45fr);
  gap: 34px;
  align-items: start;
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 900;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--red-dark);
  font-weight: 800;
}

.office-stack {
  display: grid;
  gap: 16px;
}

.office-line {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.office-line strong {
  font-size: 0.86rem;
}

.office-line span,
.office-line a {
  color: var(--mid-grey);
  font-weight: 700;
}

.map-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.map-panel iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) repeat(3, minmax(160px, 0.35fr));
  gap: 34px;
  padding: 68px 0 42px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 42px;
  height: 56px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

body.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

body.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.filter-backdrop {
  display: none;
}

.minimal-site .section {
  padding: 88px 0;
}

.minimal-site .section-header {
  margin-bottom: 34px;
}

.minimal-site h1 {
  max-width: 760px;
}

.minimal-site h2 {
  max-width: 820px;
}

.minimal-site .lead {
  font-size: 1.05rem;
}

.minimal-site .btn {
  max-width: 100%;
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.2;
  text-align: left;
}

.minimal-site .brand {
  min-width: auto;
}

.minimal-site .site-nav {
  gap: 26px;
}

.minimal-site .nav-cta {
  display: none;
}

.minimal-site .site-nav a[aria-current="page"] {
  color: var(--black);
}

.quiet-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.quiet-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 72% 58% at 76% 44%, rgba(254, 0, 0, 0.2) 0%, transparent 68%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.15) 0%, rgba(11, 11, 11, 0.92) 100%);
  content: "";
  pointer-events: none;
}

.quiet-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 72% 48%, black 0%, transparent 74%);
  content: "";
  pointer-events: none;
}

.quiet-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6%;
  pointer-events: none;
}

.quiet-hero-logo {
  width: min(460px, 58vw);
  height: auto;
  opacity: 0.13;
  transform: translateY(4%);
}

.quiet-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(220px, 0.34fr);
  gap: 70px;
  align-items: end;
  min-height: 650px;
  padding: 110px 0 78px;
}

.quiet-hero .lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.quiet-hero-card {
  display: grid;
  gap: 18px;
  align-content: center;
  justify-items: start;
  min-height: 240px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 11, 11, 0.72);
}

.quiet-hero-card img {
  width: 86px;
  height: auto;
  opacity: 0.8;
}

.quiet-hero-card p {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-system-panel {
  display: grid;
  gap: 20px;
  align-self: end;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(11, 11, 11, 0.76);
}

.system-panel-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
}

.system-panel-head strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.1;
}

.system-rail {
  display: grid;
  gap: 8px;
  padding: 4px 0;
}

.system-rail span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
  transform-origin: left;
  animation: rail-scan 3.6s ease-in-out infinite;
}

.system-rail span:nth-child(2) {
  width: 72%;
  background: var(--red);
  animation-delay: 0.45s;
}

.system-rail span:nth-child(3) {
  width: 48%;
  animation-delay: 0.9s;
}

.system-panel-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
}

.system-panel-row span {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.system-panel-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.benefits-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.benefit-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.active-benefit {
  min-height: 290px;
  border-top: 0;
  border-left: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.active-benefit::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 2px;
  background: var(--red);
  content: "";
  transform-origin: left;
  transition: transform 220ms ease;
}

.active-benefit:hover::after,
.active-benefit:focus-within::after {
  transform: scaleX(1.55);
}

.active-benefit .index {
  color: var(--white);
  background: var(--red);
}

.active-benefit h3 {
  max-width: 260px;
}

.active-benefit p {
  max-width: 280px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.52fr);
  gap: 24px;
  align-items: stretch;
}

.featured-product-panel {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
  border: 1px solid var(--line);
  background: var(--white);
}

.featured-product-image {
  position: relative;
  overflow: hidden;
  background: var(--light);
}

.featured-product-image::before {
  position: absolute;
  top: 28px;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  border: 1px solid rgba(11, 11, 11, 0.12);
  content: "";
  pointer-events: none;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transform: none;
  transition: filter 220ms ease;
}

.featured-product-panel:hover .featured-product-image img {
  transform: none;
}

.featured-product-copy {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 34px;
  background: var(--black);
}

.featured-product-copy h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.featured-product-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.product-stack {
  display: grid;
  gap: 14px;
}

.product-line-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 164px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 200ms ease, transform 200ms ease;
}

.product-line-card:hover {
  border-color: var(--grey);
  transform: translateX(4px);
}

.product-line-card img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  background: var(--light);
}

.product-line-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.product-line-card a {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-group {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.product-group::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 3px;
  background: var(--red);
  content: "";
}

.product-group:hover {
  border-color: var(--grey);
  transform: translateY(-2px);
}

.product-group-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.group-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-group li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
}

.product-group li::before {
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--red);
  content: "";
}

.product-group li span {
  display: block;
}

@keyframes rail-scan {
  0%,
  100% {
    transform: scaleX(0.38);
    opacity: 0.55;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.quiet-page-hero {
  padding: 96px 0 72px;
}

.quiet-page-hero .page-hero-visual img {
  height: 260px;
  opacity: 0.72;
}

.copy-block {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 680px;
}

.copy-block p,
.narrow-copy p {
  color: var(--graphite);
  font-size: 1.05rem;
}

.narrow-copy {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.country-list {
  max-width: 980px;
  margin: 0;
  color: var(--graphite);
  font-weight: 700;
}

.quiet-card {
  box-shadow: none;
}

.quiet-card::before {
  width: 34px;
  height: 2px;
}

.minimal-site .product-card:hover {
  box-shadow: none;
  transform: none;
}

.minimal-site .benefit-card:hover,
.minimal-site .contact-card:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.product-body .spec-line + .btn,
.product-body > .btn,
.product-body .product-actions {
  margin-top: 22px;
}

.minimal-site .product-body h3 {
  margin-bottom: 18px;
  min-height: calc(1.25rem * 1.05 * 2);
}

.product-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-group {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-group h3 {
  margin-bottom: 18px;
}

.product-group a {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 900;
}

.product-group ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-group li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-weight: 800;
}

.compact-groups {
  grid-template-columns: minmax(0, 620px);
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  gap: 48px;
  align-items: start;
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-strip h2 {
  margin-bottom: 18px;
}

.contact-strip p {
  max-width: 640px;
  color: var(--graphite);
}

.contact-lines {
  display: grid;
  gap: 8px;
  padding-left: 28px;
  border-left: 2px solid var(--red);
}

.contact-lines strong {
  color: var(--black);
  font-size: 1.15rem;
}

.contact-lines span {
  margin-top: 8px;
  color: var(--mid-grey);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-lines p,
.contact-lines a {
  margin: 0;
  color: var(--charcoal);
  font-weight: 800;
}

.simple-footer {
  grid-template-columns: minmax(220px, 0.7fr) minmax(240px, 0.75fr) minmax(220px, 0.5fr);
  padding: 44px 0;
}

.simple-form {
  box-shadow: none;
}

@media (max-width: 1060px) {
  .hero-content,
  .page-hero-inner,
  .product-hero-grid,
  .engineering-layout,
  .documents-grid,
  .contact-layout,
  .split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

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

  .catalogue-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1200;
    width: min(86vw, 340px);
    overflow-y: auto;
    transform: translateX(-110%);
    transition: transform 220ms ease;
  }

  .filters-open .catalogue-sidebar {
    transform: translateX(0);
  }

  .filter-backdrop {
    position: fixed;
    inset: 0 0 0 min(86vw, 340px);
    z-index: 1100;
    display: block;
    background: rgba(11, 11, 11, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .filters-open .filter-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .filter-toggle {
    display: inline-flex;
  }

  .quiet-hero-inner,
  .contact-strip,
  .product-groups,
  .product-showcase,
  .featured-product-panel,
  .benefit-flow {
    grid-template-columns: 1fr;
  }

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

  .quiet-hero-card,
  .hero-system-panel {
    min-height: auto;
  }

  .featured-product-panel {
    min-height: auto;
  }

  .featured-product-image img {
    min-height: 360px;
  }

  .product-line-card {
    min-height: 136px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-cta {
    justify-content: center;
    margin-top: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .section-header,
  .catalogue-toolbar,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 92px;
    gap: 36px;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .minimal-site .section {
    padding: 64px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-hero-image img {
    height: 360px;
  }

  .cta-panel {
    padding: 32px;
  }

  .quiet-hero,
  .quiet-hero-inner {
    min-height: 680px;
  }

  .quiet-hero-inner {
    padding: 86px 0 46px;
    gap: 28px;
  }

  .quiet-hero-bg {
    justify-content: center;
    padding-right: 0;
  }

  .quiet-hero-logo {
    width: min(300px, 78vw);
    transform: translateY(8%);
    opacity: 0.1;
  }

  .hero-system-panel {
    padding: 22px;
  }

  .system-panel-row {
    grid-template-columns: 52px 1fr;
  }

  .system-panel-row span {
    font-size: 1.18rem;
  }

  .active-benefit {
    min-height: auto;
  }

  .featured-product-image img {
    min-height: 300px;
  }

  .featured-product-copy {
    padding: 26px;
  }

  .product-line-card {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .product-line-card img {
    width: 92px;
    height: 92px;
  }

  .contact-strip {
    padding: 28px;
  }

  .contact-lines {
    padding-left: 18px;
  }

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

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--black);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), visibility 600ms;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: auto;
  height: 52px;
  opacity: 0.8;
}

.loader__logo-draw {
  width: auto;
  height: 110px;
}

.loader__logo-path {
  stroke: var(--red);
  stroke-width: 26;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: var(--red);
  fill-opacity: 0;
  stroke-opacity: 1;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation:
    loaderLogoDraw 1.3s cubic-bezier(0.45, 0, 0.25, 1) forwards,
    loaderLogoFill 0.55s ease 1.15s forwards;
}

.loader__logo-path--accent {
  animation-delay: 0.5s, 1.15s;
}

@keyframes loaderLogoDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes loaderLogoFill {
  to {
    fill-opacity: 1;
    stroke-opacity: 0;
  }
}

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

  body.motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  #page-loader {
    display: none;
  }
}

/* Fluid public redesign */
.minimal-site {
  color: var(--black);
  background: #fbfaf7;
  overflow-x: clip;
}

.minimal-site .site-header {
  border-bottom: 0;
  background: #fbfaf7;
}

.minimal-site .header-inner {
  min-height: 88px;
}

.minimal-site .brand {
  gap: 14px;
}

.minimal-site .brand img {
  width: 64px;
  height: 76px;
}

.minimal-site .brand strong {
  font-size: 1.14rem;
}

.minimal-site .brand small {
  color: var(--mid-grey);
}

.minimal-site .site-nav a {
  color: var(--black);
  font-weight: 700;
}

.minimal-site .site-nav a:not(.nav-cta)::after {
  bottom: -7px;
  height: 1px;
}

.minimal-site .quiet-hero,
.minimal-site .page-hero {
  color: var(--black);
  background: #fbfaf7;
}

.minimal-site .quiet-hero {
  min-height: 720px;
}

.minimal-site .quiet-hero::before {
  display: none;
}

.minimal-site .quiet-hero-media {
  position: absolute;
  inset: auto -7vw 6vh auto;
  width: min(58vw, 820px);
  height: min(60vh, 560px);
  opacity: 0.16;
  transform: rotate(-4deg);
}

.minimal-site .quiet-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42% 58% 52% 48% / 48% 42% 58% 52%;
}

.minimal-site .quiet-hero-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  min-height: 720px;
  padding: 92px 0 78px;
  min-width: 0;
}

.minimal-site .quiet-hero .eyebrow,
.minimal-site .page-hero .eyebrow,
.minimal-site .dark .eyebrow {
  color: var(--red);
}

.minimal-site .quiet-hero h1 {
  max-width: 720px;
  color: var(--black);
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.92;
}

.minimal-site .quiet-hero .lead,
.minimal-site .page-hero .lead,
.minimal-site .dark .lead {
  color: var(--graphite);
}

.hero-logo-stage {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: center;
  gap: 22px;
  min-height: 410px;
  min-width: 0;
  padding: 28px;
  animation: float-soft 7s ease-in-out infinite;
}

.hero-logo-stage::before {
  position: absolute;
  inset: 44px 4px 28px 4px;
  z-index: -1;
  border-radius: 46% 54% 52% 48% / 44% 42% 58% 56%;
  background: #ffffff;
  box-shadow: 0 36px 90px rgba(11, 11, 11, 0.1);
  content: "";
}

.hero-logo-stage img {
  width: min(38vw, 280px);
  height: auto;
}

.hero-logo-stage span {
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 900;
}

.minimal-site .section {
  padding: 104px 0;
}

.minimal-site .section.light,
.minimal-site .benefits-section,
.minimal-site .cta-section,
.minimal-site .engineering-band {
  color: var(--black);
  background: #fbfaf7;
}

.minimal-site .section-header {
  grid-template-columns: minmax(0, 0.82fr) minmax(240px, 0.42fr);
  gap: 34px;
}

.minimal-site .split {
  align-items: center;
}

.minimal-site .copy-block,
.minimal-site .narrow-copy {
  padding: 38px;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(11, 11, 11, 0.06);
}

.minimal-site .benefit-flow {
  gap: 18px;
  border: 0;
}

.minimal-site .benefit-card,
.minimal-site .industry-card,
.minimal-site .value-card,
.minimal-site .contact-card,
.minimal-site .doc-card,
.minimal-site .metric-card {
  border: 0;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(11, 11, 11, 0.06);
}

.minimal-site .benefit-card::before,
.minimal-site .industry-card::before,
.minimal-site .value-card::before,
.minimal-site .contact-card::before,
.minimal-site .doc-card::before,
.minimal-site .metric-card::before,
.minimal-site .product-card::before {
  display: none;
}

.minimal-site .active-benefit {
  min-height: 260px;
}

.minimal-site .active-benefit .index,
.minimal-site .benefit-card .index,
.minimal-site .value-card .index,
.minimal-site .group-number {
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
}

.minimal-site .btn {
  border-radius: 999px;
  border-color: transparent;
  font-weight: 800;
}

.minimal-site .btn-primary {
  color: var(--white);
  background: var(--red);
}

.minimal-site .btn-secondary,
.minimal-site .btn-outline,
.minimal-site .btn-dark,
.minimal-site .btn-light {
  color: var(--black) !important;
  border-color: transparent;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(11, 11, 11, 0.08);
}

.minimal-site .product-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.minimal-site .product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.minimal-site .product-media {
  overflow: visible;
  aspect-ratio: 1 / 0.92;
  background: transparent;
}

.minimal-site .product-media img {
  border-radius: 44% 56% 48% 52% / 48% 42% 58% 52%;
  object-fit: cover;
  box-shadow: 0 34px 80px rgba(11, 11, 11, 0.1);
}

.minimal-site .product-card:nth-child(2n) .product-media img {
  border-radius: 56% 44% 52% 48% / 44% 54% 46% 56%;
}

.minimal-site .product-card:nth-child(3n) .product-media img {
  border-radius: 48% 52% 58% 42% / 52% 42% 58% 48%;
}

.minimal-site .product-body {
  padding: 28px 6px 0;
}

.minimal-site .product-body p {
  max-width: 32ch;
}

.minimal-site .category-tag,
.minimal-site .spec-line span,
.minimal-site .filter-chip {
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(11, 11, 11, 0.06);
}

.minimal-site .catalogue-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
}

.minimal-site .catalogue-sidebar {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.minimal-site .filter-chip {
  justify-content: center;
}

.minimal-site .filter-chip.is-active,
.minimal-site .filter-chip:hover,
.minimal-site .filter-chip:focus-visible {
  color: var(--white);
  background: var(--red);
}

.minimal-site .search-input,
.minimal-site .form-control {
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(11, 11, 11, 0.06);
}

.minimal-site textarea.form-control {
  border-radius: 28px;
}

.minimal-site .page-hero-visual {
  border: 0;
  border-radius: 46% 54% 52% 48% / 44% 52% 48% 56%;
  background: transparent;
  box-shadow: 0 30px 74px rgba(11, 11, 11, 0.08);
}

.minimal-site .page-hero-visual img {
  height: 290px;
  opacity: 1;
  border-radius: inherit;
}

.minimal-site .product-page-hero {
  color: var(--black);
  background: #fbfaf7;
}

.minimal-site .product-hero-image {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.minimal-site .product-hero-image img {
  border-radius: 44% 56% 48% 52% / 50% 44% 56% 50%;
  box-shadow: 0 34px 84px rgba(11, 11, 11, 0.1);
}

.minimal-site .product-nav {
  border: 0;
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(18px);
}

.minimal-site .product-nav a {
  color: var(--graphite);
  border-bottom-color: transparent;
}

.minimal-site .product-nav a.is-active,
.minimal-site .product-nav a:hover,
.minimal-site .product-nav a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.minimal-site .spec-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
}

.minimal-site .spec-table th,
.minimal-site .spec-table td {
  border: 0;
  background: #ffffff;
}

.minimal-site .spec-table th {
  border-radius: 999px 0 0 999px;
}

.minimal-site .spec-table td {
  border-radius: 0 999px 999px 0;
}

.minimal-site .system-diagram,
.minimal-site .pdf-viewer,
.minimal-site .contact-form,
.minimal-site .contact-strip,
.minimal-site .cta-panel {
  border: 0;
  border-radius: 42px;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(11, 11, 11, 0.06);
}

.minimal-site .diagram-label {
  fill: var(--black);
}

.minimal-site .diagram-small {
  fill: var(--mid-grey);
}

.minimal-site .diagram-node {
  fill: #ffffff;
  stroke: #d9d9d9;
}

.minimal-site .diagram-node-hot {
  fill: #fff7f7;
  stroke: var(--red);
}

.minimal-site .diagram-line {
  stroke: #b8b8b8;
}

.minimal-site .cta-panel .lead {
  color: var(--graphite);
}

.minimal-site .site-footer {
  position: relative;
  overflow: hidden;
  padding: 96px 0 58px;
  text-align: center;
  color: var(--graphite);
  background: #fbfaf7;
}

.minimal-site .site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(76vw, 780px);
  height: 1px;
  background: #dedbd4;
  transform: translateX(-50%);
  content: "";
}

.minimal-site .footer-main,
.minimal-site .simple-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 720px;
  padding: 0;
}

.minimal-site .footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
}

.minimal-site .footer-brand {
  flex-direction: column;
  gap: 14px;
  margin: 0 0 8px;
}

.minimal-site .footer-brand img {
  width: 74px;
  height: auto;
}

.minimal-site .footer-brand strong,
.minimal-site .footer-col h3 {
  color: var(--black);
}

.minimal-site .footer-brand strong {
  font-size: 1.35rem;
}

.minimal-site .footer-col h3 {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.minimal-site .footer-col a,
.minimal-site .footer-col span {
  margin: 0;
  color: var(--graphite);
  line-height: 1.65;
}

.minimal-site .footer-col a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(11, 11, 11, 0.06);
  transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.minimal-site .footer-col a:hover,
.minimal-site .footer-col a:focus-visible {
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(11, 11, 11, 0.08);
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@media (max-width: 1060px) {
  .minimal-site .quiet-hero-media {
    inset: auto -20vw 2vh auto;
    width: 86vw;
  }

  .minimal-site .catalogue-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .minimal-site .site-nav {
    background: rgba(255, 253, 249, 0.98);
  }

  .minimal-site .hero-logo-stage {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .minimal-site .brand img {
    width: 52px;
    height: 62px;
  }

  .minimal-site .quiet-hero h1 {
    font-size: clamp(2.8rem, 18vw, 4.5rem);
  }

  .minimal-site .quiet-hero-inner {
    min-height: 760px;
  }

  .minimal-site .hero-logo-stage img {
    width: 210px;
  }

  .minimal-site .copy-block,
  .minimal-site .narrow-copy,
  .minimal-site .contact-strip,
  .minimal-site .cta-panel {
    padding: 28px;
    border-radius: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-stage {
    animation: none !important;
  }
}

/* Luxury motion refinement */
.minimal-site {
  font-family: "Onest", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --paper: #fbfaf7;
  --paper-soft: #fffdf9;
  --warm-line: #e7e0d5;
  --warm-text: #5f5b55;
  --warm-shadow: rgba(112, 96, 76, 0.16);
  background: var(--paper);
}

.minimal-site,
.minimal-site * {
  letter-spacing: 0;
}

html,
body.minimal-site,
.minimal-site main,
.minimal-site .section {
  overflow-x: clip;
}

.minimal-site #page-loader {
  background: var(--paper);
}

.minimal-site .loader__logo {
  height: 66px;
  opacity: 1;
}


.minimal-site h1,
.minimal-site h2,
.minimal-site h3,
.minimal-site .brand strong,
.minimal-site .footer-brand strong {
  font-family: "Onest", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.minimal-site h1 {
  font-weight: 800;
}

.minimal-site h2 {
  font-weight: 700;
}

.minimal-site h3 {
  font-weight: 700;
}

.minimal-site .quiet-hero h1 {
  max-width: 760px;
  font-size: 6.8rem;
  line-height: 0.91;
}

.minimal-site .quiet-hero .lead,
.minimal-site .page-hero .lead,
.minimal-site .section-header .lead {
  color: var(--warm-text);
  font-weight: 500;
}

.minimal-site .eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
}

.minimal-site .hero-logo-stage {
  animation-duration: 8.5s;
}

.minimal-site .hero-logo-stage::before {
  background: var(--paper-soft);
  box-shadow: 0 38px 96px rgba(112, 96, 76, 0.14);
}

.minimal-site .hero-logo-stage img {
  filter: none;
}

.minimal-site .product-showcase-grid,
.minimal-site .product-catalogue-grid {
  align-items: start;
  gap: clamp(62px, 7vw, 108px) clamp(34px, 5vw, 78px);
  margin-top: clamp(10px, 2vw, 28px);
}

.minimal-site .product-card {
  position: relative;
  isolation: isolate;
  perspective: none;
  transition: opacity 220ms ease, filter 220ms ease;
}

.minimal-site .product-card > a {
  display: grid;
  gap: 24px;
  align-content: start;
  height: 100%;
  text-align: center;
}

.minimal-site .product-card:hover {
  transform: none;
}

.minimal-site .product-media {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 410px);
  min-height: clamp(260px, 32vw, 390px);
  margin: 0 auto;
  aspect-ratio: 1 / 0.88;
  isolation: isolate;
}

.minimal-site .product-media::before {
  position: absolute;
  left: 50%;
  bottom: 16%;
  z-index: -1;
  width: 78%;
  height: 1px;
  background: var(--warm-line);
  opacity: 0.72;
  transform: translateX(-50%) scaleX(0.82);
  transform-origin: center;
  content: "";
}

.minimal-site .product-media::after {
  position: absolute;
  left: 50%;
  bottom: 10%;
  z-index: -2;
  width: 56%;
  height: 12px;
  border-radius: 999px;
  background: rgba(112, 96, 76, 0.12);
  filter: blur(11px);
  transform: translateX(-50%);
  content: "";
}

.minimal-site .product-media img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 28px 32px var(--warm-shadow));
  mix-blend-mode: multiply;
  transform-origin: 50% 58%;
  transition: filter 220ms ease;
}

.minimal-site .product-card:hover .product-media img {
  transform: none;
  filter: drop-shadow(0 28px 32px var(--warm-shadow));
}

.minimal-site .product-card:nth-child(2n) .product-media,
.minimal-site .product-card:nth-child(3n) .product-media {
  transform-origin: center;
}

.minimal-site .product-body {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0 6px;
}

.minimal-site .product-body h3 {
  max-width: 16ch;
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.08;
}

.minimal-site .product-body p {
  max-width: 31ch;
  margin: 0;
  color: var(--warm-text);
  font-size: 0.96rem;
}

.minimal-site .product-body .meta {
  display: none;
}

.minimal-site .category-tag {
  padding: 0;
  color: var(--red);
  background: transparent;
  box-shadow: none;
}

.minimal-site .spec-line {
  justify-content: center;
  min-height: 36px;
}

.minimal-site .spec-line span {
  border: 1px solid var(--warm-line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}

.minimal-site .product-actions {
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.minimal-site .btn {
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
}

.minimal-site .btn:hover,
.minimal-site .btn:focus-visible {
  transform: translateY(-2px);
}

.minimal-site .btn-secondary,
.minimal-site .btn-outline,
.minimal-site .btn-dark,
.minimal-site .btn-light,
.minimal-site .search-input,
.minimal-site .form-control,
.minimal-site .footer-col a {
  box-shadow: 0 16px 42px rgba(112, 96, 76, 0.1);
}

.minimal-site .copy-block,
.minimal-site .narrow-copy,
.minimal-site .benefit-card,
.minimal-site .industry-card,
.minimal-site .value-card,
.minimal-site .contact-card,
.minimal-site .doc-card,
.minimal-site .metric-card,
.minimal-site .system-diagram,
.minimal-site .pdf-viewer,
.minimal-site .contact-form,
.minimal-site .contact-strip,
.minimal-site .cta-panel {
  box-shadow: 0 28px 72px rgba(112, 96, 76, 0.09);
}

@media (max-width: 1060px) {
  .minimal-site .quiet-hero h1 {
    font-size: 5.2rem;
  }
}

@media (max-width: 760px) {
  .minimal-site .product-showcase-grid,
  .minimal-site .product-catalogue-grid {
    gap: 72px;
  }

  .minimal-site .product-card > a {
    gap: 18px;
  }

  .minimal-site .product-media {
    min-height: 300px;
  }

  .minimal-site .quiet-hero h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 900px) {
  .minimal-site .quiet-hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .minimal-site .quiet-hero h1,
  .minimal-site .quiet-hero .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .minimal-site .hero-actions {
    justify-content: center;
  }
}

/* Reference-inspired soft premium layer */
.minimal-site {
  font-family: "Onest", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --soft-black: #111111;
  --soft-body: #5c5753;
  --soft-paper: #fffdf9;
  --soft-panel: rgba(255, 255, 255, 0.72);
  --soft-shadow: rgba(103, 84, 67, 0.13);
}

.minimal-site h1,
.minimal-site h2,
.minimal-site h3,
.minimal-site .brand strong,
.minimal-site .footer-brand strong {
  font-family: "Onest", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

.minimal-site h1,
.minimal-site .quiet-hero h1 {
  color: var(--soft-black);
  font-weight: 900;
}

.minimal-site h2,
.minimal-site h3 {
  color: var(--soft-black);
}

.minimal-site .site-header {
  background: var(--soft-paper);
}

.minimal-site .brand img {
  width: 54px;
  height: 64px;
}

.minimal-site .quiet-hero {
  min-height: 760px;
  background: var(--soft-paper);
}

.minimal-site .quiet-hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 1;
  pointer-events: none;
}

.minimal-site .hero-mesh-trail {
  position: absolute;
  top: 106px;
  left: 50%;
  width: min(122vw, 1600px);
  max-width: none;
  opacity: 0.76;
  filter: saturate(1.08);
  mix-blend-mode: multiply;
  transform: translateX(-36%);
}

.minimal-site .quiet-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 760px;
  padding-top: 118px;
  text-align: center;
}

.minimal-site .quiet-hero-inner > div:first-child,
.minimal-site .quiet-hero-inner > .hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: start;
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.minimal-site .quiet-hero h1 {
  max-width: 940px;
  margin-top: 22px;
  font-size: 4.55rem;
  line-height: 1.03;
  text-wrap: balance;
}

.minimal-site .quiet-hero .lead {
  max-width: 690px;
  margin-right: 0;
  margin-left: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 1.06rem;
  font-weight: 600;
}

.minimal-site .hero-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.hero-flame-stage {
  position: relative;
  top: auto;
  left: auto;
  z-index: 2;
  width: min(42vw, 440px);
  pointer-events: none;
  transform: none;
  animation: none;
}

.hero-flame-stage img {
  width: 100%;
  height: auto;
  margin: 0;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.minimal-site .hero-logo-stage {
  display: none;
}

.minimal-site .section-header h2 {
  text-wrap: balance;
}

.minimal-site .copy-block,
.minimal-site .benefit-card,
.minimal-site .contact-strip {
  background: var(--soft-panel);
  box-shadow: 0 32px 90px var(--soft-shadow);
}

.minimal-site .benefit-card {
  border-radius: 30px;
}

.minimal-site .product-showcase-grid,
.minimal-site .product-catalogue-grid {
  position: relative;
  align-items: center;
  perspective: none;
  transform-style: flat;
}

.minimal-site .product-card {
  transform-style: flat;
  transition: opacity 220ms ease, filter 220ms ease;
}

@keyframes flame-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }

  50% {
    transform: translate3d(10px, -18px, 0) rotate(2deg);
  }
}

@media (max-width: 1060px) {
  .minimal-site .quiet-hero h1 {
    font-size: 3.9rem;
  }

  .hero-flame-stage {
    top: 202px;
    left: 4vw;
    width: 210px;
    opacity: 0.72;
  }
}

@media (max-width: 760px) {
  .minimal-site .quiet-hero {
    min-height: 720px;
  }

  .minimal-site .quiet-hero-inner {
    min-height: 720px;
    padding-top: 108px;
  }

  .minimal-site .hero-mesh-trail {
    top: 128px;
    left: 46%;
    width: 1040px;
    opacity: 0.52;
  }

  .hero-flame-stage {
    top: 128px;
    left: calc(50% - 90px);
    width: 180px;
    opacity: 0.38;
  }

  .minimal-site .quiet-hero h1 {
    margin-top: 72px;
    font-size: 3.08rem;
    line-height: 1.02;
  }
}

/* Allgood-inspired editorial SFP layer */
:root {
  --paper: #fbfaf5;
  --paper-raised: #fffefa;
  --ink: #0b0b0b;
  --ink-soft: #34312d;
  --muted-warm: #6f6961;
  --line-warm: #e6ded3;
  --red-soft: #fff1f1;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Onest", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

.minimal-site {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0;
}

/* Branded scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--paper);
}

html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-track {
  background: var(--paper);
}

html::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 6px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

html::-webkit-scrollbar-corner {
  background: var(--paper);
}

.minimal-site main {
  counter-reset: sfp-section;
}

.minimal-site h1,
.minimal-site h2,
.minimal-site h3,
.minimal-site .brand strong,
.minimal-site .footer-brand strong {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.minimal-site h1 {
  font-size: clamp(3.6rem, 8.8vw, 8.4rem);
  line-height: 0.98;
}

.minimal-site h2 {
  font-size: clamp(2.35rem, 5.3vw, 5.9rem);
  line-height: 0.98;
}

.minimal-site h2 .h2-sub {
  display: block;
  margin-top: 14px;
  color: var(--warm-text);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.minimal-site h3 {
  font-size: clamp(1.22rem, 1.8vw, 1.75rem);
  line-height: 1.08;
}

.minimal-site p,
.minimal-site .lead {
  color: var(--muted-warm);
}

.minimal-site .lead {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.minimal-site .eyebrow,
.minimal-site .meta,
.minimal-site .category-tag,
.minimal-site .catalogue-meta,
.minimal-site .footer-col h3 {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.minimal-site .site-header {
  border: 0;
  background: var(--soft-paper);
}

.minimal-site .header-inner {
  min-height: 86px;
}

.minimal-site .brand {
  min-width: 0;
  gap: 10px;
}

.minimal-site .brand img {
  width: 38px;
  height: 48px;
}

.minimal-site .brand strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.minimal-site .site-nav {
  gap: clamp(14px, 2.6vw, 38px);
}

.minimal-site .site-nav a {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.minimal-site .site-nav a:not(.nav-cta)::after {
  bottom: -7px;
  height: 1px;
  background: var(--red);
}

.minimal-site .btn {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: none;
}

.minimal-site .btn-primary {
  color: var(--white);
  background: var(--red);
}

.minimal-site .btn-secondary,
.minimal-site .btn-outline,
.minimal-site .btn-dark,
.minimal-site .btn-light {
  color: var(--ink) !important;
  border-color: var(--line-warm);
  background: var(--paper-raised);
  box-shadow: none;
}

.minimal-site .btn:hover,
.minimal-site .btn:focus-visible {
  transform: translateY(-1px);
}

.minimal-site .section,
.minimal-site .section.light,
.minimal-site .benefits-section,
.minimal-site .cta-section,
.minimal-site .product-page-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.minimal-site main > .section,
.minimal-site main > .page-hero,
.minimal-site main > .product-page-hero {
  counter-increment: sfp-section;
}

.minimal-site main > .section::before,
.minimal-site main > .page-hero::before,
.minimal-site main > .product-page-hero::before {
  position: absolute;
  top: clamp(28px, 5vw, 70px);
  left: max(24px, calc((100vw - var(--container)) / 2));
  z-index: 0;
  color: rgba(11, 11, 11, 0.22);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 8rem);
  font-style: italic;
  line-height: 1;
  content: "0" counter(sfp-section);
  pointer-events: none;
}

.minimal-site .section > .container,
.minimal-site .page-hero > .container,
.minimal-site .product-page-hero > .container {
  position: relative;
  z-index: 1;
}

.minimal-site .section-header {
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.42fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 86px);
}

.minimal-site .section-header h2 {
  max-width: 860px;
  text-wrap: balance;
}

.minimal-site .quiet-hero {
  min-height: 780px;
  color: var(--ink);
  background: var(--paper);
}

.minimal-site .quiet-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.minimal-site .quiet-hero-bg::after {
  position: absolute;
  top: 18%;
  right: 8vw;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(254, 0, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.minimal-site .hero-mesh-trail {
  top: 104px;
  left: 50%;
  width: min(118vw, 1600px);
  opacity: 0.52;
  filter: saturate(0.95) contrast(0.95);
  transform: translateX(-35%);
}

.hero-editorial-loop {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  overflow: hidden;
  color: rgba(11, 11, 11, 0.42);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-editorial-loop span {
  min-width: 100%;
  padding-left: 4vw;
  animation: sfp-marquee 28s linear infinite;
}

.minimal-site .quiet-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  align-content: start;
  justify-items: center;
  min-height: 780px;
  padding-top: 126px;
  text-align: center;
}

.hero-status {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  color: var(--muted-warm);
  background: rgba(255, 254, 250, 0.7);
  font-size: 0.74rem;
  font-weight: 600;
}

.minimal-site .quiet-hero h1 {
  max-width: 920px;
  margin: 14px auto 24px;
  color: var(--ink);
  font-size: clamp(3.8rem, 7.4vw, 6.9rem);
  font-weight: 500;
  line-height: 0.97;
  text-wrap: balance;
}

.minimal-site .quiet-hero .lead {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-soft);
  font-weight: 400;
}

.minimal-site .hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.hero-flame-stage {
  top: auto;
  left: auto;
  width: min(42vw, 440px);
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-flame-stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  opacity: 1;
  filter: none;
}

.sfp-line-illustration {
  position: absolute;
  inset: -6% auto auto -7%;
  z-index: 1;
  width: 118%;
  height: 118%;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.sfp-line-illustration path:first-child {
  stroke: rgba(254, 0, 0, 0.33);
  stroke-width: 2.2;
}

.sfp-line-illustration path:nth-child(2) {
  stroke: rgba(11, 11, 11, 0.18);
  stroke-width: 1.7;
}

.sfp-line-illustration path:nth-child(3) {
  stroke: rgba(254, 0, 0, 0.2);
  stroke-width: 1.4;
}

.minimal-site .split,
.minimal-site .contact-layout,
.minimal-site .product-hero-grid,
.minimal-site .page-hero-inner {
  gap: clamp(34px, 6vw, 90px);
}

.minimal-site .copy-block,
.minimal-site .narrow-copy,
.minimal-site .contact-form,
.minimal-site .contact-card,
.minimal-site .system-diagram,
.minimal-site .pdf-viewer,
.minimal-site .cta-panel {
  border: 1px solid rgba(230, 222, 211, 0.82);
  border-radius: 34px;
  background: rgba(255, 254, 250, 0.74);
  box-shadow: none;
}

.minimal-site .copy-block,
.minimal-site .narrow-copy {
  padding: clamp(28px, 4vw, 54px);
}

.minimal-site .benefit-flow,
.minimal-site .grid-2,
.minimal-site .grid-3,
.minimal-site .grid-4 {
  gap: clamp(20px, 3vw, 44px);
}

.minimal-site .benefit-card,
.minimal-site .industry-card,
.minimal-site .value-card,
.minimal-site .doc-card,
.minimal-site .metric-card {
  border: 1px solid var(--line-warm);
  border-radius: 32px;
  background: rgba(255, 254, 250, 0.68);
  box-shadow: none;
}

.minimal-site .active-benefit {
  min-height: 232px;
  padding: clamp(24px, 3.4vw, 42px);
}

.minimal-site .active-benefit .index,
.minimal-site .benefit-card .index,
.minimal-site .value-card .index {
  width: auto;
  height: auto;
  margin-bottom: 28px;
  color: var(--red);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 400;
}

.minimal-site .product-showcase-grid,
.minimal-site .product-catalogue-grid {
  gap: clamp(58px, 8vw, 118px) clamp(34px, 6vw, 88px);
  align-items: end;
}

.minimal-site .product-card {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.minimal-site .product-card > a,
.minimal-site .product-card {
  min-width: 0;
}

.minimal-site .product-card > a {
  display: grid;
  gap: 18px;
  text-align: center;
}

.minimal-site .product-media {
  width: min(100%, 420px);
  min-height: clamp(250px, 30vw, 380px);
  padding: 0;
  background: transparent;
}

.minimal-site .product-media::before {
  bottom: 14%;
  width: 84%;
  background: var(--line-warm);
  opacity: 0.9;
}

.minimal-site .product-media::after {
  bottom: 9%;
  width: 58%;
  height: 14px;
  background: rgba(11, 11, 11, 0.08);
  filter: blur(16px);
}

.minimal-site .product-media img {
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(90, 74, 58, 0.14));
  mix-blend-mode: multiply;
}

.minimal-site .product-card:hover,
.minimal-site .product-card:focus-within {
  transform: none;
}

.minimal-site .product-card:hover .product-media img,
.minimal-site .product-card:focus-within .product-media img {
  transform: none;
  filter: drop-shadow(0 28px 30px rgba(90, 74, 58, 0.14));
}

.minimal-site .product-body {
  gap: 11px;
  padding: 0;
}

.minimal-site .product-body h3 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.minimal-site .product-body p {
  max-width: 30ch;
  margin: 0 auto;
  color: var(--muted-warm);
}

.minimal-site .spec-line {
  justify-content: center;
  min-height: 0;
  margin-top: 4px;
}

.minimal-site .spec-line span,
.minimal-site .filter-chip {
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 254, 250, 0.78);
  box-shadow: none;
}

.minimal-site .catalogue-layout {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
}

.minimal-site .catalogue-sidebar {
  top: 112px;
  padding: 0;
  border: 0;
  background: transparent;
}

.minimal-site .catalogue-sidebar h2 {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.minimal-site .filter-row {
  gap: 10px;
}

.minimal-site .filter-chip {
  justify-content: center;
  min-height: 44px;
  width: auto;
}

.minimal-site .filter-chip.is-active,
.minimal-site .filter-chip:hover,
.minimal-site .filter-chip:focus-visible {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.minimal-site .search-input,
.minimal-site .form-control {
  min-height: 54px;
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.88);
  box-shadow: none;
}

.minimal-site textarea.form-control {
  border-radius: 28px;
}

.minimal-site .page-hero {
  padding: clamp(120px, 16vw, 180px) 0 clamp(74px, 10vw, 122px);
  color: var(--ink);
  background: var(--paper);
}

.minimal-site .page-hero-visual,
.minimal-site .product-hero-image {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.minimal-site .page-hero-visual::before,
.minimal-site .product-hero-image::before {
  position: absolute;
  right: 9%;
  bottom: 11%;
  left: 9%;
  z-index: -1;
  height: 18px;
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.08);
  filter: blur(18px);
  content: "";
}

.minimal-site .page-hero-visual img,
.minimal-site .product-hero-image img {
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 26px 34px rgba(90, 74, 58, 0.13));
  mix-blend-mode: multiply;
}

.minimal-site .product-nav {
  top: 86px;
  border: 0;
  background: rgba(251, 250, 245, 0.88);
  backdrop-filter: blur(18px);
}

.minimal-site .product-nav-inner {
  justify-content: center;
  gap: clamp(16px, 3vw, 46px);
}

.minimal-site .product-nav a {
  min-height: 58px;
  color: var(--muted-warm);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom-width: 1px;
}

.minimal-site .spec-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
}

.minimal-site .spec-table th,
.minimal-site .spec-table td {
  border: 0;
  background: rgba(255, 254, 250, 0.82);
}

.minimal-site .spec-table th {
  border-radius: 999px 0 0 999px;
  color: var(--ink);
}

.minimal-site .spec-table td {
  border-radius: 0 999px 999px 0;
  color: var(--muted-warm);
}

.minimal-site .contact-strip,
.minimal-site .cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  border: 1px solid var(--line-warm);
  border-radius: 38px;
  background: rgba(255, 254, 250, 0.74);
  box-shadow: none;
}

.minimal-site .contact-strip {
  padding: clamp(28px, 5vw, 62px);
}

.minimal-site .contact-lines {
  border-left: 1px solid var(--red);
}

.minimal-site .contact-lines strong {
  font-size: 1rem;
}

.minimal-site .site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) 0 58px;
  text-align: center;
  color: var(--muted-warm);
  background: var(--paper);
}

.minimal-site .site-footer::before {
  position: absolute;
  top: 16px;
  left: 50%;
  width: min(92vw, 1100px);
  height: auto;
  display: block;
  color: rgba(254, 0, 0, 0.07);
  background: transparent;
  font-family: var(--sans);
  font-size: clamp(4.4rem, 15vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
  text-align: center;
  transform: translateX(-50%);
  content: "SelectFire";
}

.minimal-site .footer-main,
.minimal-site .simple-footer {
  position: relative;
  z-index: 1;
  align-items: center;
  max-width: 760px;
}

.minimal-site .footer-brand img {
  width: 62px;
  height: auto;
}

@keyframes sfp-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1060px) {
  .minimal-site .catalogue-layout,
  .minimal-site .page-hero-inner,
  .minimal-site .product-hero-grid,
  .minimal-site .contact-layout {
    grid-template-columns: 1fr;
  }

  .minimal-site .catalogue-sidebar {
    position: relative;
    top: auto;
  }

  .minimal-site .filter-row {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-flame-stage {
    top: 172px;
    left: calc(50% - 120px);
    width: 240px;
    opacity: 0.32;
  }
}

@media (max-width: 760px) {
  .minimal-site .header-inner {
    min-height: 78px;
  }

  .minimal-site .site-nav {
    background: rgba(255, 253, 249, 0.98);
  }

  .minimal-site .site-nav a {
    justify-content: center;
  }

  .hero-editorial-loop {
    top: 92px;
    font-size: 0.72rem;
  }

  .minimal-site .quiet-hero,
  .minimal-site .quiet-hero-inner {
    min-height: 720px;
  }

  .minimal-site .quiet-hero-inner {
    padding-top: 116px;
  }

  .minimal-site .quiet-hero h1 {
    margin-top: 74px;
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .minimal-site .hero-mesh-trail {
    top: 110px;
    left: 50%;
    width: 960px;
    opacity: 0.48;
  }

  .hero-flame-stage {
    top: 158px;
    left: calc(50% - 88px);
    width: 176px;
  }

  .minimal-site main > .section::before,
  .minimal-site main > .page-hero::before,
  .minimal-site main > .product-page-hero::before {
    top: 24px;
    left: 20px;
    font-size: 3.2rem;
  }

  .minimal-site .section-header,
  .minimal-site .contact-strip,
  .minimal-site .cta-panel,
  .minimal-site .documents-grid {
    grid-template-columns: 1fr;
  }

  .minimal-site .contact-lines {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--red);
    padding-top: 24px;
  }

  .minimal-site .spec-table th,
  .minimal-site .spec-table td {
    display: block;
    width: 100%;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-editorial-loop span {
    animation: none !important;
  }
}

/* Surgical cleanup: kill decorative effects only (no layout redesign) */
.quiet-hero-bg,
.hero-mesh-trail,
.hero-editorial-loop,
.sfp-line-illustration,
.quiet-hero-bg::after,
.quiet-hero::before,
.quiet-hero::after,
.system-rail,
.hero-logo-stage::before {
  display: none !important;
}

.hero-logo-stage,
.system-rail span {
  animation: none !important;
}

.hero-logo-stage {
  transform: none !important;
}

.site-header,
.product-nav,
.minimal-site .site-header,
.minimal-site .product-nav {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.brand img,
.loader__logo,
.footer-brand img,
.hero-flame-stage img,
.hero-logo-stage img,
.product-media img,
.page-hero-visual img,
.product-hero-image img {
  filter: none !important;
  mix-blend-mode: normal !important;
  box-shadow: none !important;
}

.btn:hover,
.btn:focus-visible,
.product-card:hover,
.benefit-card:hover,
.cert-card:hover,
.industry-card:hover,
.doc-card:hover,
.metric-card:hover,
.product-line-card:hover,
.product-group:hover,
.minimal-site .btn:hover,
.minimal-site .btn:focus-visible,
.minimal-site .benefit-card:hover,
.minimal-site .contact-card:hover,
.minimal-site .footer-col a:hover,
.minimal-site .footer-col a:focus-visible {
  transform: none !important;
}

.copy-block,
.narrow-copy,
.benefit-card,
.industry-card,
.value-card,
.contact-card,
.doc-card,
.metric-card,
.system-diagram,
.pdf-viewer,
.contact-form,
.contact-strip,
.cta-panel,
.product-card,
.quiet-card,
.minimal-site .copy-block,
.minimal-site .narrow-copy,
.minimal-site .benefit-card,
.minimal-site .industry-card,
.minimal-site .value-card,
.minimal-site .contact-card,
.minimal-site .doc-card,
.minimal-site .metric-card,
.minimal-site .system-diagram,
.minimal-site .pdf-viewer,
.minimal-site .contact-form,
.minimal-site .contact-strip,
.minimal-site .cta-panel,
.minimal-site .btn-secondary,
.minimal-site .btn-outline,
.minimal-site .btn-dark,
.minimal-site .btn-light,
.minimal-site .search-input,
.minimal-site .form-control,
.minimal-site .footer-col a,
.minimal-site .category-tag,
.minimal-site .spec-line span,
.minimal-site .filter-chip,
.minimal-site .page-hero-visual,
.hero-logo-stage::before {
  box-shadow: none !important;
}

.product-media::before,
.product-media::after,
.page-hero-visual::before,
.product-hero-image::before,
.product-card::before,
.benefit-card::before,
.cert-card::before,
.industry-card::before,
.value-card::before,
.doc-card::before,
.metric-card::before,
.contact-card::before,
.product-group::before,
.active-benefit::after,
.site-footer::before,
.minimal-site main > .section::before,
.minimal-site main > .page-hero::before,
.minimal-site main > .product-page-hero::before {
  content: none !important;
  display: none !important;
}

.form-control:focus,
.search-input:focus {
  box-shadow: none !important;
}

/* Intro logo: true viewport center; first scroll gesture reveals the hero */
.quiet-hero[data-logo-intro-hero] {
  position: relative;
}

/* Page cannot scroll while the intro logo is on screen. The reveal is a
   fixed, time-based animation, so there is no pinning and nothing to jump.
   The lock lives on <html>: body overflow does not propagate to the viewport
   here because html has overflow-x: clip elsewhere in this stylesheet. */
html.intro-scroll-lock,
html.intro-scroll-lock body {
  overflow: hidden !important;
  overscroll-behavior: none;
}

/* Promote animated elements to their own compositor layers during the intro
   so the pin/unpin transition is handled entirely on the GPU with no repaints. */
body.intro-logo-active .quiet-hero[data-logo-intro-hero],
body.intro-logo-active .intro-logo,
body.intro-logo-active [data-intro-hero-content] {
  will-change: transform, opacity;
}

.intro-logo {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  /* Solid surface: while the logo shows, nothing behind it (header band,
     hero) can create seams — the whole overlay crossfades out on reveal. */
  background: var(--soft-paper, #faf8f4);
}

.intro-logo img {
  display: block;
  width: min(30vw, 168px);
  height: auto;
  margin: 0;
  object-fit: contain;
  transform-origin: center center;
}

.quiet-hero[data-logo-intro-hero] [data-intro-hero-content] {
  opacity: 0;
  visibility: hidden;
}

body.intro-logo-active .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  /* GSAP scrubs these props every frame; a CSS transition here would lag
     behind the scroll and make up/down feel different. */
  transition: none;
}

body.intro-logo-done .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

body.intro-logo-done .intro-logo {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.intro-logo-done [data-intro-hero-content] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .intro-logo {
    display: none !important;
  }

  .quiet-hero[data-logo-intro-hero] [data-intro-hero-content] {
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.intro-logo-active .site-header {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Open layout: remove card containers, keep content readable */
.product-card,
.benefit-card,
.cert-card,
.industry-card,
.value-card,
.doc-card,
.market-card,
.contact-card,
.metric-card,
.quiet-card,
.product-group,
.product-line-card,
.copy-block,
.narrow-copy,
.contact-form,
.contact-strip,
.cta-panel,
.pdf-viewer,
.system-diagram,
.catalogue-sidebar,
.page-hero-visual,
.product-hero-image,
.hero-flame-stage,
.hero-logo-stage,
.featured-product-panel,
.active-benefit,
.minimal-site .product-card,
.minimal-site .benefit-card,
.minimal-site .industry-card,
.minimal-site .value-card,
.minimal-site .doc-card,
.minimal-site .contact-card,
.minimal-site .metric-card,
.minimal-site .copy-block,
.minimal-site .narrow-copy,
.minimal-site .contact-form,
.minimal-site .contact-strip,
.minimal-site .cta-panel,
.minimal-site .pdf-viewer,
.minimal-site .system-diagram,
.minimal-site .page-hero-visual,
.minimal-site .product-hero-image {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.copy-block,
.narrow-copy,
.contact-form,
.benefit-card,
.industry-card,
.contact-card,
.value-card,
.metric-card,
.cta-panel,
.contact-strip,
.catalogue-sidebar,
.hero-flame-stage,
.product-hero-image,
.minimal-site .copy-block,
.minimal-site .narrow-copy,
.minimal-site .contact-form,
.minimal-site .benefit-card,
.minimal-site .industry-card,
.minimal-site .contact-card,
.minimal-site .cta-panel,
.minimal-site .contact-strip {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.minimal-site .copy-block,
.minimal-site .narrow-copy,
.minimal-site .contact-form,
.minimal-site .contact-strip,
.minimal-site .cta-panel,
.minimal-site .benefit-card,
.minimal-site .industry-card,
.minimal-site .contact-card {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.product-media,
.minimal-site .product-media {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  aspect-ratio: 4 / 3;
}

.product-media img,
.page-hero-visual img,
.product-hero-image img,
.hero-flame-stage img {
  border-radius: 0 !important;
}

.product-body,
.minimal-site .product-body {
  padding: 20px 0 0 !important;
  text-align: left !important;
  justify-items: start !important;
}

.minimal-site .product-card > a {
  text-align: left !important;
  gap: 0 !important;
}

.minimal-site .product-body h3,
.minimal-site .product-body p,
.minimal-site .spec-line {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.minimal-site .product-body,
.minimal-site .spec-line,
.minimal-site .product-actions {
  justify-content: flex-start !important;
  justify-items: start !important;
}

.contact-strip,
.minimal-site .contact-strip {
  padding: 40px 0 0 !important;
  border-top: 1px solid var(--line, #d9d9d9) !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.contact-lines,
.minimal-site .contact-lines {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.doc-card,
.minimal-site .doc-card {
  padding: 16px 0 !important;
  border-bottom: 1px solid var(--line, #d9d9d9) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.doc-card.is-active,
.minimal-site .doc-card.is-active {
  border-color: transparent transparent var(--ink, #0b0b0b) transparent !important;
}

.pdf-viewer,
.minimal-site .pdf-viewer {
  border: 1px solid var(--line, #d9d9d9) !important;
  background: var(--white, #fff) !important;
}

.pdf-viewer-header {
  border-radius: 0 !important;
}

.spec-table,
.minimal-site .spec-table {
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  background: transparent !important;
}

.minimal-site .spec-table th,
.minimal-site .spec-table td {
  border: 0 !important;
  border-bottom: 1px solid var(--line, #d9d9d9) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.minimal-site .spec-table th {
  padding-left: 0 !important;
}

.minimal-site .spec-line span,
.minimal-site .filter-chip {
  border: 1px solid var(--line, #d9d9d9) !important;
  border-radius: 4px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.minimal-site .filter-chip.is-active,
.minimal-site .filter-chip:hover,
.minimal-site .filter-chip:focus-visible {
  color: var(--white, #fff) !important;
  background: var(--black, #0b0b0b) !important;
  border-color: var(--black, #0b0b0b) !important;
}

.minimal-site .search-input,
.minimal-site .form-control,
.minimal-site textarea.form-control {
  border: 1px solid var(--line-dark, #2f2f2f) !important;
  border-radius: 6px !important;
  background: var(--white, #fff) !important;
  box-shadow: none !important;
}

.minimal-site .btn,
.minimal-site .btn-secondary,
.minimal-site .btn-outline,
.minimal-site .btn-dark,
.minimal-site .btn-light {
  border-radius: 6px !important;
  box-shadow: none !important;
}

.minimal-site .btn-secondary,
.minimal-site .btn-outline,
.minimal-site .btn-dark,
.minimal-site .btn-light {
  border: 1px solid var(--line-dark, #2f2f2f) !important;
}

.minimal-site .btn-outline,
.minimal-site .btn-secondary,
.minimal-site .btn-light {
  background: transparent !important;
}

.minimal-site .btn-dark {
  background: var(--black, #0b0b0b) !important;
  color: var(--white, #fff) !important;
}

.minimal-site .footer-col a {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.product-showcase-grid,
.product-catalogue-grid,
.minimal-site .product-showcase-grid,
.minimal-site .product-catalogue-grid {
  gap: 40px 32px !important;
  align-items: start !important;
}

.minimal-site .copy-block,
.minimal-site .narrow-copy,
.minimal-site .contact-form,
.minimal-site .contact-strip,
.minimal-site .cta-panel,
.minimal-site .benefit-card,
.minimal-site .industry-card,
.minimal-site .contact-card {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.product-media,
.minimal-site .product-media {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  aspect-ratio: 4 / 3;
}

.product-media img,
.page-hero-visual img,
.product-hero-image img,
.hero-flame-stage img {
  border-radius: 0 !important;
}

.product-body,
.minimal-site .product-body {
  padding: 20px 0 0 !important;
  text-align: left !important;
  justify-items: start !important;
}

.minimal-site .product-card > a {
  text-align: left !important;
  gap: 0 !important;
}

.minimal-site .product-body h3,
.minimal-site .product-body p,
.minimal-site .spec-line {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.minimal-site .product-body,
.minimal-site .spec-line,
.minimal-site .product-actions {
  justify-content: flex-start !important;
  justify-items: start !important;
}

.contact-strip,
.minimal-site .contact-strip {
  padding: 40px 0 0 !important;
  border-top: 1px solid var(--line, #d9d9d9) !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.contact-lines,
.minimal-site .contact-lines {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.doc-card,
.minimal-site .doc-card {
  padding: 16px 0 !important;
  border-bottom: 1px solid var(--line, #d9d9d9) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.doc-card.is-active,
.minimal-site .doc-card.is-active {
  border-color: transparent transparent var(--ink, #0b0b0b) transparent !important;
}

.pdf-viewer,
.minimal-site .pdf-viewer {
  border: 1px solid var(--line, #d9d9d9) !important;
  background: var(--white, #fff) !important;
}

.pdf-viewer-header {
  border-radius: 0 !important;
}

.spec-table,
.minimal-site .spec-table {
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  background: transparent !important;
}

.minimal-site .spec-table th,
.minimal-site .spec-table td {
  border: 0 !important;
  border-bottom: 1px solid var(--line, #d9d9d9) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.minimal-site .spec-table th {
  padding-left: 0 !important;
}

.minimal-site .spec-line span,
.minimal-site .filter-chip {
  border: 1px solid var(--line, #d9d9d9) !important;
  border-radius: 4px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.minimal-site .filter-chip.is-active,
.minimal-site .filter-chip:hover,
.minimal-site .filter-chip:focus-visible {
  color: var(--white, #fff) !important;
  background: var(--black, #0b0b0b) !important;
  border-color: var(--black, #0b0b0b) !important;
}

.minimal-site .search-input,
.minimal-site .form-control,
.minimal-site textarea.form-control {
  border: 1px solid var(--line-dark, #2f2f2f) !important;
  border-radius: 6px !important;
  background: var(--white, #fff) !important;
  box-shadow: none !important;
}

.minimal-site .btn,
.minimal-site .btn-secondary,
.minimal-site .btn-outline,
.minimal-site .btn-dark,
.minimal-site .btn-light {
  border-radius: 6px !important;
  box-shadow: none !important;
}

.minimal-site .btn-secondary,
.minimal-site .btn-outline,
.minimal-site .btn-dark,
.minimal-site .btn-light {
  border: 1px solid var(--line-dark, #2f2f2f) !important;
}

.minimal-site .btn-outline,
.minimal-site .btn-secondary,
.minimal-site .btn-light {
  background: transparent !important;
}

.minimal-site .btn-dark {
  background: var(--black, #0b0b0b) !important;
  color: var(--white, #fff) !important;
}

.minimal-site .footer-col a {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.product-showcase-grid,
.product-catalogue-grid,
.minimal-site .product-showcase-grid,
.minimal-site .product-catalogue-grid {
  gap: 40px 32px !important;
  align-items: start !important;
}

.minimal-site .hero-actions {
  display: flex !important;
  justify-content: flex-start !important;
}
.grid.grid-2,
.grid.grid-3,
.benefit-flow {
  gap: 32px !important;
}

/* ==========================================================================
   Redesigned Hero Section Override (Visual Comfort)
   ========================================================================== */

/* 1. Base quiet-hero layout overrides */
.minimal-site .quiet-hero {
  background: var(--soft-paper) !important;
  overflow: hidden !important;
}

/* 2. Glow overlays removed */
.minimal-site .quiet-hero::before,
.minimal-site .quiet-hero::after {
  content: none !important;
  display: none !important;
}

/* 3. Two-column hero: copy left, logo right */
.minimal-site .quiet-hero-inner {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr) !important;
  align-items: center !important;
  gap: clamp(28px, 5vw, 72px) !important;
  min-height: 85vh !important;
  padding: 176px 0 80px 0 !important;
  text-align: left !important;
  z-index: 2 !important;
}

.minimal-site .quiet-hero-inner > .hero-copy,
.minimal-site .quiet-hero-inner > div:first-child {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  max-width: 640px !important;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.minimal-site .quiet-hero h1 {
  max-width: 100% !important;
  margin-top: 20px !important;
  margin-bottom: 24px !important;
  font-size: clamp(2.6rem, 4vw, 4.2rem) !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  text-wrap: balance !important;
}

.minimal-site .quiet-hero .lead {
  max-width: 520px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 36px !important;
  color: rgba(17, 17, 17, 0.65) !important;
  font-size: 1.12rem !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
}

.minimal-site .hero-actions {
  display: flex !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  width: 100% !important;
  margin-top: 0 !important;
}

.minimal-site .hero-actions .btn {
  margin: 0 !important;
  border-radius: 6px !important;
  padding: 14px 28px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.minimal-site .hero-actions .btn-primary {
  background: var(--red) !important;
  border: 1px solid var(--red) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.minimal-site .hero-actions .btn-primary:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

.minimal-site .hero-actions .btn-secondary {
  background: transparent !important;
  border: 1px solid var(--line-dark) !important;
  color: var(--charcoal) !important;
}

.minimal-site .hero-actions .btn-secondary:hover {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  border-color: var(--charcoal) !important;
  transform: translateY(-2px) !important;
}

/* 4. Full-opacity logo on the right with overlay tags */
.minimal-site .hero-flame-stage {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: min(42vw, 440px) !important;
  max-width: 440px !important;
  margin: 0 0 0 auto !important;
  display: grid !important;
  place-items: center !important;
  z-index: 2 !important;
  pointer-events: none !important;
  transform: none !important;
  animation: none !important;
  opacity: 1 !important;
}

.minimal-site .hero-flame-stage img {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  transform-origin: center center !important;
  opacity: 1 !important;
  animation: none !important;
}

.minimal-site .hero-logo-tags {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  pointer-events: none !important;
}

.minimal-site .hero-logo-tags li {
  position: absolute !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(17, 17, 17, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(251, 250, 247, 0.92) !important;
  color: var(--charcoal, #1a1a1a) !important;
  box-shadow: 0 10px 28px rgba(11, 11, 11, 0.08) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  backdrop-filter: blur(8px) !important;
}

.minimal-site .hero-logo-tags li:nth-child(1) {
  top: 12% !important;
  left: -4% !important;
}

.minimal-site .hero-logo-tags li:nth-child(2) {
  top: 46% !important;
  right: -8% !important;
  left: auto !important;
}

.minimal-site .hero-logo-tags li:nth-child(3) {
  bottom: 14% !important;
  left: 8% !important;
}

/* 5. Mobile & Responsive Layout adjustments */
@media (max-width: 991px) {
  .minimal-site .quiet-hero {
    min-height: auto !important;
    padding: 60px 0 !important;
  }

  .minimal-site .quiet-hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding-top: 132px !important;
    padding-bottom: 40px !important;
    gap: 40px !important;
  }

  .minimal-site .quiet-hero-inner > .hero-copy,
  .minimal-site .quiet-hero-inner > div:first-child {
    align-items: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .minimal-site .quiet-hero .lead {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .minimal-site .hero-actions {
    justify-content: center !important;
  }

  .minimal-site .hero-flame-stage {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: min(72vw, 320px) !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .minimal-site .hero-flame-stage img {
    opacity: 1 !important;
  }

  .minimal-site .hero-logo-tags li:nth-child(1) {
    left: 0 !important;
  }

  .minimal-site .hero-logo-tags li:nth-child(2) {
    right: 0 !important;
  }
}

/* Hero: centered copy with a smooth ticker banner below */
.minimal-site .quiet-hero-inner {
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-content: center !important;
  gap: 0 !important;
  min-height: 0 !important;
  padding: clamp(90px, 12vh, 140px) 0 clamp(40px, 6vh, 72px) !important;
  text-align: center !important;
}

.minimal-site .quiet-hero-inner > .hero-copy,
.minimal-site .quiet-hero-inner > div:first-child {
  align-items: center !important;
  justify-items: center !important;
  max-width: 780px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.minimal-site .quiet-hero h1 {
  margin-right: auto !important;
  margin-left: auto !important;
  text-wrap: balance;
}

.minimal-site .quiet-hero .lead {
  margin-right: auto !important;
  margin-left: auto !important;
  max-width: 640px !important;
}

.minimal-site .hero-actions {
  justify-content: center !important;
}

.minimal-site .quiet-hero {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100svh !important;
}

.minimal-site .quiet-hero-inner {
  flex: 1 1 auto !important;
  width: 100% !important;
}

.minimal-site .hero-ticker {
  margin-top: auto;
}

body.intro-logo-active .hero-ticker {
  opacity: 0;
  visibility: hidden;
}

.minimal-site .hero-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid var(--warm-line, #e7e0d5);
  border-bottom: 1px solid var(--warm-line, #e7e0d5);
  background: var(--paper-soft, #fffdf9);
  transition: opacity 700ms ease, visibility 700ms ease;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.minimal-site .hero-ticker-track {
  display: flex;
  width: max-content;
  animation: sfp-ticker 36s linear infinite;
}

.minimal-site .hero-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.minimal-site .hero-ticker-group span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 30px;
  color: var(--ink, #0b0b0b);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.minimal-site .hero-ticker-group span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

@keyframes sfp-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .minimal-site .hero-ticker-track {
    animation: none;
  }
}

/* All big headings share the hero heading typography */
.minimal-site h1,
.minimal-site h2,
.minimal-site .quiet-hero h1,
.minimal-site .page-hero h1,
.minimal-site .product-page-hero h1 {
  font-family: var(--sans) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
}

/* ==========================================================================
   Product cards: uniform alignment regardless of content length
   ========================================================================== */

.minimal-site .product-showcase-grid,
.minimal-site .product-catalogue-grid {
  align-items: stretch !important;
  gap: 56px 32px !important;
}

.minimal-site .product-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.minimal-site .product-card > a {
  display: flex !important;
  flex: 1 !important;
  flex-direction: column !important;
  height: 100% !important;
  gap: 0 !important;
  text-align: left !important;
}

.minimal-site .product-media {
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.minimal-site .product-media img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
}

.minimal-site .product-body {
  display: flex !important;
  flex: 1 !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 24px 0 0 !important;
  text-align: left !important;
}

.minimal-site .product-body .category-tag {
  margin: 0 0 12px !important;
}

.minimal-site .product-body .meta {
  display: none !important;
}

.minimal-site .product-body h3 {
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 0 10px !important;
  font-size: 1.3rem !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.minimal-site .product-body > p:not(.meta) {
  flex: 1 !important;
  max-width: none !important;
  margin: 0 0 18px !important;
  text-align: left !important;
}

.minimal-site .product-body .spec-line {
  justify-content: flex-start !important;
  min-height: 0 !important;
  margin: 0 0 18px !important;
}

.minimal-site .product-body .spec-line + .btn,
.minimal-site .product-body > .btn {
  margin-top: auto !important;
  align-self: flex-start !important;
}

.minimal-site .page-hero.compact-page-hero {
  padding: clamp(88px, 10vw, 118px) 0 clamp(18px, 3vw, 30px);
}

.compact-page-hero .page-hero-inner {
  grid-template-columns: 1fr;
}

.minimal-site .section.compact-section-top {
  padding-top: 34px;
}

.minimal-site .product-body .product-actions {
  justify-content: flex-start !important;
  gap: 12px !important;
  margin-top: auto !important;
}

.minimal-site .product-card > a.download-fab {
  position: absolute !important;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex !important;
  flex: none !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  gap: 0;
  width: auto !important;
  height: auto !important;
  min-height: 0;
  padding: 6px 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: var(--ink, #0b0b0b) !important;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: none !important;
  transition: gap 220ms ease, color 220ms ease;
}

.minimal-site .download-fab svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  transition: transform 200ms ease;
}

.minimal-site .download-fab span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 260ms ease, opacity 200ms ease;
}

.minimal-site .download-fab:hover,
.minimal-site .download-fab:focus-visible {
  gap: 8px;
  color: var(--red) !important;
}

.minimal-site .download-fab:hover svg,
.minimal-site .download-fab:focus-visible svg {
  transform: translateY(2px);
}

.minimal-site .download-fab:hover span,
.minimal-site .download-fab:focus-visible span {
  max-width: 160px;
  opacity: 1;
}

.minimal-site .product-card:hover .product-media img,
.minimal-site .product-card:focus-within .product-media img {
  filter: none !important;
}

.minimal-site .product-card:hover .btn-view,
.minimal-site .product-card:focus-within .btn-view {
  color: var(--red) !important;
}

.minimal-site .filter-chip {
  justify-content: flex-start !important;
  padding: 0 16px !important;
  border: 1px solid var(--line-warm, #e6ded3) !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: var(--ink-soft, #34312d) !important;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.minimal-site .filter-chip:hover,
.minimal-site .filter-chip:focus-visible {
  color: var(--red) !important;
  border-color: rgba(254, 0, 0, 0.35) !important;
  background: transparent !important;
}

.minimal-site .filter-chip.is-active {
  color: var(--ink, #0b0b0b) !important;
  border-color: var(--ink, #0b0b0b) !important;
  background: transparent !important;
}

.minimal-site .product-page-hero h1 {
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  line-height: 1.06;
  text-wrap: balance;
}

.minimal-site .product-nav {
  position: sticky;
  top: 78px;
  z-index: 40;
}

body.minimal-site:has([data-product-panels]) {
  height: 100vh;
  overflow: hidden;
}

body.minimal-site:has([data-product-panels]) .site-footer {
  display: none;
}

body.minimal-site:has([data-product-panels]) #main {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 78px);
  box-sizing: border-box;
}

body.minimal-site:has([data-product-panels]) .product-nav {
  position: relative;
  top: auto;
  flex: 0 0 auto;
}

.product-nav[data-product-tabs] .product-nav-inner {
  position: relative;
}

.product-nav[data-product-tabs] a,
.minimal-site .product-nav[data-product-tabs] a.is-active,
.minimal-site .product-nav[data-product-tabs] a:hover,
.minimal-site .product-nav[data-product-tabs] a:focus-visible {
  border-bottom-color: transparent;
}

.product-nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  pointer-events: none;
  will-change: transform, width;
}

.minimal-site .product-panels {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.minimal-site .product-panels > [data-product-panel] {
  width: 100%;
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(28px, 4vw, 52px);
  box-sizing: border-box;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Auto margins center content vertically without clipping when it overflows */
.minimal-site .product-panels > [data-product-panel] > .container {
  margin-top: auto;
  margin-bottom: auto;
}

.minimal-site .product-panels > [data-product-panel]:not(.is-active) {
  position: absolute;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}

.minimal-site .product-panels > [data-product-panel].is-active {
  position: relative;
  visibility: visible;
  pointer-events: auto;
}

.minimal-site .product-panels .product-page-hero .container,
.minimal-site .product-panels .product-page-hero .product-hero-grid {
  width: 100%;
}

.minimal-site .product-actions-stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.minimal-site .product-panels h1,
.minimal-site .product-panels .section-header h2,
.minimal-site .product-panels .cta-panel h2 {
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
  font-size: clamp(1.5rem, 2.7vw, 2.75rem);
  line-height: 1.1;
}

@media (max-width: 700px) {
  .minimal-site .product-panels h1,
  .minimal-site .product-panels .section-header h2,
  .minimal-site .product-panels .cta-panel h2 {
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

@media (max-width: 900px) {
  body.minimal-site:has([data-product-panels]) {
    height: auto;
    overflow: auto;
  }

  body.minimal-site:has([data-product-panels]) #main {
    height: auto;
  }

  .minimal-site .product-panels {
    min-height: auto;
    overflow: visible;
  }

  .minimal-site .product-panels > [data-product-panel] {
    height: auto;
    overflow: visible;
  }
}

.minimal-site .btn-view,
.minimal-site .btn-dark {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ink, #0b0b0b) !important;
}

.minimal-site .btn-view:hover,
.minimal-site .btn-view:focus-visible,
.minimal-site .btn-dark:hover,
.minimal-site .btn-dark:focus-visible {
  background: transparent !important;
  color: var(--red) !important;
}

/* ==========================================================================
   Featured product card footer: tags left, View Details right, no borders
   ========================================================================== */

.minimal-site .category-tag {
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.minimal-site .product-body .card-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px 16px !important;
  width: 100% !important;
  margin-top: auto !important;
}

.minimal-site .card-footer .spec-line {
  margin: 0 !important;
  min-height: 0 !important;
  justify-content: flex-start !important;
}

.minimal-site .product-body .card-footer .btn,
.minimal-site .product-body .card-footer .spec-line + .btn {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ink, #0b0b0b) !important;
  align-self: center !important;
}

.minimal-site .product-card:hover .card-footer .btn,
.minimal-site .card-footer .btn:hover,
.minimal-site .card-footer .btn:focus-visible {
  background: transparent !important;
  color: var(--red) !important;
}

/* ==========================================================================
   About page: hero without image, intro copy inside the hero
   ========================================================================== */

.about-hero .page-hero-inner,
.text-page-hero .page-hero-inner {
  grid-template-columns: 1fr;
}

.minimal-site .about-hero,
.minimal-site .text-page-hero {
  padding-bottom: clamp(40px, 6vw, 64px);
}

.about-intro {
  margin-top: 26px;
}

/* Partners Overseas: title beside the country list */

.partners-overseas {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.minimal-site .partners-overseas h2 {
  margin-bottom: 0;
  max-width: 420px;
  color: var(--ink-soft, #34312d);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 500;
  line-height: 1.35;
}

.partners-overseas .country-list {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.9;
}

@media (max-width: 860px) {
  .partners-overseas {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ==========================================================================
   About story page (GSAP ScrollTrigger storytelling)
   ========================================================================== */

.story-hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: var(--paper, #fbfaf7);
}

.story-hero-inner {
  width: 100%;
  text-align: center;
}

.story-title {
  max-width: none;
  margin: 0 auto;
}

.story-line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.story-line {
  display: block;
}

.story-scroll-hint {
  margin: 38px 0 0;
  color: var(--muted-warm, #8b8377);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 90px 0;
  gap: 80px;
}

.story-motion .story-stage {
  gap: 0;
}

.story-motion .story-chapter {
  grid-area: 1 / 1;
}

.story-chapter {
  position: relative;
  max-width: 740px;
  text-align: center;
}

.story-chapter h2 {
  max-width: none;
  margin-bottom: 22px;
}

.story-chapter .story-text {
  margin: 0 auto;
  max-width: 640px;
  color: var(--graphite, #4c4842);
  font-size: 1.08rem;
  line-height: 1.75;
}

.story-progress {
  position: absolute;
  bottom: 44px;
  left: 50%;
  width: min(300px, 46vw);
  height: 2px;
  background: rgba(11, 11, 11, 0.12);
  transform: translateX(-50%);
}

.story-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red, #e30613);
  transform: scaleX(0);
  transform-origin: left center;
}

.story-partners-inner {
  display: grid;
  place-content: center;
  min-height: 100vh;
  padding: 90px 0;
  gap: 44px;
  text-align: center;
}

.story-count {
  margin: 0;
  color: var(--ink, #0b0b0b);
  font-family: var(--sans, "Onest", "Helvetica Neue", "Segoe UI", Arial, sans-serif);
  font-size: clamp(4.4rem, 11vw, 8.5rem);
  font-weight: 900;
  line-height: 0.98;
}

.story-count-plus {
  color: var(--red, #e30613);
}

.story-count-label {
  max-width: 400px;
  margin: 12px auto 0;
  color: var(--graphite, #4c4842);
  font-size: 1rem;
}

.country-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  max-width: 940px;
  margin: 0 auto;
}

.country-cloud {
  gap: 12px 26px;
}

.country-chip {
  display: inline-block;
  color: var(--ink-soft, #34312d);
  font-size: 0.95rem;
  font-weight: 600;
}

.story-brands {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 90px 0;
}

.story-brands .benefit-card,
.story-brands .benefit-card:hover,
.story-brands .benefit-card:focus-within {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.story-brands .brand-card-logo,
.story-brands .benefit-card:hover .brand-card-logo {
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

/* ==========================================================================
   One-screen page (contact): everything fits in a single viewport
   ========================================================================== */

.minimal-site.one-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.minimal-site.one-screen main {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: center;
}

.minimal-site.one-screen .page-hero {
  padding: clamp(86px, 12vh, 124px) 0 clamp(14px, 2.5vh, 26px);
}

.minimal-site.one-screen .page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}

.minimal-site.one-screen .page-hero .lead {
  margin-bottom: 0;
}

.minimal-site.one-screen .section {
  padding: clamp(16px, 3vh, 32px) 0 clamp(24px, 4vh, 44px);
}

.minimal-site.one-screen .form-grid {
  gap: 12px;
}

.minimal-site.one-screen .form-field label {
  margin-bottom: 5px;
}

.minimal-site.one-screen .search-input,
.minimal-site.one-screen .form-control {
  min-height: 46px;
}

.minimal-site.one-screen textarea.form-control {
  min-height: 92px;
}

/* ==========================================================================
   Contact form: open fields, underline only
   ========================================================================== */

.minimal-site .contact-form .form-control,
.minimal-site .contact-form textarea.form-control {
  border: 0 !important;
  border-bottom: 1px solid var(--line-dark, #c9c4bb) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.minimal-site .contact-form .form-control:focus,
.minimal-site .contact-form textarea.form-control:focus {
  border-bottom-color: var(--red, #e30613) !important;
  box-shadow: none !important;
  outline: none !important;
}

