/* ==========================================================================
   INEX Workplace Performance - V1
   Design tokens and global system
   ========================================================================== */

:root {
  /* Brand core */
  --inex-blue: #0A57FF;
  --inex-blue-hover: #0A47D1;
  --inex-black: #0A0A0A;
  --inex-white: #FFFFFF;

  /* Supporting neutrals (function only) */
  --dark-surface: #121212;
  --dark-surface-2: #171717;
  --dark-line: #262626;
  --dark-dim: #B4B4B4;

  --light-tint: #F4F4F5;
  --light-line: #E2E2E4;
  --light-dim: #5A5B60;

  /* Type */
  --font-display: "Oswald", "Haettenschweiler", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.25rem, 5.6vw, 5rem);
  --fs-h1: clamp(2.25rem, 5.6vw, 4.25rem);
  --fs-h2: clamp(1.75rem, 3.9vw, 2.875rem);
  --fs-h3: clamp(1.1875rem, 1.9vw, 1.5rem);
  --fs-lead: clamp(1.0625rem, 1.55vw, 1.3125rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-label: 0.75rem;

  /* Space */
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.25rem, 8.5vw, 7.5rem);
  --stack: clamp(1.5rem, 2.5vw, 2.25rem);
  --max: 1240px;
  --measure: 66ch;

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

/* ==========================================================================
   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(--inex-white);
  color: var(--inex-black);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  line-height: 0.98;
  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); font-weight: 500; letter-spacing: 0.02em; line-height: 1.15; }
h4 { font-size: 1.0625rem; font-weight: 500; letter-spacing: 0.04em; line-height: 1.2; }

p { margin: 0 0 1.15em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul { margin: 0; padding: 0; }

/* Accessible focus, visible everywhere */
:focus-visible {
  outline: 3px solid var(--inex-blue);
  outline-offset: 3px;
  border-radius: 1px;
}
.section--dark :focus-visible { outline-color: var(--inex-white); }

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 200;
  background: var(--inex-blue);
  color: var(--inex-white);
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: var(--fs-small);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.75rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

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

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section--dark { background: var(--inex-black); color: var(--inex-white); }
.section--dark p { color: var(--dark-dim); }
.section--light { background: var(--inex-white); color: var(--inex-black); }
.section--light p { color: var(--light-dim); }
.section--tint { background: var(--light-tint); color: var(--inex-black); }
.section--tint p { color: var(--light-dim); }

.section--dark + .section--dark { padding-top: 0; }
.section--tint + .section--tint { padding-top: 0; }

/* Section header: the logo's blue rule reused as a structural device */
.s-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); max-width: 62rem; }
.s-head__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  color: var(--inex-blue);
  max-width: none;
}
.section--dark .s-head__label { color: var(--inex-white); }
.s-head__rule {
  height: 2px;
  background: var(--inex-blue);
  margin-top: clamp(1.1rem, 2vw, 1.6rem);
  transform-origin: left center;
  width: 100%;
}
.s-head__sub {
  margin-top: clamp(1.1rem, 2vw, 1.5rem);
  font-size: var(--fs-lead);
  line-height: 1.6;
}

.lede { font-size: var(--fs-lead); line-height: 1.62; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

/* Asymmetric split used for narrative sections */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (min-width: 62rem) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
  .split--wide-left { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--inex-black);
  border-bottom: 1px solid var(--dark-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; padding-block: 0.5rem; }
.brand__lockup { height: 40px; width: auto; }
.brand__wordmark { height: 22px; width: auto; display: none; }

@media (max-width: 24rem) {
  .brand__lockup { display: none; }
  .brand__wordmark { display: block; }
}

.nav { display: none; }

@media (min-width: 64rem) {
  .nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.2vw, 2.25rem); }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.2vw, 2.25rem);
  list-style: none;
}

.nav__link {
  color: var(--inex-white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-block: 0.4rem;
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--inex-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Mobile toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: 1px solid var(--dark-line);
  color: var(--inex-white);
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-toggle__bars { display: inline-block; width: 18px; height: 12px; position: relative; }
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--inex-white);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Placed after the base rule so it actually wins on desktop. */
@media (min-width: 64rem) { .nav-toggle { display: none; } }

/* Mobile panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--inex-black);
  z-index: 99;
  padding: clamp(2rem, 7vw, 3.5rem) var(--gutter) 3rem;
  overflow-y: auto;
  display: none;
}
.mobile-nav[data-open="true"] { display: block; }
@media (min-width: 64rem) { .mobile-nav { display: none !important; } }

.mobile-nav__list { list-style: none; border-top: 1px solid var(--dark-line); }
.mobile-nav__item { border-bottom: 1px solid var(--dark-line); }
.mobile-nav__link {
  display: block;
  padding: 1.15rem 0;
  color: var(--inex-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.mobile-nav__link[aria-current="page"] { color: var(--inex-blue); }
.mobile-nav__foot { margin-top: 2.25rem; display: grid; gap: 1.25rem; justify-items: start; }
.mobile-nav__meta { font-size: var(--fs-small); color: var(--dark-dim); }
.mobile-nav__meta a { color: var(--inex-white); }

body[data-nav-open="true"] { overflow: hidden; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease), transform 0.22s var(--ease);
  text-align: center;
  line-height: 1.1;
}

.btn--primary { background: var(--inex-blue); color: var(--inex-white); border-color: var(--inex-blue); }
.btn--primary:hover { background: var(--inex-blue-hover); border-color: var(--inex-blue-hover); transform: translateY(-2px); }

.btn--nav { padding: 0.72rem 1.15rem; }

.btn--ghost-light { border-color: var(--inex-white); color: var(--inex-white); background: transparent; }
.btn--ghost-light:hover { background: var(--inex-white); color: var(--inex-black); transform: translateY(-2px); }

.btn--ghost-dark { border-color: var(--inex-black); color: var(--inex-black); background: transparent; }
.btn--ghost-dark:hover { background: var(--inex-black); color: var(--inex-white); transform: translateY(-2px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); }

/* Inline arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--inex-blue);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.24s var(--ease), gap 0.24s var(--ease);
}
.section--dark .link-arrow { color: var(--inex-white); }
.link-arrow:hover { border-bottom-color: currentColor; gap: 0.95rem; }
.link-arrow span[aria-hidden] { font-family: var(--font-body); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--inex-black);
  color: var(--inex-white);
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--inex-blue);
}

.hero__label {
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--inex-white);
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: none;
}

.hero__head { margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }

.hero__title {
  font-size: var(--fs-display);
  line-height: 0.96;
  margin: 0;
  max-width: 24ch;
}
/* Forced sentence lines. Each span still wraps normally at spaces, so the
   headline never breaks mid-word and never overflows its column. */
.hero__line { display: block; }
.hero__title .accent { color: var(--inex-blue); }

.hero__lede {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--dark-dim);
  max-width: 54ch;
}

.hero--page .hero__title { max-width: 20ch; }

.hero__grid { display: grid; gap: clamp(2.25rem, 5vw, 4rem); align-items: center; }
@media (min-width: 68rem) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); }
}

/* ==========================================================================
   Statement / pull quote
   ========================================================================== */

.statement {
  border-left: 2px solid var(--inex-blue);
  padding-left: clamp(1.25rem, 3vw, 2.25rem);
  max-width: 46rem;
}
.statement__text {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1.375rem, 2.9vw, 2.125rem);
  line-height: 1.14;
  letter-spacing: 0.015em;
  margin: 0;
  max-width: none;
}
.section--dark .statement__text { color: var(--inex-white); }
.section--light .statement__text,
.section--tint .statement__text { color: var(--inex-black); }
.statement__attrib {
  margin-top: 1rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  padding: clamp(1.5rem, 2.6vw, 2rem);
  border: 1px solid var(--light-line);
  background: var(--inex-white);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.card::before {
  content: "";
  position: absolute;
  left: -1px; top: -1px; width: 3.25rem; height: 2px;
  background: var(--inex-blue);
  transition: width 0.32s var(--ease);
}
.card:hover::before { width: calc(100% + 2px); }
.card__title { margin: 0; }
.card p { margin: 0; font-size: var(--fs-small); }

.section--dark .card { background: var(--dark-surface); border-color: var(--dark-line); }
.section--tint .card { background: var(--inex-white); border-color: var(--light-line); }

/* Numbered list, used only where order genuinely carries meaning */
.steps { list-style: none; display: grid; gap: 0; counter-reset: step; }
.steps__item {
  display: grid;
  gap: 0.35rem 1.5rem;
  padding: clamp(1.4rem, 2.6vw, 1.9rem) 0;
  border-top: 1px solid var(--light-line);
  counter-increment: step;
}
.steps__item:last-child { border-bottom: 1px solid var(--light-line); }
.section--dark .steps__item { border-color: var(--dark-line); }
@media (min-width: 48rem) {
  .steps__item { grid-template-columns: 4.5rem minmax(0, 15rem) minmax(0, 1fr); align-items: baseline; }
}
.steps__num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  color: var(--inex-blue);
}
.section--dark .steps__num { color: var(--inex-blue); }
.steps__title { margin: 0; }
.steps__body { margin: 0; font-size: var(--fs-small); }

/* Progression rail: ACCESS > ENGAGEMENT > CONSISTENCY > IDENTITY */
.rail { list-style: none; display: grid; gap: 0; margin-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 48rem) { .rail { grid-template-columns: repeat(4, 1fr); } }
.rail__item {
  padding: 1.35rem 0 0;
  border-top: 2px solid var(--dark-line);
  position: relative;
  padding-right: 1.5rem;
}
.rail__item::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 2px; height: 14px;
  background: var(--inex-blue);
}
.rail__item[data-active="true"] { border-top-color: var(--inex-blue); }
.rail__term {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0 0 0.4rem;
  max-width: none;
}
.rail__desc { margin: 0; font-size: var(--fs-small); }
.section--light .rail__item, .section--tint .rail__item { border-top-color: var(--light-line); }

/* Simple feature list with blue tick rules */
.ticks { list-style: none; display: grid; gap: 0.9rem; }
.ticks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: var(--fs-body);
  max-width: var(--measure);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.75em;
  width: 0.85rem; height: 2px;
  background: var(--inex-blue);
}
.section--dark .ticks li { color: var(--dark-dim); }
.section--light .ticks li, .section--tint .ticks li { color: var(--light-dim); }

/* Definition-style term blocks */
.terms { list-style: none; display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); }
.terms__term {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  max-width: none;
}
.terms__def { margin: 0; font-size: var(--fs-small); }

/* ==========================================================================
   Image placeholders (replace before launch)
   ========================================================================== */

.imgph {
  margin: 0;
  position: relative;
  background: var(--dark-surface);
  border: 1px solid var(--dark-line);
  display: flex;
  align-items: flex-end;
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.imgph--wide { aspect-ratio: 16 / 9; }
.imgph--tall { aspect-ratio: 3 / 4; }
.imgph--square { aspect-ratio: 1 / 1; }

.imgph::before, .imgph::after {
  content: "";
  position: absolute;
  width: 1.5rem; height: 1.5rem;
  border: 2px solid var(--inex-blue);
  pointer-events: none;
}
.imgph::before { top: 0.75rem; left: 0.75rem; border-right: 0; border-bottom: 0; }
.imgph::after { bottom: 0.75rem; right: 0.75rem; border-left: 0; border-top: 0; }

.imgph__tag {
  display: block;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--inex-blue);
  margin-bottom: 0.5rem;
}
.imgph__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--dark-dim) !important;
  max-width: 34ch;
}

.section--light .imgph, .section--tint .imgph { background: var(--light-tint); border-color: var(--light-line); }
.section--light .imgph .imgph__desc, .section--tint .imgph .imgph__desc { color: var(--light-dim) !important; }
.section--tint .imgph { background: #EAEAEC; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band { background: var(--inex-black); color: var(--inex-white); padding-block: clamp(3.5rem, 7vw, 6rem); }
.cta-band__inner { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; }
@media (min-width: 62rem) {
  .cta-band__inner { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
}
.cta-band__title { margin: 0; max-width: 16ch; }
.cta-band__rule { height: 2px; background: var(--inex-blue); margin: clamp(1.25rem, 2.5vw, 1.75rem) 0; }
.cta-band p { color: var(--dark-dim); }
.cta-band__aside { display: grid; gap: 1.25rem; justify-items: start; }
.cta-band__meta { font-size: var(--fs-small); color: var(--dark-dim); margin: 0; }
.cta-band__meta a { color: var(--inex-white); text-decoration-color: var(--inex-blue); text-underline-offset: 4px; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form { display: grid; gap: 1.5rem; max-width: 40rem; }
.field { display: grid; gap: 0.5rem; }
.field__label {
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.field__optional { color: var(--light-dim); font-weight: 400; letter-spacing: 0.08em; }
.field__hint { font-size: var(--fs-small); color: var(--light-dim); margin: 0; }

.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--inex-black);
  background: var(--inex-white);
  border: 1px solid #8A8B90;
  border-radius: 2px;
  padding: 0.85rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--inex-black) 50%), linear-gradient(135deg, var(--inex-black) 50%, transparent 50%); background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.75rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--inex-black); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--inex-blue); box-shadow: 0 0 0 3px rgba(10, 87, 255, 0.18); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #B3261E; }

.field__error {
  font-size: var(--fs-small);
  color: #B3261E;
  font-weight: 600;
  min-height: 0;
}
.field__error:empty { display: none; }

.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__status { font-size: var(--fs-small); font-weight: 600; color: #B3261E; }
.form__status:empty { display: none; }

.confirmation {
  border: 1px solid var(--light-line);
  border-top: 3px solid var(--inex-blue);
  background: var(--inex-white);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 40rem;
}
.confirmation__title { margin: 0 0 1rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--inex-black); color: var(--inex-white); border-top: 1px solid var(--dark-line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer__top { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 56rem) {
  .site-footer__top { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); }
}
.site-footer__lockup { height: 54px; width: auto; }
.site-footer__blurb { margin-top: 1.35rem; font-size: var(--fs-small); color: var(--dark-dim); max-width: 34ch; }
.footer-head {
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  color: var(--inex-white);
  max-width: none;
}
.footer-list { list-style: none; display: grid; gap: 0.7rem; }
.footer-list a { color: var(--dark-dim); text-decoration: none; font-size: var(--fs-small); }
.footer-list a:hover { color: var(--inex-white); }
.site-footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--dark-dim);
}
.site-footer__bottom p { margin: 0; color: var(--dark-dim); max-width: none; }

/* ==========================================================================
   Error page
   ========================================================================== */

.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-page__code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 16vw, 10rem);
  line-height: 0.85;
  color: var(--inex-blue);
  margin: 0 0 1.5rem;
  max-width: none;
}

/* ==========================================================================
   Motion
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(18px); }
.js .reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }

.js .s-head__rule, .js .cta-band__rule { transform: scaleX(0); transition: transform 0.8s var(--ease) 0.12s; }
.js .is-visible .s-head__rule, .js .is-visible.cta-band__inner .cta-band__rule { transform: scaleX(1); }

@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;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .js .s-head__rule, .js .cta-band__rule { transform: scaleX(1) !important; }
  .btn:hover { transform: none; }
}

@media print {
  .site-header, .mobile-nav, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}

/* Approved V1 photography */
.site-photo { margin:0; overflow:hidden; min-height:320px; }
.site-photo img { display:block; width:100%; height:100%; min-height:320px; object-fit:cover; }
.site-photo--tall img { min-height:430px; }

/* V1.5 approved temporary photography crops */
.site-photo--wide { aspect-ratio:16/9; }
.site-photo--crop-right img { object-position: 76% center; }
.site-photo--crop-left img { object-position: 32% center; }

/* V1.7 temporary-photo crops: keep approved subjects while removing known AI edge artifacts */
.site-photo--coached-open-gym { height: 430px; }
.site-photo--coached-open-gym img { width: 100%; max-width: none; height: 100%; min-height: 0; object-fit: cover; object-position: center center; transform: none; }
.site-photo--employer-hero { aspect-ratio: 4 / 3; }
.site-photo--employer-hero img { width: 125%; max-width: none; height: 100%; min-height: 0; object-fit: cover; object-position: left center; }
