* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a1f;
  --muted: #4a5a4a;
  --accent: #2f6b4f;
  --accent-soft: #dce9df;
  --sand: #f4f1ea;
  --mist: #eef3f1;
  --clay: #e6dccd;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--mist);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-size: 15px;
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent);
}

.sidebar-card {
  background: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(22, 35, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
}

.sidebar-card .button {
  align-self: flex-start;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

section {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  background: var(--white);
  gap: 24px;
}

.hero h1 {
  font-size: 32px;
  line-height: 1.2;
}

.hero p {
  font-size: 17px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.split {
  background: var(--mist);
}

.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset {
  background: var(--clay);
  position: relative;
  overflow: hidden;
}

.offset .floating-card {
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(25, 35, 28, 0.12);
}

.media-strip {
  background: var(--white);
}

.media-strip .strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-preview {
  background: var(--mist);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(31, 42, 31, 0.08);
}

.card img {
  border-radius: 12px;
}

.quote {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 18px;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.form-wrap {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c7d3c9;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: var(--accent);
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: var(--white);
}

.cookie-banner {
  background: var(--white);
  border-top: 1px solid #d5e0d7;
  padding: 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 900px) {
  .site {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  section {
    padding: 60px 60px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero .hero-text {
    flex: 1;
  }

  .hero .hero-media {
    flex: 1;
  }

  .split .split-row {
    flex-direction: row;
    align-items: center;
  }

  .media-strip .strip {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }
}
