:root {
  --font-family: "Outfit", sans-serif;
  --color-primary: #1a1a1a;
  --color-secondary: #4a4a4a;
  --color-accent: #f5821f;
  --color-accent-dark: #d9660a;
  --color-accent-text: #b54f00;
  --color-bg: #ffffff;
  --color-surface: #f7f7f7;
  --color-text: #1a1a1a;
  --color-muted: #6b6b6b;
  --color-border: #e5e5e5;
  --color-destructive: #dc2626;
  --color-footer-muted: #c7c7c7;
  --container-width: 1440px;
  --header-height: 76px;
  --transition: 200ms ease;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

picture {
  display: contents;
}

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

button,
a {
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), opacity var(--transition), transform var(--transition);
}

:where(a, button):focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--container-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 44px;
  padding: 0.6rem 1rem;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 0.35rem;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgb(26 26 26 / 5%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: 174px;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--color-primary);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 0.4rem;
  cursor: pointer;
  place-items: center;
}

.menu-toggle svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.close-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.primary-nav {
  position: fixed;
  z-index: 102;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(86vw, 360px);
  height: 100dvh;
  padding: 6rem 1.5rem 2rem;
  overflow-y: auto;
  background: var(--color-bg);
  box-shadow: -12px 0 32px rgb(26 26 26 / 14%);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 250ms ease, visibility 250ms;
}

.primary-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

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

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--color-primary);
  font-weight: 500;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--color-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 0.4rem;
  font-weight: 700;
}

.button-quote {
  align-self: flex-start;
  margin-top: 1.25rem;
  color: var(--color-primary);
  background: var(--color-accent);
}

.button-quote:hover {
  background: var(--color-accent-dark);
}

.menu-backdrop {
  position: fixed;
  z-index: 101;
  inset: 0;
  background: rgb(26 26 26 / 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

main {
  min-height: 32vh;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  color: var(--color-bg);
  background-color: var(--color-primary);
  background-image: url("/images/hero-poster.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

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

.hero-video {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background: rgb(26 26 26 / 55%);
}

.hero-inner {
  display: flex;
  align-items: center;
  padding-block: 4.5rem;
}

.hero-content {
  max-width: 650px;
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--color-accent);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--color-bg);
  font-size: clamp(2.35rem, 9vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-subheadline {
  max-width: 600px;
  margin: 1.4rem 0 0;
  color: #f1f1f1;
  font-size: clamp(1rem, 3.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-actions .button {
  width: 100%;
  min-height: 48px;
  border-radius: 0.5rem;
  cursor: pointer;
  transition-duration: 200ms;
}

.hero-button-primary {
  color: var(--color-primary);
  background: var(--color-accent);
}

.hero-button-primary:hover {
  background: var(--color-accent-dark);
}

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

.hero-button-secondary:hover {
  color: var(--color-primary);
  background: var(--color-bg);
}

/* Trust Strip */
.trust-strip {
  padding-block: 2.5rem;
  background: var(--color-surface);
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-card {
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: var(--color-bg);
  border-top: 3px solid transparent;
  border-radius: 0.35rem;
  box-shadow: 0 3px 14px rgb(26 26 26 / 5%);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.trust-card:hover,
.trust-card:focus-visible {
  border-top-color: var(--color-accent);
  box-shadow: 0 12px 26px rgb(26 26 26 / 11%);
  transform: translateY(-4px);
}

.trust-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.15rem;
  color: var(--color-accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.trust-card p {
  max-width: 20rem;
  margin: 0.65rem auto 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Google Review Badge */
.trust-review-badge {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  color: var(--color-primary);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 0.65rem;
  box-shadow: 0 4px 14px rgb(26 26 26 / 7%);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.google-review-badge:hover,
.google-review-badge:focus-visible {
  color: var(--color-primary);
  border-color: var(--color-accent);
  box-shadow: 0 9px 22px rgb(26 26 26 / 12%);
  transform: translateY(-2px);
}

.google-review-logo {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.google-review-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  align-items: center;
}

.google-review-stars {
  display: inline-flex;
  gap: 0.08rem;
}

.google-review-stars svg {
  width: 17px;
  height: 17px;
  color: var(--color-accent);
  fill: currentColor;
}

.google-review-text {
  display: flex;
  flex-direction: column;
  color: var(--color-secondary);
  font-size: 0.8rem;
  line-height: 1.3;
}

.google-review-text strong {
  color: var(--color-primary);
  font-size: 0.95rem;
}

.contact-details-card > .google-review-badge {
  width: 100%;
  margin-top: 1rem;
}

/* Featured Products */
.featured-products {
  padding-block: 3rem;
  background: var(--color-bg);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--color-accent-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading h2,
.about-content h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.section-heading > p:last-child {
  margin: 1rem auto 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.product-card:hover,
.product-card:focus-within {
  box-shadow: 0 16px 35px rgb(26 26 26 / 12%);
  transform: translateY(-6px);
}

.product-card-custom {
  border-style: dashed;
  border-color: #aaa;
}

.product-visual {
  display: grid;
  aspect-ratio: 4 / 3;
  color: var(--color-secondary);
  background: #f0f0f0;
  border-radius: 0.7rem 0.7rem 0 0;
  place-items: center;
}

.product-visual svg {
  width: 42%;
  max-width: 120px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-visual-wide svg {
  width: 48%;
}

.product-visual img {
  width: 100%;
  height: 100%;
  padding: 1rem;
  object-fit: contain;
}

.product-visual .settings-icon {
  width: 72px;
  color: var(--color-accent-text);
  stroke-width: 1.6;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.grade-product-photo {
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  padding: 1rem;
  margin: 1rem 0 1.5rem;
  overflow: hidden;
  background: #f0f0f0;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  place-items: center;
}

.grade-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 1.5rem;
  list-style: none;
}

.spec-tags li,
.custom-spec {
  color: var(--color-secondary);
  font-size: 0.78rem;
}

.spec-tags li {
  padding: 0.3rem 0.55rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  line-height: 1.3;
}

.custom-spec {
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-link {
  align-self: flex-start;
  min-height: 44px;
  margin-top: auto;
  color: var(--color-accent-text);
  font-weight: 700;
  line-height: 44px;
}

.product-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.products-footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.catalogue-button {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-primary);
}

.catalogue-button:hover {
  color: var(--color-bg);
  background: var(--color-primary);
}

/* About Teaser */
.about-teaser {
  padding-block: 3rem;
  background: var(--color-surface);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
}

.about-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e9e9;
  border-radius: 0.75rem;
}

.about-image img,
.about-image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro {
  margin: 1.25rem 0 0;
  color: var(--color-secondary);
  font-size: 1.05rem;
}

.about-checklist {
  display: grid;
  gap: 1.15rem;
  padding: 0;
  margin: 2rem 0;
  list-style: none;
}

.about-checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.about-checklist svg {
  width: 24px;
  height: 24px;
  margin-top: 0.1rem;
  color: var(--color-accent-text);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-checklist strong,
.about-checklist span {
  display: block;
}

.about-checklist strong {
  color: var(--color-primary);
  font-weight: 700;
}

.about-checklist span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.about-button {
  color: var(--color-primary);
  background: var(--color-accent);
}

.about-button:hover {
  background: var(--color-accent-dark);
}

/* Homepage Blog Teaser */
.home-blog {
  padding-block: 3rem;
  background: var(--color-bg);
}

.home-blog .blog-card {
  background: var(--color-surface);
}

.home-blog-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.home-blog-button {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-primary);
}

.home-blog-button:hover {
  color: var(--color-bg);
  background: var(--color-primary);
}

/* Final CTA Banner */
.final-cta {
  padding-block: 2.5rem;
  color: var(--color-bg);
  background: var(--color-primary);
}

.final-cta-inner {
  max-width: 700px;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  color: var(--color-bg);
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.final-cta-copy {
  margin: 1.1rem auto 0;
  color: #d2d2d2;
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.final-cta-actions .button {
  width: 100%;
  min-height: 48px;
  border-radius: 0.5rem;
}

.final-cta-primary {
  color: var(--color-primary);
  background: var(--color-accent);
}

.final-cta-primary:hover {
  background: var(--color-accent-dark);
}

.final-cta-secondary {
  gap: 0.5rem;
  color: var(--color-bg);
  background: transparent;
  border-color: var(--color-bg);
}

.final-cta-secondary:hover {
  color: var(--color-primary);
  background: var(--color-bg);
}

.final-cta-secondary svg,
.final-cta-details svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta-secondary svg {
  width: 19px;
  height: 19px;
}

.final-cta-details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.5rem;
  color: #c7c7c7;
  font-size: 0.875rem;
}

.final-cta-details a,
.final-cta-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
}

.final-cta-details a:hover {
  color: var(--color-bg);
}

.final-cta-details svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.detail-divider {
  display: none;
  color: #777;
}

/* Products Page */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.products-intro {
  padding-block: 2.5rem;
  background: var(--color-surface);
}

.products-intro-inner {
  max-width: 700px;
  text-align: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--color-muted);
}

.breadcrumbs a:hover {
  color: var(--color-accent-text);
}

.products-intro h1 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(2.2rem, 8vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.products-intro-inner > p:not(.section-eyebrow) {
  margin: 1.15rem auto 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.catalogue-download {
  gap: 0.55rem;
  margin-top: 1.75rem;
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-primary);
}

.catalogue-download:hover {
  color: var(--color-bg);
  background: var(--color-primary);
}

.catalogue-download svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-specifications {
  padding-bottom: 2.5rem;
  background: var(--color-bg);
}

.specs-container {
  max-width: 1100px;
}

.grade-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  padding-block: 2.5rem;
}

.grade-filter {
  min-height: 44px;
  padding: 0.6rem 1rem;
  color: var(--color-secondary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font: 500 0.9rem/1.2 var(--font-family);
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.grade-filter:hover {
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.grade-filter.is-active {
  color: var(--color-primary);
  background: var(--color-accent);
  border-color: var(--color-accent);
  font-weight: 700;
}

.grade-group {
  margin-bottom: 3rem;
}

.grade-group[hidden] {
  display: none;
}

.grade-group h3 {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 700;
}

.grade-group h3 > span {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  background: var(--color-accent);
  border-radius: 50%;
}

.grade-heavy h3 > span {
  background: var(--color-primary);
}

.grade-wide h3 > span {
  background: var(--color-accent-dark);
}

.spec-table,
.spec-table tbody,
.spec-table tr,
.spec-table td {
  display: block;
}

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

.spec-table thead {
  display: none;
}

.spec-table tbody {
  display: grid;
  gap: 1rem;
}

.spec-table tr {
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 0.65rem;
  box-shadow: 0 4px 12px rgb(26 26 26 / 5%);
}

.spec-table td {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-block: 0.6rem;
  color: var(--color-secondary);
  text-align: right;
  border-bottom: 1px solid var(--color-border);
}

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

.spec-table td::before {
  color: var(--color-primary);
  content: attr(data-label);
  font-weight: 700;
  text-align: left;
}

.best-for {
  margin: 0.9rem 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.custom-oem-card {
  max-width: 800px;
  padding: 2rem 1.25rem;
  margin: 3rem auto;
  text-align: center;
  background: var(--color-surface);
  border: 1px dashed #aaa;
  border-radius: 0.75rem;
}

.custom-oem-card > svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  color: var(--color-accent-text);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-oem-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.custom-oem-card p {
  max-width: 620px;
  margin: 1rem auto 1.5rem;
  color: var(--color-muted);
}

.custom-spec-button {
  color: var(--color-primary);
  background: var(--color-accent);
}

.custom-spec-button:hover {
  background: var(--color-accent-dark);
}

/* About Page */
.about-page-intro {
  padding-block: 2.5rem;
  background: var(--color-surface);
}

.about-page-intro-inner {
  max-width: 700px;
  text-align: center;
}

.about-page-intro h1 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(2.2rem, 8vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.about-page-intro-inner > p:not(.section-eyebrow) {
  margin: 1.15rem auto 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.company-story,
.company-details {
  padding-block: 3rem;
  background: var(--color-bg);
}

.company-story-grid,
.company-details-grid {
  display: grid;
  gap: 2.5rem;
}

.story-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: 0.75rem;
}

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

.story-content h2,
.manufacturing-process .section-heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.story-content > p:not(.section-eyebrow) {
  margin: 1.2rem 0 0;
  color: var(--color-secondary);
  font-size: 1.025rem;
}

.manufacturing-process {
  padding-block: 3rem;
  background: var(--color-surface);
}

.process-steps {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 0;
  margin: 2.5rem 0 0;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  width: 1px;
  background: var(--color-border);
  content: "";
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.3rem 1rem;
  align-items: start;
}

.step-number {
  z-index: 1;
  display: grid;
  grid-row: 1 / span 3;
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.process-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.35rem;
  color: var(--color-accent-text);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.process-step p {
  margin: 0.25rem 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.company-details h2 {
  margin: 0 0 1.25rem;
  color: var(--color-primary);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
}

.certification-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.certification-card {
  display: flex;
  flex: 1 1 140px;
  gap: 0.65rem;
  align-items: center;
  min-height: 76px;
  padding: 1rem;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 0.6rem;
  font-weight: 700;
}

.certification-card svg {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: var(--color-accent-text);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certification-note {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.company-information dl {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.company-information dl > div {
  display: grid;
  gap: 0.3rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}

.company-information dt {
  color: var(--color-primary);
  font-weight: 700;
}

.company-information dd {
  margin: 0;
  color: var(--color-secondary);
}

.company-information a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-accent-text);
  font-weight: 600;
}

.company-information a:hover {
  text-decoration: underline;
}

.about-closing-cta {
  padding-block: 3.5rem;
  color: var(--color-bg);
  background: var(--color-primary);
}

.about-closing-inner {
  max-width: 600px;
  text-align: center;
}

.about-closing-cta h2 {
  margin: 0;
  color: var(--color-bg);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
}

.about-closing-cta .button {
  margin-top: 1.5rem;
  color: var(--color-primary);
  background: var(--color-accent);
}

.about-closing-cta .button:hover {
  background: var(--color-accent-dark);
}

/* Applications Page */
.applications-intro { padding-block: 2.5rem; background: var(--color-surface); }
.applications-intro-inner { max-width: 700px; text-align: center; }
.applications-intro h1 { margin: 0; color: var(--color-primary); font-size: clamp(2.2rem, 8vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; text-wrap: balance; }
.applications-intro-inner > p:not(.section-eyebrow) { margin: 1.15rem auto 0; color: var(--color-muted); font-size: 1.05rem; }
.applications-grid-section { padding-block: 3rem; background: var(--color-bg); }
.applications-grid { display: grid; gap: 1.5rem; }
.application-card { overflow: hidden; background: var(--color-surface); border: 1px solid var(--color-border); border-top: 3px solid transparent; border-radius: 0.75rem; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.application-card:hover, .application-card:focus-within { border-top-color: var(--color-accent); box-shadow: 0 14px 28px rgb(26 26 26 / 10%); transform: translateY(-4px); }
.application-image { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-surface); border-bottom: 1px solid var(--color-border); border-radius: 0.75rem 0.75rem 0 0; }
.application-image img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 0.75rem 0.75rem 0 0; transition: transform 300ms ease; }
.application-card:hover .application-image img { transform: scale(1.05); }
.application-card-body { padding: 2rem; }
.application-card h3 { margin: 0; color: var(--color-primary); font-size: 1.3rem; font-weight: 700; }
.application-card-body > p { margin: 0.8rem 0 0; color: var(--color-secondary); }
.application-card .application-spec { padding-top: 0.8rem; border-top: 1px solid var(--color-border); color: var(--color-muted); font-size: 0.875rem; font-weight: 600; }
.performance-strip { padding-block: 3.5rem; color: var(--color-bg); background: var(--color-primary); text-align: center; }
.performance-strip h2 { margin: 0; color: var(--color-bg); font-size: clamp(1.8rem, 6vw, 2.6rem); font-weight: 800; }
.performance-grid { display: grid; gap: 2rem; margin-top: 2.25rem; }
.performance-grid div { display: flex; flex-direction: column; gap: 0.35rem; }
.performance-grid strong { color: var(--color-accent); font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 800; line-height: 1.1; }
.performance-grid span { color: #ddd; font-size: 0.95rem; }
.oem-enquiry { padding-block: 3rem; background: var(--color-surface); }
.oem-enquiry-grid { display: grid; gap: 2.5rem; }
.oem-content h2 { margin: 0; color: var(--color-primary); font-size: clamp(2rem, 7vw, 3.25rem); font-weight: 800; line-height: 1.12; }
.oem-content > p:not(.section-eyebrow) { margin: 1.15rem 0 0; color: var(--color-secondary); font-size: 1.025rem; }
.oem-checklist { display: grid; gap: 1.15rem; padding: 0; margin: 2rem 0 0; list-style: none; }
.oem-checklist li { display: grid; grid-template-columns: 28px 1fr; gap: 0.7rem; }
.oem-checklist svg { width: 24px; height: 24px; color: var(--color-accent-text); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.oem-checklist strong, .oem-checklist span { display: block; }
.oem-checklist strong { color: var(--color-primary); }
.oem-checklist span { color: var(--color-muted); font-size: 0.95rem; }
.bulk-form-card { padding: 1.5rem; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 0.75rem; }
.bulk-form-card h3 { margin: 0 0 1.4rem; color: var(--color-primary); font-size: 1.5rem; }
.bulk-enquiry-form { display: grid; gap: 1rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field label { color: var(--color-primary); font-weight: 600; }
.form-field label > span:not(.optional-label) { color: #b34100; }
.optional-label { color: var(--color-muted); font-size: 0.85rem; font-weight: 400; }
.form-field :where(input, select, textarea) { width: 100%; min-height: 48px; padding: 0.7rem 0.85rem; color: var(--color-primary); background: var(--color-bg); border: 1px solid #aaa; border-radius: 0.4rem; font: 400 1rem/1.4 var(--font-family); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field :where(input, select, textarea):focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-color: var(--color-primary); }
.bulk-submit { width: 100%; margin-top: 0.25rem; color: var(--color-primary); background: var(--color-accent); cursor: pointer; }
.bulk-submit:hover { background: var(--color-accent-dark); }
.form-status { min-height: 1.5em; margin: 0; color: #286622; font-size: 0.9rem; font-weight: 600; }
.form-status.is-error,
.contact-form-status.is-error { color: var(--color-destructive); }
.bulk-form-note { margin: 0.5rem 0 0; color: var(--color-muted); font-size: 0.85rem; }
.bulk-form-note a { display: inline-flex; align-items: center; min-height: 44px; color: var(--color-accent-text); font-weight: 600; text-decoration: underline; }
.applications-closing { padding-block: 3.5rem; background: var(--color-bg); }
.applications-closing-inner { max-width: 600px; text-align: center; }
.applications-closing h2 { margin: 0; color: var(--color-primary); font-size: clamp(1.8rem, 6vw, 2.6rem); font-weight: 800; }
.applications-closing p { margin: 0.75rem 0 0; color: var(--color-muted); font-size: 1.05rem; }
.applications-closing .button { margin-top: 1.5rem; color: var(--color-primary); background: var(--color-accent); }
.applications-closing .button:hover { background: var(--color-accent-dark); }

/* Contact Page */
.contact-intro { padding-block: 2.5rem; background: var(--color-surface); }
.contact-intro-inner { max-width: 700px; text-align: center; }
.contact-intro h1 { margin: 0; color: var(--color-primary); font-size: clamp(2.2rem, 8vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; text-wrap: balance; }
.contact-intro-inner > p:not(.section-eyebrow) { margin: 1.15rem auto 0; color: var(--color-muted); font-size: 1.05rem; }
.contact-main { padding-block: 3rem; background: var(--color-bg); }
.contact-main-grid { display: grid; gap: 2rem; }
.contact-details-card, .contact-form-card { padding: 1.5rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 0.75rem; }
.contact-details-card h2, .contact-form-card h2 { margin: 0 0 1.5rem; color: var(--color-primary); font-size: 1.6rem; font-weight: 700; }
.contact-detail-list { display: grid; gap: 1.25rem; }
.contact-detail-row { display: grid; grid-template-columns: 20px 1fr; gap: 0.5rem; align-items: start; }
.contact-detail-row > svg { width: 20px; height: 20px; margin-top: 0.2rem; color: var(--color-accent-text); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-row strong, .contact-detail-row span, .contact-detail-row a { display: block; }
.contact-detail-row strong { color: var(--color-primary); }
.contact-detail-row :where(span, a) { margin-top: 0.2rem; color: var(--color-secondary); }
.contact-detail-row a { min-height: 44px; }
.contact-detail-row a:hover { color: var(--color-accent-text); text-decoration: underline; }
.whatsapp-button { display: flex; gap: 0.6rem; align-items: center; justify-content: center; min-height: 48px; padding: 0.75rem 1rem; margin-top: 1.75rem; color: #fff; background: #116f35; border-radius: 0.5rem; font-weight: 700; }
.whatsapp-button:hover { background: #107236; }
.whatsapp-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-socials { display: flex; gap: 0.55rem; margin-top: 1.25rem; }
.contact-socials a { display: grid; width: 44px; height: 44px; color: var(--color-primary); border: 1px solid var(--color-border); border-radius: 50%; place-items: center; }
.contact-socials a:hover { color: var(--color-accent-text); border-color: var(--color-accent); }

.social-placeholder,
.legal-placeholder,
.catalogue-download[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}
.contact-socials svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-form-grid { display: grid; gap: 1rem; }
.field-error { min-height: 1.2em; color: var(--color-destructive); font-size: 0.82rem; line-height: 1.2; }
.form-field.has-error :where(input, select, textarea) { border-color: var(--color-destructive); }
.contact-submit { gap: 0.55rem; width: 100%; margin-top: 1.25rem; color: var(--color-primary); background: var(--color-accent); cursor: pointer; }
.contact-submit:hover { background: var(--color-accent-dark); }
.contact-submit svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-form-status { min-height: 1.5em; margin: 0.75rem 0 0; color: #286622; font-weight: 600; }
.privacy-note { margin: 0.5rem 0 0; color: var(--color-muted); font-size: 0.8125rem; }
.location-map { width: 100%; height: 300px; background: var(--color-surface); }
.location-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.contact-trust { padding-block: 3rem; color: var(--color-bg); background: var(--color-primary); }
.contact-trust-inner { text-align: center; }
.contact-trust p { max-width: 780px; margin: 0 auto; color: #e1e1e1; font-size: 1.1rem; font-weight: 600; }
.contact-trust-icons { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 1.5rem; }
.contact-trust-icons svg { width: 32px; height: 32px; color: var(--color-accent); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Locations Hub */
.locations-intro,
.city-intro { padding-block: 2.5rem; background: var(--color-surface); }
.locations-intro-inner,
.city-intro-inner { max-width: 760px; text-align: center; }
.locations-intro h1,
.city-intro h1 { margin: 0; color: var(--color-primary); font-size: clamp(2.2rem, 8vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; text-wrap: balance; }
.locations-intro-inner > p:not(.section-eyebrow),
.city-intro-inner > p:not(.section-eyebrow) { margin: 1.15rem auto 0; color: var(--color-muted); font-size: 1.05rem; }
.city-directory { padding-block: 3rem; background: var(--color-bg); }
.city-group + .city-group { margin-top: 3rem; }
.city-group > h2 { margin: 0 0 1.25rem; color: var(--color-primary); font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 800; }
.city-grid { display: grid; gap: 1rem; }
.city-card { display: grid; grid-template-columns: 28px 1fr; gap: 0.5rem 0.75rem; align-items: center; padding: 1.25rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 0.65rem; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.city-card:hover, .city-card:focus-within { border-color: var(--color-accent); box-shadow: 0 10px 24px rgb(26 26 26 / 9%); transform: translateY(-3px); }
.city-card svg { grid-row: 1 / span 2; width: 26px; height: 26px; color: var(--color-accent-text); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.city-card h3 { margin: 0; color: var(--color-primary); font-size: 1.1rem; font-weight: 700; }
.city-card a { display: inline-flex; align-items: center; min-width: 44px; min-height: 44px; color: var(--color-accent-text); font-size: 0.9rem; font-weight: 700; }
.city-card a:hover { text-decoration: underline; text-underline-offset: 0.2em; }

/* City Page Template */
.city-local-context { padding-block: 3rem; background: var(--color-bg); }
.city-context-grid { display: grid; gap: 1.5rem; align-items: start; }
.city-context-grid h2 { margin: 0; color: var(--color-primary); font-size: clamp(1.8rem, 6vw, 2.6rem); font-weight: 800; line-height: 1.15; }
.city-context-grid > div > p:not(.section-eyebrow) { margin: 1rem 0 0; color: var(--color-secondary); }
.city-area-card { padding: 1.5rem; background: var(--color-surface); border: 1px solid var(--color-border); border-left: 3px solid var(--color-accent); border-radius: 0.75rem; }
.city-area-card h3 { margin: 0; color: var(--color-primary); font-size: 1.25rem; }
.city-area-card p { margin: 0.75rem 0 0; color: var(--color-secondary); }
.city-area-card .city-area-note { color: var(--color-muted); font-size: 0.925rem; }
.local-benefits,
.city-products { padding-block: 3rem; }
.local-benefits { background: var(--color-bg); }
.local-benefits-grid { display: grid; gap: 1.25rem; }
.local-benefits-grid article { padding: 1.75rem; text-align: center; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 0.75rem; }
.local-benefits-grid svg { width: 44px; height: 44px; margin: 0 auto 1rem; color: var(--color-accent-text); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.local-benefits-grid h3 { margin: 0; color: var(--color-primary); font-size: 1.25rem; font-weight: 700; }
.local-benefits-grid p { margin: 0.65rem 0 0; color: var(--color-muted); }
.city-products { background: var(--color-surface); }
.city-products .product-card { background: var(--color-bg); }
.city-cta { padding-block: 3.5rem; color: var(--color-bg); background: var(--color-primary); }
.city-cta-inner { max-width: 700px; text-align: center; }
.city-cta h2 { margin: 0; color: var(--color-bg); font-size: clamp(1.9rem, 6vw, 2.75rem); font-weight: 800; }
.city-cta-inner > p { margin: 1rem auto 0; color: var(--color-footer-muted); font-size: 1.05rem; }
.city-cta-inner > div { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.city-cta-primary { color: var(--color-primary); background: var(--color-accent); }
.city-cta-primary:hover { background: var(--color-accent-dark); }
.city-cta-secondary { color: var(--color-bg); background: transparent; border-color: var(--color-bg); }
.city-cta-secondary:hover { color: var(--color-primary); background: var(--color-bg); }
.city-map { padding-top: 3.5rem; background: var(--color-bg); }
.city-map h2 { margin: 0 0 1.5rem; color: var(--color-primary); font-size: clamp(1.8rem, 6vw, 2.6rem); font-weight: 800; text-align: center; }

/* Blog Page */
.blog-intro,
.post-header { padding-block: 2.5rem; background: var(--color-surface); }
.blog-intro-inner,
.post-header-inner { max-width: 900px; }
.blog-intro-inner { text-align: center; }
.blog-intro h1,
.post-header h1 { margin: 0; color: var(--color-primary); font-size: clamp(2.2rem, 8vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; text-wrap: balance; }
.blog-intro-inner > p:not(.section-eyebrow) { max-width: 720px; margin: 1.15rem auto 0; color: var(--color-muted); font-size: 1.05rem; }
.blog-listing { padding-block: 3rem; background: var(--color-bg); }
.blog-grid { display: grid; gap: 1.5rem; }
.blog-card { overflow: hidden; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 0.75rem; transition: transform 250ms ease, box-shadow 250ms ease; }
.blog-card:hover { box-shadow: 0 14px 30px rgb(26 26 26 / 10%); transform: translateY(-5px); }
.blog-card-image { display: grid; width: 100%; aspect-ratio: 4 / 3; color: var(--color-accent-text); background: #f0f0f0; border-bottom: 1px solid var(--color-border); place-items: center; }
img.blog-card-image { display: block; object-fit: cover; }
.blog-card-image svg { width: 72px; height: 72px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.blog-card-body { padding: 1.5rem; }
.blog-category,
.coming-badge { display: inline-flex; align-items: center; min-height: 30px; padding: 0.25rem 0.65rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.blog-category { color: var(--color-primary); background: #ffe3c8; }
.coming-badge { color: var(--color-secondary); background: var(--color-surface); border: 1px solid var(--color-border); }
.blog-label-row { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: space-between; }
.blog-card h3 { margin: 1rem 0 0; color: var(--color-primary); font-size: 1.3rem; line-height: 1.25; }
.blog-card p { margin: 0.75rem 0 0; color: var(--color-muted); }
.blog-read-more { display: inline-flex; align-items: center; min-height: 44px; margin-top: 0.85rem; color: var(--color-accent-text); font-weight: 700; }
.blog-read-more:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.blog-card-coming { background: var(--color-surface); }
.blog-card-coming .blog-card-image,
.blog-card-coming .blog-card-body { opacity: 0.72; }
.post-header .blog-category { margin-top: 1.25rem; }
.post-header h1 { margin-top: 0.75rem; }
.post-byline { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; margin-top: 1.25rem; color: var(--color-muted); font-size: 0.925rem; }
.post-featured-image { display: grid; width: 100%; aspect-ratio: 16 / 9; margin-top: 2rem; color: var(--color-accent-text); background: #ededed; border: 1px solid var(--color-border); border-radius: 0.75rem; place-items: center; }
img.post-featured-image { display: block; height: auto; object-fit: cover; }
.post-featured-image svg { width: min(45%, 260px); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.post-content { max-width: 850px; padding-block: 3rem; }
.post-content > section:first-child > p { margin: 0; color: var(--color-secondary); font-size: 1.15rem; line-height: 1.75; }
.post-content > section + section { margin-top: 3rem; }
.post-content > section > h2 { margin: 0; color: var(--color-primary); font-size: clamp(1.7rem, 5vw, 2.35rem); font-weight: 800; }
.post-content > section > p { color: var(--color-secondary); line-height: 1.75; }
.post-content > section a { color: var(--color-accent-text); font-weight: 700; text-decoration: underline; text-underline-offset: 0.2em; }
.article-comparison { display: grid; gap: 1rem; margin-top: 1.25rem; }
.article-comparison article { padding: 1.25rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 0.75rem; }
.article-comparison h3 { margin: 0; color: var(--color-primary); }
.article-comparison p { margin: 0.65rem 0 0; color: var(--color-secondary); }
.article-table-wrap { overflow-x: auto; margin-top: 1.25rem; border: 1px solid var(--color-border); border-radius: 0.75rem; }
.article-table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--color-bg); }
.article-table th,
.article-table td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--color-border); }
.article-table th { color: var(--color-primary); background: var(--color-surface); }
.article-table tr:last-child td { border-bottom: 0; }
.article-checklist,
.article-number-list { display: grid; gap: 0.75rem; margin: 1.25rem 0 0; color: var(--color-secondary); }
.article-checklist li::marker,
.article-number-list li::marker { color: var(--color-accent-text); font-weight: 800; }
.howto-section { margin-top: 3rem; }
.howto-section h2,
.grade-guide h2,
.post-warning h2 { margin: 0; color: var(--color-primary); font-size: clamp(1.7rem, 5vw, 2.35rem); font-weight: 800; }
.howto-steps { display: grid; gap: 1rem; padding: 0; margin: 1.5rem 0 0; list-style: none; counter-reset: application-step; }
.howto-steps li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 1rem; padding: 1.25rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 0.75rem; counter-increment: application-step; }
.howto-steps li::before { display: grid; width: 44px; height: 44px; color: var(--color-primary); background: var(--color-accent); border-radius: 50%; font-weight: 800; content: counter(application-step); place-items: center; }
.howto-steps h3 { margin: 0; color: var(--color-primary); font-size: 1.2rem; }
.howto-steps p { margin: 0.5rem 0 0; color: var(--color-secondary); }
.post-warning { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 1rem; padding: 1.5rem; margin-top: 3rem; background: #fff7ef; border: 1px solid #f2c79f; border-left: 4px solid var(--color-accent); border-radius: 0.75rem; }
.post-warning svg { width: 32px; height: 32px; color: var(--color-accent-text); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.post-warning h2 { font-size: 1.5rem; }
.post-warning ul { padding-left: 1.2rem; margin: 1rem 0 0; color: var(--color-secondary); }
.post-warning li + li { margin-top: 0.65rem; }
.grade-guide { margin-top: 3rem; }
.grade-guide p { color: var(--color-secondary); }
.grade-guide a { color: var(--color-accent-text); font-weight: 700; text-decoration: underline; text-underline-offset: 0.2em; }
.post-cta { padding-block: 3rem; color: var(--color-bg); background: var(--color-primary); }
.post-cta-inner { max-width: 760px; text-align: center; }
.post-cta h2 { margin: 0; color: var(--color-bg); font-size: clamp(1.9rem, 6vw, 2.75rem); font-weight: 800; }
.post-cta p { margin: 1rem auto 0; color: var(--color-footer-muted); font-size: 1.05rem; }
.post-cta-inner > div { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-top: 1.5rem; }

.site-footer {
  padding-top: 3.5rem;
  color: var(--color-footer-muted);
  background: var(--color-primary);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-about p {
  max-width: 30rem;
  margin: 1.1rem 0 0;
}

.footer-logo {
  display: inline-flex;
  min-height: 44px;
  padding: 0.75rem;
  background: var(--color-bg);
  border-radius: 0.5rem;
}

.footer-logo img {
  width: 185px;
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: var(--color-bg);
  font-size: 1.125rem;
  line-height: 1.3;
}

.footer-links {
  display: grid;
  gap: 0.15rem;
}

.footer-links a,
.contact-list a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
}

.footer-links a:hover,
.contact-list a:hover,
.legal-links a:hover {
  color: var(--color-accent);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 22rem;
  font-style: normal;
}

.contact-list a {
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-list svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin-top: 0.2em;
  color: var(--color-accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--color-bg);
  border: 1px solid #555;
  border-radius: 50%;
  place-items: center;
}

.social-links a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  display: grid;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
  place-items: center;
  transition: box-shadow 200ms ease, opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.sticky-whatsapp::before {
  position: absolute;
  inset: -1px;
  border: 2px solid #25d366;
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.sticky-whatsapp.is-pulsing::before {
  animation: whatsapp-pulse 2.6s ease-out 1;
}

.sticky-whatsapp:hover {
  color: #fff;
  box-shadow: 0 7px 18px rgb(0 0 0 / 28%);
  transform: scale(1.08);
}

.sticky-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  stroke: none;
}

.sticky-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  width: max-content;
  padding: 0.45rem 0.7rem;
  color: #fff;
  background: var(--color-primary);
  border-radius: 0.35rem;
  box-shadow: 0 4px 10px rgb(0 0 0 / 16%);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-open .sticky-whatsapp {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% { opacity: 0.75; transform: scale(1); }
  65%, 100% { opacity: 0; transform: scale(1.65); }
}

@media (hover: hover) and (pointer: fine) {
  .sticky-whatsapp:hover .sticky-whatsapp-tooltip,
  .sticky-whatsapp:focus-visible .sticky-whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-cities {
  padding-block: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid #414141;
}

.footer-cities h2 {
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5rem;
  align-items: center;
}

.footer-city-links > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-footer-muted);
  font-size: 0.85rem;
}

.footer-city-links > a:hover {
  color: var(--color-accent);
}

.footer-city-links > span {
  color: var(--color-border);
  opacity: 0.35;
}

.footer-city-links .view-all-locations {
  color: var(--color-accent);
  font-weight: 700;
}

.footer-exports {
  padding-block: 1.25rem;
  border-top: 1px solid #414141;
}

.footer-exports h2 {
  margin: 0 0 0.65rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-export-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.45rem;
  align-items: center;
}

.footer-export-links > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-footer-muted);
  font-size: 0.8rem;
}

.footer-export-links > a:hover,
.footer-export-links > a:focus-visible,
.footer-export-links .view-all-exports {
  color: var(--color-accent);
}

.footer-export-links > span {
  color: var(--color-border);
  opacity: 0.35;
}

.footer-export-links .view-all-exports {
  font-weight: 700;
}

/* Export Markets */
.export-intro {
  padding-block: 2.5rem;
  background: var(--color-surface);
}

.export-intro-inner {
  max-width: 900px;
}

.export-intro h1 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(2.2rem, 8vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.export-intro-inner > p:not(.section-eyebrow) {
  max-width: 780px;
  margin: 1.15rem 0 0;
  color: var(--color-secondary);
  font-size: 1.05rem;
}

.export-directory,
.export-benefits,
.export-products,
.export-logistics {
  padding-block: 3rem;
}

.export-region + .export-region {
  margin-top: 3rem;
}

.export-region > h2 {
  margin: 0 0 1.25rem;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
}

.export-country-grid,
.export-benefits-grid {
  display: grid;
  gap: 1rem;
}

.export-country-card,
.export-benefits-grid article {
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
}

.export-country-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.25rem 0.75rem;
  align-items: center;
}

.export-country-card svg,
.export-benefits-grid svg,
.export-logistics-card > svg {
  color: var(--color-accent-text);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.export-country-card svg {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
}

.export-country-card h3,
.export-benefits-grid h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.15rem;
}

.export-country-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-accent-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.export-country-card a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.export-benefits {
  background: var(--color-bg);
}

.export-benefits-grid article {
  text-align: center;
}

.export-benefits-grid svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.export-benefits-grid p {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

.export-products {
  background: var(--color-surface);
}

.export-products .product-card {
  background: var(--color-bg);
}

.export-cta {
  padding-block: 3.5rem;
  color: var(--color-bg);
  background: var(--color-primary);
}

.export-cta-inner {
  max-width: 700px;
  text-align: center;
}

.export-cta h3 {
  margin: 0;
  color: var(--color-bg);
  font-size: clamp(1.9rem, 6vw, 2.75rem);
  font-weight: 800;
}

.export-cta-inner > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.export-cta-primary {
  color: var(--color-primary);
  background: var(--color-accent);
}

.export-cta-primary:hover {
  background: var(--color-accent-dark);
}

.export-cta-secondary {
  color: var(--color-bg);
  background: transparent;
  border-color: var(--color-bg);
}

.export-cta-secondary:hover {
  color: var(--color-primary);
  background: var(--color-bg);
}

.export-logistics-card {
  max-width: 600px;
  padding: 2rem;
  margin: 0 auto;
  text-align: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
}

.export-logistics-card > svg {
  width: 52px;
  height: 52px;
}

.export-logistics-card h2 {
  margin: 1rem 0 0;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.export-logistics-card p {
  margin: 0.9rem 0 0;
  color: var(--color-secondary);
}

.export-logistics-card .export-logistics-note {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1.25rem;
  margin-top: 0;
  border-top: 1px solid #414141;
  font-size: 0.925rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@media (min-width: 375px) {
  .container {
    width: min(100% - 2.5rem, var(--container-width));
  }
}

@media (min-width: 768px) {
  .sticky-whatsapp {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 56px;
    height: 56px;
  }

  .sticky-whatsapp svg {
    width: 29px;
    height: 29px;
  }

  .container {
    width: min(100% - 4rem, var(--container-width));
  }

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

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .button {
    width: auto;
  }

  .trust-strip {
    padding-block: 4rem;
  }

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

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

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

  .export-cta-inner > div {
    flex-direction: row;
  }

  .final-cta-actions,
  .final-cta-details {
    flex-direction: row;
  }

  .final-cta-actions .button {
    width: auto;
  }

  .detail-divider {
    display: inline;
  }

  .products-intro {
    padding-block: 4rem;
  }

  .spec-table {
    display: table;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
  }

  .spec-table thead {
    display: table-header-group;
  }

  .spec-table tbody {
    display: table-row-group;
  }

  .spec-table tr {
    display: table-row;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .spec-table th,
  .spec-table td {
    display: table-cell;
    padding: 0.9rem 1rem;
    text-align: center;
    border: 0;
  }

  .spec-table th {
    color: var(--color-bg);
    background: var(--color-primary);
    font-weight: 700;
  }

  .spec-table tbody tr:nth-child(even) {
    background: var(--color-surface);
  }

  .spec-table td::before {
    content: none;
  }

  .custom-oem-card {
    padding: 2.5rem;
  }

  .about-page-intro {
    padding-block: 4rem;
  }

  .company-information dl > div {
    grid-template-columns: minmax(145px, 0.7fr) 1.3fr;
    gap: 1rem;
    align-items: start;
  }

  .applications-intro { padding-block: 4rem; }
  .applications-grid, .performance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .performance-grid div:last-child { grid-column: 1 / -1; }
  .bulk-form-card { padding: 2rem; }

  .contact-intro { padding-block: 4rem; }
  .contact-details-card, .contact-form-card { padding: 2rem; }
  .contact-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-field-full { grid-column: 1 / -1; }
  .contact-submit { width: auto; }
  .location-map { height: 400px; }

  .locations-intro,
  .city-intro { padding-block: 4rem; }
  .blog-intro,
  .post-header { padding-block: 4rem; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-comparison { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-comparison-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .post-cta-inner > div { flex-direction: row; }
  .city-context-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); gap: 2.5rem; }
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .local-benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .city-cta-inner > div { flex-direction: row; }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 88px;
  }

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

  body.menu-open {
    overflow: auto;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle,
  .menu-backdrop {
    display: none;
  }

  .primary-nav,
  .primary-nav.is-open {
    position: static;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.75rem, 1.3vw, 1.4rem);
  }

  .nav-list a {
    min-height: 44px;
    font-size: clamp(0.875rem, 1vw, 1rem);
    white-space: nowrap;
  }

  .button-quote {
    align-self: center;
    margin: 0 0 0 clamp(0.85rem, 1.5vw, 1.5rem);
    white-space: nowrap;
  }

  .hero {
    min-height: max(600px, 85vh);
  }

  .hero-inner {
    padding-block: 6rem;
  }

  .trust-strip {
    padding-block: 5rem;
  }

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

  .featured-products,
  .about-teaser {
    padding-block: 5rem;
  }

  .final-cta {
    padding-block: 4rem;
  }

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

  .export-intro,
  .export-directory,
  .export-benefits,
  .export-products,
  .export-logistics {
    padding-block: 5rem;
  }

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

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

  .about-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: stretch;
  }

  .about-image {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .home-blog {
    padding-block: 5rem;
  }

  .about-content {
    padding-block: 0.5rem;
  }

  .company-story,
  .manufacturing-process,
  .company-details {
    padding-block: 5rem;
  }

  .company-story-grid {
    grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: stretch;
  }

  .story-image {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .process-steps::before {
    top: 20px;
    right: 12.5%;
    bottom: auto;
    left: 12.5%;
    width: auto;
    height: 1px;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    grid-row: auto;
    margin-bottom: 1rem;
  }

  .process-icon {
    width: 48px;
    height: 48px;
  }

  .company-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 6vw, 6rem);
  }

  .applications-grid-section, .oem-enquiry { padding-block: 5rem; }
  .applications-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .performance-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .performance-grid div:last-child { grid-column: auto; }
  .oem-enquiry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(3rem, 6vw, 6rem); align-items: start; }

  .contact-main { padding-block: 5rem; }
  .contact-main-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 2.5rem; align-items: start; }

  .city-directory,
  .local-benefits,
  .city-products { padding-block: 5rem; }
  .city-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .footer-grid {
    grid-template-columns: 1.35fr 0.8fr 1.1fr 0.7fr;
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(100% - 6rem, var(--container-width));
  }

  .brand img {
    width: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-review-badge:hover,
  .google-review-badge:focus-visible {
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .application-card:hover .application-image img {
    transform: none;
  }

  .sticky-whatsapp,
  .sticky-whatsapp:hover,
  .sticky-whatsapp-tooltip {
    transform: none;
  }

  .sticky-whatsapp.is-pulsing::before {
    animation: none;
  }
}
