:root {
  --paper: #f4f1ea;
  --surface: #fffdf8;
  --ink: #1e2522;
  --muted: #63645d;
  --line: #d9d0c0;
  --green: #1f5b4f;
  --green-2: #9fceb8;
  --clay: #ac6048;
  --brass: #b58a3f;
  --steel: #3e5963;
  --shadow: 0 22px 60px rgba(31, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(244, 241, 234, 0.94);
  border-bottom: 1px solid rgba(215, 207, 189, 0.8);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: var(--surface);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  min-height: 44px;
  padding: 0.72rem 0.85rem;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(34, 89, 76, 0.09);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 72px);
  display: grid;
  align-items: end;
  padding: 12vh 5vw 10vh;
  overflow: hidden;
  color: #fffdf8;
  background:
    linear-gradient(90deg, rgba(20, 26, 23, 0.9) 0%, rgba(20, 26, 23, 0.66) 39%, rgba(20, 26, 23, 0.08) 100%),
    url("assets/images/hero-consulting-meeting.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 5vw;
  bottom: 2rem;
  width: min(36rem, 82vw);
  height: 1px;
  background: rgba(255, 253, 248, 0.58);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.hero-kicker span {
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.09);
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-2);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 690px;
  margin: 1.3rem 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fffdf8;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.7);
}

.button.light {
  background: var(--surface);
  color: var(--ink);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  outline: 3px solid rgba(184, 145, 74, 0.4);
  outline-offset: 2px;
}

.section {
  padding: 6rem 5vw;
}

.section.alt {
  background: var(--surface);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 2rem;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 3rem;
}

.section-header p,
.wide-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.2rem;
  max-width: 1180px;
  margin: -4rem auto 0;
  padding: 0 5vw;
}

.feature-strip .image-panel img {
  aspect-ratio: 16 / 10;
}

.proof-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.proof-panel p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.tile {
  min-height: 230px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.tile.image-tile {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.tile.image-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tile.image-tile div {
  padding: 1.25rem;
}

.tile strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.tile p {
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric b {
  display: block;
  font-size: 1.8rem;
}

.metric span {
  color: var(--muted);
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
}

.process-list p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.contact-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: #fffdf8;
}

.contact-band p {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.78);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(34, 89, 76, 0.24);
  outline-offset: 2px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button {
    transition: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem 5vw;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    margin-left: 1rem;
  }

  .site-nav {
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 86dvh;
    padding-top: 18vh;
    background:
      linear-gradient(90deg, rgba(20, 26, 23, 0.88) 0%, rgba(20, 26, 23, 0.6) 100%),
      url("assets/images/hero-consulting-meeting.png") 58% center / cover no-repeat;
  }

  .hero-content,
  .lead {
    width: 100%;
    max-width: 21.5rem;
  }

  .hero-content h1 {
    font-size: 2.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 21.5rem;
  }

  .section {
    padding: 4rem 5vw;
  }

  .section-header,
  .feature-strip,
  .grid.two,
  .grid.three,
  .contact-form,
  .metrics {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }
}
