:root {
  color-scheme: light;
  --ink: #11151c;
  --muted: #5a6372;
  --line: #d9dee7;
  --paper: #f8fafc;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-strong: #0b5f59;
  --coral: #d75f4f;
  --amber: #b7791f;
  --steel: #273447;
  --shadow: 0 22px 70px rgba(17, 21, 28, 0.13);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(248, 250, 252, 0.82);
  border-bottom: 1px solid rgba(217, 222, 231, 0.7);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-elevated {
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 10px 35px rgba(17, 21, 28, 0.08);
}

.brand,
.main-nav,
.header-cta,
.button,
.proof-feature a,
.site-footer a {
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0;
}

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

.main-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 132px clamp(18px, 5vw, 72px) 54px;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 62% center;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.97) 0%, rgba(248, 250, 252, 0.82) 39%, rgba(248, 250, 252, 0.18) 77%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.hero-content {
  width: min(760px, 100%);
}

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

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

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

h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 6.7vw, 6.8rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 630px;
  color: #2e3848;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(17, 21, 28, 0.14);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.52);
}

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

.hero-stats div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(17, 21, 28, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 15px 42px rgba(17, 21, 28, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.section,
.band {
  padding: 96px clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.intro,
.market-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.intro p:not(.eyebrow),
.intro-copy p,
.section-grid > p,
.market-list {
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
}

.portrait-card {
  margin: 0;
}

.portrait-card img {
  width: min(100%, 430px);
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-card figcaption {
  max-width: 430px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}


.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

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

.service-card,
.proof-feature,
.experience-item,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 12px 42px rgba(17, 21, 28, 0.05);
}

.service-card::after {
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(15, 118, 110, 0.12);
  border-radius: 50%;
  content: "";
}

.card-index {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--coral);
  font-weight: 900;
}

.service-card p,
.proof-feature p,
.timeline-item p,
.contact p,
.site-footer {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #344050;
  font-weight: 650;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.proof-section {
  background: #edf3f1;
}

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

.proof-feature {
  min-height: 330px;
  padding: 34px;
}

.proof-feature.feature-wide {
  min-height: auto;
  grid-column: 1 / -1;
}

.pill {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 6px 10px;
  border: 1px solid rgba(15, 118, 110, 0.26);
  border-radius: 999px;
  color: var(--teal-strong);
  font-size: 0.78rem;
  font-weight: 850;
}

.proof-feature a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal-strong);
}

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

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

.experience-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 58px);
  padding: 26px;
  align-items: start;
  box-shadow: 0 12px 34px rgba(17, 21, 28, 0.045);
}

.experience-meta {
  display: grid;
  gap: 12px;
}

.experience-meta span {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-meta a {
  color: var(--teal-strong);
  font-weight: 850;
}

.experience-item h3 {
  margin-bottom: 10px;
}

.experience-item p {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--muted);
}

.process-section {
  background: var(--ink);
  color: var(--white);
}

.process-section .eyebrow {
  color: #87d6ca;
}

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

.timeline-item {
  min-height: 280px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.17);
}

.timeline-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 850;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.72);
}

.market-list {
  display: grid;
  gap: 18px;
}

.market-list p {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.market-list p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact {
  padding: 110px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.contact-inner {
  width: min(980px, 100%);
}

.contact h2 {
  max-width: 870px;
}

.contact p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  font-size: 1.12rem;
}

.profile-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.profile-notes li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344050;
  font-size: 0.9rem;
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.9rem;
}

.site-footer p {
  max-width: 640px;
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

  .main-nav {
    display: none;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.82) 50%, rgba(248, 250, 252, 0.96) 100%),
      linear-gradient(90deg, rgba(248, 250, 252, 0.82), rgba(248, 250, 252, 0.38));
  }

  .section-grid,
  .intro-grid,
  .service-grid,
  .proof-layout,
  .experience-item,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline-item {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 13px;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .section,
  .band,
  .contact {
    padding: 68px 16px;
  }

  .button {
    width: 100%;
  }
}
