:root {
  color-scheme: light;
  --ink: #123424;
  --muted: #4b5b53;
  --accent: #2f6b4f;
  --accent-strong: #1f4d38;
  --sand: #f3f1ea;
  --mist: #e6efe9;
  --forest: #1a2f25;
  --card: #ffffff;
  --border: #d7e2da;
  --warning: #fff4d8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  border-bottom: 1px solid var(--border);
  background: #fff;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--border);
  background: var(--mist);
}

.nav-ad {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 50px 6vw;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 340px;
  background-color: #ccd9cf;
  border-radius: 26px;
  background-image: url("https://images.unsplash.com/photo-q5koWM59JKM?w=1400&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(26, 47, 37, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--mist);
  transform: translateY(-1px);
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.inline-link:hover,
.inline-link:focus {
  border-bottom-color: var(--accent-strong);
}

.section {
  padding: 48px 6vw;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block,
.split .media-block {
  flex: 1 1 300px;
}

.text-block h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.text-block p {
  margin: 0 0 10px;
  color: var(--muted);
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.image-frame {
  background-color: #d7e2da;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(26, 47, 37, 0.12);
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-panel {
  background: var(--mist);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--forest);
  font-size: 1.1rem;
}

.bg-section {
  background-color: #cfe0d6;
  background-image: url("https://images.unsplash.com/photo-ta0KXWLolXY?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-overlay {
  background: rgba(19, 35, 28, 0.72);
  padding: 48px 6vw;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #f7f7f1;
  margin: 12px 0;
}

.form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.sticky-cta a {
  box-shadow: 0 12px 30px rgba(26, 47, 37, 0.3);
}

.footer {
  padding: 30px 6vw;
  background: #0f1f18;
  color: #e9efe9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e9efe9;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer .columns div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c5d2c9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--warning);
  border: 1px solid #e3d9bf;
  padding: 18px 20px;
  border-radius: 18px;
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.cookie-actions button:hover,
.cookie-actions button:focus {
  background: #f2f2f2;
}

.legal-section {
  padding: 40px 6vw;
}

.legal-section h1 {
  margin-top: 0;
}

.contact-box {
  background: var(--mist);
  padding: 24px;
  border-radius: 20px;
}

.contact-box p {
  margin: 8px 0;
}

.secondary-hero {
  padding: 40px 6vw;
  background: var(--sand);
}

.secondary-hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
