:root {
  color-scheme: light;
  --ink: #171814;
  --muted: #62685f;
  --paper: #f7f3ea;
  --surface: #fffdf8;
  --white: #ffffff;
  --forest: #103829;
  --forest-2: #18523c;
  --midnight: #1f2428;
  --silver: #d8ddd8;
  --gold: #b58b42;
  --gold-2: #e4c675;
  --teal: #245f63;
  --line: rgba(23, 24, 20, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(31, 36, 40, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--forest);
  color: var(--white);
  border-radius: 7px;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 243, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 1px;
  min-width: max-content;
}

.brand span {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

nav a:hover,
.platform-links a:hover,
.media-grid a:hover,
.page-link-grid a:hover {
  color: var(--forest);
}

.about-home {
  background: var(--paper);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 0.92fr);
  gap: 46px;
  align-items: start;
  padding: 58px max(22px, calc((100vw - 1360px) / 2)) 54px;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.about-hero .lede {
  max-width: 760px;
  margin-bottom: 24px;
}

.about-hero .about-copy {
  gap: 15px;
  color: #363b35;
  font-size: 1.02rem;
}

.about-hero-photo {
  position: sticky;
  top: 92px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 56, 41, 0.96), rgba(31, 36, 40, 0.98)),
    var(--midnight);
  border: 1px solid rgba(23, 24, 20, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-hero-photo img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 135px);
  object-fit: contain;
  object-position: center;
}

.about-hero-photo figcaption {
  padding: 13px 15px 15px;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid var(--line-dark);
  font-size: 0.88rem;
  font-weight: 750;
}

.career-snapshot,
.page-links {
  padding: 58px max(22px, calc((100vw - var(--max)) / 2));
}

.career-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--surface);
}

.selected-proof-points {
  background: #eef1ea;
}

.snapshot-card {
  min-height: 230px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.snapshot-card span,
.page-link-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.snapshot-card strong,
.page-link-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.snapshot-card p,
.page-link-grid small {
  color: var(--muted);
}

.page-links {
  background: #eef1ea;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-link-grid a {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.page-link-grid a:hover {
  border-color: rgba(16, 56, 41, 0.36);
  box-shadow: 0 18px 40px rgba(31, 36, 40, 0.09);
  transform: translateY(-1px);
}

.page-link-grid small {
  font-size: 0.93rem;
}

.compact-contact {
  grid-template-columns: minmax(0, 760px);
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 42px;
  align-items: start;
  padding: 74px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(247, 243, 234, 0.98), rgba(247, 243, 234, 0.9)),
    url("/assets/images/trophy-wide.jpg");
  background-position: center;
  background-size: cover;
}

.content-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.content-snapshot {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 36, 40, 0.08);
}

.content-snapshot strong {
  color: var(--forest);
  font-size: 1.2rem;
}

.content-snapshot span {
  color: var(--muted);
}

.content-channels {
  background: var(--surface);
}

.content-topics {
  background: var(--paper);
}

.contact-page {
  background: var(--paper);
}

.contact-hero {
  padding: 74px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(247, 243, 234, 0.98), rgba(247, 243, 234, 0.84)),
    url("/assets/images/trophy-wide.jpg");
  background-position: center;
  background-size: cover;
}

.contact-hero > div {
  max-width: 980px;
}

.contact-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.85rem);
}

.contact-pathways {
  background: var(--surface);
}

.contact-directory {
  padding-top: 86px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.64fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 58px max(22px, calc((100vw - var(--max)) / 2)) 44px;
  background:
    linear-gradient(120deg, rgba(247, 243, 234, 0.97) 0%, rgba(247, 243, 234, 0.88) 54%, rgba(31, 36, 40, 0.16) 100%),
    url("/assets/images/trophy-wide.jpg");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.2vw, 6.25rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.lede {
  max-width: 720px;
  color: #343933;
  font-size: clamp(1.16rem, 2vw, 1.48rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 900;
}

.button.primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.button.primary:hover {
  background: var(--forest-2);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.82);
}

.button.light {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: var(--line-dark);
}

.hero-photo {
  position: relative;
  margin-bottom: 0;
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
}

.hero-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  background: rgba(16, 56, 41, 0.86);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 750;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--line);
}

.stat-strip div {
  min-height: 128px;
  padding: 23px;
  background: var(--surface);
}

.stat-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 1.45rem;
  line-height: 1;
}

.stat-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.band,
.about-section,
.chart-section,
.split,
.contact {
  padding: 94px max(22px, calc((100vw - var(--max)) / 2));
}

.proof-band,
.content-split {
  background: var(--surface);
}

.ledger-band {
  background: var(--midnight);
  color: var(--white);
}

.ledger-band .eyebrow {
  color: var(--gold-2);
}

.ledger-band .section-heading p:not(.eyebrow),
.source-note {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.section-heading p:not(.eyebrow),
.chart-copy p,
.content-split p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
}

.proof-grid,
.service-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid article,
.service-grid article,
.media-grid a,
.contact-card,
.platform-links a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-grid article,
.service-grid article {
  min-height: 245px;
  padding: 25px;
}

.proof-grid span,
.media-grid span,
.platform-links span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-grid p,
.service-grid p,
.media-grid strong,
.platform-links small,
.mini-metrics dd,
.contact-card li {
  color: var(--muted);
}

.chart-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  background: #eef1ea;
}

.chart-copy {
  max-width: 920px;
}

.mini-metrics {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.mini-metrics div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.mini-metrics dt {
  color: var(--forest);
  font-size: 1.25rem;
  font-weight: 950;
}

.mini-metrics dd {
  margin-bottom: 0;
}

.chart-card {
  margin-bottom: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chart-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.proof-chart {
  width: 100%;
  max-width: 1120px;
  justify-self: center;
}

.chart-scroll {
  overflow-x: auto;
  background: #f0f0f0;
  -webkit-overflow-scrolling: touch;
}

.proof-chart img {
  background: #f0f0f0;
  aspect-ratio: auto;
  max-width: 100%;
  min-width: 0;
  object-fit: contain;
}

.chart-metrics {
  width: min(100%, 920px);
  margin-top: 0;
}

.chart-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.proof-placeholder {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.proof-placeholder div {
  min-height: 150px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(216, 221, 216, 0.42)),
    var(--surface);
}

.proof-placeholder span {
  display: block;
  margin-bottom: 12px;
  color: var(--forest-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-placeholder strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.proof-placeholder p {
  margin-bottom: 0;
  color: var(--muted);
}

.ledger-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.proof-table-stack {
  display: grid;
  gap: 18px;
}

.proof-table-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.proof-table-header {
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--line);
}

.proof-table-header h3 {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.proof-table-header h3 span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.42em;
  font-weight: 850;
  line-height: 1.1;
}

.proof-table-card .ledger-wrap {
  border: 0;
  border-radius: 0;
}

.results-table {
  background: var(--surface);
}

.results-table.raiders-results {
  min-width: 1080px;
}

.results-table.eagles-results {
  min-width: 760px;
}

.results-table.eagles-usage-results {
  min-width: 680px;
}

.results-table.career-results {
  min-width: 900px;
}

.results-table th,
.results-table td {
  border-bottom-color: var(--line);
}

.results-table th {
  color: var(--muted);
}

.results-table td,
.results-table td:first-child,
.results-table td:nth-child(3) {
  color: var(--ink);
}

.results-table td strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}

.results-table small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.table-metric {
  display: block;
  color: var(--forest);
  font-size: 1.72rem;
  font-weight: 950;
  line-height: 1;
}

.rank-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.rank-pill.best {
  background: var(--forest);
  color: var(--white);
}

.rank-pill.low {
  background: #f3d8d6;
  color: #8f2f2f;
}

.proof-table-card .source-note {
  padding: 13px 18px 17px;
  color: var(--muted);
}

.proof-bullets {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 22px 22px 42px;
  color: var(--forest);
  font-weight: 850;
}

.pending-metric {
  color: var(--muted);
  font-size: 1.22rem;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.06);
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  color: rgba(255, 255, 255, 0.82);
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:first-child,
td:nth-child(3) {
  color: var(--white);
  font-weight: 900;
}

.results-table th,
.results-table td {
  border-bottom-color: var(--line);
}

.results-table th {
  color: var(--muted);
}

.results-table td,
.results-table td:first-child,
.results-table td:nth-child(3) {
  color: var(--ink);
}

.source-note {
  max-width: 920px;
  margin: 18px 0 0;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
  gap: 52px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(16, 56, 41, 0.97), rgba(31, 36, 40, 0.98)),
    url("/assets/images/trophy-square.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.about-section .eyebrow {
  color: var(--gold-2);
}

.about-section h2 {
  margin-bottom: 0;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.79);
  font-size: 1.08rem;
}

.about-copy p {
  margin-bottom: 0;
}

.consulting-band {
  background: var(--paper);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article {
  background: var(--surface);
}

.service-grid h3 {
  color: var(--forest);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  gap: 46px;
  align-items: start;
  padding: 94px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.98), rgba(247, 243, 234, 0.9)),
    url("/assets/images/trophy-wide.jpg");
  background-position: center;
  background-size: cover;
}

.process-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-steps span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.75fr);
  gap: 46px;
  align-items: start;
}

.platform-links {
  display: grid;
  gap: 12px;
}

.platform-links a {
  display: grid;
  gap: 4px;
  padding: 20px;
}

.platform-links strong {
  font-size: 1.18rem;
}

.platform-links small {
  font-size: 0.9rem;
}

.media-band {
  background: #f0ede4;
}

.media-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.media-grid a {
  display: grid;
  align-content: start;
  min-height: 172px;
  padding: 22px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.media-grid a:hover {
  border-color: rgba(16, 56, 41, 0.36);
  box-shadow: 0 18px 40px rgba(31, 36, 40, 0.09);
  transform: translateY(-1px);
}

.media-grid strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.28;
}

.media-kit-page {
  background: var(--paper);
}

.media-kit-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding: 74px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(247, 243, 234, 0.97), rgba(247, 243, 234, 0.82)),
    url("/assets/images/trophy-wide.jpg");
  background-position: center;
  background-size: cover;
}

.media-kit-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
}

.media-kit-photo {
  overflow: hidden;
  margin-bottom: 0;
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-kit-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.media-kit-band {
  background: var(--surface);
}

.media-kit-featured {
  background: #eef1ea;
}

.bio-grid,
.featured-grid,
.topic-grid {
  display: grid;
  gap: 18px;
}

.bio-grid {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-grid-curated {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bio-grid article,
.featured-grid a,
.topic-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bio-grid p,
.featured-grid p,
.topic-grid p {
  color: var(--muted);
}

.featured-grid a {
  display: grid;
  align-content: start;
  min-height: 285px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.featured-grid a:hover {
  border-color: rgba(16, 56, 41, 0.36);
  box-shadow: 0 18px 40px rgba(31, 36, 40, 0.09);
  transform: translateY(-1px);
}

.featured-grid span,
.featured-grid small {
  display: block;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-grid span {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.74rem;
}

.featured-grid small {
  align-self: end;
  margin-top: 18px;
  color: var(--forest-2);
  font-size: 0.7rem;
}

.media-kit-contact {
  padding-top: 86px;
}

.consulting-page {
  background: var(--paper);
}

.consulting-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: 48px;
  align-items: center;
  padding: 74px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(247, 243, 234, 0.98), rgba(247, 243, 234, 0.84)),
    url("/assets/images/trophy-wide.jpg");
  background-position: center;
  background-size: cover;
}

.consulting-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5.5vw, 5.9rem);
}

.consulting-snapshot {
  display: grid;
  gap: 12px;
}

.consulting-snapshot div {
  padding: 22px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 36, 40, 0.08);
}

.consulting-snapshot strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 1.08rem;
}

.consulting-snapshot span {
  color: var(--muted);
}

.consulting-menu {
  background: var(--surface);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-grid article {
  min-height: 280px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 950;
}

.offer-grid p {
  color: var(--muted);
}

.consulting-contact {
  padding-top: 86px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
  gap: 46px;
  align-items: start;
  background: var(--forest);
  color: var(--white);
}

.contact .eyebrow {
  color: var(--gold-2);
}

.contact h2 {
  margin-bottom: 20px;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.email-line {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  color: var(--ink) !important;
  font-size: 1.12rem !important;
  font-weight: 900;
}

.contact .email-line {
  color: var(--white) !important;
}

.contact-hero .contact-email {
  background: var(--white);
  border-color: rgba(16, 56, 41, 0.26);
  color: var(--forest) !important;
  box-shadow: 0 12px 30px rgba(31, 36, 40, 0.12);
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
}

.contact-socials {
  display: grid;
  max-width: 620px;
  gap: 10px;
  margin-top: 24px;
}

.contact-socials a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  color: var(--white);
}

.contact-socials a:hover {
  border-color: rgba(228, 198, 117, 0.72);
}

.contact-socials span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-socials strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-card h3 {
  color: var(--white);
}

.contact-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.contact-card li {
  color: rgba(255, 255, 255, 0.78);
}

.not-found {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 74px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(247, 243, 234, 0.97), rgba(247, 243, 234, 0.88)),
    url("/assets/images/trophy-wide.jpg");
  background-position: center;
  background-size: cover;
}

.not-found section {
  max-width: 760px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .hero,
  .about-hero,
  .about-section,
  .chart-section,
  .process-section,
  .media-kit-hero,
  .consulting-hero,
  .content-hero,
  .contact-hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 560px;
  }

  .stat-strip,
  .career-snapshot,
  .page-link-grid,
  .proof-grid,
  .service-grid,
  .media-grid,
  .featured-grid,
  .topic-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-photo {
    position: relative;
    top: auto;
  }

  .about-hero-photo img {
    max-height: none;
  }

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

@media (max-width: 620px) {
  .band,
  .about-section,
  .chart-section,
  .process-section,
  .media-kit-hero,
  .consulting-hero,
  .contact-hero,
  .split,
  .contact {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .media-kit-hero h1 {
    max-width: 320px;
    font-size: 2.28rem;
    line-height: 1.06;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 430px;
  }

  .hero-actions,
  .contact-actions,
  .section-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stat-strip,
  .career-snapshot,
  .page-link-grid,
  .proof-grid,
  .service-grid,
  .media-grid,
  .featured-grid,
  .topic-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .mini-metrics div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ledger-wrap {
    overflow-x: visible;
    border: 0;
  }

  .ledger-wrap table,
  .ledger-wrap thead,
  .ledger-wrap tbody,
  .ledger-wrap tr,
  .ledger-wrap td {
    display: block;
    width: 100%;
    min-width: 0 !important;
  }

  .ledger-wrap table,
  .results-table,
  .results-table.raiders-results,
  .results-table.eagles-results,
  .results-table.eagles-usage-results,
  .results-table.career-results {
    min-width: 0 !important;
  }

  .ledger-wrap thead {
    display: none;
  }

  .ledger-wrap tr {
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .ledger-wrap tr:last-child {
    margin-bottom: 0;
  }

  .ledger-wrap td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 14px;
    border-bottom-color: var(--line);
    color: var(--ink);
  }

  .ledger-wrap td::before {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .ledger-wrap td[data-label]::before {
    content: attr(data-label);
  }

  .proof-table-header {
    padding: 18px 18px 14px;
  }

  .proof-table-header h3 {
    font-size: 1.34rem;
    line-height: 1.08;
  }

  .table-metric {
    font-size: 1.48rem;
  }

  .results-table small {
    margin-top: 4px;
    font-size: 0.8rem;
  }

  .process-steps article {
    grid-template-columns: 1fr;
  }

  .email-line {
    width: 100%;
    overflow-wrap: anywhere;
  }
}
