* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a24;
  --muted: #5a6b62;
  --accent: #3a6f52;
  --accent-soft: #e7f1ea;
  --paper: #f7f5f1;
  --sand: #efe6d8;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e3e0da;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 999px;
}

.section {
  padding: 70px 28px;
}

.section.alt {
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.hero {
  padding-top: 60px;
  padding-bottom: 90px;
}

.hero-copy h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  border: none;
  padding: 12px 22px;
  border-radius: 28px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button.inline {
  padding: 0;
  background: none;
  border-radius: 0;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.hero-media {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #cdd8ce;
}

.text-block h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.text-block p {
  color: var(--muted);
  margin-bottom: 14px;
}

.highlight {
  background: var(--accent-soft);
  padding: 26px;
  border-radius: 20px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 12px 24px rgba(31, 42, 36, 0.08);
}

.card-media {
  height: 180px;
  background-color: #c7d5c8;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 30px rgba(31, 42, 36, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d6cf;
  font-size: 15px;
  background: #fbfaf7;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  margin-top: auto;
  background: #ffffff;
  border-top: 1px solid #e3e0da;
  padding: 40px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  box-shadow: 0 12px 18px rgba(31, 42, 36, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 26px rgba(31, 42, 36, 0.2);
  max-width: 360px;
  display: none;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 10px 18px;
  font-size: 14px;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.section-title {
  margin-bottom: 24px;
  font-size: 28px;
}

.contact-card {
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 22px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-grid > * {
  flex: 1 1 240px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #c4d2c8;
  min-height: 280px;
}

.legal-page h1 {
  font-size: 32px;
  margin-bottom: 18px;
}

.legal-page h2 {
  margin-top: 26px;
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--muted);
  margin-bottom: 12px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  align-items: center;
  box-shadow: 0 10px 22px rgba(31, 42, 36, 0.08);
}

.service-row > * {
  flex: 1 1 180px;
}

.thumb {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #cbd6cc;
}

.service-row img {
  height: 140px;
  border-radius: 12px;
}

.muted {
  color: var(--muted);
}
