:root {
  --ink: #121714;
  --forest: #10261f;
  --forest-soft: #19372e;
  --paper: #f3f0e8;
  --paper-bright: #faf8f2;
  --mist: #d9ddd7;
  --muted: #68716c;
  --line: rgba(18, 23, 20, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --accent: #b8915f;
  --white: #fffef9;
  --shell: min(1320px, calc(100vw - 80px));
  --section-pad: clamp(88px, 10vw, 160px);
  --radius: 2px;
  --font: "Helvetica Neue", "Inter", "Segoe UI", Arial, sans-serif;
  --type-body: clamp(1rem, 0.35vw + 0.94rem, 1.125rem);
  --type-lead: clamp(1.075rem, 0.5vw + 0.98rem, 1.2rem);
  --type-card: 0.9rem;
  --type-section-title: clamp(1.95rem, 2.8vw, 3.2rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper-bright);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.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: 200;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding-block: var(--section-pad);
}

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

.section-kicker,
.section-label,
.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--forest-soft);
}

.light {
  color: rgba(255, 255, 255, 0.78);
}

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

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5vw, 5.5rem);
  line-height: 0.98;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background-color 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.site-header.is-scrolled {
  background: rgba(250, 248, 242, 0.96);
  box-shadow: 0 10px 32px rgba(18, 23, 20, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::after {
  background: var(--line);
}

.header-inner {
  display: flex;
  width: var(--shell);
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.wordmark {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.wordmark-text strong {
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 42px);
  font-size: 0.82rem;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

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

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.site-header:not(.is-scrolled) .nav-cta:hover,
.button-light:hover {
  background: var(--white);
  color: var(--forest);
}

.site-header.is-scrolled .nav-cta:hover {
  background: var(--forest);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(920px, 100svh);
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  animation: hero-enter 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(7, 15, 12, 0.76) 0%, rgba(7, 15, 12, 0.48) 42%, rgba(7, 15, 12, 0.08) 76%), linear-gradient(0deg, rgba(7, 15, 12, 0.5), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: clamp(80px, 10vh, 120px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow-year {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow-year::before {
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  content: "";
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--type-lead);
  line-height: 1.6;
}

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.intro {
  background: var(--paper-bright);
}

.intro-grid,
.split-layout,
.route-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1.7fr);
  gap: clamp(50px, 9vw, 150px);
}

.display-copy {
  max-width: 980px;
  font-size: clamp(2.45rem, 5.2vw, 5.6rem);
  line-height: 1;
}

.lead-copy {
  max-width: 780px;
  margin: 42px 0 0 auto;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
}

.credibility-grid {
  display: grid;
  margin-top: clamp(80px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.credibility-grid article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  display: block;
  margin-bottom: 76px;
  color: var(--forest-soft);
  font-size: clamp(1.65rem, 2.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.credibility-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.credibility-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.split-layout h2 {
  margin-top: 26px;
  font-size: var(--type-section-title);
  line-height: 1.05;
}

.rich-copy {
  max-width: 720px;
  padding-top: 30px;
}

.rich-copy p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.65;
}

.rich-copy > p:first-child {
  color: var(--ink);
}

.sourcing-section,
.benefits-section {
  background: var(--paper);
}

.section-heading-row {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 120px);
}

.section-heading-row h2 {
  margin-top: 24px;
  font-size: var(--type-section-title);
  line-height: 1.05;
}

.split-layout,
.contact-grid {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 120px);
}

.heading-note {
  max-width: 470px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.source-feature {
  display: grid;
  margin-top: clamp(60px, 7vw, 100px);
  grid-template-columns: 0.75fr 1.25fr;
}

.source-copy {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 70px);
  background: var(--forest);
  color: var(--white);
}

.large-copy {
  max-width: 520px;
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.source-note {
  display: flex;
  max-width: 390px;
  gap: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.source-note p {
  margin: 0;
}

.image-frame {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

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

.image-frame figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 15px 18px;
  background: rgba(250, 248, 242, 0.92);
  color: var(--ink);
  font-size: 0.75rem;
  backdrop-filter: blur(8px);
}

.partner-block {
  display: grid;
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.5fr 1.2fr 0.8fr;
  gap: 50px;
}

.partner-grid {
  display: grid;
  margin: 0;
  padding-left: 1.2rem;
  gap: 22px;
}

.partner-copy .partner-grid {
  margin: 12px 0 42px;
  padding: 30px 0 30px 1.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-grid li {
  padding-left: 0.25rem;
  font-size: var(--type-body);
  line-height: 1.5;
}

.partner-grid li::marker {
  color: var(--accent);
}

.partner-categories {
  margin-top: 0;
}

.partner-copy .partner-categories-label {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.partner-category-list li {
  padding: 13px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.partner-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.brand-showcase {
  margin-top: clamp(34px, 4vw, 52px);
}

.brand-showcase-note {
  max-width: 440px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

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

.brand-logo-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition: background-color 180ms ease;
}

.brand-logo-item:hover {
  background: var(--white);
}

.brand-logo-item img {
  display: block;
  width: 82%;
  max-width: 150px;
  max-height: 66px;
  object-fit: contain;
}

.brand-logo-item .logo-3m {
  width: 56px;
  height: 56px;
}

.brand-logo-item .logo-bic,
.brand-logo-item .logo-stanley {
  transform: scale(1.45);
}

.brand-logo-item .logo-staedtler {
  transform: scale(1.28);
}

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

.company-copy strong {
  color: var(--forest);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.dark-section {
  background: #0b0d0c;
  color: var(--white);
}

.dark-heading {
  display: grid;
  margin-bottom: 90px;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
}

.dark-heading h2 {
  font-size: clamp(2.7rem, 5vw, 5.7rem);
}

.process-list {
  border-top: 1px solid var(--line-light);
}

.process-row {
  display: grid;
  min-height: 180px;
  align-items: start;
  padding-block: 38px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 0.2fr 0.65fr 1.15fr 0.42fr;
  gap: 36px;
}

.process-number {
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.process-row h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
}

.process-row p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.process-tag {
  justify-self: end;
  padding: 7px 10px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.distribution-section {
  background: var(--forest);
  color: var(--white);
}

.distribution-layout h2 {
  color: var(--paper-bright);
}

.distribution-kicker {
  color: #d1ad7c;
}

.distribution-copy {
  max-width: 720px;
  padding-top: 30px;
}

.distribution-copy p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.67);
  font-size: var(--type-body);
  line-height: 1.65;
}

.distribution-copy > p:first-child {
  color: rgba(255, 255, 255, 0.96);
}

.distribution-markets {
  display: grid;
  margin: 0 0 36px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
}

.distribution-markets li {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.distribution-markets li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.benefit-grid {
  display: grid;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.reliability-copy {
  max-width: 720px;
  margin: 30px 0 0;
}

.reliability-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.65;
}

.reliability-copy p:first-child {
  margin-bottom: 18px;
  color: var(--ink);
}

.reliability-section .section-heading-row {
  text-align: left;
}

.reliability-grid article:last-child {
  grid-column: auto;
}

.reliability-grid article:last-child p {
  max-width: 650px;
}

.benefit-grid article {
  min-height: 330px;
  padding: clamp(34px, 4vw, 60px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 200ms ease, color 200ms ease;
}

.benefit-grid article:hover {
  background: var(--forest);
  color: var(--white);
}

.benefit-grid span {
  display: block;
  margin-bottom: 90px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.benefit-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.benefit-grid p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.benefit-grid article:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.reliability-grid {
  margin-top: 46px;
  border: 0;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reliability-grid article {
  min-height: 210px;
  padding: 21px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.reliability-grid span {
  margin-bottom: 28px;
}

.reliability-grid h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.reliability-grid p {
  font-size: var(--type-card);
  line-height: 1.6;
}

.route-section {
  padding-block: clamp(90px, 11vw, 170px);
  background: var(--forest);
  color: var(--white);
}

.route-grid h2 {
  max-width: 900px;
}

.route-grid p:not(.section-kicker) {
  max-width: 720px;
  margin: 48px 0 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.12rem;
}

.contact-section {
  padding-block: var(--section-pad) 100px;
  background: var(--paper-bright);
}

.contact-grid h2 {
  margin-top: 28px;
  color: var(--forest);
  font-size: var(--type-section-title);
  line-height: 1.05;
}

.contact-copy {
  max-width: 690px;
  padding-top: 30px;
  font-size: var(--type-body);
  line-height: 1.65;
}

.contact-copy p:first-child {
  color: var(--ink);
}

.contact-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.enquiry-grid {
  display: grid;
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.enquiry-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 200ms ease, color 200ms ease;
}

.enquiry-card.primary,
.enquiry-card:hover {
  background: var(--forest);
  color: var(--white);
}

.enquiry-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-card strong {
  max-width: calc(100% - 60px);
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.enquiry-arrow {
  position: absolute;
  right: 38px;
  bottom: 38px;
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.enquiry-card:hover .enquiry-arrow {
  transform: translate(5px, -5px);
}

.site-footer {
  padding-block: 75px 28px;
  background: #0b0d0c;
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 80px;
}

.footer-wordmark {
  font-size: 1.25rem;
}

.footer-identity {
  display: grid;
  max-width: 560px;
  gap: 24px;
}

.company-summary {
  display: grid;
  max-width: 540px;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-address {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.55;
  text-align: right;
}

.footer-address strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-enter {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 1320px);
  }

  .site-nav {
    gap: 20px;
  }

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

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

  .source-feature {
    grid-template-columns: 1fr;
  }

  .source-copy {
    min-height: 470px;
  }

  .process-row {
    grid-template-columns: 0.15fr 0.65fr 1.2fr;
  }

  .process-tag {
    display: none;
  }

  .partner-block {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .partner-note {
    grid-column: 2;
  }

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

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

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
    --section-pad: 84px;
  }

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

  h2,
  .display-copy {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

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

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 100px 24px 40px;
    background: var(--paper-bright);
    color: var(--ink);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav > a:not(.nav-cta) {
    display: block;
    padding: 10px 0;
    font-size: clamp(1.7rem, 8vw, 3rem);
    letter-spacing: -0.04em;
  }

  .site-nav .nav-cta {
    align-self: flex-start;
    margin-top: 20px;
    background: var(--forest);
    color: var(--white);
  }

  .site-header.menu-active {
    color: var(--ink);
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    object-position: 59% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 15, 12, 0.82), rgba(7, 15, 12, 0.26)), linear-gradient(0deg, rgba(7, 15, 12, 0.68), transparent 58%);
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10.8vw, 3.7rem);
  }

  .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .eyebrow-year::before {
    display: none;
  }

  .reliability-copy {
    margin-top: 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid,
  .split-layout,
  .route-grid,
  .contact-grid,
  .section-heading-row,
  .dark-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .lead-copy,
  .route-grid p:not(.section-kicker) {
    margin-left: 0;
  }

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

  .credibility-grid article {
    min-height: auto;
  }

  .metric {
    margin-bottom: 44px;
  }

  .rich-copy {
    padding-top: 0;
  }

  .distribution-copy {
    padding-top: 0;
  }

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

  .heading-note {
    margin: 0;
  }

  .source-feature {
    margin-inline: -18px;
  }

  .source-copy,
  .image-frame {
    min-height: 520px;
  }

  .partner-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partner-note {
    grid-column: auto;
  }

  .dark-heading {
    margin-bottom: 56px;
  }

  .process-row {
    grid-template-columns: 44px 1fr;
    gap: 12px 18px;
  }

  .process-row p {
    grid-column: 2;
  }

  .benefit-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .reliability-grid article:last-child {
    grid-column: auto;
  }

  .brand-showcase {
    margin-top: 32px;
  }

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

  .brand-logo-item {
    min-height: 110px;
  }

  .benefit-grid article {
    min-height: 290px;
  }

  .reliability-grid article {
    min-height: 190px;
  }

  .benefit-grid span {
    margin-bottom: 62px;
  }

  .reliability-grid span {
    margin-bottom: 24px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .enquiry-card {
    min-height: 220px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .footer-bottom {
    gap: 14px;
  }

  .footer-address {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 390px) {
  .wordmark-text {
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .enquiry-arrow {
    right: 24px;
    bottom: 24px;
  }
}

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

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

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