@font-face {
  font-family: "Noto Sans Arabic Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../Assets/Fonts/noto-sans-arabic-arabic-wght-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "Noto Sans Arabic Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../Assets/Fonts/noto-sans-arabic-latin-wght-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "Noto Kufi Arabic";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../Assets/Fonts/noto-kufi-arabic-arabic-600-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "Noto Kufi Arabic";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../Assets/Fonts/noto-kufi-arabic-latin-600-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "Noto Kufi Arabic";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("../Assets/Fonts/noto-kufi-arabic-arabic-700-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "Noto Kufi Arabic";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("../Assets/Fonts/noto-kufi-arabic-latin-700-normal.woff2")
    format("woff2");
}

:root {
  --charcoal: #2b3138;
  --gold: #c88f46;
  --ivory: #f7f5f0;
  --gray: #7d8186;
  --deep: #111418;
  --white: #fffdf8;
  --line: rgba(43, 49, 56, 0.18);
  --line-light: rgba(247, 245, 240, 0.18);
  --space-section: clamp(5.5rem, 9vw, 10rem);
  --shell: min(92vw, 1380px);
  --radius: 0.7rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --heading: "Noto Kufi Arabic", "Noto Sans Arabic", sans-serif;
  --body: "Noto Sans Arabic Variable", "Noto Sans Arabic", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ivory);
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
body,
button,
input,
select,
textarea {
  font-family: var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
figure {
  margin: 0;
}
section[id] {
  scroll-margin-top: 5rem;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
::selection {
  background: var(--gold);
  color: var(--deep);
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  inset-block-start: 0.75rem;
  inset-inline-start: 1rem;
  z-index: 200;
  translate: 0 -180%;
  padding: 0.75rem 1rem;
  background: var(--deep);
  color: var(--ivory);
  border-radius: 0.3rem;
}
.skip-link:focus {
  translate: 0;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.section {
  padding-block: var(--space-section);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: currentColor;
}
.eyebrow--light {
  color: #e5ad64;
}
.section-index {
  display: block;
  margin-bottom: 2.1rem;
  color: var(--gold);
  font: 600 0.76rem/1 var(--heading);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  line-height: 1.45;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.8rem, 6.6vw, 7.8rem);
}
h2 {
  font-size: clamp(2rem, 4.1vw, 4.9rem);
}
h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.55rem);
}
p {
  color: #5c6166;
}
.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    transform 300ms var(--ease),
    background 300ms ease,
    color 300ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--gold {
  background: var(--gold);
  color: var(--deep);
}
.button--gold:hover {
  background: #d6a158;
}
.button--dark {
  background: var(--deep);
  color: var(--ivory);
}
.button--dark:hover {
  background: var(--charcoal);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--heading);
  font-size: 0.76rem;
  font-weight: 700;
}
.text-link span {
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 300ms var(--ease);
}
.text-link:hover span {
  transform: translateX(-0.35rem);
}
.text-link--light {
  color: var(--ivory);
}
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--charcoal);
  transition:
    background 300ms ease,
    box-shadow 300ms ease;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 240, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 5.4rem;
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  align-items: center;
  gap: 2.5rem;
}
.site-logo {
  display: block;
  width: 6.4rem;
  height: 4.1rem;
  overflow: hidden;
}
.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.5rem);
}
.desktop-nav a {
  position: relative;
  padding-block: 0.5rem;
  font-size: 0.87rem;
  font-weight: 600;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  width: 0;
  height: 2px;
  margin-inline: auto;
  background: var(--gold);
  transition: width 250ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  width: 100%;
}
.header-cta {
  min-height: 2.75rem;
  padding-inline: 1.15rem;
}
.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  inset-inline: 0.65rem;
  height: 2px;
  background: var(--deep);
  transition:
    transform 250ms ease,
    top 250ms ease;
}
.menu-toggle span:first-child {
  top: 1.15rem;
}
.menu-toggle span:last-child {
  top: 1.8rem;
}
.menu-toggle.is-open span:first-child {
  top: 1.5rem;
  transform: rotate(45deg);
}
.menu-toggle.is-open span:last-child {
  top: 1.5rem;
  transform: rotate(-45deg);
}
.mobile-menu {
  display: none;
}

/* Brand geometry */
.brand-mark {
  width: 14rem;
  aspect-ratio: 1;
  display: block;
  position: relative;
}
.brand-mark__arc {
  position: absolute;
  inset: 8%;
  border: 1.05rem solid currentColor;
  border-inline-end-color: transparent;
  border-radius: 50%;
  transform: rotate(-8deg);
}
.brand-mark__lines {
  position: absolute;
  inset-block-start: 28%;
  inset-inline-end: 0;
  width: 48%;
  display: grid;
  gap: 0.55rem;
}
.brand-mark__lines i {
  display: block;
  height: 0.55rem;
  background: var(--gold);
  transform: skewX(-36deg);
}
.brand-mark__lines i:nth-child(2) {
  width: 72%;
}
.brand-mark__lines i:nth-child(3) {
  width: 46%;
}
.brand-mark__module {
  position: absolute;
  inset: 45% 26% auto auto;
  width: 40%;
  height: 22%;
  border: 0.42rem solid currentColor;
  border-radius: 0.55rem;
}
.brand-mark__module i {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 3px solid currentColor;
  border-radius: 50%;
  inset: auto 12% -0.85rem auto;
  background: inherit;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 7rem;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(to left, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size:
    calc(100vw / 12) 100%,
    100% 7rem;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero-inner {
  min-height: calc(100svh - 7rem);
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 49rem;
  padding-block: 3rem;
}
.hero-copy h1 {
  margin: 1.2rem 0 1.7rem;
  max-width: 12ch;
}
.hero-copy h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-copy p {
  max-width: 40rem;
  margin-bottom: 2.2rem;
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
  line-height: 2;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: min(66vh, 650px);
  color: var(--charcoal);
}
.hero-arc {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  inset: 4% auto auto 4%;
  border: clamp(2rem, 4vw, 4.3rem) solid var(--charcoal);
  border-inline-end-color: transparent;
  border-radius: 50%;
  transform: rotate(-6deg);
  animation: arc-in 1100ms var(--ease) both;
}
.hero-arc span {
  position: absolute;
  width: 11%;
  aspect-ratio: 1;
  background: var(--gold);
  border-radius: 50%;
  inset: auto 16% 2% auto;
}
.hero-photo {
  position: absolute;
  inset: 25% 14% 8% 5%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 1.5rem 3rem rgba(17, 20, 24, 0.12);
  animation: photo-in 1000ms 200ms var(--ease) both;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(43, 49, 56, 0.08),
    rgba(200, 143, 70, 0.09)
  );
  mix-blend-mode: multiply;
}
.hero-photo img {
  object-fit: cover;
}
.speed-lines {
  position: absolute;
  z-index: 3;
  inset: 12% 0 auto auto;
  width: 42%;
  display: grid;
  gap: 0.8rem;
}
.speed-lines i {
  height: 0.75rem;
  background: var(--gold);
  transform: skewX(-34deg);
  transform-origin: right;
  animation: line-in 900ms var(--ease) both;
}
.speed-lines i:nth-child(2) {
  width: 72%;
  animation-delay: 100ms;
}
.speed-lines i:nth-child(3) {
  width: 45%;
  animation-delay: 200ms;
}
.hero-module {
  position: absolute;
  inset: auto 0 4% auto;
  z-index: 4;
  width: 11rem;
  padding: 1.1rem;
  background: var(--deep);
  color: var(--ivory);
  border-radius: 0.35rem;
  display: grid;
  gap: 0.4rem;
  font: 600 0.58rem/1.3 var(--heading);
  letter-spacing: 0.12em;
}
.hero-module span + span {
  border-top: 1px solid var(--line-light);
  padding-top: 0.4rem;
}
.hero-baseline {
  grid-column: 1 / -1;
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  border-top: 1px solid var(--line);
  font-family: var(--heading);
  font-size: 0.73rem;
}
.hero-baseline i {
  width: 0.25rem;
  height: 0.25rem;
  background: var(--gold);
}
@keyframes arc-in {
  from {
    opacity: 0;
    transform: rotate(-40deg) scale(0.7);
  }
}
@keyframes photo-in {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
}
@keyframes line-in {
  from {
    opacity: 0;
    transform: translateX(5rem) skewX(-34deg);
  }
}

/* Home sections */
.intro-section {
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 8vw;
  align-items: start;
}
.intro-lead h2 {
  max-width: 12ch;
  margin: 0;
}
.intro-copy {
  padding-top: 5rem;
}
.intro-copy .lead-copy {
  color: var(--charcoal);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.9;
}
.intro-copy p:not(.lead-copy) {
  max-width: 36rem;
}
.intro-copy .text-link {
  margin-top: 1rem;
}
.business-paths {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 47rem;
}
.path {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.path--containers {
  color: var(--ivory);
}
.path--containers::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(17, 20, 24, 0.9),
    rgba(17, 20, 24, 0.05) 70%
  );
}
.path--supplies {
  background: var(--gold);
  color: var(--deep);
}
.path-number {
  font: 600 0.75rem/1 var(--heading);
}
.path-copy {
  z-index: 2;
  max-width: 33rem;
}
.path-copy > span {
  font: 600 0.75rem/1.4 var(--heading);
}
.path-copy h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(3.2rem, 6vw, 7rem);
}
.path-copy p {
  color: inherit;
  max-width: 30rem;
}
.path-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.path-image img {
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.path:hover .path-image img {
  transform: scale(1.04);
}
.path-arrow {
  position: absolute;
  inset: 3rem auto auto 3rem;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-style: normal;
  transition:
    transform 300ms var(--ease),
    background 300ms ease;
}
.path:hover .path-arrow {
  transform: translate(-0.25rem, 0.25rem);
  background: var(--ivory);
  color: var(--deep);
}
.path--supplies .brand-mark {
  position: absolute;
  width: 70%;
  inset: 3% auto auto -18%;
  opacity: 0.16;
  transform: rotate(10deg);
}
.engineered-section {
  background: var(--ivory);
}
.section-heading {
  margin-bottom: clamp(3rem, 6vw, 6rem);
  max-width: 60rem;
}
.section-heading h2 {
  margin: 1rem 0;
}
.section-heading p {
  max-width: 42rem;
  font-size: 1.05rem;
}
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.65fr;
  gap: 3rem;
  align-items: end;
}
.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}
.module-composition {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr 0.55fr;
  grid-template-rows: 15rem 17rem;
  gap: 0.75rem;
}
.module-photo {
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
}
.module-photo img {
  object-fit: cover;
}
.module-photo--large {
  grid-row: 1 / 3;
}
.module-photo--small {
  grid-column: 2;
}
.module-cell {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.45rem;
  font-family: var(--heading);
}
.module-cell span {
  font-size: 0.7rem;
}
.module-cell strong {
  font-size: clamp(1.3rem, 2vw, 2.15rem);
  line-height: 1.55;
}
.module-cell--gold {
  background: var(--gold);
  color: var(--deep);
}
.module-cell--outline {
  border: 1px solid var(--charcoal);
}
.module-link {
  grid-column: 3;
  background: var(--deep);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 0.45rem;
  font: 600 0.78rem/1.6 var(--heading);
}
.module-link span {
  color: var(--gold);
  font-size: 1.3rem;
}
.supplies-section {
  background: var(--deep);
  color: var(--ivory);
}
.supplies-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}
.supplies-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}
.supplies-intro h2 {
  margin: 1rem 0 1.5rem;
}
.supplies-intro p {
  color: #b8babc;
  max-width: 34rem;
}
.supply-row {
  min-height: 6.4rem;
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line-light);
  transition:
    padding 300ms var(--ease),
    color 300ms ease;
}
.supply-row:last-of-type {
  border-bottom: 1px solid var(--line-light);
}
.supply-row span {
  color: var(--gold);
  font: 600 0.7rem/1 var(--heading);
}
.supply-row strong {
  font: 600 clamp(1rem, 1.5vw, 1.4rem)/1.5 var(--heading);
}
.supply-row i {
  width: 0.75rem;
  height: 0.75rem;
  border-inline-end: 2px solid var(--gold);
  border-block-end: 2px solid var(--gold);
  transform: rotate(45deg);
}
.supply-row:hover {
  padding-inline: 1rem;
  color: var(--gold);
}
.matrix-note {
  margin-top: 1.25rem;
  color: #92979b;
  font-size: 0.8rem;
}
.why-section {
  background: var(--white);
}
.why-head {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.why-head .brand-mark {
  color: var(--charcoal);
}
.why-head h2 {
  max-width: 15ch;
  margin: 0.7rem 0 0;
}
.value-list {
  border-top: 1px solid var(--line);
}
.value-item {
  min-height: 8rem;
  display: grid;
  grid-template-columns: 6rem 0.8fr 1.2fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}
.value-item > span {
  color: var(--gold);
  font: 600 0.7rem/1 var(--heading);
}
.value-item h3,
.value-item p {
  margin: 0;
}
.value-item p {
  max-width: 30rem;
}
.sectors-section {
  background: var(--ivory);
}
.sector-explorer {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 38rem;
  border: 1px solid var(--line);
}
.sector-list {
  display: flex;
  flex-direction: column;
}
.sector-list button {
  flex: 1;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: right;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  transition:
    background 300ms ease,
    color 300ms ease;
}
.sector-list button:last-child {
  border-bottom: 0;
}
.sector-list button.is-active {
  background: var(--charcoal);
  color: var(--ivory);
}
.sector-list span {
  color: var(--gold);
  font-size: 0.7rem;
}
.sector-list strong {
  font: 600 clamp(1rem, 1.35vw, 1.35rem)/1.5 var(--heading);
}
.sector-list i {
  font-style: normal;
}
.sector-stage {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
}
.sector-stage img {
  object-fit: cover;
}
.sector-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 20, 24, 0.88), transparent 65%);
}
.sector-stage__overlay {
  position: absolute;
  z-index: 2;
  inset: auto 2.5rem 2.5rem;
  color: var(--ivory);
}
.sector-stage__overlay span {
  font: 600 clamp(1.3rem, 2.3vw, 2.25rem)/1.5 var(--heading);
}
.sector-stage__overlay p {
  color: #d7d4cc;
  max-width: 38rem;
  margin: 0.8rem 0 0;
}
.brand-break {
  min-height: 75vh;
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--deep);
  display: grid;
  place-items: center;
}
.brand-break__arc {
  position: absolute;
  width: min(72vw, 68rem);
  aspect-ratio: 1;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  border: clamp(3.5rem, 8vw, 8rem) solid var(--charcoal);
  border-inline-end-color: transparent;
  border-radius: 50%;
  transform: rotate(-8deg);
}
.brand-break__lines {
  position: absolute;
  inset: 25% 8% auto auto;
  width: 27%;
  display: grid;
  gap: 1rem;
}
.brand-break__lines i {
  height: 1rem;
  background: var(--ivory);
  transform: skewX(-35deg);
}
.brand-break__lines i:nth-child(2) {
  width: 75%;
}
.brand-break__lines i:nth-child(3) {
  width: 48%;
}
.brand-break p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--deep);
  text-align: center;
  font: 700 clamp(2.5rem, 6.8vw, 7rem)/1.5 var(--heading);
}
.brand-break p span {
  color: var(--ivory);
}
.process-section {
  background: var(--ivory);
}
.process-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  max-width: none;
}
.process-heading h2 {
  margin: 0;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process-step {
  position: relative;
  padding: 0 0 0 1.5rem;
}
.process-step > span {
  color: var(--gold);
  font: 600 0.7rem/1 var(--heading);
}
.process-step i {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0 2rem;
  position: relative;
}
.process-step i::after {
  content: "";
  position: absolute;
  inset: -0.28rem auto auto 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--gold);
}
.process-step h3 {
  margin-bottom: 0.7rem;
}
.process-step p {
  max-width: 16rem;
  font-size: 0.9rem;
}

/* Shared internal-page elements */
.page-hero {
  min-height: 72vh;
  padding: 10rem 0 5rem;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to left, var(--line) 1px, transparent 1px);
  background-size: calc(100vw / 12) 100%;
  opacity: 0.45;
}
.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 4rem;
}
.page-hero__copy h1 {
  max-width: 12ch;
  margin: 1rem 0 1.5rem;
  font-size: clamp(2.8rem, 5.6vw, 6.3rem);
}
.page-hero__copy p {
  max-width: 48rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}
.page-hero__visual {
  min-height: 19rem;
  position: relative;
  display: grid;
  place-items: center;
}
.page-hero__visual .brand-mark {
  width: min(25vw, 19rem);
  color: var(--charcoal);
  opacity: 0.95;
}
.page-index {
  position: absolute;
  inset: auto 0 0 auto;
  font: 600 0.7rem/1 var(--heading);
  color: var(--gold);
}
.closing-cta {
  background: var(--charcoal);
  color: var(--ivory);
  padding-block: clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}
.closing-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
}
.closing-cta .brand-mark {
  position: absolute;
  width: 34rem;
  inset: 50% auto auto -12rem;
  translate: 0 -50%;
  opacity: 0.08;
}
.closing-cta h2 {
  max-width: 15ch;
  margin: 0.8rem 0 1rem;
}
.closing-cta p {
  color: #c5c5c2;
  max-width: 42rem;
}
.closing-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

/* About */
.story-section {
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  align-items: center;
}
.story-copy h2 {
  margin: 0.8rem 0 1.5rem;
}
.story-copy p {
  font-size: 1.05rem;
}
.story-image {
  min-height: 38rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.story-image img {
  object-fit: cover;
}
.vision-section {
  background: var(--deep);
  color: var(--ivory);
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vision-item {
  padding: clamp(2rem, 5vw, 5rem);
  border-inline-start: 1px solid var(--line-light);
}
.vision-item:first-child {
  border-inline-start: 0;
}
.vision-item span {
  color: var(--gold);
  font: 600 0.72rem/1 var(--heading);
}
.vision-item h2 {
  margin: 2rem 0 0;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
}
.values-page-section {
  background: var(--ivory);
}
.process-section--light {
  background: var(--white);
}

/* Containers */
.container-showcase {
  padding-top: 4rem;
}
.showcase-grid {
  height: min(68vw, 48rem);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  grid-template-rows: 1fr auto;
  gap: 0.75rem;
}
.showcase-main,
.showcase-side {
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
}
.showcase-main {
  grid-row: 1 / 3;
}
.showcase-main img,
.showcase-side img {
  object-fit: cover;
}
.showcase-label {
  background: var(--gold);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--heading);
}
.showcase-label span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}
.use-section {
  background: var(--white);
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
}
.use-item {
  min-height: 22rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-inline-start: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 300ms ease,
    color 300ms ease;
}
.use-item > span {
  color: var(--gold);
  font: 600 0.7rem/1 var(--heading);
}
.use-item h3 {
  margin: auto 0 0.6rem;
  font-size: 1.6rem;
}
.use-item p {
  min-height: 5rem;
}
.use-item a {
  margin-top: 1rem;
  font: 600 0.7rem/1.4 var(--heading);
}
.use-item:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.use-item:hover p {
  color: #c9c9c6;
}
.detail-strip {
  background: var(--gold);
  padding-block: 0;
}
.detail-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.detail-strip__grid > div {
  min-height: 17rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-inline-start: 1px solid rgba(17, 20, 24, 0.2);
}
.detail-strip__grid > div:first-child {
  border-inline-start: 0;
}
.detail-strip span {
  font: 600 0.7rem/1 var(--heading);
}
.detail-strip strong {
  margin-top: auto;
  font: 600 1.2rem/1.6 var(--heading);
}
.detail-strip p {
  color: var(--deep);
  margin-bottom: 0;
}
.projects-glimpse {
  background: var(--ivory);
}
.photo-run {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 0.75rem;
  height: 32rem;
}
.photo-run > div {
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
}
.photo-run img {
  object-fit: cover;
}
.faq-section {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 7vw;
}
.faq-grid h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  list-style: none;
  font: 600 1rem/1.6 var(--heading);
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--gold);
  font-size: 1.5rem;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  padding-inline-end: 2rem;
  max-width: 45rem;
}

/* Supplies */
.supply-categories-page {
  background: var(--white);
}
.category-stack {
  border-top: 1px solid var(--line);
}
.category-line {
  min-height: 7rem;
  display: grid;
  grid-template-columns: 5rem 1fr 2rem;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  transition:
    padding 300ms var(--ease),
    background 300ms ease;
}
.category-line span {
  color: var(--gold);
  font: 600 0.7rem/1 var(--heading);
}
.category-line h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
}
.category-line i {
  width: 0.8rem;
  height: 0.8rem;
  border-block-end: 2px solid var(--gold);
  border-inline-end: 2px solid var(--gold);
  transform: rotate(45deg);
}
.category-line:hover {
  padding-inline: 1.5rem;
  background: var(--ivory);
}
.supply-break {
  background: var(--gold);
  min-height: 34rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.supply-break__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 0.65fr;
  align-items: center;
  gap: 4rem;
}
.supply-break .brand-mark {
  width: min(24vw, 19rem);
}
.supply-break p {
  margin: 0;
  color: var(--deep);
  font: 600 clamp(1.7rem, 3.5vw, 4rem)/1.65 var(--heading);
}
.supply-break p strong {
  color: var(--ivory);
}
.supply-ticket {
  background: var(--deep);
  color: var(--ivory);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  border-radius: 0.35rem;
  font: 600 0.63rem/1 var(--heading);
  letter-spacing: 0.1em;
}
.supply-ticket i {
  height: 1px;
  background: var(--line-light);
}
.request-flow {
  background: var(--ivory);
}
.request-steps {
  margin: 0 0 4rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
}
.request-steps li {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-inline-start: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.request-steps li > span {
  color: var(--gold);
  font: 600 0.7rem/1 var(--heading);
}
.request-steps li > div {
  margin-top: auto;
}
.request-steps h3 {
  margin-bottom: 0.5rem;
}
.request-steps p {
  margin: 0;
}
.boq-callout {
  display: grid;
  grid-template-columns: 0.45fr 0.8fr 1.2fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border-inline-start: 0.35rem solid var(--gold);
}
.boq-callout > span {
  color: var(--gold);
  font: 600 0.65rem/1 var(--heading);
  letter-spacing: 0.08em;
}
.boq-callout h3,
.boq-callout p {
  margin: 0;
}

/* Sectors page */
.sectors-page-list {
  background: var(--white);
}
.sector-story {
  min-height: 38rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  border-top: 1px solid var(--line);
}
.sector-story:last-child {
  border-bottom: 1px solid var(--line);
}
.sector-story:nth-child(even) .sector-story__copy {
  order: 2;
}
.sector-story:nth-child(even) .sector-story__image {
  order: 1;
}
.sector-story__copy {
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sector-story__copy > span {
  color: var(--gold);
  font: 600 0.7rem/1 var(--heading);
}
.sector-story__copy h2 {
  margin: 1rem 0;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
}
.sector-story__copy strong {
  color: var(--gold);
  font-family: var(--heading);
}
.sector-story__copy p {
  max-width: 34rem;
  margin-top: 1rem;
}
.sector-story__image {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
}
.sector-story__image img {
  object-fit: cover;
}
.sector-story__rail {
  writing-mode: vertical-rl;
  padding: 1.25rem 0.8rem;
  border-inline-start: 1px solid var(--line);
  color: var(--gray);
  font: 600 0.62rem/1 var(--heading);
}
.sector-note {
  background: var(--gold);
}
.sector-note h2 {
  max-width: 18ch;
  margin: 1rem 0;
}
.sector-note p {
  color: var(--deep);
}

/* Contact */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 7vw;
  align-items: start;
}
.contact-aside {
  position: sticky;
  top: 8rem;
}
.contact-aside h2 {
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  margin: 1rem 0 2rem;
}
.contact-aside ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.contact-aside li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 600;
}
.contact-aside li span {
  color: var(--gold);
  font-size: 0.7rem;
}
.pending-contact {
  margin-top: 2rem;
  padding: 1.4rem;
  background: var(--ivory);
  border-inline-start: 3px solid var(--gold);
}
.pending-contact strong {
  font-family: var(--heading);
}
.pending-contact p {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}
.quote-form {
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--ivory);
  border-radius: 0.5rem;
}
.form-intro h2 {
  margin: 0.8rem 0;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
}
.form-intro p {
  margin-bottom: 2.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-grid label {
  display: grid;
  gap: 0.55rem;
}
.form-grid label > span {
  font: 600 0.8rem/1.5 var(--heading);
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep);
  border-radius: 0.3rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}
.form-grid input,
.form-grid select {
  height: 3.3rem;
}
.form-grid textarea {
  resize: vertical;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 143, 70, 0.16);
}
.form-grid input:invalid:not(:placeholder-shown),
.form-grid textarea:invalid:not(:placeholder-shown) {
  border-color: #a44d3a;
}
.field-wide {
  grid-column: 1 / -1;
}
.file-field {
  padding: 1.2rem;
  border: 1px dashed var(--gray);
  border-radius: 0.3rem;
}
.file-field input {
  border: 0;
  padding: 0.6rem 0;
  background: transparent;
}
.file-field small {
  color: var(--gray);
}
.form-submit {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.form-status {
  margin: 0;
  font-size: 0.84rem;
  max-width: 36rem;
}
.form-status.is-ready {
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  border-inline-start: 3px solid var(--gold);
  background: var(--white);
}
.not-found {
  min-height: 80vh;
  padding: 10rem 5vw 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.not-found .brand-mark {
  width: 10rem;
  opacity: 0.15;
}
.not-found > span {
  color: var(--gold);
  font: 700 1rem/1 var(--heading);
}
.not-found h1 {
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 4rem);
}
.not-found > div {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.file-field {
  position: relative;
  cursor: pointer;
}
.file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.file-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  margin-block: 0.3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  border-radius: 0.3rem;
  font: 600 0.8rem/1.4 var(--heading);
}
.file-field:focus-within .file-trigger {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  background: var(--deep);
  color: var(--ivory);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.8fr 1fr;
  gap: 5vw;
  padding-bottom: 4rem;
}
.footer-brand img {
  width: 8rem;
  height: 6rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p {
  color: #aaaead;
  max-width: 24rem;
  font-size: 0.9rem;
}
.footer-label {
  color: var(--gold);
  font: 600 0.7rem/1 var(--heading);
}
.footer-links {
  display: grid;
  gap: 0.65rem;
}
.footer-links a {
  color: #cacbc8;
  font-size: 0.88rem;
  transition: color 200ms ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-note {
  color: #aaaead;
  font-size: 0.88rem;
}
.footer-bottom {
  min-height: 5rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #85898a;
  font-size: 0.72rem;
}

/* Static single-page refinements */
.hero-photo img,
.path-image img,
.module-photo img,
.sector-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  position: relative;
  z-index: 0;
}
.path-image img,
.module-photo img,
.sector-stage img {
  position: absolute;
  inset: 0;
}
.sector-stage img {
  transition:
    opacity 240ms ease,
    transform 500ms var(--ease);
}
.sector-stage img.is-changing {
  opacity: 0.18;
  transform: scale(1.025);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
}
.about-values span {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 99rem;
  color: var(--charcoal);
  font: 600 0.72rem/1.4 var(--heading);
}

#containers .use-grid {
  margin-top: 4.5rem;
}
.scope-note {
  margin: 1rem 0 0;
  color: var(--gray);
  font-size: 0.8rem;
}
.supplies-section .request-flow {
  margin-top: 6rem;
  padding: clamp(1.25rem, 3vw, 3rem);
  background: var(--ivory);
  color: var(--charcoal);
  border-radius: 0.45rem;
}
.supplies-section .request-steps {
  margin-bottom: 0;
}
.process-block {
  margin-top: clamp(5rem, 9vw, 9rem);
}
.sector-list button:focus-visible {
  outline-offset: -4px;
}
.desktop-nav a.is-active {
  color: var(--deep);
}
.desktop-nav a.is-active::after {
  width: 100%;
}
.quote-form .is-invalid {
  border-color: #a44d3a;
  box-shadow: 0 0 0 3px rgba(164, 77, 58, 0.12);
}
.closing-cta__inner > .button {
  position: relative;
  z-index: 1;
}
.site-logo img,
.footer-brand img {
  aspect-ratio: 1;
}

.direct-contact {
  padding: clamp(1.5rem, 4vw, 4rem);
  background: var(--ivory);
  border-top: 0.25rem solid var(--gold);
}
.direct-contact__intro h2 {
  max-width: 34rem;
  margin: 0.85rem 0;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
}
.direct-contact__intro p {
  max-width: 32rem;
  color: var(--gray);
}
.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}
.contact-channel {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 17rem;
  padding: 1.5rem;
  color: var(--ivory);
  background: var(--deep);
  overflow: hidden;
  transition:
    transform 240ms var(--ease),
    background 240ms ease;
}
.contact-channel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(247, 245, 240, 0.24);
  transition:
    inset 240ms var(--ease),
    border-color 240ms ease;
}
.contact-channel--whatsapp {
  background: var(--charcoal);
}
.contact-channel--phone {
  background: var(--gold);
  color: var(--deep);
}
.contact-channel--phone::before {
  border-color: rgba(17, 20, 24, 0.26);
}
.contact-channel:hover {
  transform: translateY(-0.35rem);
}
.contact-channel:hover::before {
  inset: 0.72rem;
  border-color: currentColor;
}
.contact-channel__type,
.contact-channel strong,
.contact-channel small,
.contact-channel > i,
.contact-channel__icon {
  position: relative;
  z-index: 1;
}
.contact-channel__icon {
  position: absolute;
  inset: 1.5rem auto auto 1.5rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font: 800 1.05rem/1 var(--heading);
}
.contact-channel__icon--whatsapp {
  background: var(--gold);
  color: var(--deep);
}
.contact-channel__icon--phone {
  background: var(--deep);
  color: var(--ivory);
  font-size: 1.05rem;
}
.contact-channel--phone .contact-channel__icon--phone {
  background: var(--ivory);
  color: var(--deep);
}
.contact-channel__icon i {
  position: static;
  font-style: normal;
}
.contact-channel__type {
  font: 600 0.72rem/1 var(--heading);
  color: var(--gold);
}
.contact-channel--phone .contact-channel__type {
  color: var(--deep);
}
.contact-channel strong {
  margin-top: 0.85rem;
  font: 700 clamp(1.05rem, 1.8vw, 1.55rem)/1.35 var(--heading);
  direction: ltr;
  text-align: right;
}
.contact-channel small {
  margin-top: 0.65rem;
  font-size: 0.82rem;
}
.contact-channel > i {
  position: absolute;
  inset: 1.5rem 1.5rem auto auto;
  font-size: 1.3rem;
  font-style: normal;
}
.contact-unavailable {
  margin-top: 1.25rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.contact-icon-pair {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.contact-icon-pair .contact-channel__icon {
  position: relative;
  inset: auto;
  flex: 0 0 auto;
}
.contact-unavailable span {
  color: var(--gold);
  font: 600 0.68rem/1 var(--heading);
}
.contact-unavailable h3 {
  margin: 0.7rem 0 0.4rem;
  font-size: 1.1rem;
}
.contact-unavailable p {
  margin: 0;
  color: var(--gray);
  font-size: 0.88rem;
}

.contact-dock {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 20;
  display: flex;
  gap: 0.55rem;
}
.contact-dock__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid rgba(247, 245, 240, 0.22);
  color: var(--ivory);
  background: var(--deep);
  box-shadow: 0 0.8rem 2rem rgba(17, 20, 24, 0.18);
  font: 600 0.76rem/1 var(--heading);
}
.contact-dock__link i {
  font-size: 1.15rem;
}
.contact-dock__link--whatsapp {
  background: #1f7a50;
}
.contact-dock__link--phone {
  background: var(--gold);
  color: var(--deep);
}

@media (max-width: 600px) {
  .contact-dock {
    right: 1rem;
    bottom: 1rem;
    gap: 0.4rem;
  }
  .contact-dock__link {
    width: 3.25rem;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
  .contact-dock__link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 1.1rem;
  }
  .desktop-nav a {
    font-size: 0.78rem;
  }
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero-visual {
    height: 55vh;
  }
  .split-heading {
    grid-template-columns: 0.45fr 1fr;
  }
  .split-heading > p {
    grid-column: 2;
  }
  .supplies-grid {
    gap: 5vw;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .contact-grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4vw;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(91vw, 760px);
    --space-section: clamp(4.5rem, 12vw, 7rem);
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 5.4rem 0 auto;
    height: 0;
    overflow: hidden;
    background: var(--ivory);
    transition: height 500ms var(--ease);
  }
  .mobile-menu.is-open {
    height: calc(100dvh - 5.4rem);
    border-top: 1px solid var(--line);
  }
  .mobile-menu nav {
    padding-block: 2rem;
    display: grid;
  }
  .mobile-menu nav > a:not(.button) {
    min-height: 4.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    font: 600 1.1rem/1 var(--heading);
  }
  .mobile-menu nav > a span {
    color: var(--gold);
    font-size: 0.65rem;
  }
  .mobile-menu .button {
    margin-top: 1.5rem;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 3rem;
  }
  .hero-copy {
    padding-bottom: 1rem;
  }
  .hero-copy h1 {
    font-size: clamp(3rem, 11vw, 5.2rem);
  }
  .hero-visual {
    height: 29rem;
  }
  .hero-photo {
    inset: 23% 15% 4% 2%;
  }
  .hero-baseline {
    margin-top: 2rem;
    flex-wrap: wrap;
    padding-block: 1rem;
  }
  .intro-grid,
  .story-grid,
  .supplies-grid,
  .page-hero__grid,
  .sector-explorer,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .intro-copy {
    padding-top: 0;
  }
  .business-paths {
    grid-template-columns: 1fr;
  }
  .path {
    min-height: 35rem;
  }
  .split-heading {
    display: block;
  }
  .split-heading > p {
    margin-top: 1rem;
  }
  .module-composition {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 22rem 12rem 12rem;
  }
  .module-photo--large {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .module-photo--small {
    grid-column: 1;
  }
  .module-link {
    grid-column: 2;
  }
  .supplies-intro,
  .contact-aside {
    position: static;
    margin-bottom: 3rem;
  }
  .why-head {
    grid-template-columns: 9rem 1fr;
    gap: 2rem;
  }
  .why-head .brand-mark {
    width: 9rem;
  }
  .value-item {
    grid-template-columns: 4rem 1fr;
    padding-block: 1.4rem;
  }
  .value-item p {
    grid-column: 2;
  }
  .sector-stage {
    min-height: 30rem;
  }
  .brand-break {
    min-height: 60vh;
  }
  .process-track,
  .use-grid,
  .detail-strip__grid,
  .request-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-step {
    margin-bottom: 2rem;
  }
  .page-hero {
    min-height: auto;
    padding-top: 9rem;
  }
  .page-hero__visual {
    min-height: 13rem;
    justify-items: start;
  }
  .page-hero__visual .brand-mark {
    width: 12rem;
  }
  .closing-cta__inner {
    grid-template-columns: 1fr;
  }
  .story-image {
    min-height: 30rem;
  }
  .showcase-grid {
    height: 42rem;
  }
  .photo-run {
    overflow-x: auto;
    grid-template-columns: repeat(3, min(72vw, 28rem));
    scroll-snap-type: x mandatory;
  }
  .photo-run > div {
    scroll-snap-align: start;
  }
  .supply-break__grid {
    grid-template-columns: 0.6fr 1.4fr;
  }
  .supply-break .supply-ticket {
    grid-column: 1 / -1;
  }
  .boq-callout {
    grid-template-columns: 1fr 1fr;
  }
  .boq-callout .button {
    justify-self: start;
  }
  .sector-story {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }
  .sector-story:nth-child(even) .sector-story__copy,
  .sector-story:nth-child(even) .sector-story__image {
    order: initial;
  }
  .sector-story__rail {
    display: none;
  }
  .contact-aside {
    position: relative;
    top: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 2rem);
    --radius: 0.45rem;
  }
  body {
    font-size: 15px;
  }
  .header-inner {
    height: 4.8rem;
  }
  .site-logo {
    width: 5.6rem;
    height: 3.5rem;
  }
  .mobile-menu {
    top: 4.8rem;
  }
  .mobile-menu.is-open {
    height: calc(100dvh - 4.8rem);
  }
  .button {
    min-height: 3rem;
    width: 100%;
  }
  .hero {
    padding-top: 5.5rem;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .text-link {
    justify-content: center;
  }
  .hero-visual {
    height: 22rem;
  }
  .hero-arc {
    width: 84%;
    border-width: 2rem;
  }
  .hero-photo {
    inset: 28% 12% 3% 0;
  }
  .speed-lines {
    top: 13%;
  }
  .hero-module {
    width: 8rem;
    padding: 0.75rem;
  }
  .hero-baseline {
    gap: 0.7rem;
    justify-content: space-between;
    font-size: 0.61rem;
  }
  .hero-baseline i {
    display: none;
  }
  .business-paths .path {
    min-height: 31rem;
    padding: 1.5rem;
  }
  .path-arrow {
    inset: 1.5rem auto auto 1.5rem;
  }
  .path-copy h2 {
    font-size: 3.5rem;
  }
  .module-composition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 18rem 10rem 10rem;
  }
  .module-cell {
    padding: 1.2rem;
  }
  .module-photo--small {
    grid-column: 1;
  }
  .module-link {
    grid-column: 2;
    padding: 1rem;
  }
  .why-head {
    grid-template-columns: 1fr;
  }
  .why-head .brand-mark {
    width: 7rem;
  }
  .value-item {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }
  .sector-list button {
    min-height: 5rem;
    padding: 0.8rem 1rem;
  }
  .sector-stage {
    min-height: 25rem;
  }
  .sector-stage__overlay {
    inset: auto 1.25rem 1.25rem;
  }
  .brand-break {
    min-height: 50vh;
  }
  .brand-break__arc {
    width: 110vw;
    border-width: 3.5rem;
  }
  .brand-break__lines {
    width: 34%;
    right: 3%;
  }
  .process-heading {
    display: block;
  }
  .process-track,
  .use-grid,
  .detail-strip__grid,
  .request-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    padding-left: 0;
  }
  .page-hero__copy h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .page-hero__visual {
    min-height: 9rem;
  }
  .page-hero__visual .brand-mark {
    width: 9rem;
  }
  .closing-cta__actions {
    width: 100%;
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .vision-item {
    border-inline-start: 0;
    border-bottom: 1px solid var(--line-light);
  }
  .showcase-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 24rem 12rem;
  }
  .showcase-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .showcase-side {
    grid-row: 2;
  }
  .showcase-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .use-item {
    min-height: 17rem;
  }
  .detail-strip__grid > div {
    min-height: 12rem;
  }
  .photo-run {
    height: 25rem;
  }
  .supply-break {
    padding-block: 4rem;
  }
  .supply-break__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .supply-break .brand-mark {
    width: 9rem;
  }
  .category-line {
    grid-template-columns: 2.5rem 1fr 1rem;
    gap: 0.5rem;
  }
  .request-steps li {
    min-height: 13rem;
  }
  .boq-callout {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .sector-story__copy {
    padding: 2rem 0;
  }
  .sector-story__image {
    min-height: 22rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .quote-form {
    padding: 1.25rem;
  }
  .form-submit {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-channels {
    grid-template-columns: 1fr;
  }
  .contact-channel {
    min-height: 13rem;
  }
  .not-found > div {
    flex-direction: column;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
  }
}

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

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--ivory);
}

.error-shell {
  width: min(42rem, calc(100% - 2rem));
  padding: clamp(2rem, 8vw, 5rem);
  text-align: center;
  border-block-start: 0.3rem solid var(--gold);
  background: #fff;
}

.error-shell img {
  width: 7rem;
  height: 7rem;
  margin-inline: auto;
  object-fit: contain;
}

.error-shell h1 {
  margin-block: 1.5rem 1rem;
}

.error-shell p:not(.section-kicker) {
  margin-block-end: 2rem;
  color: var(--gray);
}
