* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1b19;
  --muted: #6b625b;
  --accent: #2f5d50;
  --accent-2: #c28034;
  --paper: #f6f1ec;
  --panel: #fffaf4;
  --line: #e1d8cf;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  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 {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 8%;
  background: #fef9f3;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 8% 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  flex: 1 1 340px;
  background: #cdd7d0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn:hover {
  background: #264b41;
}

.btn.secondary:hover {
  background: rgba(47, 93, 80, 0.1);
}

.section {
  padding: 56px 8%;
}

.section.light {
  background: var(--panel);
}

.section.dark {
  background: #1f2b26;
  color: #f8f4ef;
}

.section.dark .muted {
  color: #d9d0c7;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #2a3a34;
  border-color: transparent;
  color: #f6efe7;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  background: #cdd7d0;
}

.tagline {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.muted {
  color: var(--muted);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.price-card {
  flex: 1 1 220px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-2);
}

.form-shell {
  background: white;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc1b4;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  padding: 40px 8%;
  background: #efe5da;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 43, 38, 0.95);
  color: #f8f4ef;
  padding: 12px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent-2);
  color: #1f2b26;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: min(360px, 90vw);
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.image-shell {
  background: #cdd7d0;
  border-radius: 16px;
  overflow: hidden;
}

.image-shell img {
  width: 100%;
  height: 100%;
}

.compact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.legal-content {
  max-width: 900px;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
