* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c241c;
  --sage: #4f6b52;
  --leaf: #7aa87e;
  --mist: #f3f5f1;
  --clay: #d8c8b6;
  --sun: #e8c46b;
  --earth: #6b4d3e;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 96px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.split-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 16px;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--leaf);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.hero-panel {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(28, 36, 28, 0.12);
  position: relative;
  z-index: 2;
}

.hero-panel h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

.hero-panel p {
  margin: 0 0 18px;
  color: #3d4a3d;
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  margin-top: -20px;
  box-shadow: 0 30px 60px rgba(28, 36, 28, 0.18);
}

.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;
  font-weight: 600;
  background: var(--leaf);
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(122, 168, 126, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--leaf);
  color: var(--leaf);
  box-shadow: none;
}

.inline-cta {
  color: var(--earth);
  font-weight: 600;
  border-bottom: 2px solid var(--sun);
}

.layered-section {
  position: relative;
}

.offset-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(28, 36, 28, 0.1);
}

.offset-card.shifted {
  margin-left: 18px;
  border-left: 5px solid var(--sun);
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-row img {
  border-radius: 16px;
}

.accent-block {
  background: var(--clay);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(79, 107, 82, 0.15);
}

.service-card h3 {
  margin: 0;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
  color: var(--sage);
}

.form-shell {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(28, 36, 28, 0.16);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 82, 0.25);
  font-size: 1rem;
}

.form-grid textarea {
  min-height: 120px;
}

.accent-strip {
  background: linear-gradient(120deg, rgba(122, 168, 126, 0.2), rgba(232, 196, 107, 0.35));
  padding: 18px 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  border-left: 6px solid var(--leaf);
}

.image-collage {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-collage img {
  border-radius: 18px;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(232, 196, 107, 0.45);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 28px rgba(28, 36, 28, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn-outline {
  border-color: var(--earth);
  color: var(--earth);
}

.page-header {
  padding: 40px 0 0;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 8px;
}

.page-subtitle {
  max-width: 720px;
}

.simple-section {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(28, 36, 28, 0.15);
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-panel {
    flex: 1.1;
    margin-right: -60px;
  }

  .hero-image {
    flex: 1;
    margin-top: 40px;
  }

  .offset-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .offset-card.shifted {
    margin-top: 40px;
  }

  .media-row {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .image-collage {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid label {
    flex: 1 1 240px;
  }
}
