:root {
  --ink: #142026;
  --muted: #5e6b72;
  --line: #d7e0df;
  --paper: #f7f8f5;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4c49;
  --amber: #c8872c;
  --steel: #48616b;
  --charcoal: #101719;
  --shadow: 0 20px 60px rgba(16, 23, 25, 0.14);
}

* {
  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.55;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(16, 23, 25, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid rgba(216, 235, 230, 0.8);
  border-radius: 8px;
  font-size: 0.9rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}

nav a:hover,
nav a:focus-visible {
  color: var(--white);
}

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.94) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 23, 25, 0.96) 0%, rgba(16, 23, 25, 0.84) 35%, rgba(16, 23, 25, 0.34) 78%),
    linear-gradient(0deg, rgba(16, 23, 25, 0.78) 0%, rgba(16, 23, 25, 0.02) 45%);
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 40px));
  margin: 96px 0 56px;
  padding-left: clamp(20px, 6vw, 86px);
}

.hero-identity {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-identity img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: 50% 26%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
}

.hero-identity .eyebrow {
  margin-bottom: 8px;
}

.identity-label {
  margin: 0;
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 6.3vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button.pending {
  color: rgba(255, 255, 255, 0.72);
  border-style: dashed;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 44px 0 0;
}

.hero-stats div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-size: 2rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section-band {
  background: var(--white);
}

.section-inner,
.audiences,
.proof,
.skills {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-inner {
  padding: 86px 0;
}

.intro-grid,
.contact-grid,
.credentials-layout,
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.intro-grid p,
.proof-copy p,
.contact p,
.credentials-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.audiences article,
.service-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 23, 25, 0.06);
}

.audiences p,
.service-grid p,
.timeline p,
.credential-columns li {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

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

.proof {
  padding: 86px 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  padding: 22px 24px 22px 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline article::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 0;
  width: 4px;
  background: var(--teal);
}

.timeline span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.credential-columns div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 10px;
}

.skills {
  padding: 82px 0;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.skill-cloud span {
  padding: 10px 14px;
  color: var(--teal-dark);
  background: rgba(15, 118, 110, 0.09);
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 8px;
  font-weight: 750;
}

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

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

.contact .button.secondary {
  color: var(--teal-dark);
  border-color: rgba(15, 118, 110, 0.32);
  background: rgba(15, 118, 110, 0.08);
}

.contact .button.pending {
  color: var(--steel);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 23, 25, 0.96) 0%, rgba(16, 23, 25, 0.78) 68%, rgba(16, 23, 25, 0.46) 100%),
      linear-gradient(0deg, rgba(16, 23, 25, 0.88) 0%, rgba(16, 23, 25, 0.04) 45%);
  }

  .hero-content {
    padding-left: 20px;
  }

  .hero-identity img {
    width: 84px;
    height: 84px;
  }

  .hero-stats,
  .audiences,
  .service-grid,
  .credential-columns,
  .intro-grid,
  .contact-grid,
  .credentials-layout,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 520px;
  }

  .section-inner,
  .proof,
  .skills {
    padding: 64px 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

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

  .hero {
    min-height: 760px;
  }

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

  .hero-content {
    width: min(100% - 32px, 560px);
    margin-top: 84px;
  }

  .hero-identity {
    width: 100%;
    gap: 12px;
    padding-right: 12px;
  }

  .hero-identity img {
    width: 72px;
    height: 72px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
  }

  .section-inner,
  .audiences,
  .proof,
  .skills {
    width: min(100% - 32px, 1180px);
  }

  .audiences {
    padding: 56px 0;
  }

  .audiences article,
  .service-grid article {
    min-height: auto;
    padding: 22px;
  }
}
