:root {
  --ink: #17211f;
  --ink-soft: #4d5a56;
  --ink-muted: #71807b;
  --paper: #f4f0e8;
  --ivory: #fbf8f1;
  --surface: #ffffff;
  --charcoal: #182220;
  --charcoal-2: #24312e;
  --teal: #1f6f64;
  --teal-deep: #164c46;
  --copper: #bb6b3a;
  --sage: #dfe7df;
  --line: rgba(23, 33, 31, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(23, 33, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

::selection {
  color: #fff;
  background: var(--teal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 14px 36px rgba(23, 33, 31, 0.08);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal-deep);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--ink-soft);
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(31, 111, 100, 0.12);
  outline: none;
}

.nav-links .contact-link {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 82dvh;
  display: grid;
  align-items: end;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-home {
  background-image: linear-gradient(90deg, rgba(13, 22, 20, 0.9), rgba(13, 22, 20, 0.62), rgba(13, 22, 20, 0.28)), url("../images/strategy-room.jpg");
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 78px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark-section .eyebrow,
.contact-cta .eyebrow {
  color: #e1b27b;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.hero h1,
.page-hero h1,
.contact-copy h1 {
  max-width: 830px;
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
}

.hero p,
.page-hero p,
.contact-copy p {
  max-width: 660px;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--teal);
}

.hero .button.primary,
.contact-cta .button.primary {
  color: var(--ink);
  background: #fff;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: #fff;
  background: var(--charcoal);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--teal-deep);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.signal-band {
  background: var(--charcoal);
  color: #fff;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line-dark);
}

.signal-grid div {
  min-height: 126px;
  padding: 24px 22px;
  border-right: 1px solid var(--line-dark);
}

.signal-grid span,
.tile-index,
.service-card span,
.process-item span,
.info-card span {
  display: block;
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-grid strong {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.25;
}

.section {
  padding: 92px 0;
}

.section.white {
  background: #fff;
}

.section.ivory {
  background: var(--ivory);
}

.dark-section {
  color: #fff;
  background: var(--charcoal);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
}

.split-panel > *,
.editorial-grid > *,
.process-layout > *,
.contact-layout > *,
.service-grid > *,
.info-grid > *,
.service-row > *,
.signal-grid > * {
  min-width: 0;
}

.split-panel.reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.section-copy h2,
.section-heading h2,
.editorial-copy h2,
.cta-inner h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
}

.section-copy,
.section-heading,
.editorial-copy,
.page-hero-inner,
.contact-copy {
  min-width: 0;
}

.section-copy p,
.section-heading p,
.editorial-copy p {
  color: var(--ink-soft);
  font-size: 17px;
}

.dark-section .section-copy p,
.dark-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.section-copy > p:last-of-type,
.editorial-copy > p:last-of-type {
  margin-bottom: 28px;
}

.image-stack,
.wide-media,
.contact-photo {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
  box-shadow: var(--shadow);
  min-width: 0;
}

.image-stack img,
.wide-media img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack {
  min-height: 520px;
  position: relative;
}

.image-stack img {
  min-height: 520px;
}

.image-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 3px;
  padding: 18px;
  color: #fff;
  background: rgba(23, 33, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.image-caption strong {
  font-size: 15px;
}

.image-caption span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.section-heading.narrow {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.service-tile {
  min-height: 280px;
  padding: 28px;
  background: var(--charcoal-2);
}

.service-tile h3 {
  margin: 52px 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.service-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 50px;
  align-items: center;
}

.wide-media {
  min-height: 500px;
}

.wide-media img {
  min-height: 500px;
}

.editorial-copy {
  max-width: 520px;
}

.contact-cta {
  color: #fff;
  background: var(--teal-deep);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 680px;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.services-hero {
  background-image: linear-gradient(90deg, rgba(13, 22, 20, 0.9), rgba(13, 22, 20, 0.54), rgba(13, 22, 20, 0.2)), url("../images/campaign-review.jpg");
}

.process-hero {
  background-image: linear-gradient(90deg, rgba(13, 22, 20, 0.9), rgba(13, 22, 20, 0.55), rgba(13, 22, 20, 0.22)), url("../images/growth-session.jpg");
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 74px;
}

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

.service-card {
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.service-card h2 {
  margin: 46px 0 16px;
  font-size: 27px;
  line-height: 1.15;
}

.service-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.service-card li + li {
  margin-top: 10px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 106px;
}

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

.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.process-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal-deep);
  border-radius: 8px;
}

.process-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.process-item p {
  margin: 0;
  color: var(--ink-soft);
}

.image-break .wide-media {
  min-height: 440px;
}

.image-break .wide-media img {
  min-height: 440px;
}

.contact-hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  position: relative;
  color: #fff;
  background: var(--charcoal);
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: center;
  padding: 74px 0;
  position: relative;
  z-index: 1;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-copy .button {
  margin-top: 6px;
}

.contact-photo {
  min-height: 500px;
}

.contact-photo img {
  min-height: 500px;
}

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

.info-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.info-card p {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 18px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #111918;
  font-size: 14px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .button,
  .site-header,
  .nav-links a,
  .reveal {
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .reveal {
    transform: none;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero h1,
  .page-hero h1,
  .contact-copy h1 {
    font-size: 54px;
  }

  .section-copy h2,
  .section-heading h2,
  .editorial-copy h2,
  .cta-inner h2 {
    font-size: 38px;
  }

  .signal-grid,
  .service-row,
  .service-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-panel,
  .split-panel.reverse,
  .editorial-grid,
  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .editorial-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
    gap: 10px;
  }

  .brand {
    font-size: 13px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content,
  .page-hero-inner {
    padding: 86px 0 58px;
  }

  .hero h1,
  .page-hero h1,
  .contact-copy h1 {
    max-width: 10ch;
    font-size: 42px;
    line-height: 1.03;
  }

  .hero p,
  .page-hero p,
  .contact-copy p {
    max-width: 31ch;
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .editorial-copy h2,
  .cta-inner h2 {
    font-size: 31px;
  }

  .signal-grid,
  .service-row,
  .service-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    border-top: 1px solid var(--line-dark);
  }

  .signal-grid div {
    min-height: 108px;
    border-bottom: 1px solid var(--line-dark);
  }

  .image-stack,
  .image-stack img,
  .wide-media,
  .wide-media img,
  .contact-photo,
  .contact-photo img {
    min-height: 360px;
  }

  .service-card,
  .service-tile,
  .info-card {
    min-height: auto;
  }

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

  .info-card p {
    max-width: 30ch;
  }

  .cta-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .wrap,
  .nav,
  .hero-content,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero h1,
  .page-hero h1,
  .contact-copy h1 {
    font-size: 36px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding: 0 14px;
  }

  .image-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
