* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f2ee;
  --ink: #1f1b17;
  --muted: #5e534a;
  --accent: #8c3d2d;
  --accent-dark: #6a2a1d;
  --paper: #ffffff;
  --sand: #e8e0d6;
  --slate: #2a2e33;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 8px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(140, 61, 45, 0.08);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 6vw 40px;
}

.hero-card {
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: rgba(140, 61, 45, 0.12);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 12px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 42px 6vw;
  position: relative;
}

.section.alt {
  background: var(--paper);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.asymmetric {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offset {
  align-self: flex-end;
  max-width: 520px;
  background: var(--sand);
  padding: 20px;
  border-radius: var(--radius);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--paper);
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .panel {
  background: var(--paper);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote {
  font-style: italic;
  background: var(--sand);
  padding: 20px;
  border-radius: var(--radius);
}

.form-card {
  background: var(--paper);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4c9bc;
  font-size: 1rem;
  background: #fff;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--slate);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1f1b17;
  color: #f9f6f2;
}

.footer a {
  color: #f9f6f2;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--paper);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  gap: 16px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
    align-self: center;
  }

  .asymmetric {
    flex-direction: row;
    align-items: stretch;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
  }

  .split .panel {
    flex: 1;
  }

  .form-grid {
    display: flex;
    gap: 18px;
  }

  .form-grid .form-row {
    flex: 1;
  }
}
