/* Legion — execution company
   Huge type · full-bleed chapters · B&W photography · almost no chrome */

:root {
  --black: #000000;
  --white: #ffffff;
  --ink: #0a0a0a;
  --paper: #f5f5f3;
  --text-on-dark: #f2f2f2;
  --text-on-light: #111111;
  --dim-on-dark: rgba(255, 255, 255, 0.58);
  --dim-on-light: rgba(0, 0, 0, 0.55);
  --mute-on-dark: rgba(255, 255, 255, 0.35);
  --mute-on-light: rgba(0, 0, 0, 0.35);
  --line-on-dark: rgba(255, 255, 255, 0.12);
  --line-on-light: rgba(0, 0, 0, 0.1);
  --line-strong-dark: rgba(255, 255, 255, 0.28);
  --line-strong-light: rgba(0, 0, 0, 0.2);
  --max: 1180px;
  --max-narrow: 720px;
  --nav-h: 68px;
  --font: "Inter Tight", "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --display: "Inter Tight", "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 5rem;
  --space-9: 8rem;
  --space-10: 11rem;
}

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

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

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-on-dark);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}

a:hover {
  opacity: 0.65;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.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;
}

.container {
  width: min(100% - 2.75rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.75rem, var(--max-narrow));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--text-on-dark);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line-on-dark);
  color: var(--text-on-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.on-light {
  color: var(--text-on-light);
}

.site-header.on-light.is-scrolled {
  background: rgba(245, 245, 243, 0.92);
  border-bottom-color: var(--line-on-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  opacity: 1 !important;
}

.logo:hover {
  opacity: 0.7 !important;
}

.logo-mark {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

.nav-cta {
  margin-left: 0.35rem;
}

.nav-cta a {
  opacity: 1 !important;
  text-transform: none;
  letter-spacing: -0.01em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  margin: 5px auto;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.btn:hover {
  opacity: 1;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: #e6e6e6;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong-dark);
}

.btn-secondary:hover {
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-light:hover {
  background: #e6e6e6;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #1a1a1a;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--line-strong-light);
}

.btn-ghost-dark:hover {
  border-color: var(--black);
}

.on-light .btn-primary,
.chapter-light .btn-primary,
.engage-light .btn-primary {
  background: var(--black);
  color: var(--white);
}

.on-light .btn-secondary,
.chapter-light .btn-secondary,
.engage-light .btn-secondary {
  color: var(--black);
  border-color: var(--line-strong-light);
}

.site-header .btn-primary {
  background: var(--white);
  color: var(--black);
}

.site-header .btn-primary:hover {
  background: #e6e6e6;
}

.site-header.on-light .btn-primary {
  background: var(--black);
  color: var(--white);
}

.site-header.on-light .btn-primary:hover {
  background: #1a1a1a;
}

.text-link {
  display: inline-flex;
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.8;
  transition: opacity 0.25s;
}

.text-link:hover {
  opacity: 1;
}

.engage-dark .text-link {
  color: var(--white);
  opacity: 0.9;
}

/* ——— Type ——— */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute-on-dark);
  margin-bottom: 1.15rem;
}

.chapter-light .eyebrow,
.on-light .eyebrow,
.page-hero-light .eyebrow,
.engage-light .eyebrow {
  color: var(--mute-on-light);
}

.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  overflow: visible;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--dim-on-dark);
  max-width: 36rem;
  font-weight: 400;
}

.chapter-light .lede,
.on-light .lede,
.page-hero-light .lede {
  color: var(--dim-on-light);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  overflow: visible;
}

h1 {
  font-size: clamp(3.1rem, 9vw, 7rem);
}

h2 {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.025em;
}

/* ——— Chapters ——— */
.chapter {
  position: relative;
  padding: var(--space-10) 0;
}

.chapter-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 4rem) 0 var(--space-8);
  overflow: hidden;
  position: relative;
  background: var(--black);
}

.chapter-dark {
  background: var(--black);
  color: var(--text-on-dark);
}

.chapter-light {
  background: var(--paper);
  color: var(--text-on-light);
}

.chapter-void {
  background: var(--ink);
  color: var(--text-on-dark);
}

.section-header {
  margin-bottom: var(--space-7);
  max-width: 40rem;
}

.section-header p:not(.eyebrow) {
  margin-top: 1.15rem;
  color: var(--dim-on-dark);
  font-size: 1.05rem;
  max-width: 32rem;
}

.chapter-light .section-header p:not(.eyebrow) {
  color: var(--dim-on-light);
}

/* ——— Hero ——— */
.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 52rem;
}

.chapter-hero .container {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

/* ——— Thesis ——— */
.thesis {
  padding: var(--space-10) 0;
}

.thesis-inner {
  max-width: 38rem;
}

.thesis-inner h2 {
  margin-bottom: 1.75rem;
}

.thesis-inner p {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  color: var(--dim-on-light);
  max-width: 34rem;
}

/* ——— Engage moments (full visual chapters) ——— */
.engage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.engage-light {
  background: var(--paper);
  color: var(--text-on-light);
}

.engage-dark {
  background: var(--black);
  color: var(--text-on-dark);
}

.engage-copy {
  padding: calc(var(--nav-h) + var(--space-8)) 0 var(--space-7);
  max-width: none;
  width: min(100% - 2.75rem, var(--max));
  margin-inline: auto;
}

.engage,
.chapter,
.cta-band,
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.engage-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute-on-light);
  margin-bottom: 1.5rem;
}

.engage-dark .engage-num {
  color: var(--mute-on-dark);
}

.engage-copy h2 {
  margin-bottom: 1rem;
  max-width: 18ch;
}

.engage-line {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

.engage-body {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--dim-on-light);
  max-width: 32rem;
  margin-bottom: 1rem;
}

.engage-dark .engage-body {
  color: var(--dim-on-dark);
}

.engage-soft {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mute-on-light);
  max-width: 34rem;
}

.engage-dark .engage-soft {
  color: var(--mute-on-dark);
}

.engage-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 21 / 10;
  overflow: hidden;
  background: #111;
}

.engage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(0.9);
  transition: transform 0.8s var(--ease);
}

.engage:hover .engage-photo img {
  transform: scale(1.02);
}

.engage-photo-inline {
  width: min(100% - 2.75rem, var(--max));
  margin: 0 auto var(--space-9);
  aspect-ratio: 16 / 9;
}

/* ——— How Legion works ——— */
.how-title {
  margin-bottom: var(--space-8);
  max-width: 14ch;
}

.how-steps {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 40rem;
  border-top: 1px solid var(--line-on-dark);
}

.how-steps li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-on-dark);
}

.how-steps strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.how-steps span {
  display: block;
  color: var(--dim-on-dark);
  font-size: 1.05rem;
  max-width: 32rem;
  line-height: 1.55;
}


/* ——— Service stack (inner) ——— */
.service-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--line-on-light);
  align-items: start;
}

.service-row:last-of-type {
  border-bottom: 1px solid var(--line-on-light);
}

.service-row .num {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute-on-light);
  display: block;
  margin-bottom: 0.65rem;
}

.service-row h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.service-row .chapter-body p {
  color: var(--dim-on-light);
  margin-bottom: 0.85rem;
  max-width: 36rem;
  font-size: 1.05rem;
}

.service-row .chapter-body p.specialty-note {
  font-size: 0.95rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-on-light);
  color: var(--mute-on-light);
}

.service-row .text-link,
.service-row .card-link {
  display: inline-flex;
  margin-top: 1.25rem;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.7;
}

.card-link:hover {
  opacity: 1;
}

/* Industry detail */
.industry-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.industry-card {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) 1fr;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: var(--space-7) 0;
  border-top: 1px solid var(--line-on-light);
  align-items: start;
}

.industry-card:last-of-type {
  border-bottom: 1px solid var(--line-on-light);
}

.industry-card .tag {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute-on-light);
  padding-top: 0.35rem;
}

.industry-card h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin-bottom: 0.75rem;
}

.industry-card p {
  color: var(--dim-on-light);
  max-width: 36rem;
  font-size: 1.05rem;
}

/* Ethos / about */
.ethos-list {
  list-style: none;
  border-top: 1px solid var(--line-on-light);
  max-width: 40rem;
}

.ethos-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-on-light);
}

.ethos-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.35rem;
}

.ethos-list span {
  color: var(--dim-on-light);
  font-size: 0.975rem;
  display: block;
  max-width: 34rem;
}

.founder-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
  max-width: 40rem;
}

.founder-initials {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.founder-block .role {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute-on-light);
  margin: 0.3rem 0 0.85rem;
}

.founder-block p:last-child {
  color: var(--dim-on-light);
  max-width: 32rem;
}

/* ——— CTA ——— */
.cta-band {
  padding: calc(var(--nav-h) + var(--space-8)) 0 var(--space-10);
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-band > .container > p {
  color: var(--dim-on-dark);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  max-width: 28rem;
  margin-inline: auto;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.cta-band-photo {
  isolation: isolate;
}

.cta-band-photo .container {
  position: relative;
  z-index: 2;
}

/* ——— Page hero ——— */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 var(--space-8);
  background: var(--black);
  color: var(--text-on-dark);
  position: relative;
  overflow: visible;
}

.page-hero .lede {
  margin-top: 1.35rem;
}

.page-hero-light {
  background: var(--paper);
  color: var(--text-on-light);
}

.page-hero-photo {
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 4rem) 0 var(--space-7);
}

.page-hero .display,
.chapter-hero .display,
.cta-band .display {
  padding-block: 0.04em 0.06em;
}

.page-hero-photo .container {
  position: relative;
  z-index: 2;
}

.page-hero-photo .lede {
  color: rgba(255, 255, 255, 0.7);
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--dim-on-light);
  margin-bottom: 2.25rem;
  max-width: 26rem;
}

.contact-meta {
  list-style: none;
  display: grid;
  gap: 1.35rem;
}

.contact-meta .label {
  display: block;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute-on-light);
  margin-bottom: 0.3rem;
}

.contact-meta .value {
  font-weight: 500;
}

.contact-meta .muted {
  color: var(--mute-on-light);
  font-weight: 400;
  font-style: italic;
}

.contact-form-wrap {
  border-top: 1px solid var(--line-on-light);
  padding: clamp(1.75rem, 3vw, 2.35rem) 0 0;
  background: transparent;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.form-group .hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--mute-on-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-on-light);
  color: var(--text-on-light);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111111' d='M1.4 0.6L6 5.2 10.6 0.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  background-size: 10px 7px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--black);
  outline: none;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--mute-on-light);
  line-height: 1.5;
}

.form-note code {
  font-family: var(--mono);
  font-size: 0.7rem;
}

.form-success {
  display: none;
  padding: 1rem 0;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--line-on-light);
  font-size: 0.9rem;
}

.form-success.is-visible {
  display: block;
}

.form-success[hidden] {
  display: none !important;
}

.form-success-title {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.form-success-body {
  margin: 0;
  color: var(--mute-on-light);
}

.form-error {
  display: none;
  padding: 0.85rem 0;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--line-on-light);
  font-size: 0.9rem;
  color: #8b1a1a;
}

.form-error.is-visible {
  display: block;
}

.form-error[hidden] {
  display: none !important;
}

.contact-photo {
  margin-top: 2.5rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  max-width: 26rem;
}

.photo-aside {
  margin: var(--space-6) 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  max-height: 28rem;
}

.industry-photo-break {
  margin: 0 0 var(--space-6);
  aspect-ratio: 21 / 8;
  overflow: hidden;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--black);
  color: var(--text-on-dark);
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid var(--line-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1.15rem;
  color: var(--dim-on-dark);
  font-size: 0.9rem;
  max-width: 22rem;
  line-height: 1.55;
}

.footer-brand .footer-cta-line {
  margin-top: 1.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  color: var(--text-on-dark);
}

.footer-brand .footer-cta-line a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 1;
}

.footer-brand .footer-cta-line a:hover {
  opacity: 0.65;
}

.footer-col h3 {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute-on-dark);
  margin-bottom: 1.15rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-on-dark);
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute-on-dark);
}

.footer-credits {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
}

.footer-credits:hover {
  opacity: 1;
}

.credits-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.credits-list li {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-on-light);
  font-size: 0.9375rem;
  color: var(--dim-on-light);
}

.credits-list strong {
  display: block;
  color: var(--text-on-light);
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.credits-list a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ——— Photography ——— */
.photo-frame img,
.photo-bleed img,
.engage-photo img,
.contact-photo img,
.photo-aside img,
.industry-photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.06) brightness(0.92);
}

.photo-bleed {
  margin: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.photo-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.58);
  pointer-events: none;
}

.photo-veil-strong {
  background: rgba(0, 0, 0, 0.7);
}

.photo-frame {
  margin: 0;
  overflow: hidden;
  background: #111;
  position: relative;
}

/* Soft reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.chapter-compact {
  padding-top: 0;
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .service-row,
  .industry-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .engage-photo {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1001;
  }

  .site-header.on-light .nav-links {
    background: rgba(245, 245, 243, 0.98);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: -0.02em;
    font-family: var(--display);
    font-weight: 600;
    opacity: 1;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-block {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.6rem, 11vw, 3.75rem);
  }

  .chapter {
    padding: var(--space-8) 0;
  }

  .thesis {
    padding: var(--space-8) 0;
  }

  .cta-band {
    padding: calc(var(--nav-h) + var(--space-7)) 0 var(--space-8);
  }

  .engage-copy {
    padding: calc(var(--nav-h) + var(--space-7)) 0 var(--space-6);
  }

  .chapter-hero {
    padding-top: calc(var(--nav-h) + 2.5rem);
    min-height: 92vh;
    min-height: 92dvh;
  }

  .page-hero-photo {
    min-height: 42vh;
  }

  .engage-photo {
    aspect-ratio: 4 / 3;
  }

  .engage-photo-inline {
    margin-bottom: var(--space-8);
  }
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .engage:hover .engage-photo img {
    transform: none;
  }

  .photo-frame img,
  .photo-bleed img,
  .engage-photo img {
    filter: grayscale(1) contrast(1.04);
  }
}
