:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #5f6a65;
  --paper: #f8f7f3;
  --panel: #ffffff;
  --line: #d7d3ca;
  --charcoal: #16211f;
  --copper: #b95f32;
  --teal: #167f79;
  --sage: #dfe9dd;
  --gold: #e2b753;
  --shadow: 0 22px 55px rgba(24, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(248, 247, 243, 0.92);
  border-bottom: 1px solid rgba(215, 211, 202, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--gold);
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 20, 19, 0.9) 0%, rgba(14, 20, 19, 0.72) 42%, rgba(14, 20, 19, 0.16) 100%),
    linear-gradient(0deg, rgba(14, 20, 19, 0.45), rgba(14, 20, 19, 0));
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 72px);
  color: #fffdfa;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 253, 250, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
}

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

.button.secondary {
  border: 1px solid rgba(255, 253, 250, 0.35);
  color: #fffdfa;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.intro,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

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

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

.service-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--teal);
  font-weight: 900;
}

.service-card h2 {
  font-size: 1.35rem;
}

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

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  position: relative;
  min-height: 96px;
  padding: 20px 20px 20px 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage);
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fffdfa;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.contact {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  background: var(--charcoal);
  color: #fffdfa;
}

.contact p {
  color: rgba(255, 253, 250, 0.74);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 54px);
  background: #0f1715;
  color: rgba(255, 253, 250, 0.72);
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: #fffdfa;
  font-weight: 900;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .intro,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .hero {
    min-height: 740px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14, 20, 19, 0.9) 0%, rgba(14, 20, 19, 0.72) 58%, rgba(14, 20, 19, 0.34) 100%);
  }

  .hero-content {
    align-self: start;
    padding-top: 60px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 30px;
  }

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

@media (max-width: 460px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .steps li {
    padding-right: 16px;
  }
}
