/* ═══════════════════════════════════════════════════════════
   WESTERN SUPPLY - style.css
   Design system: editorial, architectural, restrained premium
   ═══════════════════════════════════════════════════════════ */


/* ─── DESIGN TOKENS ──────────────────────────────────────── */

:root {
  /* Backgrounds */
  --bone:           #F4F0E8;
  --bone-light:     #FAF7F1;
  --bone-dark:      #ECE7DC;
  --charcoal:       #1C1C1A;
  --charcoal-elev:  #242422;
  --charcoal-foot:  #202020;

  /* Text */
  --ink:            #1C1C1A;
  --ink-2:          #3A3A37;
  --ink-3:          #6E6B64;
  --ink-inv:        #F4F0E8;
  --ink-inv-2:      #C8C4BB;

  /* Accent - Olive */
  --olive:          #5C6646;
  --olive-light:    #7A8462;
  --olive-deep:     #424B30;
  --olive-tint:     rgba(92, 102, 70, 0.06);

  /* Borders */
  --line:           #DDD8CD;
  --line-strong:    #C5BFB0;
  --line-inv:       rgba(244, 240, 232, 0.14);

  /* Typography */
  --serif:          'Fraunces', Georgia, serif;
  --sans:           'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container:      1200px;
  --pad-x:          32px;

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}


/* ─── RESET & BASE ───────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background-color: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

address {
  font-style: normal;
}


/* ─── CONTAINER ──────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}


/* ─── TYPOGRAPHY SCALE ───────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

h1, .h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-feature-settings: "ss01";
}

h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-feature-settings: "ss01";
}

h3, .h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* H4 now uses clamp() to scale fluidly like H1–H3.
   Previously fixed at 22px with a hard jump to 20px at mobile. */
h4, .h4 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
}

h5, .h5 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--ink);
}

.body-large {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--ink-2);
}

.body-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--ink-2);
}

.caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: var(--ink-3);
}

.stat-numeral {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "ss01", "tnum";
}


/* ─── SECTION HEADER (reusable) ──────────────────────────── */

.section-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  color: var(--olive);
  margin-bottom: 16px;
  display: block;
}

.section-header h2,
.section-header .h2 {
  margin-bottom: 24px;
}

.section-header .body-large {
  max-width: 580px;
}


/* ─── BUTTONS ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  height: 52px;
  padding: 0 28px;
  border-radius: 2px;
  transition: background-color 200ms var(--ease),
              border-color 200ms var(--ease),
              color 200ms var(--ease),
              opacity 150ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--charcoal);
  color: var(--ink-inv);
  border: 1px solid transparent;
}

.btn--primary:hover {
  background-color: #2E2E2C;
}

.btn--primary:active {
  background-color: #3A3A38;
  opacity: 0.9;
}

.btn--ghost {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background-color: var(--bone-dark);
}

.btn--ghost:active {
  opacity: 0.75;
}

.btn--olive {
  background-color: var(--olive);
  color: var(--ink-inv);
  border: 1px solid transparent;
  height: 56px;
}

.btn--olive:hover {
  background-color: var(--olive-light);
}

.btn--olive:active {
  opacity: 0.85;
}

.btn--inv-ghost {
  background-color: transparent;
  color: var(--ink-inv);
  border: 1px solid var(--line-inv);
}

.btn--inv-ghost:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.btn--full {
  width: 100%;
}


/* ─── FADE-UP ANIMATION ──────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up--delay {
  transition-delay: 120ms;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  background-color: var(--bone);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav__wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__dot {
  color: var(--olive);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  position: relative;
  padding-bottom: 2px;
  transition: color 200ms var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--olive);
  transition: width 200ms var(--ease);
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.nav__hamburger span {
  display: block;
  height: 1px;
  background-color: var(--ink);
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

.nav__hamburger.is-open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.is-open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}


/* Mobile drawer - role="dialog" aria-modal="true" signals modal to screen readers */
.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: var(--bone);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 48px;
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
}

.nav__drawer.is-open {
  transform: translateX(0);
}

.nav__drawer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav__drawer-links a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 200ms var(--ease);
}

.nav__drawer-links a:hover {
  color: var(--olive);
}

.nav__drawer-cta {
  padding-top: 32px;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background-color: rgba(28, 28, 26, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
}

.nav__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 01 - HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  background-color: var(--bone);
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero__capacity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.capacity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--olive);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

.hero__capacity .eyebrow {
  color: var(--olive);
}

.hero__headline {
  margin-bottom: 24px;
  max-width: 520px;
}

.hero__subtext {
  max-width: 460px;
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 24px;
}

.stat-item + .stat-item {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.stat-label {
  color: var(--ink-3);
}

.hero__right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 8px;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay-card {
  position: absolute;
  bottom: 32px;
  left: -32px;
  width: 240px;
  background-color: var(--bone);
  border: 1px solid var(--line);
  padding: 20px 24px;
}

.hero__overlay-card .eyebrow {
  color: var(--olive);
  margin-bottom: 10px;
  display: block;
}

.hero__card-line {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--ink-2);
  margin-top: 4px;
}

.hero__card-saving {
  font-weight: 500;
  color: var(--olive);
  margin-top: 8px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 02 - TRUST BAR
   ═══════════════════════════════════════════════════════════ */

.trust {
  background-color: var(--bone-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 80px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 24px;
}

.trust__item + .trust__item {
  border-left: 1px solid var(--line);
}

.trust__numeral {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "ss01", "tnum";
}

.trust__label {
  color: var(--ink-3);
}


/* ═══════════════════════════════════════════════════════════
   SECTION 03 - PROBLEM VS SOLUTION
   ═══════════════════════════════════════════════════════════ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split__half {
  display: flex;
  align-items: center;
}

.split__half--dark {
  background-color: var(--charcoal);
}

.split__half--light {
  background-color: var(--bone);
}

/* padding uses clamp() for fluid scaling - avoids the sharp jump from 96px
   to 64px that previously occurred at exactly the 1023px breakpoint */
.split__content {
  padding: clamp(48px, 8vw, 96px);
  max-width: 480px;
}

.split__eyebrow {
  color: var(--olive);
  margin-bottom: 24px;
  display: block;
}

.split__eyebrow--inv {
  color: var(--olive-light);
  margin-bottom: 24px;
  display: block;
}

.split__heading {
  color: var(--ink);
  margin-bottom: 40px;
}

.split__heading--inv {
  color: var(--ink-inv);
  margin-bottom: 40px;
}

.split__list {
  display: flex;
  flex-direction: column;
}

.split__list-item {
  display: flex;
  gap: 16px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
}

.split__list-item--inv {
  border-top-color: var(--line-inv);
}

.split__list-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.split__list-item--inv strong {
  color: var(--ink-inv);
}

.split__list-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

.split__list-item--inv p {
  color: var(--ink-inv-2);
}

.split__marker {
  flex-shrink: 0;
  margin-top: 3px;
}

.split__marker--dash {
  width: 24px;
  height: 1px;
  background-color: var(--olive-light);
  margin-top: 10px;
}

.split__marker--square {
  width: 6px;
  height: 6px;
  background-color: var(--olive);
  margin-top: 8px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 04 - SERVICES GRID
   ═══════════════════════════════════════════════════════════ */

.services {
  background-color: var(--bone);
  padding-block: 120px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.services__card {
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background-color 200ms var(--ease);
}

.services__card:hover {
  background-color: var(--bone-dark);
}

.services__card:nth-child(n+4) {
  border-top: 1px solid var(--line);
}

.services__card:nth-child(3n+2),
.services__card:nth-child(3n+3) {
  border-left: 1px solid var(--line);
}

.services__num {
  color: var(--olive);
  margin-bottom: 32px;
  display: block;
}

.services__card h3 {
  margin-bottom: 12px;
}

.services__card .body-small {
  flex: 1;
  max-width: 320px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 05 - PROCESS
   ═══════════════════════════════════════════════════════════ */

.process {
  background-color: var(--bone-light);
  padding-block: 120px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: var(--line);
  z-index: 0;
}

.process__step {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process__step:first-child {
  padding-left: 0;
}

.process__step:last-child {
  padding-right: 0;
}

.process__num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--olive);
  background-color: var(--bone-light);
  padding-right: 16px;
  display: inline-block;
  width: fit-content;
  font-feature-settings: "ss01", "tnum";
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.process__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.process__step .body-small {
  max-width: 240px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 06 - PROJECT CASE STUDY
   Structure: cinematic band → olive editorial → navigator → cinematic band
   ═══════════════════════════════════════════════════════════ */

/* ─── Cinematic image bands ──────────────────────────────── */

.project__band {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.project__band--bottom {
  height: 520px;
}

.project__band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.project__band-caption {
  position: absolute;
  bottom: 28px;
  left: var(--pad-x);
  background-color: rgba(244, 240, 232, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.project__band-caption .eyebrow {
  color: var(--olive);
}

.project__band-sep {
  width: 1px;
  height: 14px;
  background-color: var(--line-strong);
  flex-shrink: 0;
}

.project__band-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.4;
}


/* ─── Olive case study ───────────────────────────────────── */

.project__case {
  background-color: var(--olive);
}

.project__case-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: stretch;
}

.project__case-visual {
  position: relative;
  height: 100%;
}

.project__case-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.project__case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 560px;
}

.project__case-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: rgba(28, 28, 26, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 9px 16px;
}

.project__case-badge .eyebrow {
  color: rgba(244, 240, 232, 0.9);
  letter-spacing: 0.1em;
}

.project__case-content {
  padding-block: 72px 80px;
}

.project__case-eyebrow {
  color: rgba(244, 240, 232, 0.55);
  display: block;
  margin-bottom: 28px;
}

/* Illustrative cost model intro - replaces the fabricated testimonial blockquote */
.project__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.75);
  margin-bottom: 40px;
  max-width: 540px;
}

.project__quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bone);
  margin-bottom: 32px;
}

.project__financials {
  border-top: 1px solid rgba(244, 240, 232, 0.14);
}

.project__fin-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.1);
}

.project__fin-label {
  color: rgba(244, 240, 232, 0.5);
  flex-shrink: 0;
}

.project__fin-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--bone);
  font-feature-settings: "ss01", "tnum";
  white-space: nowrap;
}

.project__fin-saving {
  padding-top: 32px;
}

.project__fin-saving-label {
  color: rgba(244, 240, 232, 0.55);
  margin-bottom: 10px;
  display: block;
}

.project__fin-saving-num {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone);
  font-feature-settings: "ss01", "tnum";
  margin-bottom: 14px;
}

.project__fin-saving-sub {
  font-size: 13px;
  color: rgba(244, 240, 232, 0.5);
  line-height: 1.5;
}


/* ─── Project navigator bar ──────────────────────────────── */

.project__nav {
  background-color: var(--charcoal);
  border-top: 1px solid rgba(244, 240, 232, 0.06);
}

.project__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}

/* Project descriptor - replaces the previous project counter + disabled nav buttons */
.project__nav-descriptor {
  font-size: 13px;
  color: var(--ink-inv-2);
  letter-spacing: 0.02em;
  padding-block: 20px;
}

/* Services "coming soon" badge */
.services__coming {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  background-color: var(--bone-dark);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}

/* Pricing footer - note paragraph + CTA below the engagement card grid */
.pricing__footer {
  max-width: 720px;
}

.pricing__cta {
  margin-top: 28px;
}


/* ═══════════════════════════════════════════════════════════
   INTERSTITIAL - CONVERSION CTA BRIDGE
   ═══════════════════════════════════════════════════════════ */

.interstitial {
  background-color: var(--bone-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 52px;
}

.interstitial__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.interstitial__text {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.4;
  max-width: 560px;
}

.interstitial__btn {
  flex-shrink: 0;
}

/* Ghost button on bone-dark: override the global hover so it lifts
   to bone (lighter) rather than applying bone-dark over bone-dark (invisible) */
.interstitial .btn--ghost:hover {
  background-color: var(--bone);
  border-color: var(--ink);
}


/* ═══════════════════════════════════════════════════════════
   SECTION 07 - PRICING
   ═══════════════════════════════════════════════════════════ */

.pricing {
  background-color: var(--bone);
  padding-block: 120px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing__card {
  border: 1px solid var(--line);
  padding: 48px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
}

.pricing__card--featured {
  border-color: var(--olive);
  background-color: var(--olive-tint);
}

.pricing__card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--olive);
}

.pricing__tier {
  color: var(--olive);
  margin-bottom: 12px;
  display: block;
}

/* Visible recommendation badge - replaces the non-functional aria-label
   that was on the div (aria-label has no effect without a role). */
.pricing__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  background-color: rgba(92, 102, 70, 0.12);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.pricing__name {
  margin-bottom: 16px;
}

.pricing__desc {
  color: var(--ink-2);
  margin-bottom: 32px;
  flex: 1;
}

.pricing__note {
  max-width: 640px;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 08 - FAQ
   ═══════════════════════════════════════════════════════════ */

.faq {
  background-color: var(--bone-light);
  padding-block: 120px;
}

.faq__list {
  max-width: 800px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background-color 200ms var(--ease);
}

.faq__item:first-child {
  border-top: 1px solid var(--line);
}

/* Subtle background tint on open item aids scan-ability */
.faq__item.is-open {
  background-color: rgba(92, 102, 70, 0.025);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 32px;
  text-align: left;
  cursor: pointer;
  transition: color 200ms var(--ease);
}

.faq__question span:first-child {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.faq__icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--ink-3);
  transition: color 200ms var(--ease), transform 200ms var(--ease);
  flex-shrink: 0;
  line-height: 1;
}

.faq__item.is-open .faq__icon {
  color: var(--olive);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease), opacity 240ms var(--ease);
  opacity: 0;
}

.faq__item.is-open .faq__answer {
  max-height: 2000px;
  opacity: 1;
}

/* line-height changed from fixed 28px to ratio 1.75 - consistent with
   the ratio-based methodology used across body-large and body-small */
.faq__answer p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 640px;
  padding-bottom: 40px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 09 - CONTACT / CTA
   ═══════════════════════════════════════════════════════════ */

.contact {
  background-color: var(--charcoal);
  padding-block: 120px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__eyebrow {
  color: var(--olive-light);
  margin-bottom: 24px;
  display: block;
}

.contact__heading {
  color: var(--ink-inv);
  margin-bottom: 32px;
  max-width: 460px;
}

.contact__subtext {
  color: var(--ink-inv-2);
  max-width: 440px;
  margin-bottom: 64px;
}

.contact__details {
  margin-bottom: 48px;
}

.contact__detail-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-block: 20px;
  border-top: 1px solid var(--line-inv);
}

.contact__detail-label {
  color: rgba(244, 240, 232, 0.6);
}

.contact__detail-value {
  font-size: 16px;
  color: var(--ink-inv);
  transition: color 200ms var(--ease);
}

a.contact__detail-value:hover {
  color: var(--olive-light);
}

.contact__process-label {
  color: rgba(244, 240, 232, 0.5);
  margin-bottom: 16px;
  display: block;
}

.contact__process-steps {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__process-steps li {
  counter-increment: steps;
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-inv-2);
  padding-left: 28px;
  position: relative;
}

.contact__process-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--olive-light);
  width: 18px;
  text-align: center;
}

.contact__form-panel {
  background-color: var(--charcoal-elev);
  border: 1px solid var(--line-inv);
  padding: 48px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__required-note {
  font-size: 12px;
  color: rgba(244, 240, 232, 0.4);
  line-height: 1.4;
  margin-bottom: -8px;
}

.form__required-asterisk {
  color: rgba(244, 240, 232, 0.55);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__label {
  color: var(--ink-inv-2);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.form__required {
  color: rgba(244, 240, 232, 0.45);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form__label-note {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(244, 240, 232, 0.35);
}

.form__input {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-inv);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--line-inv);
  height: 48px;
  padding: 0;
  outline: none;
  transition: border-color 200ms var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus {
  border-bottom-color: var(--olive-light);
}

.form__input::placeholder {
  color: rgba(244, 240, 232, 0.28);
}

/* .form__input:invalid:not(:placeholder-shown) removed - `:invalid` fires immediately
   on email inputs as the user types, causing a red border before they finish.
   JS blur validation handles format errors more gracefully. */

.form__select {
  cursor: pointer;
  color: var(--ink-inv);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8C4BB' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
}

.form__select option {
  background-color: var(--charcoal-elev);
  color: var(--ink-inv);
}

.form__textarea {
  resize: vertical;
  height: auto;
  min-height: 96px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 0;
  border: none;
  border-bottom: 1px solid var(--line-inv);
}

.form__textarea:focus {
  border-bottom-color: var(--olive-light);
  outline: none;
}

/* ─── Form Error State (CSS-based, no inline styles) ──────── */

.form__error {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(220, 100, 80, 0.9);
  line-height: 1.4;
}

/* ─── File Upload Field ───────────────────────────────────── */

.form__upload {
  position: relative;
  cursor: pointer;
}

.form__upload-input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.form__upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 24px;
  border: 1px dashed var(--line-inv);
  text-align: center;
  transition: border-color 200ms var(--ease),
              background-color 200ms var(--ease);
}

.form__upload:hover .form__upload-zone,
.form__upload.has-file .form__upload-zone {
  border-color: var(--olive-light);
  background-color: rgba(92, 102, 70, 0.06);
}

.form__upload-arrow {
  font-size: 18px;
  line-height: 1;
  color: var(--ink-inv-2);
  display: block;
}

.form__upload-text {
  font-size: 14px;
  color: var(--ink-inv-2);
  line-height: 1.5;
}

.form__upload-browse {
  color: var(--olive-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__upload-hint {
  font-size: 12px;
  color: rgba(244, 240, 232, 0.35);
  line-height: 1;
  margin-top: 2px;
}

.form__upload-name {
  font-size: 13px;
  color: var(--olive-light);
  margin-top: 8px;
  min-height: 18px;
  text-align: center;
  line-height: 1.4;
}

/* ─── Form Success State ──────────────────────────────────── */

.form__success {
  text-align: center;
  padding: 48px 0;
}

.form__success-headline {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-inv);
  margin-bottom: 16px;
}

.form__success-body {
  font-size: 14px;
  color: var(--ink-inv-2);
  line-height: 22px;
  max-width: 360px;
  margin-inline: auto;
}

.form__note {
  font-size: 12px;
  line-height: 18px;
  color: rgba(244, 240, 232, 0.35);
  text-align: center;
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 10 - FOOTER
   Distinct background from contact section.
   ═══════════════════════════════════════════════════════════ */

.footer {
  background-color: var(--charcoal-foot);
  border-top: 1px solid rgba(244, 240, 232, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-block: 80px;
}

/* Footer wordmark is now an <a> - reset link decoration, display as block */
.footer__wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-inv);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  display: block;
  text-decoration: none;
}

.footer__dot {
  color: var(--olive);
}

.footer__tagline {
  color: var(--ink-inv-2);
  max-width: 280px;
}

/* footer__col-heading is now a <p> in HTML (changed from <h3>) to avoid
   polluting the heading outline with navigation labels */
.footer__col-heading {
  color: rgba(244, 240, 232, 0.5);
  margin-bottom: 20px;
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--ink-inv-2);
  transition: color 200ms var(--ease);
}

.footer__links a:hover {
  color: var(--ink-inv);
}

.footer__address {
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-inv-2);
  margin-bottom: 12px;
}

.footer__contact-link {
  display: block;
  font-size: 14px;
  color: var(--ink-inv-2);
  margin-bottom: 12px;
  transition: color 200ms var(--ease);
}

.footer__contact-link:hover {
  color: var(--ink-inv);
}

.footer__bottom {
  border-top: 1px solid var(--line-inv);
  padding-block: 32px;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__copy {
  color: rgba(244, 240, 232, 0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgba(244, 240, 232, 0.4);
  transition: color 200ms var(--ease);
}

.footer__legal a:hover {
  color: var(--ink-inv-2);
}


/* ─── MOBILE STICKY CTA ──────────────────────────────────── */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 20px;
  background-color: var(--bone);
  border-top: 1px solid var(--line);
  transition: opacity 300ms var(--ease);
}

.mobile-cta .btn {
  height: 56px;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - TABLET (768–1023px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {

  :root { --pad-x: 24px; }

  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__left { order: 1; }
  .hero__right { order: 2; justify-content: flex-start; }

  .hero__image-wrap {
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

  .hero__overlay-card {
    left: 0;
    bottom: 24px;
  }

  /* Trust bar: 2×2 layout */
  .trust { padding-block: 64px; }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .trust__item:nth-child(3) { border-left: none; }

  .trust__item:nth-child(3),
  .trust__item:nth-child(4) {
    border-top: 1px solid var(--line);
    padding-top: 48px;
  }

  /* Split - clamp() handles padding scaling; only max-width needs resetting */
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split__content { max-width: 100%; }

  /* Services */
  .services { padding-block: 80px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .services__card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .services__card:nth-child(3n+2),
  .services__card:nth-child(3n+3) { border-left: none; }
  .services__card:nth-child(even) { border-left: 1px solid var(--line); }

  /* Process */
  .process { padding-block: 80px; }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }

  .process__steps::before { display: none; }

  .process__step {
    padding: 0 32px 0 0;
  }

  /* Project case study */
  .project__band { height: 360px; }
  .project__band--bottom { height: 400px; }

  .project__case-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project__case-img {
    height: 440px;
    min-height: unset;
  }

  .project__case-content {
    padding-block: 56px 64px;
    max-width: 680px;
  }

  .project__nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-block: 20px;
  }

  /* Interstitial */
  .interstitial__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  /* Pricing */
  .pricing { padding-block: 80px; }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing__card { min-height: auto; }

  /* FAQ */
  .faq { padding-block: 80px; }

  /* Contact */
  .contact { padding-block: 96px; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE (<768px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  :root { --pad-x: 20px; }

  /* Typography - H4 clamp handles scaling; only override line-height here */
  h2, .h2 { line-height: 1.2; }
  h3, .h3 { font-size: 26px; }

  /* Nav */
  .nav { height: 64px; }

  /* Hero */
  .hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn {
    text-align: center;
    justify-content: center;
    padding: 0 20px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .hero__stats .stat-item:nth-child(3) {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .hero__overlay-card {
    display: none;
  }

  /* Trust */
  .trust { padding-block: 48px; }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__item { padding: 0 16px; }

  .trust__numeral { font-size: 36px; }

  /* Split - clamp provides padding; asymmetric override for mobile */
  .split__content { padding: 48px 20px; }

  /* Services */
  .services { padding-block: 64px; }

  .services__grid { grid-template-columns: 1fr; }

  .services__card {
    border: 1px solid var(--line);
    margin-bottom: 0;
    min-height: auto;
  }

  .services__card + .services__card {
    border-top: none;
  }

  .services__card:nth-child(even) {
    border-left: none;
  }

  /* Process */
  .process { padding-block: 64px; }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    padding-left: 48px;
  }

  .process__steps::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 16px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process__step { padding: 0; }

  .process__num {
    font-size: 28px;
    margin-bottom: 16px;
  }

  /* Project case study */
  .project__band { height: 260px; }
  .project__band--bottom { height: 320px; }

  .project__band-caption {
    bottom: 20px;
    gap: 8px;
    padding: 10px 14px;
  }

  .project__case-img {
    height: 300px;
    min-height: unset;
  }

  .project__case-content {
    padding-block: 40px 56px;
    max-width: 100%;
  }

  .project__fin-saving-num {
    font-size: clamp(44px, 12vw, 60px);
  }

  .project__nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-block: 16px;
  }

  /* Interstitial */
  .interstitial { padding-block: 40px; }

  .interstitial__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .interstitial__btn {
    width: 100%;
    justify-content: center;
  }

  /* Pricing */
  .pricing { padding-block: 64px; }
  .pricing__card { padding: 32px 24px; }

  /* FAQ */
  .faq { padding-block: 64px; }

  .faq__question span:first-child {
    font-size: 18px;
    line-height: 26px;
  }

  .faq__question {
    padding-block: 24px;
  }

  /* Contact */
  .contact { padding-block: 72px; }
  .contact__form-panel { padding: 24px; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 48px;
  }

  .footer__col--brand { grid-column: auto; }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Mobile sticky CTA */
  .mobile-cta { display: block; }

  body { padding-bottom: 80px; }

  .section-header { margin-bottom: 40px; }

}


/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY & UTILITIES
   ═══════════════════════════════════════════════════════════ */

/* Skip link - visible on keyboard focus, hidden otherwise */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 24px;
  background-color: var(--charcoal);
  color: var(--ink-inv);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  transition: top 200ms var(--ease);
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* Visually hidden - hides from sighted users but preserves screen reader access.
   Used for headings that label sections via aria-labelledby without visual duplication. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--olive-deep);
  outline-offset: 3px;
  border-radius: 1px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .capacity-dot {
    animation: none;
  }

  .faq__answer {
    transition: none;
  }

  .mobile-cta {
    transition: none;
  }
}

@media (prefers-color-scheme: dark) {
  /* Reserved - dark mode not yet implemented. Token system supports it. */
}


/* ═══════════════════════════════════════════════════════════
   SHARED INTERNAL PAGE UTILITIES
   ═══════════════════════════════════════════════════════════ */

/* Active nav link state - used on /capabilities and /about pages */
.nav__links a.is-active,
.nav__links a[aria-current="page"] {
  color: var(--ink);
}

.nav__links a.is-active::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
}

/* Services CTA - below the homepage capabilities teaser grid */
.services__cta {
  margin-top: 48px;
  text-align: left;
}


/* ═══════════════════════════════════════════════════════════
   PAGE HERO - shared pattern for internal pages
   ═══════════════════════════════════════════════════════════ */

.page-hero {
  background-color: var(--bone);
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.page-hero__eyebrow {
  color: var(--olive);
  margin-bottom: 16px;
  display: block;
}

.page-hero__heading {
  margin-bottom: 24px;
  max-width: 640px;
}

.page-hero__intro {
  max-width: 580px;
}


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE ABOUT BLOCK
   Between FAQ and contact sections.
   ═══════════════════════════════════════════════════════════ */

.about-block {
  background-color: var(--bone);
  padding-block: 120px;
  border-top: 1px solid var(--line);
}

.about-block__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.about-block__photo-wrap {
  position: relative;
}

.about-block__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  background-color: var(--bone-dark);
}

.about-block__eyebrow {
  color: var(--olive);
  display: block;
  margin-bottom: 16px;
}

.about-block__heading {
  margin-bottom: 36px;
}

.about-block__para {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.about-block__para:last-of-type {
  margin-bottom: 0;
}

.about-block__cta {
  margin-top: 40px;
}


/* ═══════════════════════════════════════════════════════════
   PAGE: /capabilities
   ═══════════════════════════════════════════════════════════ */

/* ─── Category editorial blocks ─────────────────────────── */

.cap__categories {
  background-color: var(--bone);
  padding-block: 120px;
}

.cap__cat-list {
  margin-top: 64px;
}

.cap__cat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.cap__cat-block:first-child {
  border-top: none;
  padding-top: 64px;
}

/* Reversed layout: image right, content left */
.cap__cat-block--reverse .cap__cat-visual {
  grid-column: 2;
  grid-row: 1;
}

.cap__cat-block--reverse .cap__cat-content {
  grid-column: 1;
  grid-row: 1;
}

.cap__cat-visual {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--bone-dark);
}

.cap__cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease);
}

.cap__cat-block:hover .cap__cat-img {
  transform: scale(1.025);
}

.cap__cat-content {
  max-width: 520px;
}

.cap__cat-num {
  color: var(--olive);
  display: block;
  margin-bottom: 8px;
}

.cap__cat-status-live {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
  background-color: rgba(92, 102, 70, 0.1);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.cap__cat-status-coming {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  background-color: var(--bone-dark);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.cap__cat-name {
  margin-bottom: 20px;
}

.cap__cat-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.cap__cat-content p:last-child {
  margin-bottom: 0;
}


/* ─── Operations prose grid ──────────────────────────────── */

.cap__operations {
  background-color: var(--bone-light);
  padding-block: 120px;
}

.cap__ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
  margin-top: 64px;
}

.cap__op-block {
  padding-top: 40px;
  padding-bottom: 52px;
  border-top: 1px solid var(--line);
}

.cap__op-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.cap__op-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 14px;
}

.cap__op-block p:last-child {
  margin-bottom: 0;
}


/* ─── Lead time timeline ─────────────────────────────────── */

.cap__timeline-section {
  background-color: var(--bone-dark);
  padding-block: 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cap__timeline-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
  margin-top: 56px;
}

.cap__timeline {
  display: flex;
  align-items: flex-start;
  list-style: none;
  position: relative;
  min-width: 680px;
  padding-bottom: 8px;
}

/* Single horizontal connecting line behind all nodes */
.cap__timeline::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 12px;
  right: 12px;
  height: 1px;
  background-color: var(--line-strong);
  z-index: 0;
}

.cap__timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.cap__timeline-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--bone-dark);
  border: 2px solid var(--line-strong);
  flex-shrink: 0;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

/* Olive accent on duration steps (manufacturing, freight) */
.cap__timeline-node--accent {
  background-color: var(--olive);
  border-color: var(--olive);
}

/* Final delivery node in charcoal */
.cap__timeline-node--final {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
}

.cap__timeline-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
}

.cap__timeline-dur {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--olive);
  text-align: center;
  margin-top: 5px;
  line-height: 1.3;
}

.cap__timeline-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
  margin-top: 32px;
  max-width: 640px;
}


/* ─── Capabilities closing CTA ───────────────────────────── */

.cap__closing-cta {
  background-color: var(--charcoal);
  padding-block: 120px;
}

.cap__closing-cta-inner {
  max-width: 640px;
}

.cap__closing-eyebrow {
  color: var(--olive-light);
  display: block;
  margin-bottom: 16px;
}

.cap__closing-heading {
  color: var(--ink-inv);
  margin-bottom: 24px;
}

.cap__closing-body {
  color: var(--ink-inv-2);
  margin-bottom: 40px;
}


/* ═══════════════════════════════════════════════════════════
   PAGE: /about
   ═══════════════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────────────── */

.about__hero {
  background-color: var(--charcoal);
  padding-top: 80px;
  padding-bottom: 80px;
}

.about__hero-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.about__founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  background-color: var(--charcoal-elev);
}

.about__hero-eyebrow {
  color: var(--olive-light);
  display: block;
  margin-bottom: 20px;
}

.about__hero-heading {
  color: var(--ink-inv);
  margin-bottom: 24px;
}

.about__hero-standfirst {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-inv-2);
}


/* ─── Body sections ──────────────────────────────────────── */

.about__section {
  background-color: var(--bone);
  padding-block: 96px;
  border-top: 1px solid var(--line);
}

.about__section--alt {
  background-color: var(--bone-light);
}

.about__section-eyebrow {
  color: var(--olive);
  display: block;
  margin-bottom: 12px;
}

.about__section-heading {
  margin-bottom: 40px;
  max-width: 560px;
}

.about__section-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 720px;
  margin-bottom: 22px;
}

.about__section-body p:last-child {
  margin-bottom: 0;
}


/* ─── Credentials ────────────────────────────────────────── */

.about__credentials {
  background-color: var(--bone-dark);
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.about__cred-heading {
  margin-bottom: 48px;
  max-width: 480px;
}

.about__cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about__cred-item {
  padding-block: 24px;
  padding-right: 24px;
  border-top: 1px solid var(--line-strong);
}

.about__cred-label {
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}

.about__cred-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}


/* ─── Direct contact ─────────────────────────────────────── */

.about__direct-contact {
  background-color: var(--charcoal);
  padding-block: 80px;
}

.about__contact-eyebrow {
  color: var(--olive-light);
  display: block;
  margin-bottom: 12px;
}

.about__contact-heading {
  color: var(--ink-inv);
  margin-bottom: 48px;
  max-width: 480px;
}

.about__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.about__contact-item {
  padding-block: 24px;
  padding-right: 32px;
  border-top: 1px solid var(--line-inv);
}

.about__contact-label {
  color: rgba(244, 240, 232, 0.6);
  display: block;
  margin-bottom: 10px;
}

.about__contact-value {
  font-size: 16px;
  color: var(--ink-inv);
  line-height: 1.5;
  word-break: break-word;
  transition: color 200ms var(--ease);
  display: block;
}

a.about__contact-value:hover {
  color: var(--olive-light);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - NEW COMPONENTS: TABLET (max 1023px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {

  /* Homepage about block */
  .about-block {
    padding-block: 80px;
  }

  .about-block__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-block__photo {
    aspect-ratio: 4 / 3;
    max-width: 480px;
  }

  /* Page hero */
  .page-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Capabilities category blocks - stack at tablet */
  .cap__categories {
    padding-block: 80px;
  }

  .cap__cat-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 64px;
  }

  /* Reset grid position overrides so stacked layout is natural */
  .cap__cat-block--reverse .cap__cat-visual,
  .cap__cat-block--reverse .cap__cat-content {
    grid-column: auto;
    grid-row: auto;
  }

  .cap__cat-content {
    max-width: 100%;
  }

  /* Operations grid - single column at tablet */
  .cap__operations {
    padding-block: 80px;
  }

  .cap__ops-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .cap__op-block p {
    max-width: 100%;
  }

  /* Timeline section */
  .cap__timeline-section {
    padding-block: 72px;
  }

  /* About page hero */
  .about__hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__founder-photo {
    max-width: 400px;
    aspect-ratio: 4 / 3;
  }

  .about__section {
    padding-block: 72px;
  }

  /* Credentials: 2-col at tablet */
  .about__cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Direct contact: 2-col at tablet */
  .about__contact-grid {
    grid-template-columns: 1fr 1fr;
  }

}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - NEW COMPONENTS: MOBILE (max 767px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* Services CTA */
  .services__cta {
    text-align: left;
  }

  /* Homepage about block */
  .about-block {
    padding-block: 64px;
  }

  .about-block__photo {
    max-width: 100%;
  }

  /* Page hero */
  .page-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Capabilities */
  .cap__categories {
    padding-block: 64px;
  }

  .cap__cat-block {
    padding-block: 48px;
    gap: 32px;
  }

  .cap__cat-block:first-child {
    padding-top: 40px;
  }

  .cap__cat-visual {
    aspect-ratio: 4 / 3;
  }

  .cap__operations {
    padding-block: 64px;
  }

  .cap__ops-grid {
    margin-top: 40px;
  }

  .cap__timeline-section {
    padding-block: 64px;
  }

  .cap__timeline-wrap {
    margin-top: 40px;
  }

  .cap__timeline-note {
    max-width: 100%;
  }

  .cap__closing-cta {
    padding-block: 80px;
  }

  /* About page */
  .about__hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about__hero-standfirst {
    font-size: 16px;
  }

  .about__section {
    padding-block: 64px;
  }

  .about__credentials {
    padding-block: 64px;
  }

  .about__cred-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about__direct-contact {
    padding-block: 64px;
  }

  .about__contact-grid {
    grid-template-columns: 1fr;
  }

  .about__contact-item {
    padding-right: 0;
  }

}


/* ═══════════════════════════════════════════════════════════
   CTA BAND
   Replaces the full contact section on the homepage.
   ═══════════════════════════════════════════════════════════ */

.cta-band {
  background-color: var(--charcoal);
  padding-block: 96px;
}

.cta-band__eyebrow {
  color: var(--olive-light);
  display: block;
  margin-bottom: 16px;
}

.cta-band__heading {
  color: var(--ink-inv);
  margin-bottom: 20px;
  max-width: 560px;
}

.cta-band__body {
  color: var(--ink-inv-2);
  max-width: 520px;
  margin-bottom: 40px;
}

.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .cta-band {
    padding-block: 72px;
  }

  .cta-band__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band__actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════
   ENQUIRY TRUST COLUMN
   Right column on /contact page alongside the form.
   ═══════════════════════════════════════════════════════════ */

.enquiry-trust {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 48px;
}

.enquiry-trust__block {
  padding-block: 32px;
  border-top: 1px solid var(--line-inv);
}

.enquiry-trust__block:first-child {
  padding-top: 0;
  border-top: none;
}

.enquiry-trust__label {
  color: rgba(244, 240, 232, 0.6);
  margin-bottom: 12px;
  display: block;
}

.enquiry-trust__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-inv-2);
}

.enquiry-trust__contact {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}

.enquiry-trust__reassurance {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244, 240, 232, 0.45);
  font-style: italic;
}

.enquiry-trust__block--note {
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .enquiry-trust {
    padding-top: 0;
  }
}


/* ═══════════════════════════════════════════════════════════
   FAQ VARIANT - CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */

.faq--contact {
  background-color: var(--bone);
  border-top: 1px solid var(--line);
}


/* ═══════════════════════════════════════════════════════════
   FOUNDER SIGN-OFF
   Personal commitment at base of /contact page.
   ═══════════════════════════════════════════════════════════ */

.founder-sign {
  background-color: var(--bone-light);
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.founder-sign__inner {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 640px;
}

.founder-sign__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background-color: var(--bone-dark);
  flex-shrink: 0;
}

.founder-sign__quote {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 19px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.founder-sign__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.founder-sign__role {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

@media (max-width: 767px) {
  .founder-sign {
    padding-block: 64px;
  }

  .founder-sign__inner {
    grid-template-columns: 72px 1fr;
    gap: 24px;
  }

  .founder-sign__photo {
    width: 72px;
    height: 72px;
  }
}


/* ═══════════════════════════════════════════════════════════
   LEGAL CONTENT
   Used on /privacy-policy and /terms-of-service
   ═══════════════════════════════════════════════════════════ */

.legal-content {
  padding-block: 72px 96px;
  background-color: var(--bone-light);
}

.legal-content__body {
  max-width: 680px;
}

.legal-content__body h2 {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 56px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.legal-content__body h2:first-child {
  margin-top: 0;
}

.legal-content__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.legal-content__body ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content__body ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.legal-content__body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content__body a:hover {
  color: var(--olive);
}

@media (max-width: 767px) {
  .legal-content {
    padding-block: 48px 72px;
  }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — VISUAL CREDIBILITY ADDITIONS
   ═══════════════════════════════════════════════════════════ */


/* ── Hero location caption ─────────────────────────────── */

.about__hero-location {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.35);
}


/* ── Editorial full-width image (problem section) ───────── */

.about__editorial-img {
  margin-top: 56px;
  margin-bottom: 0;
}

.about__editorial-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 3px;
}

.about__editorial-img figcaption {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}


/* ── Background 2-column grid ───────────────────────────── */

.about__bg-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
  margin-top: 40px;
}

.about__bg-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.about__bg-text p:last-child {
  margin-bottom: 0;
}

.about__bg-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__bg-img-wrap {
  margin: 0;
}

.about__bg-img-wrap--bottom {
  margin-top: 32px;
}

.about__bg-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.about__bg-img-wrap figcaption {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 1023px) {
  .about__bg-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__bg-images {
    flex-direction: row;
    gap: 16px;
  }

  .about__bg-img-wrap--bottom {
    margin-top: 0;
  }

  .about__bg-img-wrap img {
    max-height: 280px;
  }
}

@media (max-width: 767px) {
  .about__bg-images {
    flex-direction: column;
    gap: 20px;
  }
}


/* ── Metrics strip (why now section) ────────────────────── */

.about__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.about__metric {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.about__metric:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}

.about__metric:nth-child(2) {
  padding-left: 32px;
}

.about__metric-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
}

.about__metric-label {
  display: block;
  color: var(--ink-3);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .about__metrics {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 32px;
    margin-top: 40px;
  }

  .about__metric {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .about__metric:last-child {
    border-bottom: none;
    padding-left: 0;
  }

  .about__metric:nth-child(2) {
    padding-left: 0;
  }
}


/* ── Commitments 2-column grid ──────────────────────────── */

.about__commit-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start;
  margin-top: 32px;
}

.about__commit-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.about__commit-text p:last-child {
  margin-bottom: 0;
}

.about__commit-img-wrap {
  margin: 0;
  position: sticky;
  top: calc(var(--nav-height, 72px) + 24px);
}

.about__commit-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.about__commit-img-wrap figcaption {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 1023px) {
  .about__commit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__commit-img-wrap {
    position: static;
    max-width: 400px;
  }
}


/* ── Category strip (direction section) ─────────────────── */

.about__category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.about__cat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__cat-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}

.about__cat-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.85);
}

.about__cat-item:hover .about__cat-img-wrap img {
  transform: scale(1.03);
  filter: saturate(1);
}

.about__cat-label {
  color: var(--ink-3);
}

@media (max-width: 767px) {
  .about__category-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 40px;
  }
}


/* ── Contact section subtle texture overlay ─────────────── */

.about__direct-contact--textured {
  position: relative;
}

.about__direct-contact--textured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='1' cy='1' r='0.5' fill='%23ffffff' opacity='0.03'/%3E%3Ccircle cx='31' cy='31' r='0.5' fill='%23ffffff' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

.about__direct-contact--textured .container {
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT — PROBLEM SECTION TWO-COLUMN LAYOUT
   Image left, text right. Alternates with background section
   (text left, image right) and commitments (image left, text right).
   ═══════════════════════════════════════════════════════════ */

.about__problem-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.about__problem-img {
  margin: 0;
  position: sticky;
  top: calc(var(--nav-height, 72px) + 24px);
}

.about__problem-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}

.about__problem-img figcaption {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.about__problem-text .about__section-eyebrow {
  margin-bottom: 10px;
}

.about__problem-text .about__section-heading {
  margin-bottom: 28px;
}

.about__problem-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.about__problem-text p:last-child {
  margin-bottom: 0;
}

/* Mobile: text first, image second */
@media (max-width: 1023px) {
  .about__problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__problem-img {
    position: static;
    order: 2;
  }

  .about__problem-text {
    order: 1;
  }

  .about__problem-img img {
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 767px) {
  .about__problem-grid {
    gap: 36px;
  }

  .about__problem-img img {
    max-height: 360px;
  }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT — COMMITMENTS GRID REVERSE (image left, text right)
   ═══════════════════════════════════════════════════════════ */

.about__commit-grid--reverse .about__commit-img-wrap {
  order: -1;
}

@media (max-width: 1023px) {
  .about__commit-grid--reverse .about__commit-img-wrap {
    order: 0;
  }
}
