:root {
  color-scheme: light;
  --ink: #1f2a27;
  --muted: #5a6b66;
  --sand: #f6f1ea;
  --moss: #355f5b;
  --clay: #d6b8a5;
  --sky: #dfe8e3;
  --sun: #f0d9b5;
  --shadow: 0 20px 45px rgba(20, 32, 28, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #fff;
  color: var(--ink);
  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;
}

.site-header {
  padding: 28px 6vw 0;
}

.nav-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  padding: 40px 6vw 90px;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--sand);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  top: 24px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-tag {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin: 12px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button-outline {
  background: transparent;
  border: 1px solid var(--moss);
  color: var(--moss);
}

.button-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid #d9d9d9;
}

.section {
  padding: 72px 6vw;
}

.section-alt {
  background: var(--sky);
}

.offset-block {
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  top: -36px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split > * {
  flex: 1 1 280px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--moss);
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 220px;
  background: var(--sand);
  padding: 22px;
  border-radius: 16px;
}

.form-section {
  background: var(--sun);
}

.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6d2;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--moss);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--moss);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.site-footer {
  padding: 40px 6vw 60px;
  background: #1c2422;
  color: #f5f5f5;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 48px 6vw;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0 0 10px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-card {
  flex: 1 1 260px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 760px) {
  .hero-copy {
    top: 0;
  }

  .offset-block {
    top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
