:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5d685f;
  --line: #d9ded8;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --sage: #5f725e;
  --sage-dark: #344b3d;
  --gold: #b7863b;
  --blue: #315d7c;
  --shadow: 0 22px 60px rgba(23, 33, 28, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 222, 216, 0.84);
  background: rgba(251, 252, 248, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  background: var(--sage-dark);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--sage-dark);
}

.hero {
  position: relative;
  min-height: min(760px, 86vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 18, 15, 0.76), rgba(12, 18, 15, 0.38) 54%, rgba(12, 18, 15, 0.1)),
    linear-gradient(0deg, rgba(12, 18, 15, 0.34), transparent 48%);
}

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

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  padding: 104px 0 96px;
  margin-left: clamp(18px, 6vw, 72px);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c56f;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.hero-content p {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

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

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

.section,
.band,
.contact {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 72px);
}

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro p,
.split p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 34px rgba(23, 33, 28, 0.07);
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 6px;
  background: #e9eee7;
  color: var(--sage-dark);
  font-weight: 900;
}

.service-card p,
.steps,
.proof-list {
  color: var(--muted);
}

.band {
  background: var(--sage-dark);
  color: white;
}

.band .eyebrow,
.band h2 {
  color: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
}

.steps li {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  color: white;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list p {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact {
  background: #eef2ec;
}

.contact-panel {
  align-content: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-panel .button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--sage-dark);
}

.wide {
  width: 100%;
}

.copy-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 72px);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(12, 18, 15, 0.82), rgba(12, 18, 15, 0.24));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 86px 0 54px;
    margin: 0 auto;
  }

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

  .service-card,
  .steps li {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 0.94rem;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.92rem;
  }

  .button {
    width: 100%;
  }
}
