:root {
  --ink: #14211f;
  --ink-soft: #263431;
  --muted: #5f6d68;
  --line: #d9ddd6;
  --paper: #f5f0e8;
  --paper-deep: #ebe4d8;
  --surface: #ffffff;
  --moss: #526f63;
  --sage: #88a096;
  --gold: #d6a85f;
  --clay: #b36d4f;
  --shadow: 0 24px 80px rgba(20, 33, 31, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(20, 33, 31, 0.1);
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(82, 111, 99, 0.12);
}

.contact-pill {
  border: 1px solid rgba(20, 33, 31, 0.16);
  background: var(--ink);
  color: var(--paper);
  padding: 11px 15px;
  border-radius: 6px;
  font-weight: 750;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 33, 31, 0.16);
  background: transparent;
  border-radius: 6px;
  color: var(--ink);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero.compact {
  min-height: 440px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 33, 31, 0.86), rgba(20, 33, 31, 0.5) 45%, rgba(20, 33, 31, 0.14));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 108px 0 88px;
  color: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f1d398;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero p {
  max-width: 660px;
  color: rgba(245, 240, 232, 0.88);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 780;
}

.button.primary {
  background: var(--gold);
  color: #1f1a12;
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(245, 240, 232, 0.44);
}

.section {
  padding: 92px 0;
}

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

.section.deep {
  background: var(--ink);
  color: var(--paper);
}

.wrap {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.deep .section-head p,
.deep .lead {
  color: rgba(245, 240, 232, 0.78);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(245, 240, 232, 0.22);
  margin-top: 46px;
}

.metric {
  padding: 24px;
  border-right: 1px solid rgba(245, 240, 232, 0.22);
}

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

.metric strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
}

.metric span {
  color: rgba(245, 240, 232, 0.72);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.service {
  min-height: 280px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(20, 33, 31, 0.06);
}

.service .number {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--clay);
  font-weight: 800;
  font-size: 13px;
}

.service h3 {
  font-size: 24px;
  line-height: 1.16;
  margin-bottom: 12px;
}

.service p,
.service li {
  color: var(--muted);
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.image-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: 34px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
}

.quote-panel p {
  color: rgba(245, 240, 232, 0.84);
  font-size: 19px;
}

.process {
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-item::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  color: var(--clay);
  font-size: 28px;
  font-weight: 800;
}

.process-item h3 {
  margin-bottom: 8px;
}

.process-item p {
  color: var(--muted);
  max-width: 720px;
}

.insight-list {
  border-top: 1px solid var(--line);
}

.insight-row {
  display: grid;
  grid-template-columns: 190px 1fr 160px;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.insight-row span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.insight-row h3 {
  margin-bottom: 7px;
}

.insight-row p {
  color: var(--muted);
  margin-bottom: 0;
}

.panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.contact-block {
  padding: 34px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
}

.contact-block a {
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

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

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

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

.site-footer {
  background: #101816;
  color: var(--paper);
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-grid p,
.footer-grid a {
  color: rgba(245, 240, 232, 0.72);
}

.footer-grid h3 {
  font-size: 15px;
  margin-bottom: 12px;
}

@media (max-width: 880px) {
  .mobile-toggle {
    display: none !important;
  }

  .nav {
    width: auto;
    max-width: none;
    margin: 0 14px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
  }

  .nav-links {
    position: static;
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

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

  .contact-pill {
    text-align: center;
  }

  .hero {
    min-height: 660px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(20, 33, 31, 0.9), rgba(20, 33, 31, 0.48));
  }

  .section {
    padding: 70px 0;
  }

  .grid.two,
  .grid.three,
  .image-band,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    border-bottom: 1px solid rgba(245, 240, 232, 0.22);
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .insight-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .nav {
    width: calc(100vw - 28px);
    max-width: 362px;
    margin: 0 14px;
  }

  .wrap,
  .hero-content {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .brand small {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
  }

  .metric-strip,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .nav-links a {
    padding: 9px 6px;
    text-align: center;
    font-size: 13px;
  }
}

@media (max-width: 700px) {
  .hero-content h1,
  .hero-content p {
    max-width: 360px;
  }
}
