* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1f1a;
  --muted: #5a6357;
  --accent: #3a6b4b;
  --accent-soft: #e7f0e8;
  --bg: #f7f6f2;
  --panel: #ffffff;
  --warm: #f3ede4;
  --shadow: 0 14px 30px rgba(16, 20, 17, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background: var(--panel);
  border-right: 1px solid #e3e6e1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--accent-soft);
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 10px 12px;
  border: 1px dashed #c6d3c7;
  border-radius: 8px;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: #2a3b2f;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 48px 96px;
}

.section {
  background: var(--panel);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: var(--warm);
}

.section.slim {
  padding: 20px 24px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.hero-title {
  font-size: 36px;
  margin: 0;
}

.image-frame {
  background: #d8dfd2;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fdfdfb;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e6e8e1;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 13px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

fieldset {
  border: 1px solid #d9ded7;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

legend {
  font-weight: 700;
  padding: 0 6px;
}

.radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-card {
  border: 1px solid #d7dfd4;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  display: flex;
  gap: 8px;
  align-items: center;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6cf;
  font-size: 15px;
  flex: 1;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

.background-panel {
  background: linear-gradient(120deg, rgba(58, 107, 75, 0.14), rgba(243, 237, 228, 0.85));
}

.bg-season {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-season::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 36, 26, 0.55);
  border-radius: 18px;
}

.bg-season > * {
  position: relative;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e1e5dd;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f2e22;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #d8dfd7;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-header {
  display: flex;
  gap: 24px;
  align-items: center;
}

.page-header h2 {
  margin: 0;
  font-size: 30px;
}

.info-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 240px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e3e6e1;
}

footer {
  padding: 18px 0 40px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  main {
    padding: 28px 24px 96px;
  }

  .split,
  .split.reverse,
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
