* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b19;
  --muted: #6f6a63;
  --accent: #c46b3b;
  --accent-dark: #a2542c;
  --cream: #f7f1e9;
  --sand: #efe4d6;
  --olive: #49533a;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 7vw 18px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-badge {
  background: var(--olive);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 20px;
  align-self: flex-start;
  box-shadow: 0 14px 30px rgba(28, 27, 25, 0.08);
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--olive);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 18px 7vw 40px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
}

.hero-sub {
  color: var(--muted);
  max-width: 520px;
}

.hero-visual {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-visual img {
  flex: 1 1 220px;
  min-height: 220px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 38px 7vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--accent-dark);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.asym-row.offset {
  margin-left: clamp(0px, 8vw, 120px);
}

.asym-card {
  background: var(--white);
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(28, 27, 25, 0.08);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--olive);
  color: var(--white);
  padding: 28px;
  border-radius: 24px;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(73, 83, 58, 0.2);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: var(--white);
  padding: 24px;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(28, 27, 25, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(28, 27, 25, 0.2);
  font-size: 14px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 7vw;
  background: var(--olive);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: var(--white);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(28, 27, 25, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 20px 35px rgba(28, 27, 25, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 20px;
  border-radius: 24px;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-muted {
  color: var(--muted);
}

@media (min-width: 880px) {
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-copy {
    flex: 1 1 50%;
  }

  .hero-visual {
    flex: 1 1 50%;
  }

  .asym-row {
    flex-direction: row;
  }

  .grid-cards {
    flex-direction: row;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .split-panel {
    flex-direction: row;
    align-items: center;
  }

  .contact-grid {
    flex-direction: row;
  }
}
