:root {
  --navy: #111a2b;
  --ivory: #f6f4ef;
  --sand: #ece7de;
  --copper: #c46a3f;
  --smoke: #5b6170;
  --ink: #1f2a3b;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
}

.split-section.alt {
  background: var(--sand);
}

.split-section.hero {
  padding-top: 32px;
}

.split-section__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-section__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--smoke);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button--primary {
  background: var(--copper);
  color: var(--white);
}

.button--ghost {
  border-color: var(--copper);
  color: var(--copper);
  background: transparent;
}

.button--link {
  padding: 0;
  border: none;
  color: var(--copper);
}

.inline-cta a {
  color: var(--copper);
  font-weight: 600;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.card {
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card--light {
  background: var(--white);
  box-shadow: 0 18px 40px rgba(17, 26, 43, 0.08);
}

.card--dark {
  background: var(--navy);
  color: var(--white);
}

.checklist,
.steps {
  margin: 0;
  padding-left: 20px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 26, 43, 0.08);
}

.price-item span {
  font-weight: 700;
  color: var(--copper);
}

.price-line {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--copper);
}

.quote {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(17, 26, 43, 0.08);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d1d2d6;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(17, 26, 43, 0.08);
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--sand);
  font-weight: 600;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 6vw;
  background: var(--navy);
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--copper);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 26, 43, 0.95);
  color: var(--white);
  padding: 16px 6vw;
  display: flex;
  justify-content: center;
  z-index: 30;
}

.cookie-banner__content {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split-section.alt {
    flex-direction: row-reverse;
  }

  .split-section__text,
  .split-section__media {
    flex: 1;
  }

  .price-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
