:root {
  --ink: #1a1f2b;
  --muted: #5d6677;
  --sand: #f4f1ec;
  --stone: #e7e1d8;
  --forest: #2a5c4b;
  --amber: #d0a965;
  --night: #121622;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.nav-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--stone);
}

.hero {
  background: var(--white);
}

.section {
  padding: 64px 24px;
}

.section--muted {
  background: var(--stone);
}

.section--dark {
  background: var(--night);
  color: var(--white);
}

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

.split {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__text {
  flex: 1;
}

.split__media {
  flex: 1;
  min-height: 360px;
  border-radius: 16px;
  background-color: #d7d2c6;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.split__media img {
  width: 100%;
  height: 100%;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-cta {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--forest);
  color: var(--white);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: #1f473a;
}

.btn--ghost:hover,
.btn--ghost:focus {
  background: var(--forest);
  color: var(--white);
}

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

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  color: inherit;
}

.card:hover,
.card:focus {
  box-shadow: 0 12px 30px rgba(17, 22, 34, 0.12);
}

.card__media {
  background-color: #cfc8bc;
}

.card__media img {
  width: 100%;
  height: 160px;
}

.card__body {
  padding: 16px;
}

.price {
  font-weight: 700;
  color: var(--forest);
  margin-top: 8px;
}

.inline-link {
  color: var(--forest);
  text-decoration: underline;
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--stone);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  background: var(--white);
  padding: 32px 24px;
  border-top: 1px solid var(--stone);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

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

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--forest);
}

.cookie-actions button:hover,
.cookie-actions button:focus {
  transform: translateY(-1px);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--amber);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-1px);
}

.callout {
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--stone);
}

@media (max-width: 900px) {
  .nav-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .split {
    flex-direction: column;
  }

  .split--reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: auto;
    right: 16px;
  }
}
