* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f1f;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0;
  background: #f2efe6;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c5c58;
  max-width: 260px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

nav a {
  padding: 8px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e3e0d6;
}

nav a:hover {
  background: #e7efe1;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-media {
  border-radius: 28px;
  overflow: hidden;
  background-color: #d8d3c8;
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b6f64;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1d1f1f;
  background: #1d1f1f;
  color: #f7f6f2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: #1d1f1f;
}

.btn:hover {
  background: #2f3a31;
  color: #f7f6f2;
}

.btn.secondary:hover {
  background: #e7efe1;
  color: #1d1f1f;
}

.section-band {
  padding: 56px 0;
  background: #ffffff;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8e3d6;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card-media {
  background-color: #d8d3c8;
  height: 180px;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 600;
  color: #1f5b3b;
}

.inline-cta {
  color: #1f5b3b;
  text-decoration: underline;
}

.inline-cta:hover {
  color: #163f29;
}

.wide-image {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background-color: #c9c4b8;
}

.wide-image img {
  width: 100%;
  height: 340px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-box {
  flex: 1 1 240px;
  padding: 18px;
  background: #f1efe8;
  border-radius: 18px;
  border: 1px solid #e1dbcd;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #e8e3d6;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d1c5;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-list li {
  list-style: none;
  padding: 12px;
  border-left: 3px solid #1f5b3b;
  background: #f7f6f2;
}

footer {
  margin-top: auto;
  padding: 32px 0 40px;
  background: #1d1f1f;
  color: #f7f6f2;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  padding: 6px 10px;
  border: 1px solid #4a4a45;
  border-radius: 999px;
}

.footer-links a:hover {
  background: #2c2c29;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f5b3b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f5b3b;
  z-index: 10;
}

.sticky-cta:hover {
  background: #17462f;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d6d0c4;
  padding: 16px;
  border-radius: 18px;
  max-width: 320px;
  display: none;
  z-index: 9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.note {
  font-size: 0.9rem;
  color: #5c5c58;
}

.legal-title {
  margin-top: 12px;
  font-weight: 700;
}

@media (max-width: 880px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  nav ul {
    justify-content: center;
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 92px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
