@font-face {
  font-family: "Tajawal";
  src: url("assets/fonts/tajawal/Tajawal-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Tajawal";
  src: url("assets/fonts/tajawal/Tajawal-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Tajawal";
  src: url("assets/fonts/tajawal/Tajawal-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Tajawal";
  src: url("assets/fonts/tajawal/Tajawal-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  /* Brand sheet palette — sampled from the logo artwork */
  --navy: #003576;
  --navy-dark: #002451;
  --green: #00873b;
  --green-dark: #006d31;
  --ink: #2b2b2b;
  --grey: #666666;
  --off-white: #f3f7f0;
  --white: #ffffff;

  /* Derived working values */
  --muted: var(--grey);
  --line: #d3dbd5;
  --line-strong: #b9c6bb;
  --accent-on-navy: #8fdcae;
  --accent-on-green: #ddf2e4;

  --container: min(1180px, calc(100% - 40px));
  --radius: 4px;

  /* Brand sheet type — Georgia for headlines, Tajawal for everything else */
  --font: "Tajawal", "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", "Liberation Serif", serif;
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #f1b900;
  outline-offset: 2px;
}

::selection {
  background: rgba(0, 135, 59, 0.2);
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.008em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 3.9vw, 3.35rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 2.9vw, 2.5rem);
}

h3 {
  font-size: 1.4rem;
}

h4 {
  margin-top: 0;
  font-size: 1.12rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  background: var(--white);
  color: var(--navy-dark);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.top-bar {
  min-height: 40px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.88rem;
}

.top-bar__inner,
.top-bar__links,
.top-bar__links a {
  display: flex;
  align-items: center;
}

.top-bar__inner {
  min-height: 40px;
  justify-content: space-between;
  gap: 20px;
}

.top-bar__links {
  gap: 26px;
}

.top-bar__links a {
  min-height: 40px;
  gap: 7px;
  font-weight: 500;
  text-decoration: none;
}

.top-bar__links a:hover {
  text-decoration: underline;
}

.top-bar svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 36, 81, 0.12);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(0, 36, 81, 0.08);
}

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

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  width: 228px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.nav-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta),
.nav-trigger {
  position: relative;
  padding: 0 11px;
}

.site-nav > a:not(.nav-cta)::after,
.nav-item > .nav-trigger::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 14px;
  left: 11px;
  height: 2px;
  background: var(--green);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-nav > a:not(.nav-cta):hover,
.nav-trigger:hover {
  color: var(--navy);
}

.site-nav > a:not(.nav-cta):hover::after,
.nav-item:hover > .nav-trigger::after,
.nav-item.is-open > .nav-trigger::after {
  opacity: 1;
}

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

.site-nav > a[aria-current="page"]::after,
.nav-item.is-current > .nav-trigger::after {
  opacity: 1;
}

/* --- Dropdown ------------------------------------------------------------ */
.nav-item {
  position: relative;
}

.nav-trigger {
  gap: 6px;
  padding-right: 8px;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-trigger svg {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  transition: transform 180ms ease;
}

.nav-item.is-open .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-panel {
  position: absolute;
  z-index: 5;
  top: calc(100% + 1px);
  left: 0;
  width: max-content;
  min-width: 268px;
  padding: 8px 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 36, 81, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.nav-item:hover:not(.is-dismissed) > .nav-panel,
.nav-item.is-open > .nav-panel,
.nav-panel:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item.is-dismissed > .nav-panel {
  opacity: 0;
  pointer-events: none;
}

.nav-panel a {
  display: block;
  min-height: 0;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-panel a small {
  display: block;
  margin-top: 2px;
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: var(--off-white);
  color: var(--navy);
}

.nav-panel a[aria-current="page"] {
  box-shadow: inset 3px 0 0 var(--green);
  color: var(--navy);
}

.site-nav .nav-cta {
  min-height: 44px;
  padding: 0 20px;
  border: 2px solid var(--green-dark);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  transition: background-color 180ms ease;
}

.site-nav .nav-cta:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: transparent;
}

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

.home-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
}

.home-hero__media,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__media {
  z-index: 0;
  overflow: hidden;
}

.home-hero__poster,
.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__poster {
  z-index: 0;
  object-position: center 34%;
}

/* The poster is only a loading/fallback image. Once playback begins, remove
   it from the visual stack so it cannot leak through between video clips. */
.home-hero.has-playing-video .home-hero__poster {
  opacity: 0;
  visibility: hidden;
}

.home-hero__video {
  z-index: 1;
  opacity: 0;
  transform: scale(var(--hero-video-scale, 1));
  transform-origin: center bottom;
  transition: opacity 850ms ease;
  will-change: opacity;
}

.home-hero__video.is-ready.is-active {
  opacity: 1;
}

.home-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 29, 65, 0.94) 0%, rgba(0, 29, 65, 0.86) 34%, rgba(0, 29, 65, 0.42) 62%, rgba(0, 29, 65, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 29, 65, 0.88) 0%, rgba(0, 29, 65, 0.5) 26%, rgba(0, 29, 65, 0.14) 58%, rgba(0, 29, 65, 0.34) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  align-items: end;
  padding-block: 72px;
}

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

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.15rem, 3.7vw, 3.3rem);
  line-height: 1.08;
}

.hero-kicker,
.section-label,
.center-heading > span,
.section-intro > span,
.manufacturer-cta span,
.samples-intro > span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: var(--font);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--accent-on-navy);
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 560px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.5;
}

.hero-actions,
.steve-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--green:hover {
  background: var(--green-dark);
}

.button--outline-light {
  border-color: var(--white);
  color: var(--white);
}

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

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

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

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

/* Secondary button on light backgrounds — 2px navy border, navy text */
.button--outline-navy {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

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

.button--white:hover {
  background: var(--off-white);
}

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

.quick-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-contact a {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 14px;
  padding: 17px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.19);
  text-decoration: none;
}

.quick-contact a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.19);
}

.quick-contact a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.quick-contact__primary {
  background: var(--green-dark);
}

.quick-contact svg {
  width: 29px;
  flex: 0 0 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quick-contact small,
.quick-contact strong {
  display: block;
}

.quick-contact small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.quick-contact__primary small {
  color: rgba(255, 255, 255, 0.85);
}

.quick-contact strong {
  font-size: 1.03rem;
}

.manufacturer-lines,
.steve-section,
.distributors-section,
.resources-section,
.samples-section {
  padding: 82px 0;
}

.center-heading,
.section-intro {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.center-heading p,
.section-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

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

.logo-grid figure {
  display: flex;
  min-width: 0;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-grid img {
  max-width: 185px;
  max-height: 75px;
  object-fit: contain;
}

.logo-grid figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.coming-lines {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid #bfcfbe;
  border-top: 0;
  background: var(--off-white);
}

.coming-lines p {
  margin: 0;
}

.coming-lines a {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-weight: 800;
}

.support-section {
  padding: 86px 0 96px;
  background: var(--navy-dark);
}

.section-intro--light h2,
.section-intro--light p {
  color: var(--white);
}

.section-intro--light > span {
  color: var(--accent-on-navy);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--white);
}

.support-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.support-card > div {
  padding: 25px 26px 28px;
}

.support-card h3 {
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.support-card p {
  min-height: 52px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.97rem;
}

.support-card a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.support-card a:hover {
  text-decoration: underline;
}

.steve-section {
  background: var(--off-white);
}

.steve-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.steve-photo {
  border: 10px solid var(--white);
  background: #d4d0bf;
  box-shadow: 0 10px 24px rgba(0, 36, 81, 0.11);
}

.steve-photo img {
  width: 100%;
  height: auto;
}

.steve-copy {
  max-width: 630px;
}

.steve-copy__lead {
  margin-bottom: 25px;
  color: #404744;
  font-size: 1.15rem;
}

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

.check-list li {
  position: relative;
  padding-left: 31px;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.plain-link {
  display: inline-block;
  padding: 2px 0;
  color: var(--green-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.note-line .plain-link {
  padding: 4px 0;
}

.territory-section {
  padding: 82px 0;
  background: var(--navy);
  color: var(--white);
}

.territory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.territory-copy h2,
.territory-copy p {
  color: var(--white);
}

.territory-copy p {
  max-width: 550px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.88);
}

.section-label--light {
  color: var(--accent-on-navy);
}

.territory-map-card {
  padding: 24px;
  background: var(--white);
  color: var(--ink);
}

.territory-map-card h3 {
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--green);
}

.territory-map {
  margin: 0;
}

.territory-map img {
  display: block;
  width: 100%;
  height: auto;
  background: #f5f3ec;
}

.distributors-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 64px;
}

.distributors-grid > div:first-child p {
  max-width: 470px;
  color: var(--muted);
}

.plain-link--arrow {
  display: inline-block;
  padding: 3px 0;
  margin-top: 5px;
}

.distributor-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.distributor-logos img {
  width: 100%;
  height: 96px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  object-fit: contain;
}

.distributor-logos a {
  display: block;
  min-width: 0;
  outline-offset: -3px;
}

.distributor-logos a:focus-visible {
  outline: 3px solid var(--green);
}

.manufacturer-cta {
  padding: 62px 0;
  background: var(--green-dark);
  color: var(--white);
}

.manufacturer-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: 70px;
}

.manufacturer-cta span {
  color: var(--accent-on-green);
}

.manufacturer-cta h2,
.manufacturer-cta p {
  color: var(--white);
}

.manufacturer-cta h2 {
  margin-bottom: 0;
}

.manufacturer-cta p {
  margin-bottom: 22px;
}

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

.manufacturer-cta .button:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}

.sample-callout {
  padding: 58px 0;
  background: var(--navy);
  color: var(--white);
}

.sample-callout__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
}

.sample-callout h2,
.sample-callout p {
  color: var(--white);
}

.sample-callout h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.sample-callout p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  padding: 56px 0;
  background: var(--navy-dark);
  color: var(--white);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.breadcrumb a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
}

.breadcrumb a:hover {
  color: var(--white);
}

.page-hero h1 {
  max-width: 16ch;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.05rem, 3.4vw, 3.05rem);
}

.page-hero--manufacturer h1 {
  max-width: 22ch;
  font-size: clamp(1.95rem, 3.05vw, 2.7rem);
}

.page-hero__copy > p:not(.hero-kicker) {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
}

.page-hero__actions {
  margin-top: 28px;
}

.page-hero__photo {
  margin: 0;
  border: 6px solid var(--white);
  background: var(--white);
}

.page-hero__photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.page-hero__photo--steve img {
  object-position: center 18%;
}

.page-hero__photo--top img {
  object-position: center top;
}

.samples-section--page {
  padding-block: 82px;
}

.service-path {
  padding: 82px 0;
  background: var(--off-white);
}

.service-path__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 82px;
}

.service-path__intro {
  max-width: 500px;
}

.service-path__intro p {
  color: var(--muted);
}

.illustration-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  background: var(--off-white);
}

.illustration-note svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  fill: none;
  stroke: var(--green-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.illustration-note figcaption {
  margin: 0;
  color: var(--grey);
  font-size: 0.86rem;
  line-height: 1.5;
}

.illustration-note--photo {
  display: block;
  overflow: hidden;
  padding: 0;
  background: var(--white);
}

.illustration-note--photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.illustration-note--photo figcaption {
  padding: 13px 15px 14px;
}

.service-steps {
  border-top: 2px solid var(--navy-dark);
}

.service-step {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #bdc9be;
}

.service-step > span {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-step h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.service-step p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.distributors-section--page .distributors-grid > div:first-child p {
  max-width: 510px;
}

.manufacturer-lines--page .center-heading {
  max-width: 850px;
}

.request-prep {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid #bdc9be;
}

.request-prep h3 {
  margin-bottom: 17px;
  font-size: 1.18rem;
}

.request-prep .check-list {
  margin-bottom: 0;
}

.sample-steve-card {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  margin-top: 30px;
  border: 1px solid #bdc9be;
  background: var(--white);
}

.sample-steve-card img {
  width: 105px;
  height: 130px;
  object-fit: cover;
  object-position: center 18%;
}

.sample-steve-card > div {
  min-width: 0;
  padding: 13px 17px;
}

.sample-steve-card span,
.sample-steve-card strong,
.sample-steve-card a {
  display: block;
}

.sample-steve-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-steve-card strong {
  margin: 3px 0 5px;
  color: var(--navy-dark);
  font-size: 1.08rem;
}

.sample-steve-card a {
  padding: 4px 0;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.request-help {
  padding: 62px 0;
  background: var(--green-dark);
  color: var(--white);
}

.request-help .section-label--light {
  color: var(--accent-on-green);
}

.request-help__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.request-help h2,
.request-help p {
  color: var(--white);
}

.request-help h2 {
  margin-bottom: 0;
}

.request-help p {
  margin-bottom: 22px;
}

.resources-section {
  background: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 76px;
}

.resources-grid > div:first-child p {
  color: var(--muted);
}

.resources-grid > div:first-child img {
  width: 100%;
  height: 320px;
  margin-top: 30px;
  object-fit: cover;
  object-position: center 25%;
}

.faq-list {
  border-top: 2px solid var(--navy-dark);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--green);
  font-size: 1.9rem;
  font-weight: 500;
}

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

.faq-list details p {
  max-width: 650px;
  padding: 0 46px 23px 0;
  color: var(--muted);
}

.samples-section {
  background: var(--off-white);
}

.samples-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 76px;
}

.samples-intro > p {
  color: var(--muted);
}

.direct-contact {
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid #bdc9be;
  border-bottom: 1px solid #bdc9be;
}

.direct-contact strong,
.direct-contact a {
  display: block;
}

.direct-contact a {
  margin-top: 5px;
  color: var(--green-dark);
  font-weight: 800;
}

.sample-form {
  padding: 34px;
  border-top: 5px solid var(--green);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 36, 81, 0.09);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sample-form label {
  display: block;
  margin-bottom: 17px;
  color: var(--navy-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.sample-form input,
.sample-form textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 10px 12px;
  border: 1px solid #9eaaa1;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.sample-form textarea {
  min-height: 125px;
  resize: vertical;
}

.sample-form input:focus,
.sample-form textarea:focus {
  border-color: var(--navy);
  outline: 2px solid rgba(0, 53, 118, 0.2);
  outline-offset: 1px;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.sample-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
}

.sample-form .consent-check input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--green-dark);
}

.consent-check a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-copy {
  max-width: 780px;
}

.legal-copy h2 {
  margin-top: 2.2rem;
  color: var(--navy-dark);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

/* Legal pages */
.policy-nav { display: flex; align-items: center; gap: 28px; }
.policy-nav a { color: var(--navy-dark); font-size: .92rem; font-weight: 800; }
.policy-nav .button { color: var(--white); }
.legal-hero { position: relative; overflow: hidden; padding: 72px 0 76px; background: var(--navy-dark); color: var(--white); }
.legal-hero::after { position: absolute; inset: 0; background: url("assets/patterns/honeycomb-white.svg") right center / 560px auto no-repeat; content: ""; opacity: .06; pointer-events: none; }
.legal-hero__inner { position: relative; z-index: 1; max-width: 800px; }
.legal-hero .breadcrumb, .legal-hero .breadcrumb a, .legal-hero h1, .legal-hero p { color: var(--white); }
.legal-hero .hero-kicker { color: var(--accent-on-navy); }
.legal-hero h1 { margin-bottom: 18px; }
.legal-hero__lead { max-width: 670px; margin: 0; color: rgba(255,255,255,.9) !important; font-size: 1.16rem; }
.legal-hero__meta { display: inline-flex; margin-top: 24px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 700; }
.legal-section { background: var(--off-white); }
.legal-layout { display: grid; grid-template-columns: minmax(210px,.32fr) minmax(0,.95fr); align-items: start; gap: 58px; }
.legal-toc { position: sticky; top: 118px; padding: 25px; border-top: 4px solid var(--green); background: var(--white); }
.legal-toc strong { display: block; margin-bottom: 13px; color: var(--navy-dark); font-family: Georgia,"Times New Roman",serif; font-size: 1.15rem; }
.legal-toc a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--green-dark); font-size: .9rem; font-weight: 700; }
.legal-document { padding: 38px 42px 44px; border: 1px solid var(--line); background: var(--white); }
.legal-document section + section { margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line); }
.legal-document h2 { margin: 0 0 12px; color: var(--navy-dark); font-size: clamp(1.45rem,2.3vw,1.9rem); }
.legal-document p:last-child { margin-bottom: 0; }
.legal-callout { margin-top: 34px; padding: 22px 24px; border-left: 4px solid var(--green); background: #eef6ef; }
@media (max-width: 760px) {
  .policy-nav { gap: 14px; }
  .policy-nav a:not(.button) { display: none; }
  .legal-hero { padding: 54px 0 58px; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; }
  .legal-document { padding: 27px 22px 32px; }
}

.site-footer {
  padding: 66px 0 0;
  background: var(--navy-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 0.75fr 1fr;
  gap: 32px;
  padding-bottom: 55px;
}

.footer-grid:has(> :nth-child(4):last-child) {
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
}

.footer-brand img {
  width: 240px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.footer-contact span {
  display: block;
  padding: 5px 0;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.mobile-contact {
  display: none;
}

@media (max-width: 1280px) {
  .site-nav a,
  .nav-trigger {
    font-size: 0.85rem;
  }

  .site-nav > a:not(.nav-cta),
  .nav-trigger {
    padding: 0 9px;
  }

  .site-logo img {
    width: 200px;
  }
}

@media (max-width: 1180px) {

  .territory-grid,
  .resources-grid,
  .samples-grid {
    gap: 48px;
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    padding: 22px 30px 40px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a,
  .site-nav > a:not(.nav-cta),
  .nav-trigger {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
  }

  .site-nav > a:not(.nav-cta)::after,
  .nav-item > .nav-trigger::after {
    display: none;
  }

  .nav-item {
    display: block;
    width: 100%;
  }

  .nav-trigger {
    justify-content: space-between;
    text-align: left;
  }

  .nav-trigger svg {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
    margin-right: 4px;
  }

  /* Panels become inline accordions on the mobile sheet */
  .nav-panel {
    position: static;
    display: none;
    width: auto;
    min-width: 0;
    padding: 6px 0 12px 14px;
    border: 0;
    border-left: 3px solid var(--green);
    margin: 12px 0 16px;
    background: var(--off-white);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.is-open > .nav-panel {
    display: block;
  }

  .nav-panel a {
    min-height: 48px;
    align-items: center;
    padding: 8px 16px;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    width: auto;
    justify-content: center;
    margin-top: 25px;
    border: 2px solid var(--green-dark);
  }

  .quick-contact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-contact a,
  .quick-contact a:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
    border-left: 0;
  }

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

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

  .support-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .support-card img {
    height: 100%;
    min-height: 250px;
  }

  .steve-grid,
  .territory-grid,
  .distributors-grid,
  .manufacturer-cta__inner,
  .sample-callout__inner,
  .page-hero__grid,
  .request-help__inner,
  .resources-grid,
  .samples-grid,
  .service-path__grid {
    grid-template-columns: 1fr;
  }

  .steve-photo {
    width: min(430px, 100%);
  }

  .territory-map-card {
    width: 100%;
    max-width: 820px;
  }

  .distributors-grid,
  .manufacturer-cta__inner,
  .sample-callout__inner,
  .page-hero__grid,
  .request-help__inner,
  .resources-grid,
  .samples-grid,
  .service-path__grid {
    gap: 42px;
  }

  .page-hero__photo {
    width: min(700px, 100%);
  }

  .resources-grid > div:first-child img {
    width: min(520px, 100%);
  }

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

@media (max-width: 620px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  body {
    padding-bottom: 64px;
    font-size: 16px;
  }

  html {
    scroll-padding-top: 80px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
  }

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

  .top-bar {
    display: none;
  }

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

  .site-logo img {
    width: 180px;
  }

  .site-nav {
    top: 72px;
    bottom: 64px;
  }

  .home-hero,
  .home-hero__content {
    min-height: auto;
  }

  .home-hero__poster {
    object-position: 52% 62%;
  }

  .home-hero__shade {
    background: linear-gradient(0deg, rgba(0, 29, 65, 0.95) 0%, rgba(0, 29, 65, 0.82) 46%, rgba(0, 29, 65, 0.6) 100%);
  }

  .home-hero__content {
    min-height: 520px;
    padding-block: 48px;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 1.05rem;
  }

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

  .quick-contact__grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .quick-contact a {
    min-height: 86px;
    padding: 14px 16px;
  }

  .quick-contact svg {
    display: none;
  }

  .manufacturer-lines,
  .steve-section,
  .distributors-section,
  .resources-section,
  .samples-section,
  .service-path {
    padding: 62px 0;
  }

  .center-heading,
  .section-intro {
    margin-bottom: 34px;
    text-align: left;
  }

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

  .logo-grid figure {
    min-height: 125px;
    padding: 20px;
  }

  .logo-grid img {
    max-width: 135px;
    max-height: 58px;
  }

  .coming-lines {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-section {
    padding: 64px 0 70px;
  }

  .support-card {
    display: block;
  }

  .support-card img {
    height: 220px;
    min-height: 0;
  }

  .support-card p {
    min-height: 0;
  }

  .steve-grid {
    gap: 38px;
  }

  .steve-photo {
    width: min(340px, 92%);
    margin-inline: auto;
    border-width: 7px;
  }

  .steve-contact-row .button,
  .steve-contact-row .plain-link {
    width: 100%;
    text-align: center;
  }

  .territory-section {
    padding: 62px 0;
  }

  .territory-grid {
    gap: 38px;
  }

  .territory-map-card {
    padding: 16px;
  }

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

  .distributor-logos img {
    height: 86px;
    padding: 17px;
  }

  .manufacturer-cta {
    padding: 56px 0;
  }

  .sample-callout {
    padding: 54px 0;
  }

  .sample-callout__inner {
    gap: 28px;
  }

  .sample-callout .button {
    width: 100%;
  }

  .page-hero {
    padding: 42px 0 48px;
  }

  .breadcrumb {
    margin-bottom: 26px;
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .page-hero--manufacturer h1 {
    max-width: none;
  }

  .page-hero__grid {
    gap: 34px;
  }

  .page-hero__actions {
    margin-top: 24px;
  }

  .page-hero__photo {
    border-width: 4px;
  }

  .page-hero__photo img {
    height: 230px;
  }

  .samples-section--page {
    padding-block: 60px;
  }

  .sample-steve-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .sample-steve-card img {
    width: 92px;
    height: 128px;
  }

  .request-help {
    padding: 54px 0;
  }

  .request-help__inner {
    gap: 28px;
  }

  .request-help .button {
    flex: 1 1 140px;
  }

  .resources-grid > div:first-child img {
    height: 270px;
  }

  .faq-list summary {
    padding-right: 36px;
    font-size: 1.05rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sample-form {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 25px 20px;
  }

  .sample-form .button {
    width: 100%;
  }

  .service-path__grid {
    gap: 30px;
  }

  .service-step {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0;
  }

  .service-step h3 {
    font-size: 1.18rem;
  }

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

  .footer-bottom {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    background: var(--navy-dark);
    color: var(--white);
    box-shadow: 0 -4px 14px rgba(0, 36, 81, 0.18);
  }

  .mobile-contact a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-contact a:last-child {
    border-right: 0;
    background: var(--green);
  }
}

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

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

/* ==========================================================================
   Interior page components
   ========================================================================== */

.section {
  padding: 82px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--offwhite {
  background: var(--off-white);
}

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

.section--navy h2,
.section--navy h3,
.section--navy p {
  color: var(--white);
}

.section--navy .section-label {
  color: var(--accent-on-navy);
}

.section--hex {
  background-color: var(--off-white);
  background-image: url("assets/patterns/honeycomb-navy.svg");
  background-position: center top;
}

.section--navy.section--hex {
  background-color: var(--navy-dark);
  background-image: url("assets/patterns/honeycomb-white.svg");
}

/* --- Section headings ----------------------------------------------------- */
.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 1.06rem;
}

.section--navy .section-head p {
  color: rgba(255, 255, 255, 0.84);
}

.section-head--split {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--navy-dark);
}

.section--navy .section-head--split {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.section-head--split > div:first-child {
  max-width: 720px;
}

.section-head--split h2 {
  margin-bottom: 12px;
}

/* --- Editorial prose ------------------------------------------------------ */
.prose {
  max-width: 62ch;
}

.prose > p {
  margin-bottom: 20px;
  color: var(--ink);
}

.prose > p:last-child {
  margin-bottom: 0;
}

.prose h3 {
  margin: 34px 0 12px;
}

.prose a {
  color: var(--green-dark);
  font-weight: 700;
}

.lede {
  font-size: 1.2rem;
  line-height: 1.55;
}

/* --- Two-column editorial split ------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 6vw, 76px);
}

.split--photo-left {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

@media (min-width: 861px) {
  .split--photo-left > .split__photo {
    position: sticky;
    top: 132px;
  }
}

.split__photo {
  margin: 0;
  border: 8px solid var(--white);
  background: var(--white);
  outline: 1px solid var(--line);
}

.section--navy .split__photo {
  outline-color: rgba(255, 255, 255, 0.35);
}

.split__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split__photo figcaption {
  padding: 12px 4px 2px;
  color: var(--grey);
  font-size: 0.82rem;
  line-height: 1.45;
}

.section--navy .split__photo figcaption {
  color: rgba(255, 255, 255, 0.72);
}

/* --- Fact / spec table ---------------------------------------------------- */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--navy-dark);
  text-align: left;
}

.section--navy .fact-table {
  border-top-color: var(--accent-on-navy);
}

.fact-table th,
.fact-table td {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  vertical-align: top;
}

.section--navy .fact-table th,
.section--navy .fact-table td {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.fact-table th {
  width: 38%;
  padding-right: 24px;
  color: var(--navy-dark);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section--navy .fact-table th {
  color: var(--accent-on-navy);
}

.fact-table td {
  color: var(--ink);
}

.section--navy .fact-table td {
  color: rgba(255, 255, 255, 0.9);
}

.fact-table a {
  display: inline-block;
  padding: 2px 0;
  color: var(--green-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section--navy .fact-table a {
  color: var(--accent-on-navy);
}

/* --- Pillar grid (capabilities, brand pillars) ---------------------------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.section--navy .pillar-grid {
  border-top-color: rgba(255, 255, 255, 0.24);
  border-left-color: rgba(255, 255, 255, 0.24);
}

.pillar {
  padding: 30px 30px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--navy .pillar {
  border-right-color: rgba(255, 255, 255, 0.24);
  border-bottom-color: rgba(255, 255, 255, 0.24);
}

.pillar svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.section--navy .pillar svg {
  stroke: var(--accent-on-navy);
}

.pillar h3 {
  margin-bottom: 9px;
  font-size: 1.2rem;
}

.pillar p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.96rem;
}

.section--navy .pillar p {
  color: rgba(255, 255, 255, 0.82);
}

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

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

/* --- Manufacturer line entries ------------------------------------------- */
.line-list {
  border-top: 2px solid var(--navy-dark);
}

.line-entry {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.line-entry__mark {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.line-entry__mark img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.line-entry__body h3 {
  margin-bottom: 8px;
}

.line-entry__body p {
  max-width: 60ch;
  margin-bottom: 14px;
  color: var(--grey);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-row li {
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  background: var(--off-white);
  color: var(--navy-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.line-entry__action {
  flex: 0 0 auto;
}

/* --- Status / clarification note ------------------------------------------ */
.status-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--green);
  background: var(--off-white);
}

.status-note svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  fill: none;
  stroke: var(--green-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.status-note p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.97rem;
}

.status-note p + p {
  margin-top: 10px;
}

.status-note strong {
  color: var(--navy-dark);
}

.status-note a {
  color: var(--green-dark);
  font-weight: 700;
}

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

.resource-list a {
  display: block;
  padding: 24px 26px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.resource-list a:hover {
  background: var(--off-white);
}

.resource-list strong {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.resource-list a:hover strong {
  color: var(--green-dark);
}

.resource-list strong span {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-family: var(--font);
  font-size: 0.85rem;
}

.resource-list p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.94rem;
}

.resource-list em {
  display: block;
  margin-top: 9px;
  color: var(--navy);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Territory state grid ------------------------------------------------- */
.state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.state-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.state-cell b {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  background: var(--navy);
}

.state-cell b svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.state-cell > span {
  color: var(--navy-dark);
  font-weight: 700;
}

.state-cell small {
  display: block;
  color: var(--grey);
  font-size: 0.83rem;
  font-weight: 400;
}

.state-cell--caribbean b {
  background: var(--green-dark);
}

/* --- Timeline / staged process -------------------------------------------- */
.timeline {
  border-top: 2px solid var(--navy-dark);
}

.timeline__row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.timeline__row > span {
  color: var(--green-dark);
  font-family: var(--font);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline__row h3 {
  margin-bottom: 7px;
  font-size: 1.22rem;
}

.timeline__row p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--grey);
}

/* --- Contact page --------------------------------------------------------- */
.contact-methods {
  border-top: 1px solid var(--line);
}

.contact-methods > a,
.contact-methods > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-methods > * > svg {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  fill: none;
  stroke: var(--green-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-methods small {
  display: block;
  margin-bottom: 3px;
  color: var(--grey);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-methods strong {
  display: block;
  color: var(--navy-dark);
  font-size: 1.15rem;
  overflow-wrap: anywhere;
}

.contact-methods > a:hover strong {
  color: var(--green-dark);
}

.contact-methods em .plain-link {
  display: inline;
  overflow-wrap: normal;
}

.contact-methods em {
  display: block;
  margin-top: 2px;
  color: var(--grey);
  font-size: 0.88rem;
  font-style: normal;
}

/* --- In-page index inside a page hero ------------------------------------ */
.hero-index {
  padding: 22px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.05);
}

.hero-index h2 {
  margin-bottom: 14px;
  color: var(--accent-on-navy);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-index a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.hero-index a:hover {
  color: var(--accent-on-navy);
}

.hero-index a > span {
  color: var(--accent-on-navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-index a small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.45;
}

/* --- Related-page navigation --------------------------------------------- */
.related {
  padding: 62px 0 70px;
  border-top: 1px solid var(--line);
  background: var(--off-white);
}

.related h2 {
  margin-bottom: 26px;
  font-size: 1.3rem;
}

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

.related-card {
  display: block;
  padding: 24px 26px 26px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  text-decoration: none;
  transition: border-color 180ms ease;
}

.related-card:hover {
  border-color: var(--green);
}

.related-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.related-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
}

.related-card p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.93rem;
}

/* External manufacturer/distributor links inside logo tiles must not disturb
   the figure's own centering -- the anchor is just a transparent hit target. */
.logo-grid figure a,
.line-entry__mark a {
  display: block;
  line-height: 0;
}

.logo-grid figure a:focus-visible,
.line-entry__mark a:focus-visible {
  outline-offset: 4px;
}

/* --- Small shared bits ---------------------------------------------------- */
.plain-link--arrow span,
.support-card a span {
  display: inline-block;
  transition: transform 180ms ease;
}

.plain-link--arrow:hover span,
.support-card a:hover span {
  transform: translateX(3px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.note-line {
  margin: 18px 0 0;
  color: var(--grey);
  font-size: 0.88rem;
}

.note-line--centered {
  margin-top: 26px;
  text-align: center;
}

@media (max-width: 620px) {
  .note-line--centered {
    text-align: left;
  }
}

.section--navy .note-line {
  color: rgba(255, 255, 255, 0.7);
}

.error-page {
  padding: 110px 0 120px;
  text-align: center;
}

.error-page .container {
  max-width: 640px;
}

.error-page p {
  margin: 0 auto 8px;
  color: var(--grey);
  font-size: 1.08rem;
}

.error-page .button-row {
  justify-content: center;
}

/* ==========================================================================
   Interior page components — responsive
   ========================================================================== */

@media (max-width: 1000px) {
  .pillar-grid,
  .pillar-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .line-entry {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 30px;
  }

  .line-entry__action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .split,
  .split--photo-left {
    grid-template-columns: 1fr;
  }

  .split__photo img {
    height: 320px;
  }

  .section-head--split {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

  .section--tight {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .lede {
    font-size: 1.08rem;
  }

  .pillar-grid,
  .pillar-grid--two,
  .pillar-grid--four,
  .resource-list,
  .related-grid,
  .state-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pillar {
    padding: 24px 22px 26px;
  }

  .split__photo {
    border-width: 6px;
  }

  .split__photo img {
    height: 250px;
  }

  .line-entry {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .line-entry__mark {
    min-height: 96px;
  }

  .fact-table th,
  .fact-table td {
    display: block;
    width: auto;
    padding-right: 0;
  }

  .fact-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .status-note {
    padding: 18px 18px 20px;
  }

  .contact-methods strong {
    font-size: 1.06rem;
  }

  .related {
    padding: 52px 0 58px;
  }

  .error-page {
    padding: 76px 0 84px;
  }
}

