:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5f66;
  --paper: #faf7f2;
  --accent: #2a6f5a;
  --accent-dark: #1f5646;
  --sand: #efe6d8;
  --stone: #dfe4e0;
  --clay: #c9b8a3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 6px;
  border-bottom: 1px solid var(--stone);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.92rem;
}

.hero {
  position: relative;
  margin: 30px 0 40px;
  padding: 60px 0;
  background-color: var(--stone);
  color: #fdfcf9;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 18px;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  font-weight: 600;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.mag-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.mag-col {
  flex: 1 1 280px;
  min-width: 0;
}

.section {
  margin: 40px 0;
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.section h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.image-frame {
  background-color: var(--clay);
  border-radius: 16px;
  overflow: hidden;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 14px 30px rgba(27, 27, 27, 0.08);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
}

.accent-band {
  background-color: var(--sand);
  padding: 24px;
  border-radius: 16px;
}

.background-block {
  background-color: var(--stone);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.background-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.background-block .content {
  position: relative;
}

.form-area {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(27, 27, 27, 0.08);
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  flex: 1 1 220px;
  background: var(--sand);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-option input {
  accent-color: var(--accent);
}

.form-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  flex: 1 1 100%;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 5;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.footer {
  margin-top: 50px;
  padding: 26px 0 40px;
  border-top: 1px solid var(--stone);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(27, 27, 27, 0.15);
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--stone);
  color: var(--ink);
}

.cookie-accept:hover {
  background: var(--accent-dark);
}

.cookie-reject:hover {
  background: #cfd4d1;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.split-highlight .text {
  flex: 1 1 320px;
}

.split-highlight .media {
  flex: 1 1 260px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}

.table-media {
  flex: 1 1 220px;
}

.table-row .label {
  flex: 1 1 240px;
  font-weight: 600;
}

.table-row .value {
  flex: 1 1 140px;
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    display: inline-flex;
    margin: 12px 0 0;
  }
}
