/* ==========================================================================
   JAEKA — Fixed Plant Engineering Design & Project Management
   styles.css — global stylesheet
   --------------------------------------------------------------------------
   Structure:
     00. Fonts (self-hosted @font-face)
     01. Design tokens (change the palette here — nothing else)
     02. Reset & base
     03. Typography
     04. Layout primitives
     05. Buttons & links
     06. Header / navigation
     07. Hero
     08. Sections (intro, services, feature band, industries, projects)
     09. Call-to-action bands
     10. Footer
     11. Motion & reveal
     12. Utilities
     13. Print
     14. Phase 2 components (page heroes, anchor nav, pillar bands,
         criteria grid, optioneering gallery, sector bands, contact form)
   ========================================================================== */

/* ==========================================================================
   00. FONTS — self-hosted
   --------------------------------------------------------------------------
   The seven .woff2 files live in assets/fonts/ and are served from this
   domain. No request goes to Google, or to any other third party.

   To (re)obtain the files: gwfh.mranftl.com — pick Barlow Condensed
   (500, 600, 700) and Inter (400, 500, 600, 700), choose "Modern Browsers"
   for woff2, then RENAME each file to the names below. The renaming matters:
   the tool's own filenames carry a version number that changes between
   releases, which would silently break these rules on the next update.

   If a file is missing the browser falls through to the fallback stack in
   §01 (Arial Narrow / system sans). Nothing errors — the page just looks
   plainer, which is the quickest way to spot a filename mismatch.
   ========================================================================== */

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/barlow-condensed-500.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/barlow-condensed-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/barlow-condensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/inter-700.woff2") format("woff2");
}

/* ==========================================================================
   01. DESIGN TOKENS
   --------------------------------------------------------------------------
   Palette: "Pilbara ochre + charcoal", drawn from the site photography.
   To re-skin the entire site, edit only the --c-* values below.
   ========================================================================== */

:root {
  /* --- Core palette ----------------------------------------------------- */
  --c-ink:          #16130F;  /* deepest — hero scrim, footer                */
  --c-charcoal:     #221E19;  /* primary dark surface                        */
  --c-charcoal-2:   #332C24;  /* raised dark surface, borders on dark        */
  --c-charcoal-3:   #4A4034;  /* muted text on dark                          */

  --c-rust:         #A63C15;  /* primary accent — buttons, rules, emphasis   */
  --c-rust-dark:    #822D0F;  /* accent hover                                */
  --c-ember:        #D97C3F;  /* light accent — on dark backgrounds only     */

  --c-sand:         #E4D9C9;  /* warm mid neutral — borders, dividers        */
  --c-sand-light:   #F0E9DE;  /* tinted section background                   */
  --c-bone:         #FAF7F2;  /* page background                             */
  --c-white:        #FFFFFF;

  --c-spinifex:     #6B7561;  /* muted olive — secondary accent, sparing     */
  --c-sand-deep:    #947D5D;  /* step numerals — meets 3:1 as large text     */

  /* --- Semantic assignments --------------------------------------------- */
  --c-bg:           var(--c-bone);
  --c-bg-alt:       var(--c-sand-light);
  --c-bg-dark:      var(--c-charcoal);
  --c-text:         #2A2520;                 /* body copy on light          */
  --c-text-muted:   #5C544B;                 /* secondary copy on light     */
  --c-text-invert:  #F4EFE8;                 /* body copy on dark           */
  --c-text-invert-muted: #BFB4A6;
  --c-border:       #DCD2C4;
  --c-border-dark:  rgba(255, 255, 255, 0.14);

  /* --- Typography -------------------------------------------------------- */
  --font-display: "Barlow Condensed", "Oswald", "Arial Narrow", -apple-system,
                  BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale — clamp(min, preferred, max) */
  --fs-xs:    0.78rem;
  --fs-sm:    0.875rem;
  --fs-base:  clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --fs-lg:    clamp(1.125rem, 1.07rem + 0.28vw, 1.3125rem);
  --fs-xl:    clamp(1.35rem, 1.2rem + 0.75vw, 1.75rem);
  --fs-h3:    clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --fs-h2:    clamp(1.9rem, 1.55rem + 1.6vw, 3rem);
  --fs-h1:    clamp(2.35rem, 1.7rem + 2.9vw, 4.25rem);
  --fs-eyebrow: 0.8125rem;

  --lh-tight: 1.06;
  --lh-snug:  1.25;
  --lh-base:  1.65;

  /* --- Spacing scale ------------------------------------------------------ */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.5rem;
  --sp-6:  2rem;
  --sp-7:  3rem;
  --sp-8:  4rem;
  --sp-9:  6rem;
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* --- Layout ------------------------------------------------------------- */
  --container:      1240px;
  --container-narrow: 860px;
  --gutter:         clamp(1.25rem, 0.8rem + 2.2vw, 2.75rem);
  --header-h:       76px;

  /* --- Effects ------------------------------------------------------------ */
  --radius:      2px;      /* deliberately sharp — industrial, not soft      */
  --radius-lg:   3px;
  --shadow-sm:   0 1px 2px rgba(22, 19, 15, 0.06),
                 0 2px 8px rgba(22, 19, 15, 0.05);
  --shadow-md:   0 2px 4px rgba(22, 19, 15, 0.07),
                 0 12px 28px rgba(22, 19, 15, 0.10);
  --shadow-lg:   0 4px 8px rgba(22, 19, 15, 0.08),
                 0 24px 56px rgba(22, 19, 15, 0.14);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur:         0.32s;
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--c-rust);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.on-dark :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible { outline-color: var(--c-ember); }

::selection { background: var(--c-rust); color: #fff; }

/* Skip link — first tab stop for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  z-index: 999;
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-rust);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.005em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-lg); line-height: var(--lh-snug); }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-rust); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c-rust-dark); }

strong { font-weight: 650; color: var(--c-charcoal); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: 0 0 var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rust);
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--c-rust);
  flex: none;
}
.on-dark .eyebrow { color: var(--c-ember); }
.on-dark .eyebrow::before { background: var(--c-ember); }
.eyebrow--center { justify-content: center; }

.lede {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--c-text-muted);
}
.on-dark .lede { color: var(--c-text-invert-muted); }

.section-head { max-width: 62ch; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 + .lede { margin-top: var(--sp-4); }

/* ==========================================================================
   04. LAYOUT PRIMITIVES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--alt  { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg-dark); color: var(--c-text-invert); }
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: var(--c-white); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Thin rust rule used as a section separator */
.rule {
  height: 3px;
  width: 56px;
  background: var(--c-rust);
  border: 0;
  margin: 0 0 var(--sp-5);
}

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

.btn {
  --btn-bg: var(--c-rust);
  --btn-fg: #fff;
  --btn-bd: var(--c-rust);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0.95rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform 0.18s var(--ease);
}
.btn:hover {
  --btn-bg: var(--c-rust-dark);
  --btn-bd: var(--c-rust-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--c-charcoal); --btn-bd: var(--c-charcoal); }
.btn--ghost:hover { --btn-bg: var(--c-charcoal); --btn-fg: #fff; --btn-bd: var(--c-charcoal); color: #fff; }

.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.55); }
.btn--ghost-light:hover { --btn-bg: #fff; --btn-fg: var(--c-charcoal); --btn-bd: #fff; color: var(--c-charcoal); }

.btn--sm { padding: 0.6rem 1.15rem; font-size: var(--fs-xs); }

.btn .icon { width: 1em; height: 1em; flex: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* Inline "text link with arrow" */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-rust);
}
.link-arrow::after {
  content: "";
  width: 1.15em; height: 1.15em;
  background: currentColor;
  -webkit-mask: var(--arrow-mask) center / contain no-repeat;
          mask: var(--arrow-mask) center / contain no-repeat;
  transition: transform var(--dur) var(--ease);
}
.link-arrow:hover::after { transform: translateX(5px); }
.on-dark .link-arrow { color: var(--c-ember); }

:root {
  --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
}

/* ==========================================================================
   06. HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease),
              border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
/* Solid state — applied by JS on scroll, and always on interior pages */
.site-header.is-solid,
.site-header--solid {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

/* --- Logo ---------------------------------------------------------------- */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  flex: none;
}
.logo__mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--c-white);
  transition: color 0.35s var(--ease);
}
.logo__mark .dot { color: var(--c-ember); }
.logo__tag {
  display: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.35s var(--ease);
}
@media (min-width: 1100px) { .logo__tag { display: inline; } }

.is-solid .logo__mark, .site-header--solid .logo__mark { color: var(--c-charcoal); }
.is-solid .logo__mark .dot, .site-header--solid .logo__mark .dot { color: var(--c-rust); }
.is-solid .logo__tag, .site-header--solid .logo__tag { color: var(--c-text-muted); }

/* --- Nav ----------------------------------------------------------------- */
.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: clamp(1rem, 0.3rem + 1.4vw, 2rem); }
}
.nav a {
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--c-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.is-solid .nav a, .site-header--solid .nav a { color: var(--c-text-muted); }
.is-solid .nav a:hover, .is-solid .nav a[aria-current="page"],
.site-header--solid .nav a:hover,
.site-header--solid .nav a[aria-current="page"] { color: var(--c-charcoal); }
.is-solid .nav a::after, .site-header--solid .nav a::after { background: var(--c-rust); }

.header-actions { display: flex; align-items: center; gap: var(--sp-4); }
.header-cta { display: none; white-space: nowrap; }
@media (min-width: 1000px) { .header-cta { display: inline-flex; } }

.is-solid .header-cta.btn--ghost-light,
.site-header--solid .header-cta.btn--ghost-light {
  --btn-fg: var(--c-charcoal);
  --btn-bd: var(--c-charcoal);
}
.is-solid .header-cta.btn--ghost-light:hover,
.site-header--solid .header-cta.btn--ghost-light:hover {
  --btn-bg: var(--c-charcoal); --btn-fg: #fff; color: #fff;
}

/* --- Mobile nav toggle ---------------------------------------------------- */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease);
}
@media (min-width: 1000px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease),
              background-color 0.3s var(--ease);
}
.is-solid .nav-toggle { border-color: var(--c-border); }
.is-solid .nav-toggle span { background: var(--c-charcoal); }

.nav-toggle[aria-expanded="true"] { border-color: var(--c-border); }
.nav-toggle[aria-expanded="true"] span { background: var(--c-charcoal); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile drawer -------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--c-bone);
  padding: var(--sp-6) var(--gutter) var(--sp-8);
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
              visibility 0.3s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 1000px) { .mobile-nav { display: none; } }

.mobile-nav a.mobile-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-charcoal);
  text-decoration: none;
}
.mobile-nav a.mobile-nav__link:hover { color: var(--c-rust); }
.mobile-nav__actions { margin-top: var(--sp-6); display: grid; gap: var(--sp-4); }
.mobile-nav__meta {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.mobile-nav__meta a { display: block; margin-bottom: var(--sp-2); }

/* ==========================================================================
   07. HERO
   --------------------------------------------------------------------------
   Layer order (bottom to top):
     .hero__media   — video (plays once) then still image (slow zoom)
     .hero__scrim   — gradient overlay for text contrast
     .hero__inner   — content
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;      /* fallback for browsers without svh */
  display: flex;
  flex-direction: column;  /* content stacks; strip pins to the bottom */
  justify-content: flex-end;
  overflow: hidden;
  background: var(--c-ink);
  isolation: isolate;
}
@supports (min-height: 100svh) { .hero { min-height: 100svh; } }

.hero__media { position: absolute; inset: 0; z-index: 0; }

.hero__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  will-change: opacity;
}
.hero__layer.is-visible { opacity: 1; }

/* Layer 1 — wallaby video.
   The horizontal offset keeps the animal clear of the headline block: both
   source clips are much wider than the viewport, so object-position decides
   which slice of the frame is shown. Tuned per breakpoint. */
#heroVideo { object-position: 34% 45%; }

/* Layer 2 — goanna still, slow Ken Burns zoom once it becomes visible */
#heroStill { object-position: 30% 45%; transform: scale(1.02); transform-origin: 62% 55%; }

@media (min-width: 900px) {
  #heroVideo { object-position: 8% 45%; }
  #heroStill { object-position: 2% 45%; }
}
#heroStill.is-visible { animation: heroZoom 26s var(--ease) forwards; }

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.16); }
}

/* Contrast scrim — dark from the bottom-left, so headline copy stays legible
   over the bright dawn sky in both source shots. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(22, 19, 15, 0.94) 0%,
      rgba(22, 19, 15, 0.80) 24%,
      rgba(22, 19, 15, 0.44) 52%,
      rgba(22, 19, 15, 0.22) 74%,
      rgba(22, 19, 15, 0.34) 100%),
    linear-gradient(to right,
      rgba(22, 19, 15, 0.74) 0%,
      rgba(22, 19, 15, 0.56) 26%,
      rgba(22, 19, 15, 0.20) 58%,
      rgba(22, 19, 15, 0.00) 82%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;       /* push content down; strip sits below it */
  padding-top: calc(var(--header-h) + var(--sp-7));
  padding-bottom: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  color: #fff;
}
.hero__content { max-width: none; }
/* The home H1 carries the full "fixed plant and non-process infrastructure"
   descriptor, so it needs its own slightly smaller scale to sit in three or
   four lines rather than eight. */
.hero h1 {
  color: #fff;
  max-width: 13em;          /* em, not ch — measured against this heading */
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hero h1 .accent { color: var(--c-ember); }

.hero__sub {
  max-width: 56ch;
  margin-top: var(--sp-5);
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.hero .btn-row { margin-top: var(--sp-6); }

.hero__eyebrow {
  color: #fff;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-3);
}
.hero__eyebrow::before {
  content: ""; width: 36px; height: 2px; background: var(--c-ember); flex: none;
}
.hero__eyebrow { white-space: nowrap; }

/* Hero footer strip — capability bullets across the bottom of the hero */
.hero__strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(22, 19, 15, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__strip ul {
  display: grid;
  gap: var(--sp-2) var(--sp-6);
  grid-template-columns: 1fr;
  padding-block: var(--sp-4);
}
@media (min-width: 560px) { .hero__strip ul { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .hero__strip ul { grid-template-columns: repeat(4, 1fr); } }
.hero__strip li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88);
}
.hero__strip li::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--c-ember);
  transform: rotate(45deg);
  flex: none;
}

/* Scroll cue */
.hero__cue {
  position: absolute;
  right: var(--gutter);
  bottom: 7.5rem;         /* clears the capability strip below */
  z-index: 3;
  display: none;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
@media (min-width: 900px) { .hero__cue { display: inline-flex; } }
.hero__cue:hover { color: #fff; }
.hero__cue::after {
  content: "";
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--c-ember), transparent);
  animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop {
  0%, 100% { opacity: 0.35; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* ==========================================================================
   08. SECTIONS
   ========================================================================== */

/* --- 8.1 Positioning statement ------------------------------------------- */
.statement { text-align: left; }
.statement p.statement__lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
  line-height: 1.28;
  font-weight: 500;
  color: var(--c-charcoal);
  max-width: 15em;
  text-wrap: balance;
}
.statement__grid {
  display: grid;
  gap: var(--sp-6) var(--sp-8);
  align-items: start;
}
@media (min-width: 880px) {
  .statement__grid { grid-template-columns: 1.05fr 1fr; gap: var(--sp-9); }
}

/* --- 8.2 Service pillars -------------------------------------------------- */
.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-5) var(--sp-6);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-rust);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pillar__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-rust);
  margin-bottom: var(--sp-4);
}
.pillar h3 { margin-bottom: var(--sp-3); color: var(--c-charcoal); }
.pillar p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.6; }
.pillar__list {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
  display: grid;
  gap: var(--sp-2);
}
.pillar__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: 1.5;
}
.pillar__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 5px; height: 5px;
  background: var(--c-spinifex);
  transform: rotate(45deg);
}

/* --- 8.3 Feature band (image + text) -------------------------------------- */
.feature { display: grid; gap: 0; align-items: stretch; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1.06fr 1fr; }
  .feature--reverse .feature__media { order: 2; }
}
.feature__media { position: relative; min-height: 320px; overflow: hidden; }
.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(22,19,15,0.30), rgba(22,19,15,0));
}
.feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 1.4rem + 3.6vw, 4.5rem);
  background: var(--c-charcoal);
  color: var(--c-text-invert);
}
.feature__body h2 { color: #fff; margin-bottom: var(--sp-5); }
.feature__body .lede { color: var(--c-text-invert-muted); }

.feature__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border-dark);
}
.feature__stat dt {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ember);
  margin-bottom: var(--sp-2);
}
.feature__stat dd {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--c-text-invert-muted);
}

/* --- 8.4 Industries -------------------------------------------------------- */
.industry {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: var(--sp-6) var(--sp-5);
  background: var(--c-charcoal-2);
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}
.industry__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s var(--ease-out);
}
.industry::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
    rgba(22,19,15,0.92) 8%, rgba(22,19,15,0.62) 46%, rgba(22,19,15,0.30) 100%);
  transition: background 0.4s var(--ease);
}
.industry:hover .industry__bg { transform: scale(1.07); }
.industry:hover::after {
  background: linear-gradient(to top,
    rgba(130,45,15,0.90) 8%, rgba(22,19,15,0.62) 46%, rgba(22,19,15,0.28) 100%);
}
.industry h3 { color: #fff; margin-bottom: var(--sp-3); }
.industry p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--sp-4);
  line-height: 1.55;
}
.industry .link-arrow { color: var(--c-ember); }

/* Fallback background tints where no photograph is supplied yet */
.industry--resources { background-image: linear-gradient(150deg, #7A3416, #2E241C); }
.industry--energy    { background-image: linear-gradient(150deg, #6A5A2E, #2A241C); }
.industry--ports     { background-image: linear-gradient(150deg, #3D4A47, #23201B); }

/* --- 8.5 Projects ---------------------------------------------------------- */
.project {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--c-charcoal-2);
  overflow: hidden;
}
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.project:hover .project__media img { transform: scale(1.05); }
.project__tag {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  padding: 0.3rem 0.6rem;
  background: rgba(22,19,15,0.82);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.project__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.project h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); color: var(--c-charcoal); }
.project p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.6; }
.project__meta {
  margin-top: auto;
  padding-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- 8.6 Approach steps ---------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-top: var(--sp-5); border-top: 2px solid var(--c-border); counter-increment: step; }
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-sand-deep);
  margin-bottom: var(--sp-3);
  transition: color var(--dur) var(--ease);
}
.step:hover::before { color: var(--c-rust); }
.step h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); color: var(--c-charcoal); }
.step p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.6; }

/* ==========================================================================
   09. CALL-TO-ACTION BANDS
   ========================================================================== */

.cta-band { background: var(--c-charcoal); color: var(--c-text-invert); position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 88% 50%, rgba(166,60,21,0.42), transparent 68%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band__inner {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 920px) {
  .cta-band__inner { grid-template-columns: 1.4fr auto; gap: var(--sp-8); }
}
.cta-band h2 { color: #fff; }
.cta-band .lede { color: var(--c-text-invert-muted); margin-top: var(--sp-4); }

/* Capability statement download card */
.cap-card {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-rust);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 780px) {
  .cap-card { grid-template-columns: auto 1fr auto; gap: var(--sp-6); }
}
.cap-card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--c-sand-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-rust);
  flex: none;
}
.cap-card__icon svg { width: 26px; height: 26px; }
.cap-card h3 { margin-bottom: var(--sp-2); color: var(--c-charcoal); }
.cap-card p { font-size: var(--fs-sm); color: var(--c-text-muted); }

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--c-ink);
  color: var(--c-text-invert-muted);
  font-size: var(--fs-sm);
  padding-block: var(--sp-8) var(--sp-5);
}
.footer__grid {
  display: grid;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--c-border-dark);
}
@media (min-width: 700px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer__brand .logo__mark { color: #fff; font-size: 2rem; }
.footer__brand p { margin-top: var(--sp-4); max-width: 34ch; line-height: 1.6; }

.footer h2 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.footer__list li { margin-bottom: var(--sp-3); }
.footer__list a, .footer address a {
  color: var(--c-text-invert-muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer__list a:hover, .footer address a:hover { color: var(--c-ember); }

.site-footer address { font-style: normal; line-height: 1.7; }

.footer__social { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer__social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--c-border-dark);
  border-radius: var(--radius);
  color: var(--c-text-invert-muted);
  transition: all 0.25s var(--ease);
}
.footer__social a:hover { background: var(--c-rust); border-color: var(--c-rust); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: #8E8377;
}
.footer__bottom a { color: #8E8377; text-decoration: none; }
.footer__bottom a:hover { color: var(--c-ember); }

/* Acknowledgement of Country — kept plain and unadorned by design. */
.acknowledgement {
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--c-border-dark);
  margin-bottom: var(--sp-5);
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: #8E8377;
  max-width: 78ch;
}

/* ==========================================================================
   11. MOTION & REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* Respect the user's OS-level reduced-motion setting throughout. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  #heroStill.is-visible { animation: none; transform: scale(1.02); }
  .hero__cue::after { animation: none; }
}

/* ==========================================================================
   14. PHASE 2 COMPONENTS
   --------------------------------------------------------------------------
   Everything below was added for the About, Services, Industries and Contact
   pages. Ordered:
     14.1  Logo (image)
     14.2  Page hero (interior pages)
     14.3  Sticky in-page anchor nav
     14.4  Service pillar bands
     14.5  Criteria grid (rapid optioneering)
     14.6  Optioneering gallery
     14.7  Values list
     14.8  Sector bands (Industries)
     14.9  Contact form
     14.10 Prose blocks
   ========================================================================== */

/* --- 14.1  Logo ----------------------------------------------------------- */

.logo__img {
  display: block;
  height: 26px;
  width: auto;
}
@media (min-width: 700px) { .logo__img { height: 30px; } }

/* Two files, one swapped for the other depending on the header state, so the
   wordmark always has contrast. Both are the supplied JAEKA logo keyed to
   transparency — light = white glyphs, dark = ink glyphs. */
.logo__img--dark { display: none; }
.is-solid .logo__img--light,
.site-header--solid .logo__img--light { display: none; }
.is-solid .logo__img--dark,
.site-header--solid .logo__img--dark { display: block; }

.footer__brand .logo__img { height: 32px; margin-bottom: var(--sp-4); }

/* --- 14.2  Page hero ------------------------------------------------------
   Compact banner for interior pages. Shorter than the home hero: it frames
   the page rather than competing with it. */

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 52vh;
  padding-top: calc(var(--header-h) + var(--sp-7));
  padding-bottom: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  background: var(--c-charcoal);
  overflow: hidden;
  isolation: isolate;
}
.page-hero--short { min-height: 42vh; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top,
      rgba(22,19,15,0.94) 0%, rgba(22,19,15,0.72) 38%,
      rgba(22,19,15,0.42) 72%, rgba(22,19,15,0.52) 100%),
    linear-gradient(to right,
      rgba(22,19,15,0.66) 0%, rgba(22,19,15,0.24) 54%, rgba(22,19,15,0) 86%);
}
.page-hero h1 { color: #fff; max-width: 14em; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.page-hero .lede {
  max-width: 60ch;
  margin-top: var(--sp-5);
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}
.page-hero .eyebrow { color: var(--c-ember); }
.page-hero .eyebrow::before { background: var(--c-ember); }

/* Text-only page header, for pages that do not warrant an image */
.page-head {
  padding-top: calc(var(--header-h) + var(--section-y));
  padding-bottom: var(--section-y);
  border-bottom: 1px solid var(--c-border);
}
.page-head h1 { max-width: 14em; }
.page-head .lede { max-width: 62ch; margin-top: var(--sp-5); }

/* --- 14.3  Sticky in-page anchor nav -------------------------------------- */

.anchor-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.anchor-nav__inner {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: var(--sp-3);
}
.anchor-nav__inner::-webkit-scrollbar { display: none; }

.anchor-nav a {
  position: relative;
  flex: none;
  padding: var(--sp-2) 0;
  font-size: var(--fs-xs);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-text-muted);
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.anchor-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--c-rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.anchor-nav a:hover { color: var(--c-charcoal); }
.anchor-nav a.is-active { color: var(--c-rust); }
.anchor-nav a.is-active::after { transform: scaleX(1); }

.anchor-nav__num {
  font-family: var(--font-display);
  font-size: 0.9em;
  margin-right: 0.4em;
  opacity: 0.6;
}

/* Anchored sections must clear both the header and the sticky nav */
.has-anchor-nav { scroll-margin-top: calc(var(--header-h) + 56px); }

/* --- 14.4  Service pillar bands ------------------------------------------- */

.pillar-band { border-bottom: 1px solid var(--c-border); }
.pillar-band:last-of-type { border-bottom: 0; }
.pillar-band--alt { background: var(--c-bg-alt); }

.pillar-band__inner {
  display: grid;
  gap: var(--sp-6);
  padding-block: var(--section-y);
  align-items: start;
}
@media (min-width: 940px) {
  .pillar-band__inner { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-9); }
  .pillar-band--reverse .pillar-band__media { order: 2; }
}

.pillar-band__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
/* A 4:3 crop gives the image enough presence next to a long delivery list;
   the source photographs are wider than that, so the crop is centred. */
.pillar-band__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 50%;
}
/* On desktop the image tracks the text column rather than stranding
   whitespace beside a long list. */
@media (min-width: 940px) {
  .pillar-band__media {
    position: sticky;
    top: calc(var(--header-h) + 5rem);
  }
}
.pillar-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22,19,15,0.18), rgba(22,19,15,0));
  pointer-events: none;
}

.pillar-band__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 4vw, 5.5rem);
  font-weight: 700;
  line-height: 0.85;
  color: var(--c-sand);
  display: block;
  margin-bottom: var(--sp-3);
}
.pillar-band--alt .pillar-band__num { color: #DCCDB6; }

.pillar-band h2 { margin-bottom: var(--sp-5); color: var(--c-charcoal); }
.pillar-band__intro { font-size: var(--fs-lg); line-height: 1.5; color: var(--c-charcoal); }
.pillar-band__body { margin-top: var(--sp-4); color: var(--c-text-muted); }

.deliver {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}
.deliver h3 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rust);
  margin-bottom: var(--sp-4);
}
.deliver ul {
  display: grid;
  gap: var(--sp-2) var(--sp-5);
}
@media (min-width: 620px) { .deliver ul { grid-template-columns: repeat(2, 1fr); } }
.deliver li {
  position: relative;
  padding-left: 1.15rem;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--c-text);
}
.deliver li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 6px; height: 6px;
  background: var(--c-rust);
  transform: rotate(45deg);
}

.outputs {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-white);
  border-left: 3px solid var(--c-spinifex);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--c-text-muted);
}
.pillar-band--alt .outputs { background: rgba(255,255,255,0.75); }
.outputs strong {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-spinifex);
  margin-bottom: var(--sp-2);
}

/* --- 14.5  Criteria grid --------------------------------------------------- */

.criteria {
  counter-reset: crit;
  display: grid;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (min-width: 700px)  { .criteria { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .criteria { grid-template-columns: repeat(5, 1fr); gap: var(--sp-4); } }

.criteria li {
  counter-increment: crit;
  padding-top: var(--sp-4);
  border-top: 2px solid var(--c-border-dark);
}
.criteria li::before {
  content: "0" counter(crit);
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-ember);
  margin-bottom: var(--sp-2);
}
.criteria dt {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.criteria dd {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--c-text-invert-muted);
}

/* --- 14.6  Optioneering gallery -------------------------------------------- */

.opt-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--sp-6);
}
@media (min-width: 760px)  { .opt-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .opt-grid { grid-template-columns: repeat(6, 1fr); } }

.opt-grid figure {
  margin: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.opt-grid figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.opt-grid img { width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; display: block; }
/* .opt-grid figcaption is retained below for when the arrangement labels are
   supplied; with no caption the tile is just the image. */
.opt-grid figcaption {
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
}
.opt-caption {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  max-width: 68ch;
}

/* --- 14.7  Values list ------------------------------------------------------ */

.values {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
}
@media (min-width: 820px) { .values { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3) var(--sp-6); } }
.values li {
  position: relative;
  padding-left: 1.6rem;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--c-text-muted);
}
.values li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 12px; height: 12px;
  border: 2px solid var(--c-rust);
  border-radius: 50%;
}
.values strong { color: var(--c-charcoal); font-weight: 650; }

/* --- 14.8  Sector bands (Industries) ---------------------------------------- */

.sector { border-bottom: 1px solid var(--c-border); }
.sector:last-of-type { border-bottom: 0; }
.sector--alt { background: var(--c-bg-alt); }

.sector__inner {
  display: grid;
  gap: var(--sp-6);
  padding-block: var(--section-y);
  align-items: center;
}
@media (min-width: 940px) {
  .sector__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-9); }
  .sector--reverse .sector__media { order: 2; }
}
.sector__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
/* A 3:2 crop gives the sector image enough weight against a tall text column */
.sector__media img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.sector__label {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  padding: 0.35rem 0.7rem;
  background: rgba(22,19,15,0.86);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.sector h2 { margin-bottom: var(--sp-5); color: var(--c-charcoal); }
.sector p { color: var(--c-text-muted); }
.sector p:first-of-type { font-size: var(--fs-lg); line-height: 1.5; color: var(--c-charcoal); }

/* --- 14.9  Contact form ------------------------------------------------------ */

.contact-layout {
  display: grid;
  gap: var(--sp-7);
  align-items: start;
}
@media (min-width: 960px) {
  .contact-layout { grid-template-columns: 1.35fr 0.85fr; gap: var(--sp-9); }
}

.form {
  padding: clamp(1.5rem, 1rem + 2.2vw, 2.75rem);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-rust);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.field { margin-bottom: var(--sp-5); }
.field-row { display: grid; gap: var(--sp-5); }
@media (min-width: 560px) { .field-row { grid-template-columns: repeat(2, 1fr); } }

.field label {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 650;
  color: var(--c-charcoal);
}
.field .req { color: var(--c-rust); margin-left: 2px; }
.field .hint { font-weight: 400; color: var(--c-text-muted); }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-bone);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: #C7BAA8; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--c-white);
  border-color: var(--c-rust);
  box-shadow: 0 0 0 3px rgba(166, 60, 21, 0.16);
}

/* Validation states — applied by js/main.js, never on first paint */
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select { border-color: #A6231C; background: #FDF6F5; }
.field.is-invalid input:focus,
.field.is-invalid textarea:focus { box-shadow: 0 0 0 3px rgba(166, 35, 28, 0.18); }

.field__error {
  display: none;
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #8E1B15;
}
.field.is-invalid .field__error { display: block; }

/* Honeypot — visually and programmatically hidden from real visitors,
   but still reachable by the bots that fill every field they find. */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.form__privacy {
  margin: var(--sp-4) 0 0;
  font-size: var(--fs-xs);
  line-height: 1.55;
  color: var(--c-text-muted);
}

.btn[data-busy="true"] { opacity: 0.65; pointer-events: none; }
.btn__spinner {
  width: 1em; height: 1em;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn[data-busy="true"] .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__message {
  display: none;
  margin-bottom: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  line-height: 1.6;
  border-left: 3px solid;
}
.form__message.is-shown { display: block; }
.form__message--success {
  background: #F1F4EE;
  border-color: var(--c-spinifex);
  color: #3B4635;
}
.form__message--error {
  background: #FDF3F2;
  border-color: #A6231C;
  color: #7A1811;
}

/* "What happens next" panel beside the form */
.next-steps {
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  background: var(--c-charcoal);
  border-radius: var(--radius);
  color: var(--c-text-invert);
}
.next-steps h2 {
  font-size: var(--fs-h3);
  color: #fff;
  margin-bottom: var(--sp-5);
}
.next-steps ol { counter-reset: ns; display: grid; gap: var(--sp-5); }
.next-steps li { counter-increment: ns; }
.next-steps li h3 {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  font-size: var(--fs-lg);
  color: #fff;
  margin-bottom: var(--sp-2);
}
.next-steps li h3::before {
  content: "0" counter(ns);
  font-size: 0.75em;
  font-weight: 700;
  color: var(--c-ember);
  flex: none;
}
.next-steps li p { font-size: var(--fs-sm); line-height: 1.6; color: var(--c-text-invert-muted); }

.next-steps__contact {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border-dark);
  font-size: var(--fs-sm);
  font-style: normal;
  line-height: 1.7;
  color: var(--c-text-invert-muted);
}
.next-steps__contact a { color: #fff; text-decoration: none; font-weight: 600; }
.next-steps__contact a:hover { color: var(--c-ember); }
.next-steps__contact span {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ember);
  margin-bottom: var(--sp-2);
}

/* --- 14.10  Prose ------------------------------------------------------------ */

.prose { max-width: 68ch; }
.prose h2 { margin: var(--sp-7) 0 var(--sp-4); }
.prose h3 { margin: var(--sp-6) 0 var(--sp-3); }
.prose ul { display: grid; gap: var(--sp-2); margin: var(--sp-4) 0; }
.prose ul li { position: relative; padding-left: 1.15rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 6px; height: 6px;
  background: var(--c-rust);
  transform: rotate(45deg);
}

/* Two-column intro used on About */
.intro-grid { display: grid; gap: var(--sp-6); align-items: start; }
@media (min-width: 880px) { .intro-grid { grid-template-columns: 1fr 1.15fr; gap: var(--sp-9); } }


/* --- 14.11  Phase 3 additions ------------------------------------------------ */

/* Intro paragraph block on About — the two-column intro lost its display line,
   so the lede now runs at a comfortable single-column measure instead. */
.intro-lede { max-width: 62ch; }
.intro-lede .lede { font-size: clamp(1.2rem, 1.08rem + 0.5vw, 1.45rem); }

/* "Where we work" capability lines. The region labels were removed, so this is
   a plain list rather than the label/value stat strip it replaced. */
.where-list {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border-dark);
}
@media (min-width: 700px) {
  .where-list { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
}
.where-list li {
  position: relative;
  padding-top: var(--sp-4);
  border-top: 2px solid var(--c-ember);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--c-text-invert-muted);
}

/* ==========================================================================
   12. UTILITIES
   ========================================================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }

/* Placeholder marker — highlights content Jaeka must confirm before go-live.
   Delete this rule (and the data-placeholder attributes) before publishing. */
[data-placeholder]:not([data-placeholder="off"]) { position: relative; }
body.show-placeholders [data-placeholder]:not([data-placeholder="off"]) {
  outline: 1px dashed rgba(166, 60, 21, 0.5);
  outline-offset: 4px;
}

/* ==========================================================================
   13. PRINT
   ========================================================================== */

@media print {
  .site-header, .mobile-nav, .hero__media, .hero__scrim,
  .hero__cue, .nav-toggle, .cta-band::before { display: none !important; }
  .hero { min-height: auto; color: #000; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 1.5rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
