:root {
  --ink: #1b2428;
  --muted: #5d686a;
  --line: #dfe5e2;
  --paper: #fbfbf7;
  --white: #ffffff;
  --sage: #728b74;
  --clay: #b86642;
  --steel: #2f5965;
  --shadow: 0 22px 70px rgba(27, 36, 40, 0.16);
  --site-max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #e8ede9;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: min(100%, var(--site-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 3vw, 34px);
  background: rgba(251, 251, 247, 0.86);
  border-bottom: 1px solid rgba(223, 229, 226, 0.8);
  backdrop-filter: blur(18px);
}

main,
.hero,
.intro,
.section,
.contact,
.footer {
  width: min(100%, var(--site-max));
  margin-inline: auto;
}

main {
  background: var(--paper);
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  font-size: 11px;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 82px clamp(18px, 5vw, 64px) 46px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(251, 251, 247, 0.94) 0%, rgba(251, 251, 247, 0.82) 34%, rgba(251, 251, 247, 0.1) 72%),
    linear-gradient(0deg, rgba(27, 36, 40, 0.2), rgba(27, 36, 40, 0));
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  padding-top: 14px;
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 62ch;
  margin-bottom: 18px;
  color: #324044;
  font-size: 14px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.button.dark {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

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

.intro > div {
  min-height: 86px;
  padding: 20px clamp(18px, 3vw, 30px);
  background: var(--paper);
}

.stat {
  display: block;
  margin-bottom: 4px;
  color: var(--steel);
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
}

.intro p,
.service-card p,
.note p,
.contact p,
.footer {
  color: var(--muted);
}

.section {
  padding: 42px clamp(18px, 5vw, 64px);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 24px;
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(27, 36, 40, 0.07);
}

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

.service-card div {
  padding: 16px;
}

.service-card p {
  margin-bottom: 0;
}

.pricing-section {
  background: #eef2ee;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 14px;
  align-items: stretch;
}

.price-list {
  overflow: hidden;
  border: 1px solid rgba(47, 89, 101, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 3vw, 24px);
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

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

.price-row strong {
  color: var(--ink);
  font-size: 16px;
  text-align: right;
  white-space: nowrap;
}

.note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 18px;
  border-radius: 8px;
  background: var(--steel);
  color: var(--white);
}

.note p {
  color: rgba(255, 255, 255, 0.78);
}

.note a {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 36px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 10px;
}

.contact p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 480px;
    align-items: end;
    padding-top: 84px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(251, 251, 247, 0.96) 0%, rgba(251, 251, 247, 0.84) 42%, rgba(251, 251, 247, 0.12) 78%),
      linear-gradient(90deg, rgba(251, 251, 247, 0.68), rgba(251, 251, 247, 0));
  }

  .hero-content {
    padding-top: 0;
  }

  h1 {
    max-width: 100%;
  }

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

  .intro > div {
    min-height: 76px;
  }

  .contact .button {
    width: fit-content;
  }
}

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

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

  .hero {
    min-height: 440px;
    padding: 80px 16px 32px;
  }

  h1 {
    font-size: 20px;
  }

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

  .price-row {
    display: grid;
    gap: 6px;
  }

  .price-row strong {
    text-align: left;
  }

  .footer {
    display: grid;
  }
}
