:root {
  --ink: #1f2a22;
  --muted: #5b6a60;
  --sand: #f2efe9;
  --moss: #2e4a3a;
  --leaf: #4f6f52;
  --sun: #e5d6b5;
  --mist: #e7ece7;
  --accent: #b86b3e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--moss);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 6vw 8px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}

main {
  padding-bottom: 80px;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.tight {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section .text {
  flex: 1 1 320px;
  min-width: 280px;
}

.section .media {
  flex: 1 1 280px;
  min-width: 260px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d7ddd5;
}

.offset-left .text {
  order: 2;
}

.offset-left .media {
  order: 1;
  transform: translateX(-20px);
}

.offset-right .media {
  transform: translateX(20px);
}

.hero {
  padding: 70px 6vw 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d8e0d6;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button-row {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--moss);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--moss);
  border: 1px solid var(--moss);
}

.btn.light {
  background: var(--sun);
  color: var(--ink);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e7e2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .media {
  height: 160px;
  border-radius: 14px;
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: var(--moss);
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.asym-row .panel {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cdd6cd;
  font-size: 1rem;
  font-family: inherit;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-option {
  flex: 1 1 220px;
  min-width: 200px;
  border-radius: 16px;
  border: 1px solid #d7ddd5;
  padding: 14px;
  background: #f8faf8;
  cursor: pointer;
}

.service-option input {
  margin-right: 8px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  padding: 12px 16px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

footer {
  background: #101711;
  color: #f2f5f2;
  padding: 40px 6vw;
}

footer a {
  color: #f2f5f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8ded8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 20;
  border: 1px solid #dde3dd;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.notice {
  background: var(--sun);
  padding: 12px 16px;
  border-radius: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: flex;
  gap: 12px;
}

.timeline-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--leaf);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e6e0;
}

.simple-hero {
  padding: 50px 6vw 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.simple-hero .media {
  height: 260px;
}

.page-title {
  font-size: 2.1rem;
  margin: 0 0 12px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .offset-left .media,
  .offset-right .media {
    transform: none;
  }
}
