:root {
  --ink: #17222b;
  --muted: #5d6874;
  --paper: #fbfbf8;
  --surface: #ffffff;
  --line: #dfe5e2;
  --teal: #0b7774;
  --teal-dark: #075a58;
  --coral: #c85e4c;
  --gold: #f2bd4d;
  --moss: #64785a;
  --blue: #315a72;
  --shadow: 0 18px 48px rgba(23, 34, 43, 0.13);
  --shadow-soft: 0 12px 34px rgba(23, 34, 43, 0.09);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfbf8 0%, #f4f8f5 48%, #fbfbf8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

::selection {
  color: var(--ink);
  background: rgba(242, 189, 77, 0.42);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(242, 189, 77, 0.7);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  right: clamp(12px, 3vw, 30px);
  left: clamp(12px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(14px, 3vw, 26px);
  color: var(--surface);
  background: rgba(23, 34, 43, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 20, 24, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(23, 34, 43, 0.08);
  box-shadow: 0 10px 28px rgba(23, 34, 43, 0.09);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--surface);
  background: var(--teal);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 700;
  opacity: 0.86;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
  transform: translateY(-1px);
}

.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(11, 119, 116, 0.09);
}

.site-header.is-scrolled .site-nav a.is-active {
  color: var(--teal-dark);
  background: rgba(11, 119, 116, 0.12);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 15px;
  color: var(--surface);
  background: var(--coral);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(200, 94, 76, 0.2);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-call:hover {
  background: #b84f3f;
  box-shadow: 0 16px 28px rgba(200, 94, 76, 0.28);
  transform: translateY(-1px);
}

.header-call svg,
.button svg,
.text-link svg,
.contact-methods svg,
.nav-toggle svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 146px clamp(18px, 5vw, 72px) 32px;
  overflow: hidden;
  color: var(--surface);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 24, 30, 0.92) 0%, rgba(12, 24, 30, 0.76) 40%, rgba(12, 24, 30, 0.18) 76%),
    linear-gradient(0deg, rgba(12, 24, 30, 0.72) 0%, rgba(12, 24, 30, 0.08) 48%);
}

.hero-content,
.hero-proof {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: clamp(34px, 5vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  text-wrap: balance;
}

h1 {
  max-width: 11.6em;
  font-size: 5.25rem;
  letter-spacing: 0;
}

h2 {
  max-width: 13em;
  font-size: 3.35rem;
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button.primary {
  color: var(--surface);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(11, 119, 116, 0.28);
}

.button.primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin-left: auto;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-proof div {
  min-width: 0;
  padding: 18px;
  background: rgba(10, 20, 24, 0.34);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.6rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) clamp(54px, 7vw, 92px);
  overflow: hidden;
  color: var(--surface);
  background: var(--ink);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  background-image: url("hero-it-support.png");
  background-position: 72% center;
  background-size: cover;
  opacity: 0.42;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(12, 24, 30, 0.94) 0%, rgba(12, 24, 30, 0.78) 48%, rgba(12, 24, 30, 0.34) 100%),
    linear-gradient(0deg, rgba(12, 24, 30, 0.72) 0%, rgba(12, 24, 30, 0.05) 62%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

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

.page-hero h1 {
  max-width: 11.4em;
  font-size: 4.75rem;
}

.page-hero .hero-copy {
  color: rgba(255, 255, 255, 0.84);
}

.section {
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}

.intro-band {
  width: 100%;
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  width: min(var(--content), 100%);
  margin: 0 auto;
  align-items: end;
}

.section-grid p:last-child,
.split-section > div > p,
.section-heading p,
.contact-copy > p,
.site-footer p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  gap: 16px clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading p {
  margin: 0;
}

.section-heading .eyebrow,
.section-heading.compact .eyebrow,
.contact-copy .eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
}

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

.section-heading h2 {
  grid-column: 1;
  max-width: 12em;
}

.section-heading > p:not(.eyebrow) {
  grid-column: 2;
  max-width: 560px;
  margin-bottom: 6px;
}

.section-heading.compact .eyebrow,
.section-heading.compact h2,
.section-heading.compact > p:not(.eyebrow) {
  grid-column: auto;
}

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

.service-card,
.review-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(23, 34, 43, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card {
  padding: 26px;
}

.service-card:hover,
.review-card:hover,
.detail-card:hover,
.value-grid article:hover,
.team-card:hover {
  border-color: rgba(11, 119, 116, 0.26);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-card > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--teal);
}

.service-card h3,
.review-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.review-card p,
.review-card blockquote,
.faq-list p,
.reason-list p,
.detail-card p,
.value-grid p,
.process-grid p,
.team-card p,
.career-notes p {
  color: var(--muted);
}

.service-card p,
.review-card p,
.reason-list p,
.detail-card p,
.value-grid p,
.process-grid p,
.team-card p,
.career-notes p {
  margin: 0;
}

.detail-grid,
.value-grid,
.team-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.outcome-section {
  padding-bottom: clamp(50px, 7vw, 82px);
}

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

.outcome-grid article {
  position: relative;
  min-width: 0;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  color: var(--surface);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.outcome-grid article::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
}

.outcome-grid article:nth-child(2) {
  background: var(--teal-dark);
}

.outcome-grid article:nth-child(3) {
  background: var(--blue);
}

.outcome-grid article:nth-child(4) {
  color: var(--ink);
  background: var(--gold);
}

.outcome-grid article:hover {
  box-shadow: 0 20px 42px rgba(23, 34, 43, 0.18);
  transform: translateY(-5px);
}

.outcome-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 950;
  opacity: 0.7;
}

.outcome-grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.outcome-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: currentColor;
  opacity: 0.78;
}

.detail-card,
.value-grid article,
.process-grid article,
.team-card,
.career-notes article {
  min-width: 0;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(23, 34, 43, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.detail-card > svg,
.value-grid svg,
.career-notes svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--teal);
}

.detail-card h3,
.value-grid h3,
.process-grid h3,
.team-card h3,
.career-notes h3 {
  margin-bottom: 10px;
}

.team-card .eyebrow {
  margin-bottom: 10px;
  color: var(--teal);
}

.team-card h3 {
  margin-bottom: 8px;
}

.team-title {
  margin-bottom: 14px !important;
  color: var(--ink) !important;
  font-weight: 850;
}

.team-photo {
  display: grid;
  place-items: center;
  width: 78px;
  min-height: 78px;
  margin-bottom: 20px;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(11, 119, 116, 0.96), rgba(100, 120, 90, 0.92)),
    #0b7774;
  border-radius: var(--radius);
}

.team-photo svg {
  width: 36px;
  height: 36px;
}

.team-card-placeholder .team-photo {
  background:
    linear-gradient(135deg, rgba(49, 90, 114, 0.92), rgba(100, 120, 90, 0.88)),
    var(--blue);
}

.team-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding: 10px 12px;
  color: var(--teal-dark);
  background: rgba(11, 119, 116, 0.08);
  border: 1px solid rgba(11, 119, 116, 0.18);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.team-social:hover {
  color: var(--surface);
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.team-social svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.team-social-placeholder {
  color: var(--muted);
  background: #f8faf9;
  border-color: var(--line);
}

.team-social-placeholder:hover {
  color: var(--muted);
  background: #f8faf9;
  border-color: var(--line);
  transform: none;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.career-notes {
  display: grid;
  gap: 14px;
}

.career-notes article {
  box-shadow: none;
}

.detail-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.process-section {
  width: 100%;
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
  background: #eef5f1;
  border-top: 1px solid #d9e8df;
  border-bottom: 1px solid #d9e8df;
}

.process-section .section-heading,
.process-grid {
  width: min(var(--content), 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.process-grid article {
  box-shadow: none;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--surface);
  background: var(--teal);
  border-radius: var(--radius);
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translateY(-34px);
}

.proof-strip article {
  min-width: 0;
  padding: 26px;
  background: var(--surface);
}

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

.proof-strip strong {
  color: var(--teal-dark);
  font-size: 2rem;
  line-height: 1;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.value-grid.stacked {
  grid-template-columns: 1fr;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto clamp(58px, 8vw, 104px);
  padding: clamp(28px, 5vw, 48px);
  color: var(--surface);
  background: var(--ink);
  border-radius: var(--radius);
}

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

.cta-band h2 {
  max-width: 12.5em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.split-section > div > p {
  max-width: 620px;
  margin: 22px 0 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--teal);
  font-weight: 900;
}

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

.reason-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.reason-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.reason-list span {
  color: var(--coral);
  font-weight: 900;
}

.reason-list h3 {
  margin-bottom: 7px;
}

.industries {
  width: 100%;
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
  background: #eef5f1;
  border-top: 1px solid #d9e8df;
  border-bottom: 1px solid #d9e8df;
}

.industries .section-heading,
.industry-row {
  width: min(var(--content), 100%);
  margin-right: auto;
  margin-left: auto;
}

.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.industry-row span {
  padding: 11px 14px;
  color: #26342b;
  background: var(--surface);
  border: 1px solid #d1ded5;
  border-radius: var(--radius);
  font-weight: 800;
}

.logo-showcase {
  overflow: hidden;
}

.logo-showcase .section-heading,
.logo-carousel {
  width: min(var(--content), 100%);
  margin-right: auto;
  margin-left: auto;
}

.logo-carousel {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 84px;
  pointer-events: none;
  content: "";
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #eef5f1, rgba(238, 245, 241, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #eef5f1, rgba(238, 245, 241, 0));
}

.logo-track,
.logo-set {
  display: flex;
  gap: 16px;
}

.logo-track {
  width: max-content;
  animation: logoMarquee 54s linear infinite;
}

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

.logo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 330px;
  min-height: 132px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d1ded5;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(23, 34, 43, 0.06);
}

.client-logo-frame {
  display: grid;
  place-items: center;
  flex: 0 0 96px;
  width: 96px;
  height: 76px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #dbe5e0;
  border-radius: var(--radius);
}

.client-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-logo-fallback {
  color: var(--surface);
  background: var(--teal);
  border-color: transparent;
  font-size: 1.45rem;
  font-weight: 950;
}

.client-logo-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--surface);
  background: var(--teal);
  border-radius: var(--radius);
  font-weight: 950;
}

.logo-card:nth-child(2n) .logo-mark {
  background: var(--blue);
}

.logo-card:nth-child(3n) .logo-mark {
  background: var(--coral);
}

.logo-card strong {
  font-size: 1rem;
  line-height: 1.15;
}

.logo-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.reviews-section {
  padding-bottom: clamp(48px, 7vw, 84px);
}

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

.review-card {
  padding: 26px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--gold);
}

.stars svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.review-card blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
}

.review-card.placeholder {
  border-style: dashed;
}

.review-card.empty-slot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 245px;
  color: var(--surface);
  background: var(--ink);
  border-color: transparent;
}

.review-card.empty-slot > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: var(--gold);
}

.review-card.empty-slot p {
  color: rgba(255, 255, 255, 0.74);
}

.review-card.empty-slot a {
  margin-top: 22px;
  color: var(--gold);
  font-weight: 900;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-list.wide {
  max-width: 980px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(23, 34, 43, 0.05);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 0.76fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 22px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-methods svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.contact-methods strong,
.contact-methods small {
  display: block;
}

.contact-methods small {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid #cfd8d4;
  border-radius: var(--radius);
}

.contact-form input {
  min-height: 46px;
  padding: 11px 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 119, 116, 0.16);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  padding: 44px clamp(18px, 5vw, 72px);
  color: var(--surface);
  background: #192129;
}

.footer-brand {
  color: var(--surface);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px 18px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold);
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(-8px, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(8px, 0, 0);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto auto;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .header-call {
    order: 3;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .section-grid,
  .section-heading,
  .split-section,
  .contact-section,
  .career-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .review-grid,
  .detail-grid,
  .value-grid,
  .process-grid,
  .team-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1,
  .page-hero h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:not(.eyebrow) {
    grid-column: 1;
  }

  .section-heading > p:not(.eyebrow) {
    margin-top: 4px;
    margin-bottom: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 14px;
  }

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

  .brand small,
  .header-call span {
    display: none;
  }

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

  .header-call,
  .nav-toggle {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
  }

  .nav-toggle {
    order: initial;
  }

  .header-call {
    position: fixed;
    right: 64px;
    top: 12px;
  }

  .site-nav {
    top: 78px;
    right: 12px;
    left: 12px;
  }

  .hero {
    min-height: 86svh;
    padding: 98px 18px 20px;
  }

  .page-hero {
    min-height: 66svh;
    padding: 98px 18px 46px;
  }

  .hero-media img {
    object-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 24, 30, 0.95) 0%, rgba(12, 24, 30, 0.8) 68%, rgba(12, 24, 30, 0.42) 100%),
      linear-gradient(0deg, rgba(12, 24, 30, 0.75) 0%, rgba(12, 24, 30, 0.16) 56%);
  }

  h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-proof div {
    padding: 13px 15px;
  }

  .hero-proof strong {
    font-size: 1.18rem;
  }

  .hero-proof span {
    margin-top: 3px;
  }

  .service-grid,
  .review-grid,
  .detail-grid,
  .value-grid,
  .process-grid,
  .team-grid,
  .outcome-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, var(--content));
  }

  .intro-band,
  .industries {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .logo-carousel {
    mask-image: none;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    display: none;
  }

  .logo-card {
    flex-basis: 286px;
    min-height: 118px;
    padding: 16px;
  }

  .client-logo-frame {
    flex-basis: 78px;
    width: 78px;
    height: 62px;
    padding: 8px;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .service-card,
  .review-card,
  .detail-card,
  .value-grid article,
  .process-grid article,
  .team-card,
  .career-notes article,
  .contact-form {
    padding: 20px;
  }

  .cta-band {
    width: min(100% - 28px, var(--content));
    padding: 24px;
  }

  .proof-strip {
    transform: none;
  }

  .reason-list article {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .logo-track {
    animation: none;
  }
}
