:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #59645e;
  --line: #d9ddd8;
  --paper: #f7f5ef;
  --white: #ffffff;
  --deep: #12362f;
  --accent: #c36f2d;
  --blue: #2f5f86;
  --green: #4f7b56;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 32, 28, 0.86), rgba(18, 32, 28, 0));
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.95rem;
}

nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 80px) 72px;
  color: var(--white);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 32, 28, 0.88), rgba(18, 32, 28, 0.46), rgba(18, 32, 28, 0.14)),
    linear-gradient(0deg, rgba(18, 32, 28, 0.62), rgba(18, 32, 28, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.3rem, 11vw, 9rem);
  line-height: 0.92;
  font-weight: 800;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.48;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: #fffaf5;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.intro-band > div {
  min-height: 128px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.intro-band strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
}

.section {
  padding: 82px clamp(18px, 5vw, 70px);
}

.section.muted {
  background: #e8ece6;
}

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

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.02;
}

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

p {
  color: var(--muted);
  line-height: 1.62;
}

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

.feature {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.check-list span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: var(--white);
  font-weight: 700;
}

.process {
  background: var(--white);
}

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

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  padding: 72px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--deep);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-band .button.primary {
  background: #f0a04d;
  color: #1b130a;
}

address {
  width: 100%;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 28px clamp(18px, 5vw, 70px);
  background: #101713;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 108px;
  }

  h1 {
    font-size: 4.2rem;
  }

  .intro-band,
  .feature-grid,
  .steps,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 84vh;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .check-list {
    grid-template-columns: 1fr;
  }
}
