*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1e1b18;
  --muted: #6f645a;
  --sand: #f6f1ec;
  --stone: #d9cec4;
  --rose: #c89b82;
  --pine: #55665f;
  --sun: #f1c27b;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  border-bottom: 1px solid rgba(30, 27, 24, 0.08);
  background: var(--white);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--rose);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 6vw 60px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40px;
  width: 55%;
  height: 60%;
  background: var(--sand);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: #342f2a;
}

.btn-outline {
  border-color: var(--ink);
  background: transparent;
}

.btn-rose {
  background: var(--rose);
  color: var(--white);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: 85%;
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.hero-card {
  position: absolute;
  left: 0;
  bottom: -24px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 240px;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-sand {
  background: var(--sand);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.split-block.offset {
  margin-left: 8vw;
  background: var(--stone);
}

.split-block.dark {
  background: var(--pine);
  color: var(--white);
}

.mini-kicker {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(30, 27, 24, 0.1);
}

.service-card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--rose);
}

.quote-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.process-line {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(30, 27, 24, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  color: var(--rose);
  border-bottom: 1px solid currentColor;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(30, 27, 24, 0.2);
  border-radius: 20px;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.footer {
  padding: 32px 6vw 48px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cta-sticky {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--rose);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-weight: 600;
  z-index: 10;
  border: none;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 42px 6vw 30px;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

.simple-section {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual img {
    width: 70%;
  }

  .section-split {
    flex-direction: row;
    align-items: stretch;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .split-block {
    flex: 1;
  }

  .split-block.offset {
    margin-left: 4vw;
  }

  .process-line {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
  }

  .quote-wrap {
    flex-direction: row;
  }

  .form-wrap {
    flex-direction: column;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
