:root {
  --ink: #13201f;
  --muted: #53615f;
  --line: #d9e1df;
  --paper: #f6f8f5;
  --white: #ffffff;
  --teal: #0f766e;
  --green: #3f8f55;
  --amber: #d18b2f;
  --charcoal: #172321;
  --shadow: 0 18px 45px rgba(19, 32, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(246, 248, 245, 0.92);
  border-bottom: 1px solid rgba(19, 32, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: #050505;
  padding: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #263735;
  font-size: 0.94rem;
  font-weight: 650;
}

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

.nav-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 96px clamp(20px, 6vw, 76px) 138px;
}

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

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246, 248, 245, 0.97) 0%, rgba(246, 248, 245, 0.86) 38%, rgba(246, 248, 245, 0.24) 72%),
    linear-gradient(0deg, rgba(19, 32, 31, 0.18), rgba(19, 32, 31, 0.04));
}

.hero-content {
  max-width: 760px;
}

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

.hero h1,
.section-heading h2,
.consulting-layout h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  font-weight: 850;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: #30413f;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  padding: 0 22px;
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 32, 31, 0.16);
}

.hero-status {
  position: absolute;
  left: clamp(20px, 6vw, 76px);
  right: clamp(20px, 6vw, 76px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}

.hero-status div {
  min-height: 82px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.54);
}

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

.hero-status strong {
  color: var(--teal);
  font-size: 1.6rem;
}

.hero-status span {
  margin-top: 4px;
  color: #38514e;
  font-weight: 650;
}

.intro-band {
  background: var(--charcoal);
  color: var(--white);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(20px, 4vw, 56px);
}

.intro-inner p {
  margin: 0;
  color: #d7e3df;
  font-size: 1.06rem;
  line-height: 1.65;
}

.intro-inner a {
  color: #f4cf84;
  font-weight: 800;
  white-space: nowrap;
}

.section,
.partnership-band,
.contact-band {
  padding: 84px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.consulting-layout h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.03;
}

.section-heading.light {
  color: var(--white);
}

.section-heading.light .eyebrow {
  color: #f0bf5f;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.partnership-panel,
.rate-panel,
.contact-form {
  border-radius: 8px;
}

.service-card {
  min-height: 238px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(19, 32, 31, 0.05);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green));
  font-size: 0.78rem;
  font-weight: 850;
}

.service-card h3,
.partnership-panel h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-card p,
.partnership-panel p,
.partnership-panel li,
.consulting-layout p,
.rate-panel span,
.contact-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.service-card p,
.partnership-panel p {
  margin: 0;
}

.partnership-band {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(23, 35, 33, 0.98)),
    radial-gradient(circle at 70% 30%, rgba(209, 139, 47, 0.22), transparent 34%);
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.partnership-panel {
  display: grid;
  gap: 26px;
  min-height: 390px;
  padding: 30px;
  background: #fbfcf8;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.partnership-panel.accent {
  border-top: 5px solid var(--amber);
}

.panel-kicker {
  color: var(--teal) !important;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.partnership-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.partnership-panel li::marker {
  color: var(--green);
}

.consulting-section {
  background: #eef3ef;
}

.consulting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.consulting-layout > div:first-child p:last-child {
  max-width: 720px;
  font-size: 1.08rem;
}

.rate-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.rate-panel p {
  margin: 0;
}

.rate-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--teal);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
}

.rate-panel span {
  display: block;
}

.rate-panel hr {
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: var(--line);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 480px);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  background: #fbfcf8;
}

.contact-copy {
  max-width: 680px;
}

.contact-copy p:last-child {
  font-size: 1.08rem;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2b3d3a;
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #cbd7d4;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}

.contact-form button {
  margin-top: 4px;
  color: var(--white);
  background: var(--teal);
}

.contact-form button:disabled {
  background: var(--green);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #dbe7e4;
  background: var(--charcoal);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .hero {
    min-height: 780px;
    padding-top: 84px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(246, 248, 245, 0.96) 0%, rgba(246, 248, 245, 0.72) 62%, rgba(246, 248, 245, 0.28) 100%),
      linear-gradient(0deg, rgba(19, 32, 31, 0.22), rgba(19, 32, 31, 0.02));
  }

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

  .partnership-grid,
  .consulting-layout,
  .contact-band,
  .intro-inner {
    grid-template-columns: 1fr;
  }

  .intro-inner a {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    gap: 14px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 780px;
    padding: 54px 20px 250px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .hero-status {
    grid-template-columns: 1fr;
    bottom: 20px;
  }

  .hero-status div {
    min-height: 66px;
    padding: 12px 16px;
  }

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

  .service-card,
  .partnership-panel {
    min-height: auto;
  }

  .section,
  .partnership-band,
  .contact-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .footer {
    flex-direction: column;
  }
}
