:root {
  --ink: #173b59;
  --ink-deep: #102d47;
  --ink-soft: #28597f;
  --gold: #e2aa3f;
  --gold-soft: #f3d699;
  --paper: #fbfcfd;
  --mist: #edf3f6;
  --line: #d9e3e9;
  --text: #172b3a;
  --muted: #607383;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 30;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.7rem 0.95rem;
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(217, 227, 233, 0.8);
  background: rgba(251, 252, 253, 0.95);
  backdrop-filter: blur(14px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 3rem));
  min-height: 4.85rem;
  margin: 0 auto;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-deep);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 700;
}

.brand-copy strong {
  display: block;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  line-height: 1.05;
}

.brand-copy span {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.7vw, 1.55rem);
  color: #4f6576;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.28rem 0;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  border-bottom: 2px solid var(--gold);
}

.nav-links .nav-contact {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--ink);
  color: var(--ink) !important;
}

.nav-links .nav-contact[aria-current="page"] {
  border-bottom-color: var(--ink);
  background: var(--ink);
  color: var(--white) !important;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  margin: 0 0 1rem;
  color: #a87420;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.12rem;
  border: 1px solid transparent;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--gold {
  background: var(--gold);
  color: var(--ink-deep);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button--dark {
  border-color: var(--ink);
  color: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.home-hero {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  width: min(1180px, calc(100% - 3rem));
  min-height: 37rem;
  margin: 0 auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  padding: 5.2rem 0 2.7rem;
}

.home-hero .eyebrow {
  color: var(--gold);
}

.home-hero h1,
.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.3vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.home-hero__lede {
  max-width: 38rem;
  margin-bottom: 1.7rem;
  color: #d7e4ed;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.pills span {
  padding: 0.4rem 0.72rem;
  border: 1px solid rgba(226, 170, 63, 0.6);
  border-radius: 999px;
  color: #f6dfa9;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-hero__visual {
  position: relative;
  align-self: end;
  min-height: 23rem;
  padding-top: 1rem;
}

.home-hero__visual::before {
  position: absolute;
  top: 0;
  right: 4%;
  width: 64%;
  height: 64%;
  border: 1px solid rgba(226, 170, 63, 0.38);
  border-radius: 50%;
  content: "";
}

.home-hero__visual::after {
  position: absolute;
  right: 0;
  bottom: -4.2rem;
  width: 68%;
  height: 1px;
  content: "";
  background: var(--gold);
}

.home-hero__visual img {
  position: absolute;
  z-index: 1;
  right: -1rem;
  bottom: 0;
  width: min(38rem, 115%);
  max-width: none;
}

.hero-note {
  position: absolute;
  z-index: 2;
  top: 3.2rem;
  left: 0;
  width: 10.5rem;
  padding: 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(16, 45, 71, 0.88);
  color: #c4d5e2;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-note strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold-soft);
  font-size: 1.12rem;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  min-height: 8.6rem;
  padding: 1.45rem 1.2rem 1.5rem 0;
}

.stat + .stat {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.65rem;
  color: #c4d5e2;
  font-size: 0.85rem;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.85rem;
}

.section-heading h2,
.content-title {
  max-width: 14ch;
  margin-bottom: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-heading > p {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.page-hero {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(15rem, 0.55fr) minmax(5rem, 0.2fr);
  width: min(1180px, calc(100% - 3rem));
  min-height: 25rem;
  margin: 0 auto;
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  max-width: 10.5ch;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.1vw, 5.2rem);
}

.page-hero__copy {
  max-width: 31rem;
  margin: 0 0 0.3rem;
  color: #c5d6e2;
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-hero__number {
  align-self: start;
  min-width: 0;
  justify-self: end;
  overflow: hidden;
  color: rgba(226, 170, 63, 0.16);
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.11em;
  line-height: 0.75;
  text-align: right;
  user-select: none;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5.75rem);
  align-items: start;
}

.side-note {
  position: sticky;
  top: 6.5rem;
  padding: 1.65rem 1.45rem 1.5rem;
  border-top: 3px solid var(--gold);
  background: var(--mist);
}

.side-note span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.side-note strong {
  display: block;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.13;
}

.intro-copy p {
  max-width: 47rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic-card {
  display: flex;
  min-height: 13.5rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.topic-card:hover,
.topic-card:focus-visible {
  background: var(--mist);
  transform: translateY(-2px);
}

.topic-card__number {
  color: #a8731d;
  font-family: var(--serif);
  font-size: 1rem;
}

.topic-card h3 {
  margin: 1.8rem 0 0.55rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.08;
}

.topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.topic-card__link {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.featured-band {
  color: var(--white);
  background: var(--ink);
}

.featured-band .section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.featured-band h2 {
  max-width: 10ch;
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.featured-band__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.featured-band__list li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #d2e0e9;
  font-size: 0.95rem;
}

.featured-band__list b {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold-soft);
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.competency-card {
  min-height: 7.4rem;
  padding: 1.25rem 1.35rem 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.competency-card:nth-child(even) {
  padding-right: 0;
  padding-left: 1.35rem;
  border-left: 1px solid var(--line);
}

.competency-card h3 {
  margin-bottom: 0.37rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.competency-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.48;
}

.process-section {
  color: var(--white);
  background: var(--ink-deep);
}

.process-section .section-heading h2 {
  color: var(--white);
}

.process-section .section-heading > p {
  color: #c3d5e2;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.process-step {
  min-height: 15.5rem;
  padding: 1.55rem 1.15rem 1.5rem 0;
}

.process-step + .process-step {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step__number {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 0.65rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.08;
}

.process-step p {
  margin-bottom: 0;
  color: #c3d5e2;
  font-size: 0.86rem;
  line-height: 1.55;
}

.advantages {
  background: #f3f7f9;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.advantage {
  min-height: 14.5rem;
  padding: 1.6rem;
  border-top: 3px solid var(--gold);
  background: var(--white);
}

.advantage__number {
  display: block;
  margin-bottom: 2rem;
  color: #a8731d;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.advantage h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.12;
}

.advantage p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.sectors-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.sectors-layout h2 {
  margin-bottom: 1rem;
}

.sectors-layout > div > p:not(.eyebrow) {
  max-width: 30rem;
  margin-bottom: 0;
  color: var(--muted);
}

.sector-list {
  border-top: 1px solid var(--line);
}

.sector-row {
  display: grid;
  grid-template-columns: 2.4rem minmax(10rem, 0.7fr) 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 5.25rem;
  border-bottom: 1px solid var(--line);
}

.sector-row b {
  color: #a8731d;
  font-family: var(--serif);
}

.sector-row strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.sector-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 12.6rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: #f4f8fa;
  transform: translateY(-2px);
}

.service-card__index {
  display: block;
  margin-bottom: 2.4rem;
  color: #a76f19;
  font-family: var(--serif);
  font-size: 1rem;
}

.service-card h3 {
  margin-bottom: 0.52rem;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

.project-section {
  color: var(--white);
  background: var(--ink);
}

.project-section .section-heading h2 {
  color: var(--white);
}

.project-section .section-heading > p {
  color: #c3d5e2;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.project-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.32rem;
  border: 1px solid rgba(226, 170, 63, 0.34);
  background: rgba(12, 39, 61, 0.56);
}

.project-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.project-card__type {
  max-width: 9rem;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card__value {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.36rem;
  line-height: 1;
  text-align: right;
}

.project-card h3 {
  margin: 1.4rem 0 0.68rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.05;
}

.project-card p {
  margin-bottom: 0;
  color: #c6d7e3;
  font-size: 0.85rem;
  line-height: 1.52;
}

.project-card__number {
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.recent-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.recent-layout h2 {
  max-width: 10ch;
  margin-bottom: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  line-height: 1.08;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.4rem;
}

.recent-card {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.recent-card h3 {
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.recent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.reference-section {
  color: var(--white);
  background: var(--ink-deep);
}

.reference-section .section-heading h2 {
  color: var(--white);
}

.reference-section .section-heading > p {
  color: #c3d5e2;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.reference-card {
  min-height: 13.3rem;
  padding: 1.55rem;
  background: var(--ink-deep);
}

.reference-card__initials {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 2.1rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
}

.reference-card h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.1;
}

.reference-card p {
  margin: 0;
  color: #c3d5e2;
  font-size: 0.86rem;
}

.leader-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.leader-card {
  padding: 2rem;
  background: var(--mist);
}

.leader-mark {
  display: grid;
  width: 5.8rem;
  height: 5.8rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 700;
}

.leader-card h2 {
  margin-bottom: 0.2rem;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
}

.leader-card__role {
  color: #9c6919;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leader-card p {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.38fr) 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.experience-row strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.experience-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.landmark-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.75rem;
  background: var(--line);
}

.landmark-card {
  min-height: 9.7rem;
  padding: 1.25rem;
  background: var(--paper);
}

.landmark-card span {
  display: block;
  margin-bottom: 1.35rem;
  color: #a8731d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landmark-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.12;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.95fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.contact-layout h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

.contact-layout__intro {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-details > * {
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-deep);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 700;
  text-decoration: none;
}

.contact-details span {
  display: block;
  margin-bottom: 0.24rem;
  color: #7b6541;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.contact-panel {
  margin-top: 3.5rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--ink);
}

.contact-panel h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.08;
}

.contact-panel p {
  max-width: 45rem;
  margin-bottom: 1.6rem;
  color: #c3d5e2;
}

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

footer {
  background: var(--ink-deep);
  color: #b4c9d8;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 3rem));
  min-height: 5rem;
  margin: 0 auto;
  font-size: 0.78rem;
}

.footer-inner strong {
  color: var(--white);
}

@media (max-width: 960px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 4.4rem;
  }

  .home-hero__visual {
    width: min(35rem, 100%);
    min-height: 21rem;
    margin-left: auto;
  }

  .page-hero__inner,
  .home-intro,
  .featured-band .section,
  .section-heading,
  .sectors-layout,
  .recent-layout,
  .leader-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero__number {
    display: none;
  }

  .side-note {
    position: static;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-step:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .process-step:nth-child(4),
  .process-step:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 700px) {
  .site-nav,
  .home-hero__inner,
  .stats,
  .section,
  .page-hero__inner,
  .footer-inner {
    width: min(100% - 2rem, 1180px);
  }

  .site-nav {
    min-height: 4.25rem;
  }

  .nav-links {
    max-width: 58%;
    gap: 0.65rem;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a:not(.nav-contact) {
    display: none;
  }

  .home-hero__inner {
    min-height: 0;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 4.45rem);
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 11.5vw, 3.7rem);
  }

  .home-hero__visual {
    min-height: 16rem;
    margin-top: -0.5rem;
  }

  .home-hero__visual::before {
    top: 0;
    right: 8%;
    width: 60%;
  }

  .hero-note {
    top: 1rem;
    width: 9rem;
    padding: 0.75rem;
  }

  .home-hero__visual img {
    right: -0.6rem;
    width: 116%;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .topic-grid,
  .competency-grid,
  .services-grid,
  .advantage-grid,
  .reference-grid,
  .landmark-list {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .service-card,
  .advantage {
    min-height: 0;
  }

  .competency-card,
  .competency-card:nth-child(even) {
    min-height: 0;
    padding: 1rem 0;
    border-left: 0;
  }

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

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(4) {
    min-height: 0;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .process-step:first-child {
    border-top: 0;
  }

  .process-step__number {
    margin-bottom: 0.75rem;
    font-size: 1.9rem;
  }

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

  .project-card {
    min-height: 13rem;
  }

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

  .experience-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .sector-row {
    grid-template-columns: 2rem 1fr;
    gap: 0.35rem 0.7rem;
    padding: 0.8rem 0;
  }

  .sector-row span {
    grid-column: 2;
  }

  .reference-card {
    min-height: 0;
  }

  .reference-card__initials {
    margin-bottom: 1rem;
  }

  .footer-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 1.25rem 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
