:root {
  --ink: #161616;
  --muted: #6f6b63;
  --paper: #f7f3ec;
  --panel: #ffffff;
  --line: #ded6c9;
  --olive: #58634c;
  --olive-dark: #30382b;
  --clay: #a76043;
  --sand: #d8c4a4;
  --charcoal: #20211f;
  --shadow: 0 22px 70px rgba(32, 33, 31, .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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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, 54px);
  background: rgba(247, 243, 236, .92);
  border-bottom: 1px solid rgba(222, 214, 201, .85);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--olive-dark);
  border-radius: 6px;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #3e3c37;
  font-size: 14px;
  font-weight: 620;
}

.site-nav a {
  padding: 8px 0;
}

.nav-cta {
  padding: 10px 15px !important;
  color: #fff;
  background: var(--olive-dark);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  position: relative;
  overflow: hidden;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 18, 16, .78), rgba(17, 18, 16, .32), rgba(17, 18, 16, .08)), url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2000&q=82");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 82px) clamp(46px, 7vw, 88px);
  color: #fff;
}

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

.hero .eyebrow,
.cta-section .eyebrow,
.page-hero .eyebrow {
  color: #f0cf9b;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 88px);
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
}

p {
  margin: 0;
}

.hero-content > p:not(.eyebrow),
.page-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 4px;
  font-weight: 780;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

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

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

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

.button.dark-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 6vw, 82px);
}

.section.compact {
  padding-top: clamp(46px, 7vw, 82px);
}

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

.lead,
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.feature-grid,
.package-grid,
.project-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

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

.feature,
.package-card,
.project-card,
.audience-card,
.form-panel,
.info-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 12px 36px rgba(32, 33, 31, .06);
}

.feature p,
.package-card p,
.project-card p,
.audience-card p,
.info-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
  background: #fff;
}

.comparison {
  display: grid;
  gap: 18px;
}

.line-card {
  display: block;
  min-height: 230px;
  padding: clamp(24px, 4vw, 42px);
  background: #f3efe6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.line-card.dark {
  color: #fff;
  background: var(--charcoal);
  border-color: #3e3f3c;
}

.line-card p {
  margin-top: 16px;
  color: var(--muted);
}

.line-card.dark p {
  color: rgba(255, 255, 255, .72);
}

.label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.image-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  padding: 0;
  background: var(--olive-dark);
  color: #fff;
}

.image-band-media {
  min-height: 560px;
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1600&q=82");
  background-size: cover;
  background-position: center;
}

.image-band-content {
  align-self: center;
  padding: clamp(42px, 7vw, 86px);
}

.image-band-content p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: #f0cf9b;
  font-weight: 780;
}

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

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(32, 33, 31, .06);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  background: #e8e0d5;
}

.service-card span {
  flex: 1;
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  font-weight: 720;
}

.process-preview {
  background: #fff;
}

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

.steps li {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 720;
}

.steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--clay);
  font-size: 14px;
}

.cta-section {
  margin: clamp(18px, 5vw, 54px);
  padding: clamp(38px, 7vw, 78px);
  color: #fff;
  background: linear-gradient(90deg, rgba(32, 33, 31, .9), rgba(32, 33, 31, .68)), url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.cta-section p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 42px clamp(18px, 6vw, 82px);
  background: var(--charcoal);
  color: #fff;
}

.site-footer p {
  max-width: 420px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .68);
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
}

.page-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.page-hero-media {
  background-image: linear-gradient(90deg, rgba(17, 18, 16, .78), rgba(17, 18, 16, .36)), var(--hero-image);
}

.page-hero-content {
  position: relative;
  width: min(900px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 82px) clamp(42px, 6vw, 70px);
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 74px);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.wide-card {
  grid-column: span 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 720;
  color: #302f2b;
}

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

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

.form-note,
.small-note {
  color: var(--muted);
  font-size: 13px;
}

.success-message {
  display: none;
  padding: 16px;
  background: #edf4ea;
  border: 1px solid #bfd4b5;
  border-radius: 6px;
  color: #24351f;
  font-weight: 720;
}

.success-message.is-visible {
  display: block;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 67px 18px auto 18px;
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

  .feature-grid.three,
  .package-grid,
  .project-grid,
  .steps,
  .service-grid,
  .content-grid,
  .split,
  .image-band,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .image-band-media {
    min-height: 320px;
  }

  .service-card {
    min-height: 300px;
  }

  .service-card img {
    height: 210px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 13px 16px;
  }

  .hero {
    min-height: 760px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section,
  .cta-section {
    padding: 42px 18px;
  }

  .cta-section {
    margin: 18px;
  }

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

  .service-card {
    min-height: 286px;
  }

  .service-card img {
    height: 198px;
  }
}
