:root {
  --ink: #18202a;
  --muted: #64707f;
  --paper: #f6f7f4;
  --white: #ffffff;
  --navy: #172437;
  --steel: #586b83;
  --copper: #b86f38;
  --sage: #6c7f68;
  --line: rgba(24, 32, 42, 0.14);
  --shadow: 0 24px 70px rgba(24, 32, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.consulting-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--ink);
  background: rgba(246, 247, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.consulting-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(24, 32, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.header-action:hover {
  color: var(--ink);
}

.header-action {
  justify-self: end;
  padding: 11px 17px;
  color: var(--navy);
  border: 1px solid rgba(23, 36, 55, 0.28);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.consulting-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(64px, 8vw, 118px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 36, 55, 0.98), rgba(35, 52, 72, 0.94)),
    linear-gradient(45deg, rgba(184, 111, 56, 0.22), rgba(108, 127, 104, 0.24));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.consulting-hero .eyebrow,
.contact-section .eyebrow {
  color: #e0a46f;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.hero-copy p {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(24, 32, 42, 0.18);
}

.media-note span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.media-note strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.focus-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.focus-strip div {
  min-height: 158px;
  padding: clamp(22px, 3.6vw, 38px);
  border-right: 1px solid var(--line);
}

.focus-strip div:last-child {
  border-right: 0;
}

.focus-strip strong,
.focus-strip span {
  display: block;
}

.focus-strip strong {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.focus-strip span {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.55;
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading p:not(.eyebrow),
.support-grid p,
.experience-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.signals {
  background: #eef0ec;
}

.signal-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.signal-grid article,
.support-grid div {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border-top: 5px solid var(--copper);
  box-shadow: 0 14px 36px rgba(24, 32, 42, 0.07);
}

.signal-grid span,
.support-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.12;
}

.signal-grid p,
.support-grid p {
  margin-bottom: 0;
}

.services {
  background: var(--paper);
}

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

.service-card {
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background: var(--navy);
}

.service-card:nth-child(2) {
  background: var(--steel);
}

.service-card:nth-child(3) {
  color: var(--ink);
  background: #e4c49f;
}

.service-card span {
  display: block;
  margin-bottom: 34px;
  color: #e0a46f;
  font-weight: 800;
}

.service-card:nth-child(3) span {
  color: #7d4b25;
}

.service-card h3 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.service-card:nth-child(3) p {
  color: rgba(24, 32, 42, 0.72);
}

.approach {
  color: var(--white);
  background: #263444;
}

.support {
  background: var(--paper);
}

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

.support-grid div {
  min-height: 260px;
}

.approach .section-heading p {
  color: #e0a46f;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-list article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-list article:last-child {
  border-right: 0;
}

.approach-list span {
  display: block;
  margin-bottom: 52px;
  color: #e0a46f;
  font-weight: 800;
  text-transform: uppercase;
}

.approach-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.65;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background: #eef0ec;
}

.experience-copy {
  position: sticky;
  top: 104px;
}

.experience-grid {
  display: grid;
  gap: 14px;
}

.experience-grid div {
  padding: clamp(24px, 3vw, 34px);
  border-left: 5px solid var(--copper);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(24, 32, 42, 0.07);
}

.experience-grid strong,
.experience-grid span {
  display: block;
}

.experience-grid strong {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.experience-grid span {
  color: var(--muted);
  line-height: 1.62;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(64px, 8vw, 118px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background: var(--navy);
}

.contact-section p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel a {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 84px);
  color: var(--muted);
  background: var(--white);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .consulting-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .consulting-hero,
  .focus-strip,
  .signal-grid,
  .service-grid,
  .support-grid,
  .approach-list,
  .experience,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    position: static;
  }

  .focus-strip div,
  .approach-list article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-list article {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .focus-strip div:last-child,
  .approach-list article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .consulting-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .header-action {
    display: none;
  }

  .consulting-hero {
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
