:root {
  --ink: #18211c;
  --muted: #5b645d;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --sage: #6d806f;
  --forest: #183f31;
  --clay: #b66f4a;
  --brass: #c69a54;
  --line: #ded9ce;
  --shadow: 0 22px 60px rgba(24, 33, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden-field {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(12, 19, 16, 0.72), rgba(12, 19, 16, 0));
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid rgba(222, 217, 206, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  padding: 11px;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 148px clamp(20px, 5vw, 72px) 74px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 17, 15, 0.9) 0%, rgba(11, 17, 15, 0.72) 35%, rgba(11, 17, 15, 0.12) 78%),
    linear-gradient(0deg, rgba(11, 17, 15, 0.72) 0%, rgba(11, 17, 15, 0) 40%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

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

.hero .eyebrow {
  color: #e2b067;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 112px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.4vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--clay);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  background: var(--forest);
  color: #fff;
  padding: 0 clamp(20px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
}

.intro-grid > div {
  min-height: 184px;
  padding: 34px;
  background: var(--forest);
}

.stat {
  display: block;
  margin-bottom: 16px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-grid p {
  margin: 0;
  font-size: 18px;
}

.section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto 42px;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(24, 33, 28, 0.06);
}

.service-card::before {
  content: "";
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--clay);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.approach {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  background: #f1eee6;
}

.approach-copy,
.process-list {
  max-width: 580px;
}

.approach-copy {
  justify-self: end;
}

.approach-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--forest);
  font-weight: 800;
  border-bottom: 2px solid var(--brass);
}

.process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.process-list > div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  padding: 26px;
  background: var(--panel);
}

.process-list span {
  color: var(--clay);
  font-weight: 800;
}

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

.results-band {
  background: var(--ink);
  color: #fff;
  padding: 82px clamp(20px, 5vw, 72px);
}

.results-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.results-list {
  display: grid;
  gap: 12px;
}

.results-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brass);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 94px);
  max-width: 1324px;
  margin: 0 auto;
}

.contact-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  color: var(--forest);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(198, 154, 84, 0.3);
  border-color: var(--brass);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--forest);
  font-weight: 800;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-top: 140px;
}

.thank-you > div {
  width: min(760px, 100%);
}

.thank-you h1 {
  max-width: 11ch;
  color: var(--ink);
}

.thank-you p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 18px;
}

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

  .section-heading,
  .approach,
  .results-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .approach-copy {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 13px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 250, 245, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

  .hero {
    min-height: 88vh;
    padding: 124px 20px 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 17, 15, 0.92) 0%, rgba(11, 17, 15, 0.74) 62%, rgba(11, 17, 15, 0.28) 100%),
      linear-gradient(0deg, rgba(11, 17, 15, 0.72) 0%, rgba(11, 17, 15, 0) 42%);
  }

  h1 {
    font-size: clamp(48px, 18vw, 74px);
  }

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

  .intro-grid > div,
  .service-card {
    min-height: auto;
  }

  .section {
    padding: 72px 20px;
  }

  .process-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}
