* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5f6470;
  --paper: #f7f2ed;
  --sand: #efe6db;
  --clay: #d9c7b6;
  --accent: #2f5d50;
  --accent-soft: #b9d5c9;
  --sun: #e7b86d;
  --white: #ffffff;
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 28px;
  padding: 20px 6vw 40px;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-card {
  flex: 1 1 360px;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(25, 25, 25, 0.08);
  position: relative;
  top: 28px;
}

.image-frame {
  background-color: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
}

.image-frame.tall {
  height: 380px;
}

.image-frame.medium {
  height: 300px;
}

.image-frame.small {
  height: 220px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-light {
  background: var(--white);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(47, 93, 80, 0.2);
}

.section {
  padding: 34px 6vw;
}

.section.alt {
  background: var(--sand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset {
  position: relative;
}

.offset .panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(27, 27, 27, 0.1);
}

.offset .panel.shift {
  margin-top: -40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(27, 27, 27, 0.08);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d2cc;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer a {
  color: var(--white);
  text-decoration: underline;
}

.footer small {
  color: #d6d3cc;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(27, 27, 27, 0.2);
  z-index: 50;
}

.sticky-cta a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(27, 27, 27, 0.18);
  max-width: 320px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.legal-hero .image-frame {
  flex: 1 1 260px;
}

.legal-hero .copy {
  flex: 2 1 300px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    top: 0;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
