@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@400;600;700&display=swap");

:root {
  --ink: #1f2a21;
  --soft-ink: #435047;
  --accent: #5c8a68;
  --accent-dark: #3e6550;
  --sand: #f5f1ea;
  --mist: #eef2ee;
  --light: #ffffff;
  --shadow: 0 20px 50px rgba(31, 42, 33, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site-header {
  padding: 28px 6vw;
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid rgba(31, 42, 33, 0.08);
}

.brand-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tagline {
  font-size: 0.95rem;
  color: var(--soft-ink);
  max-width: 320px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.split-section {
  display: flex;
  flex-direction: column;
  padding: 60px 6vw;
  gap: 28px;
  background: var(--sand);
  position: relative;
}

.split-section.layered {
  background: var(--mist);
}

.split-section.accent {
  background: var(--light);
}

.split-section::before {
  content: "";
  position: absolute;
  inset: 14% 10% auto auto;
  width: 220px;
  height: 220px;
  background: rgba(92, 138, 104, 0.12);
  border-radius: 50%;
  z-index: 0;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-content h1,
.split-content h2,
.split-content h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

.split-content h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.split-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.split-content h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--soft-ink);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  font-weight: 600;
  background: var(--accent);
  color: var(--light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
}

.service-cards,
.trust-row,
.testimonial-row,
.value-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--light);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.picker-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 33, 0.15);
  background: var(--light);
  font-weight: 600;
  cursor: pointer;
}

.form-wrap {
  background: var(--light);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 33, 0.2);
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: var(--light);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 9;
}

.site-footer {
  padding: 40px 6vw;
  background: #1f2a21;
  color: #f4f7f3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #f4f7f3;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--light);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.policy-page {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-page h1 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

@media (min-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .service-cards,
  .trust-row,
  .testimonial-row,
  .value-row,
  .service-picker {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .picker-btn {
    flex: 1 1 calc(50% - 12px);
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .brand-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
  }
}
