:root {
  --green-900: #12372f;
  --green-800: #18463b;
  --green-700: #246150;
  --gold-600: #b9853d;
  --gold-300: #e0c084;
  --blue-700: #2f6576;
  --ink: #1f272d;
  --muted: #647078;
  --line: #d9ddd6;
  --paper: #fbfaf6;
  --cream: #f2eee4;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(18, 55, 47, 0.16);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--max-width)) / 2));
  background: rgba(251, 250, 246, 0.95);
  border-bottom: 1px solid rgba(18, 55, 47, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green-900);
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--gold-600);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-900);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold-600);
  content: "";
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(18, 55, 47, 0.2);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
}

.hero {
  position: relative;
  display: grid;
  min-height: 72vh;
  overflow: hidden;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.64) saturate(0.95);
}

.hero-overlay {
  background: rgba(9, 29, 25, 0.46);
}

.hero-inner {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 92px 0 72px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin-bottom: 14px;
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
}

.hero-actions,
.footer-layout,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--gold-600);
  color: #17120c;
}

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

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-details span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-900);
  color: var(--white);
}

.proof-item {
  min-height: 112px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--gold-300);
  font-size: 2.15rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  max-width: 240px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.section {
  padding: 86px 0;
}

.two-column,
.leadership-layout,
.contact-layout,
.compliance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.section-kicker {
  color: var(--gold-600);
}

h2 {
  margin-bottom: 0;
  color: var(--green-900);
  font-size: 2.65rem;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  color: var(--green-900);
  font-size: 1.22rem;
  line-height: 1.25;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.belief-section {
  padding-top: 0;
}

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

.belief-card,
.service-card,
.process-step,
.client-group,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 39, 45, 0.06);
}

.belief-card {
  padding: 32px;
}

.belief-card h3,
.service-card h3,
.process-step h3,
.client-group h3 {
  margin-bottom: 10px;
}

.belief-card p,
.service-card p,
.process-step p,
.client-group p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.section-heading.compact {
  max-width: 680px;
}

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
}

.featured-service {
  grid-row: span 2;
  background: var(--green-900);
  color: var(--white);
}

.featured-service h3,
.featured-service .service-number {
  color: var(--gold-300);
}

.featured-service p,
.featured-service li {
  color: rgba(255, 255, 255, 0.84);
}

.service-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-600);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 22px 0 0;
}

.process-section {
  background: var(--cream);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.process-step {
  min-height: 218px;
  padding: 22px;
}

.process-step span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  background: #e8f0ee;
  color: var(--green-900);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 900;
}

.leadership-section {
  background: var(--green-900);
  color: var(--white);
}

.leadership-section h2,
.leadership-section h3 {
  color: var(--white);
}

.leader-photo-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.leader-photo {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 52% 24%;
}

.leader-role {
  margin: 16px 0 22px;
  color: var(--gold-300);
  font-weight: 800;
}

.leader-content p:not(.section-kicker):not(.leader-role) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.expertise-list,
.compliance-list,
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.expertise-list span,
.compliance-list span,
.industry-grid span {
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 800;
}

.expertise-list span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.compliance-section {
  padding: 70px 0;
}

.compliance-list {
  margin-top: 0;
}

.compliance-list span {
  background: #e8f0ee;
  color: var(--green-900);
}

.industries-section {
  padding-top: 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-grid span {
  min-height: 76px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green-900);
}

.clients-section {
  background: #eef4f6;
}

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

.client-group {
  padding: 24px;
}

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

.contact-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-details {
  margin-top: 28px;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  background: #e8f0ee;
  color: var(--green-900);
  border-radius: 6px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-weight: 800;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(185, 133, 61, 0.28);
  border-color: var(--gold-600);
}

.site-footer {
  padding: 24px 0;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.82);
}

.footer-layout {
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

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

  .two-column,
  .leadership-layout,
  .contact-layout,
  .compliance-layout {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    height: 520px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-inner {
    padding: 68px 0 48px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .proof-strip,
  .belief-grid,
  .service-grid,
  .client-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .belief-card,
  .service-card,
  .contact-form {
    padding: 22px;
  }

  .leader-photo {
    height: 430px;
  }

  .footer-layout {
    display: grid;
  }
}
