:root {
  --navy: #0b2c3d;
  --navy-deep: #061f2c;
  --navy-soft: #16475d;
  --orange: #e86124;
  --orange-dark: #c9470c;
  --ink: #14232b;
  --muted: #607078;
  --line: #d9e0e2;
  --surface: #f3f5f4;
  --white: #ffffff;
  --success: #23633f;
  --error: #a63a32;
  --shadow: 0 18px 45px rgba(11, 44, 61, 0.1);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.4vw, 5.35rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

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

.section {
  padding: 96px 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2,
.verification-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p,
.verification-heading > p {
  max-width: 520px;
  margin-bottom: 4px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-accent {
  color: var(--white);
  background: var(--orange);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--orange-dark);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--navy-soft);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
}

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

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

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

.utility-bar {
  min-height: 36px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-deep);
  font-size: 0.76rem;
}

.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-links a {
  transition: color 160ms ease;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.admin-bar .site-header {
  top: 32px;
}

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

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.wordmark::before {
  width: 12px;
  height: 38px;
  background: var(--orange);
  content: "";
}

.wordmark span {
  display: grid;
  line-height: 1.05;
}

.wordmark strong {
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.wordmark small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 29px 0;
  color: #263941;
  font-size: 0.88rem;
  font-weight: 720;
}

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

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 68px;
  background: var(--surface);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 97, 36, 0.07), rgba(11, 44, 61, 0.03));
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.hero-copy {
  padding: 22px 0;
}

.hero-copy h1 {
  max-width: 680px;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 30px;
  color: #52646c;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 780;
}

.text-link span,
.card-link span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  font-size: 1rem;
  line-height: 1;
  transition: background-color 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.card-link:hover span,
.card-link:focus-visible span {
  background: var(--orange-dark);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 20px;
  color: #40545c;
  font-size: 0.84rem;
  font-weight: 650;
}

.hero-checks li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 490px;
}

.hero-image-main,
.hero-image-side {
  position: absolute;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 448px;
  padding: 24px;
}

.hero-image-main p {
  margin-bottom: 0;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-image-main img {
  width: 100%;
  height: 338px;
  object-fit: contain;
}

.hero-image-main > span,
.hero-image-side span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-image-side {
  bottom: 0;
  left: 0;
  width: 39%;
  padding: 16px;
}

.hero-image-side img {
  width: 100%;
  height: 155px;
  object-fit: contain;
}

.hero-stamp {
  position: absolute;
  right: 12px;
  bottom: 0;
  display: grid;
  width: 112px;
  height: 112px;
  align-content: center;
  border: 8px solid var(--white);
  color: var(--white);
  background: var(--orange);
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-stamp strong {
  font-size: 1.7rem;
  line-height: 1;
}

.hero-stamp span {
  margin-top: 7px;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-profile {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.profile-grid > div {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.profile-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.profile-grid strong {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.15;
}

.profile-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.products {
  background: var(--white);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: #b6c3c7;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: var(--surface);
}

.product-image img {
  width: 100%;
  height: 100%;
  padding: 32px;
  object-fit: contain;
  transition: transform 220ms ease;
}

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

.product-image > span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 7px 9px;
  border-left: 3px solid var(--orange);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-copy {
  padding: 26px;
}

.product-copy h3 {
  min-height: 2.2em;
}

.product-copy > p {
  min-height: 5.1em;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-copy ul {
  padding: 16px 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.product-copy li {
  position: relative;
  padding-left: 15px;
  color: #42545c;
  font-size: 0.78rem;
}

.product-copy li + li {
  margin-top: 6px;
}

.product-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
  content: "";
}

.range-browser {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 60px;
  align-items: start;
  padding: 48px;
  margin-top: 58px;
  color: var(--white);
  background: var(--navy);
}

.range-browser .section-kicker {
  color: #ff9b6b;
}

.range-browser h3 {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 2rem;
}

.range-browser ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.range-browser li {
  display: grid;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.range-browser li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.range-browser li:nth-child(even) {
  padding-left: 20px;
}

.range-browser strong {
  color: #ff9b6b;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.range-browser span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.verification {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.verification-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

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

.verification-grid article {
  padding: 30px;
  border-top: 4px solid var(--orange);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 44, 61, 0.06);
}

.report-id {
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verification-grid h3 {
  min-height: 2.2em;
  margin-top: 12px;
}

.verification-grid article > p {
  min-height: 5.1em;
  color: var(--muted);
  font-size: 0.88rem;
}

.verification-grid dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}

.verification-grid dl > div {
  display: grid;
  padding: 16px 0 0;
}

.verification-grid dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.verification-grid dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
}

.factory {
  background: var(--white);
}

.factory-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 76px;
  align-items: center;
}

.factory-copy > p:not(.section-kicker):not(.factory-note) {
  color: var(--muted);
  font-size: 1rem;
}

.factory-copy .factory-intro {
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.72;
}

.factory-copy .factory-intro strong {
  font-weight: 800;
}

.factory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 32px 0 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.factory-list li {
  display: grid;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factory-list strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.factory-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.factory-note {
  padding-left: 15px;
  margin-bottom: 0;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  font-size: 0.76rem;
}

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

.factory-gallery figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  background: var(--surface);
}

.factory-gallery .factory-main {
  grid-column: 1 / -1;
}

.factory-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.factory-gallery .factory-main img {
  height: 330px;
}

.factory-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(6, 31, 44, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.capabilities {
  color: var(--white);
  background: var(--navy);
}

.capabilities .section-kicker {
  color: #ff9b6b;
}

.capabilities .section-heading h2,
.capabilities .section-heading > p {
  color: var(--white);
}

.capabilities .section-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

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

.process-grid article {
  min-height: 260px;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.process-grid article > span {
  color: #ff9b6b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-grid h3 {
  margin-top: 30px;
  color: var(--white);
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.markets {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.markets-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.markets h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

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

.market-list span {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 720;
}

.contact {
  background: var(--surface);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 58px 48px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy .section-kicker {
  color: #ff9b6b;
}

.contact-copy h2 {
  color: var(--white);
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.direct-contact a {
  display: grid;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.direct-contact small {
  margin-bottom: 4px;
  color: #ff9b6b;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form {
  padding: 48px;
  background: var(--white);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 750;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd5d8;
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 97, 36, 0.12);
}

.quote-form textarea {
  min-height: 128px;
  resize: vertical;
}

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

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

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.form-message {
  padding: 12px 14px;
  margin-bottom: 20px;
  border-left: 3px solid currentColor;
  font-size: 0.82rem;
}

.form-message.success {
  color: var(--success);
  background: #edf7f1;
}

.form-message.error {
  color: var(--error);
  background: #fff1f0;
}

.site-footer {
  padding: 68px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
  gap: 52px;
}

.footer-wordmark {
  color: var(--white);
}

.footer-wordmark small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid > div:first-child p {
  max-width: 330px;
  margin: 22px 0 0;
  font-size: 0.82rem;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  font-size: 0.78rem;
  transition: color 160ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.68rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  padding: 8px 16px 8px 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(6, 31, 44, 0.25);
}

.floating-whatsapp span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  font-size: 0.65rem;
  font-weight: 850;
}

.floating-whatsapp strong {
  font-size: 0.72rem;
}

.entry-shell {
  min-height: 58vh;
  padding: 90px 0;
  background: var(--surface);
}

.entry-shell article {
  max-width: 860px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--white);
}

.entry-shell h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.entry-content {
  color: var(--muted);
}

.entry-content a {
  color: var(--orange-dark);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(410px, 0.8fr);
    gap: 42px;
  }

  .profile-grid > div {
    padding-inline: 18px;
  }

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

  .product-copy h3,
  .product-copy > p {
    min-height: 0;
  }

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

  .process-grid article {
    min-height: 220px;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 78px 0;
  }

  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .utility-links a:first-child {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 34px rgba(11, 44, 61, 0.12);
  }

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

  .primary-nav > a:not(.button) {
    padding: 10px 0;
  }

  .primary-nav > a:not(.button)::after {
    bottom: 5px;
  }

  .primary-nav .button {
    margin-top: 8px;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .profile-grid > div:nth-child(4),
  .profile-grid > div:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .profile-grid > div:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .profile-grid > div:last-child {
    grid-column: span 2;
  }

  .section-heading,
  .verification-heading,
  .factory-grid,
  .markets-inner,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .verification-heading,
  .factory-grid,
  .markets-inner {
    gap: 30px;
  }

  .range-browser {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .verification-grid {
    grid-template-columns: 1fr;
  }

  .verification-grid h3,
  .verification-grid article > p {
    min-height: 0;
  }

  .factory-copy {
    max-width: 720px;
  }

  .markets-inner {
    align-items: start;
  }

  .contact-card {
    max-width: 760px;
  }

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

@media (max-width: 640px) {
  html {
    scroll-padding-top: 88px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .utility-bar,
  .utility-inner {
    min-height: 32px;
  }

  .utility-links {
    font-size: 0.7rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .wordmark::before {
    width: 9px;
    height: 32px;
  }

  .hero {
    padding: 48px 0 52px;
  }

  .hero::before {
    width: 70%;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: space-between;
  }

  .hero-checks {
    display: grid;
    gap: 9px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-image-main {
    width: 86%;
    height: 340px;
    padding: 18px;
  }

  .hero-image-main img {
    height: 250px;
  }

  .hero-image-side {
    width: 42%;
  }

  .hero-image-side img {
    height: 110px;
  }

  .hero-image-side span {
    font-size: 0.6rem;
  }

  .hero-stamp {
    width: 84px;
    height: 84px;
    border-width: 5px;
  }

  .hero-stamp strong {
    font-size: 1.3rem;
  }

  .hero-stamp span {
    font-size: 0.5rem;
  }

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

  .profile-grid > div,
  .profile-grid > div:nth-child(4),
  .profile-grid > div:first-child {
    min-height: 96px;
    padding: 18px 14px;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .profile-grid > div:nth-child(even) {
    border-right: 0;
  }

  .profile-grid > div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .profile-grid strong {
    font-size: 1.2rem;
  }

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

  .product-image {
    height: 265px;
  }

  .range-browser {
    padding: 30px 24px;
  }

  .range-browser ul {
    grid-template-columns: 1fr;
  }

  .range-browser li,
  .range-browser li:nth-child(odd),
  .range-browser li:nth-child(even) {
    padding: 16px 0;
    border-right: 0;
  }

  .verification-grid article {
    padding: 24px;
  }

  .factory-list,
  .process-grid,
  .market-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .factory-gallery .factory-main img {
    height: 230px;
  }

  .factory-gallery img {
    height: 145px;
  }

  .process-grid article {
    min-height: 0;
  }

  .capabilities .section-heading {
    grid-template-columns: 1fr;
  }

  .capabilities .button {
    width: 100%;
  }

  .contact-copy,
  .quote-form {
    padding: 34px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    display: grid;
    margin-top: 36px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding-right: 8px;
  }

  .floating-whatsapp strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .entry-shell {
    padding: 60px 0;
  }

  .entry-shell article {
    padding: 28px 22px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
