:root {
  --blue: #026eb7;
  --blue-dark: #01497c;
  --ink: #151515;
  --muted: #575757;
  --soft: #f6f6f6;
  --line: #e2e2e2;
  --white: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Gudea", Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  padding: 24px 0 18px;
}

.site-logo img {
  width: min(381px, 78vw);
  height: auto;
}

.primary-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .143em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--blue);
}

.button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 4px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .143em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, transform .2s ease;
}

.button:hover,
.wp-block-button__link:hover {
  background: #0388e0;
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--white);
  color: #303030;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .24);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: 82px 0;
}

.hero-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 42px 48px;
  background: rgba(2, 110, 183, .9);
  text-align: center;
}

.hero-panel.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .143em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Old Standard TT", serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
}

h2 {
  color: var(--blue);
  font-size: clamp(34px, 4vw, 48px);
  text-align: center;
}

h3 {
  color: var(--blue);
  font-size: 28px;
}

.hero-copy {
  max-width: 660px;
  margin: 20px auto 30px;
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-panel.left .hero-copy {
  margin-left: 0;
}

.section {
  padding: 64px 0;
}

.section.soft,
.soft {
  background: var(--soft);
}

.section-intro {
  max-width: 760px;
  margin: 18px auto 42px;
  color: var(--muted);
  font-size: 20px;
  text-align: center;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.card p,
.team-card p,
.quote p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.growth-service-card h3 {
  color: var(--blue);
  font-size: 30px;
  line-height: 1.08;
}

.growth-service-card p {
  font-size: 16px;
  line-height: 1.75;
}

.service-row p {
  color: var(--muted);
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.case-image {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.case-image img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  transition: transform .25s ease;
}

.case-image:hover img {
  transform: scale(1.035);
}

.case-body {
  padding: 26px;
}

.case-body h3 {
  margin-top: 0;
}

.case-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  background: var(--soft);
  padding: 38px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.proof-item {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-number {
  display: block;
  color: var(--blue);
  font-family: "Old Standard TT", serif;
  font-size: 46px;
  font-style: italic;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 700;
}

.proof-client {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .143em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: 4px;
  background: var(--soft);
}

.split-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
}

.step strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
}

.step p {
  margin: 4px 0 0;
  color: var(--muted);
}

.services-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 52px;
  align-items: stretch;
}

.services-copy {
  display: grid;
  align-content: start;
}

.service-entry {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.service-entry:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.service-entry h3 {
  margin: 0;
  color: var(--blue);
  font-family: Gudea, Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.service-entry p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.services-image {
  min-height: 0;
  height: 100%;
  background-image: url("https://img1.wsimg.com/isteam/ip/f5896ab9-6274-4a05-9939-cccc377f0b3b/blob-1781350.png/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,m");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-row {
  min-height: 245px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.service-row:last-child {
  border-right: 0;
}

.service-row h3 {
  margin-top: 0;
  color: var(--ink);
  font-size: 19px;
}

.service-row p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.certification-section h2 {
  margin-bottom: 30px;
}

.certification-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.certification-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
}

.certification-logo img {
  display: block;
  max-width: 230px;
  max-height: 96px;
  object-fit: contain;
}

.quote {
  margin: 0;
  padding: 30px;
  border-left: 4px solid var(--blue);
  background: var(--white);
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.team-list {
  display: grid;
  gap: 42px;
  margin-top: 48px;
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(240px, .86fr) minmax(0, 1.14fr);
  gap: 38px;
  align-items: center;
}

.team-profile.reversed {
  grid-template-columns: minmax(0, 1.14fr) minmax(240px, .86fr);
}

.team-profile.reversed .team-media {
  order: 2;
}

.team-profile.reversed .team-copy {
  order: 1;
}

.team-media {
  display: flex;
  justify-content: center;
}

.team-photo {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: #f3f3f3;
}

.team-copy {
  text-align: center;
}

.team-copy h3 {
  margin-top: 0;
}

.team-copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.role {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .143em;
  text-transform: uppercase;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 26px auto 0;
  padding: 0;
  list-style: none;
}

.capabilities li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-weight: 700;
}

.booking {
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.booking h2,
.booking .section-intro {
  color: var(--white);
}

.booking-shell {
  margin-top: 34px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.meetings-iframe-container {
  min-height: 720px;
}

.clients-section {
  overflow: hidden;
}

.logo-ticker {
  position: relative;
  margin-top: 32px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 18px 0;
  animation: logo-scroll 38s linear infinite;
}

.logo-ticker:hover .logo-track {
  animation-play-state: paused;
}

.ticker-logo {
  flex: 0 0 220px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.ticker-logo img {
  display: block;
  max-width: 170px;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .86;
  transition: filter .2s ease, opacity .2s ease;
}

.ticker-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.ticker-logo span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.content-page {
  max-width: 860px;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: #595959;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 980px) {
  .grid.five,
  .grid.three,
  .growth-services-grid,
  .team-profile,
  .team-profile.reversed,
  .split,
  .services-split,
  .services-list {
    grid-template-columns: 1fr 1fr;
  }

  .services-split {
    gap: 34px;
  }

  .services-image {
    min-height: 460px;
  }

  .service-row:nth-child(2n) {
    border-right: 0;
  }

  .service-row:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .primary-nav ul {
    gap: 14px 22px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    min-height: 120px;
  }

  .hero-inner {
    min-height: 520px;
    padding: 56px 0;
  }

  .hero-panel {
    padding: 30px 24px;
  }

  .section {
    padding: 48px 0;
  }

  .grid.five,
  .grid.three,
  .grid.two,
  .growth-services-grid,
  .team-profile,
  .team-profile.reversed,
  .split,
  .services-split,
  .services-list,
  .certification-logos,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .team-list {
    gap: 38px;
    margin-top: 34px;
  }

  .team-profile,
  .team-profile.reversed {
    gap: 22px;
  }

  .team-profile.reversed .team-media,
  .team-profile.reversed .team-copy {
    order: initial;
  }

  .team-photo {
    width: min(100%, 360px);
  }

  .services-list {
    border-bottom: 0;
  }

  .services-image {
    min-height: 330px;
  }

  .service-row,
  .service-row:nth-child(2n),
  .service-row:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .logo-ticker {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .logo-track {
    animation-duration: 32s;
  }

  .ticker-logo {
    flex-basis: 190px;
    height: 84px;
    padding: 14px 22px;
  }

  .ticker-logo img {
    max-width: 142px;
    max-height: 54px;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .meetings-iframe-container {
    min-height: 760px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .logo-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px;
    animation: none;
  }

  .logo-track .ticker-logo:nth-child(n+9) {
    display: none;
  }
}

.cr-logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.cr-logo-tile {
  min-height: 94px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
}

.cr-logo-tile img {
  max-width: 150px;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .82;
}

.operator-console {
  background: #0a2338;
  color: #fff;
  padding: 28px;
  border-top: 5px solid var(--blue);
  font-size: 14px;
  line-height: 1.65;
}

.operator-console strong {
  color: #82c9f4;
  display: inline-block;
  min-width: 92px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 28px;
}

.metric-band div {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  display: block;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.metric-band span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-top: 28px;
  font-size: 15px;
}

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

.comparison-table th {
  background: var(--soft);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.comparison-table td:nth-child(3) {
  color: var(--blue);
  font-weight: 700;
}

.case-note {
  margin-top: 24px;
  padding: 22px;
  border-left: 5px solid var(--blue);
  background: #f7fbfe;
  color: var(--muted);
}

@media (max-width: 800px) {
  .cr-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .metric-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-band div:nth-child(2) {
    border-right: 0;
  }

  .metric-band div {
    border-bottom: 1px solid var(--line);
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .cr-logo-strip {
    grid-template-columns: 1fr;
  }
}
