:root {
  --ink: #171717;
  --muted: #5f625d;
  --surface: #f4f1ea;
  --paper: #fffdf8;
  --line: #d7d1c6;
  --gold: #c78a2c;
  --rust: #8d3e1f;
  --green: #315247;
  --charcoal: #202421;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(20, 21, 19, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand-logo {
  width: auto;
  height: clamp(58px, 7vw, 76px);
  max-width: min(260px, 52vw);
  padding: 4px 10px;
  background: var(--white);
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

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

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 10, 0.88) 0%, rgba(10, 12, 10, 0.64) 44%, rgba(10, 12, 10, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 12, 10, 0.78) 0%, rgba(10, 12, 10, 0) 36%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  padding: 150px 0 96px clamp(18px, 5vw, 70px);
}

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

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.75rem, 7vw, 6.6rem);
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #21180e;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
}

.intro-section,
.values-section,
.goals-section {
  background: var(--paper);
}

.services-section,
.operations-section {
  background: var(--surface);
}

.strategy-section {
  color: var(--white);
  background: var(--charcoal);
}

.section h2,
.contact-section h2 {
  max-width: 850px;
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.section p,
.contact-section p {
  color: var(--muted);
}

.strategy-section p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.split > div > p {
  max-width: 740px;
  font-size: 1.04rem;
}

.stats-grid,
.service-grid,
.values-grid,
.operations-grid {
  display: grid;
  gap: 16px;
}

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

.stat,
.service-card,
.values-grid div,
.operations-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.stat {
  min-height: 140px;
  padding: 22px;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
}

.section-heading.compact {
  display: block;
}

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

.service-card {
  min-height: 300px;
  padding: 24px;
  background: var(--paper);
}

.service-card span {
  color: var(--rust);
  font-weight: 800;
}

.service-card h3,
.strategy-list h3,
.operations-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
}

.strategy-list {
  display: grid;
  gap: 20px;
}

.strategy-list div {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

.strategy-list h3 {
  margin-top: 0;
}

.values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 36px;
}

.values-grid div {
  min-height: 150px;
  padding: 22px;
}

.values-grid strong,
.values-grid span {
  display: block;
}

.values-grid span {
  margin-top: 10px;
  color: var(--muted);
}

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

.operations-grid article {
  padding: 26px;
  background: var(--paper);
}

.operations-grid ul,
.goal-list {
  padding-left: 18px;
  color: var(--muted);
}

.operations-grid li,
.goal-list li {
  margin: 8px 0;
}

.goal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(30px, 5vw, 56px);
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--charcoal));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.goal-panel .section-kicker {
  color: #f0b14a;
}

.goal-panel h2 {
  color: var(--white);
}

.goal-list {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(34px, 7vw, 90px);
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
  background: #efeadf;
}

.contact-copy p {
  max-width: 600px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #3f433e;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8c1b4;
  border-radius: 6px;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: #fffaf1;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.72);
  background: #161815;
}

.footer-logo {
  width: min(240px, 62vw);
  height: auto;
  padding: 8px 11px;
  background: var(--white);
  border-radius: 6px;
}

.site-footer p {
  margin: 0;
}

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 50px;
    max-width: calc(100vw - 98px);
    padding: 3px 8px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 18px 18px;
    background: rgba(20, 21, 19, 0.94);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: 100%;
    padding: 118px 18px 74px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 12, 10, 0.9), rgba(10, 12, 10, 0.42)),
      linear-gradient(0deg, rgba(10, 12, 10, 0.9), rgba(10, 12, 10, 0.12) 56%);
  }

  .split,
  .section-heading,
  .goal-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

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

  .site-footer {
    display: grid;
  }
}

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

  .contact-form {
    padding: 20px;
  }
}
