:root {
  --teal-600: #151515;
  --teal-700: #f2a900;
  --teal-100: #fff4df;
  --orange-500: #ff9b3d;
  --orange-600: #f97316;
  --navy-950: #111827;
  --navy-850: #1f2937;
  --slate-650: #475569;
  --slate-500: #64748b;
  --slate-200: #e5e7eb;
  --slate-100: #f5f7fb;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(17, 24, 39, 0.12);
  --shadow-chip: 0 14px 30px rgba(17, 24, 39, 0.16);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--slate-100);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px 16px 0;
}

.nav {
  width: min(100%, var(--max-width));
  min-height: 56px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(128px, 16vw, 172px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--navy-850);
  font-size: 0.82rem;
  font-weight: 750;
}

.nav-links a:hover {
  color: var(--orange-600);
}

.nav-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.27);
}

.button-secondary {
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  margin-top: -68px;
  padding: 92px 16px 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(242, 169, 0, 0.22) 0 160px, transparent 162px),
    radial-gradient(circle at 18% 16%, rgba(255, 155, 61, 0.18), transparent 280px),
    linear-gradient(135deg, #242424, var(--teal-600) 58%, #070707);
}

.hero::after {
  content: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  text-align: center;
}

.portrait-wrap {
  position: relative;
  width: min(280px, 74vw);
  height: min(280px, 74vw);
  margin: 8px auto 24px;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: rgba(242, 169, 0, 0.18);
  border-radius: 50%;
}

.portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 26px 56px rgba(17, 24, 39, 0.2);
}

.floating-chip {
  position: absolute;
  z-index: 2;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: var(--shadow-chip);
  font-size: 0.92rem;
  font-weight: 820;
  white-space: nowrap;
}

.floating-chip span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 50%;
  font-size: 0.68rem;
}

.chip-one {
  left: -152px;
  top: 30px;
}

.chip-two {
  right: -138px;
  top: 58px;
}

.chip-three {
  right: -182px;
  bottom: 40px;
}

.chip-four {
  left: -148px;
  bottom: 56px;
}

.eyebrow,
.section-label p {
  margin: 0;
  color: var(--orange-600);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero h1 {
  color: var(--white);
}

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

h1 {
  max-width: 780px;
  margin: 12px auto 18px;
  color: var(--navy-950);
  font-size: clamp(2rem, 3.25vw, 2.95rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 780px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

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

.hero-meta {
  max-width: 920px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}

.hero-meta span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: rgba(17, 24, 39, 0.78);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 86px 0;
}

.about-section {
  padding-top: 104px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.section-label span {
  width: 68px;
  height: 2px;
  background: var(--orange-600);
}

.section-label-light p {
  color: var(--orange-500);
}

.section-label-light span {
  background: rgba(255, 255, 255, 0.62);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.prose p,
.section-heading p,
.feature-lead,
.contact-panel p,
.service-card p,
.experience-grid p {
  color: var(--slate-650);
  font-size: 1.03rem;
}

.prose p {
  margin-bottom: 16px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.fact-grid div,
.service-card,
.experience-grid article,
.contact-panel {
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.fact-grid div {
  min-height: 92px;
  padding: 18px;
}

.fact-grid strong,
.contact-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-950);
  font-weight: 850;
}

.fact-grid span,
.contact-card span {
  color: var(--slate-650);
}

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

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

.service-card {
  min-height: 255px;
  padding: 24px;
}

.card-kicker {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--orange-600);
  background: var(--teal-100);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-band {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 155, 61, 0.18), transparent 250px),
    linear-gradient(135deg, #202020, #111111 68%, #050505);
}

.feature-content h2,
.feature-content .feature-lead {
  color: var(--white);
}

.feature-lead {
  max-width: 650px;
  opacity: 0.86;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  font-weight: 760;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.experience-grid article {
  padding: 22px;
}

.contact-section {
  padding-bottom: 96px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 44px;
  padding: 38px;
}

.contact-panel p {
  max-width: 640px;
  margin-bottom: 24px;
}

.contact-card {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 26px;
  color: var(--slate-650);
  background: var(--slate-100);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  font-style: normal;
}

.contact-card a {
  color: var(--orange-600);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--orange-600);
}

.site-footer {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  color: var(--slate-500);
  border-top: 1px solid var(--slate-200);
}

.footer-logo {
  display: block;
  width: 132px;
  height: auto;
}

@media (max-width: 1080px) {
  .floating-chip {
    position: static;
  }

  .portrait-wrap {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: min(600px, 100%);
  }

  .portrait-wrap::before {
    display: none;
  }

  .portrait {
    grid-column: 1 / -1;
    width: min(280px, 72vw);
    height: min(280px, 72vw);
    margin: 0 auto 12px;
  }
}

@media (max-width: 940px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 110px;
  }

  .floating-chip {
    display: none;
  }

  .portrait-wrap {
    display: block;
    width: min(280px, 72vw);
    height: min(280px, 72vw);
  }

  .hero-meta,
  .split-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .brand img {
    width: 126px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 94px 16px 68px;
  }

  .portrait-wrap {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .portrait {
    width: min(208px, 72vw);
    height: min(208px, 72vw);
    border-width: 8px;
  }

  h1 {
    font-size: 1.78rem;
  }

  .hero-text {
    margin-bottom: 18px;
    font-size: 0.96rem;
  }

  h2 {
    font-size: 1.82rem;
  }

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

  .hero-meta,
  .fact-grid,
  .card-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .about-section {
    padding-top: 82px;
  }

  .section-label span {
    width: 46px;
  }

  .service-card {
    min-height: auto;
  }

  .contact-panel {
    padding: 24px;
  }
}
