:root {
  color-scheme: light;
  --ink: #16201d;
  --muted: #64716c;
  --line: #dce5e0;
  --surface: #f5f7f3;
  --paper: #ffffff;
  --teal: #0a7f75;
  --teal-dark: #075f58;
  --gold: #c6903e;
  --charcoal: #111916;
  --charcoal-soft: #1b2723;
  --shadow: 0 18px 46px rgba(17, 25, 22, 0.13);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

main,
.hero,
.section,
.footer {
  max-width: 100vw;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(17, 24, 22, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  opacity: 1 !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 23, 20, 0.91) 0%, rgba(13, 23, 20, 0.74) 46%, rgba(13, 23, 20, 0.24) 100%),
    linear-gradient(180deg, rgba(13, 23, 20, 0.34) 0%, rgba(13, 23, 20, 0.08) 58%, rgba(245, 247, 243, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 30px rgba(10, 127, 117, 0.3);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

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

.section-heading h2,
.consultation-panel h2,
.outcomes-content h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  line-height: 1;
}

.section-heading.light {
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.intro-panel,
.service-card,
.process-list article,
.consultation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.intro-panel {
  padding: clamp(24px, 4vw, 44px);
}

.intro-panel h3,
.service-card h3,
.process-list h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

.intro-panel p,
.service-card p,
.process-list p,
.consultation-panel p {
  color: var(--muted);
}

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

.metrics div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.metrics strong,
.card-number,
.process-list span {
  color: var(--teal);
  font-weight: 900;
}

.metrics span {
  font-weight: 900;
}

.services-section {
  background: var(--charcoal);
}

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

.service-card {
  min-height: 276px;
  padding: 26px;
}

.card-number {
  display: inline-block;
  margin-bottom: 34px;
}

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

.process-list article {
  padding: 28px;
}

.process-list span {
  display: inline-block;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.outcomes-section {
  background: var(--charcoal-soft);
  color: #fff;
}

.outcomes-content {
  max-width: 1100px;
}

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

.outcome-grid p {
  min-height: 150px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.consultation-section {
  background: var(--paper);
}

.consultation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
}

.consultation-panel p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 1040px) {
  .service-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    width: 100vw;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 14px;
    right: 18px;
    flex: 0 0 auto;
    z-index: 40;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 680px;
    align-items: start;
    padding-top: 126px;
    padding-bottom: 44px;
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 18px;
    margin-right: 18px;
    padding-top: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .section-heading h2,
  .consultation-panel h2,
  .outcomes-content h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.08;
  }

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

  .intro-grid,
  .process-list,
  .consultation-panel {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-list article,
  .outcome-grid p {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .button,
  .consultation-panel .button {
    width: 100%;
  }

  .service-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .metrics div {
    grid-template-columns: 48px 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
