*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #efeadf;
}

body {
  background: #efeadf;
  color: #191714;
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  background: #191714;
  border-bottom: 1px solid #302a22;
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: #f5f0e8;
  text-decoration: none;
  font-family: Oswald, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  color: oklch(43% 0.07 164);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #c8bba7;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  display: inline-block;
  background: oklch(57% 0.12 50);
  color: #191714;
  border-radius: 5px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  border: 1px solid #c8bba7;
  color: #f5f0e8;
}

.hero {
  background: #191714;
  color: #f5f0e8;
  padding: 86px 20px 62px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  opacity: 0.34;
  filter: grayscale(18%) contrast(1.08);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #191714 0%, rgba(25,23,20,0.74) 46%, rgba(25,23,20,0.38) 100%),
    linear-gradient(90deg, rgba(25,23,20,0.82) 0%, rgba(25,23,20,0.48) 54%, rgba(25,23,20,0.22) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
}

.narrow {
  max-width: 720px;
}

.eyebrow {
  color: oklch(57% 0.12 50);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: Oswald, Arial, sans-serif;
  line-height: 1.05;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(44px, 9vw, 86px);
  max-width: 840px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 6vw, 48px);
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero p {
  color: #d8cebd;
  font-size: 19px;
  max-width: 650px;
  margin-bottom: 28px;
}

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

section {
  padding: 70px 20px;
}

.light {
  background: #efeadf;
}

.dark {
  background: #191714;
  color: #f5f0e8;
}

.dark p,
.dark li {
  color: #d8cebd;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: #fffaf1;
  border: 1px solid #d1c6b4;
  border-radius: 6px;
  padding: 22px;
}

.image-band {
  min-height: 280px;
  background-image: var(--band-image);
  background-position: var(--band-position, center);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25,23,20,0.86) 0%, rgba(25,23,20,0.5) 58%, rgba(25,23,20,0.18) 100%),
    linear-gradient(to top, rgba(25,23,20,0.48), rgba(25,23,20,0.1));
}

.image-band .wrap {
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.image-band p {
  max-width: 560px;
  color: #f5f0e8;
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.dark .card {
  background: #211d18;
  border-color: #3a3028;
}

.card p,
.body-copy p {
  color: #5a4f40;
  font-size: 17px;
  margin-bottom: 16px;
}

.dark .card p {
  color: #d8cebd;
}

ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

li {
  color: #5a4f40;
  font-size: 17px;
}

li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: oklch(43% 0.07 164);
  transform: translateY(-1px);
}

.process {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.process .card {
  counter-increment: step;
}

.process h3::before {
  content: "0" counter(step) " ";
  color: oklch(43% 0.07 164);
}

details {
  background: #e6dfd1;
  border: 1px solid #d1c6b4;
  border-radius: 5px;
  padding: 18px 20px;
}

details + details {
  margin-top: 8px;
}

summary {
  cursor: pointer;
  font-family: Oswald, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

details p {
  color: #5a4f40;
  font-size: 16px;
  margin-top: 12px;
}

.cta {
  background: #191714;
  color: #f5f0e8;
  border-radius: 6px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta p {
  color: #d8cebd;
  font-size: 17px;
  max-width: 560px;
}

.service-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-links a {
  background: #e6dfd1;
  border: 1px solid #d1c6b4;
  border-radius: 5px;
  color: #191714;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 12px;
  text-decoration: none;
}

footer {
  background: #14120f;
  color: #d8cebd;
  padding: 44px 20px;
}

footer .wrap {
  display: grid;
  gap: 14px;
}

footer a {
  color: #d8cebd;
  text-decoration: none;
}

.small {
  color: #8f8068;
  font-size: 14px;
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links .button {
    width: 100%;
    text-align: center;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }
}
