* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1c1a;
  --muted: #6c6460;
  --sand: #f7f1ec;
  --clay: #d7c2b6;
  --accent: #8b3e2f;
  --accent-dark: #6e2b1f;
  --leaf: #2f6f5f;
  --fog: #efe9e5;
  --shadow: 0 24px 60px rgba(20, 12, 8, 0.12);
  --radius: 18px;
  --max: 1120px;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

header {
  padding: 32px 24px 12px;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 0;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--sand);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-card p {
  color: var(--muted);
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-alt {
  background: var(--fog);
  border-radius: 28px;
  margin: 40px 18px;
  padding: 60px 24px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-lead {
  color: var(--muted);
  max-width: 62ch;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(28, 18, 12, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.flow-strip {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 3px solid var(--clay);
  padding-left: 20px;
}

.quote {
  padding: 18px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--clay);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #efe4dc;
}

.service-item span {
  font-weight: 600;
  color: var(--accent);
}

.highlight {
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  padding: 28px;
}

.highlight a {
  color: #fff;
  text-decoration: underline;
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d0ca;
  font-size: 1rem;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 120px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: var(--leaf);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 30;
}

footer {
  padding: 48px 24px 72px;
  background: var(--sand);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 840px) {
  .nav-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card {
    flex-direction: row;
    align-items: center;
  }

  .hero-card img {
    max-width: 380px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stacked-cards {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 240px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
