@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: #1e2421;
  background: #f6f3ed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  background: #efe7db;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
}

.nav a {
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: rgba(30, 36, 33, 0.08);
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px 16px;
  background: #1e2421;
  color: #fdfbf7;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(37, 33, 23, 0.08);
}

.section.soft {
  background: #f1efe8;
}

.section.dark {
  background: #1e2421;
  color: #fdfbf7;
}

.section h1,
.section h2 {
  margin: 0;
}

.section p {
  margin: 0;
  line-height: 1.6;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 40px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  background: #1e2421;
  color: #fdfbf7;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1e2421;
  border: 1px solid #1e2421;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split > div,
.split > figure {
  flex: 1 1 240px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: #efe7db;
  font-weight: 600;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #1e2421;
  color: #fdfbf7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: #f1efe8;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 240px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4cdc2;
  font-family: inherit;
}

.note {
  font-size: 14px;
  color: #5b615c;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  background: #1e2421;
  color: #fdfbf7;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 6;
}

.footer {
  padding: 24px;
  background: #efe7db;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1e2421;
  color: #fdfbf7;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 8;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #f7f4ef;
  color: #1e2421;
}

.cookie-actions .reject {
  background: transparent;
  color: #fdfbf7;
  border: 1px solid #fdfbf7;
}

.bg-meadow {
  background-image: linear-gradient(rgba(247, 244, 239, 0.92), rgba(247, 244, 239, 0.92)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.bg-stone {
  background-image: linear-gradient(rgba(30, 36, 33, 0.72), rgba(30, 36, 33, 0.72)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.contact-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #f7f4ef;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f1efe8;
  flex-wrap: wrap;
}

.service-row span {
  font-weight: 600;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .content {
    padding: 28px 20px 80px;
  }

  .hero {
    flex-direction: column;
  }
}
