* {
  box-sizing: border-box;
}

:root {
  --sand: #f7f3ec;
  --dune: #1c1b18;
  --gumleaf: #2f4f4a;
  --sunset: #d87d4a;
  --mist: #e3e9e5;
  --stone: #b7b2a8;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--dune);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: var(--gumleaf);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #fff;
  border-bottom: 1px solid #e6e0d6;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dune);
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--dune);
}

.hero {
  background: var(--mist);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6vw;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1 1 320px;
}

.split__content h1,
.split__content h2 {
  margin-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--sunset);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  background: var(--gumleaf);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.button--ghost {
  background: transparent;
  color: var(--gumleaf);
  border: 1px solid var(--gumleaf);
}

.button--sunset {
  background: var(--sunset);
}

.media-frame {
  position: relative;
  padding: 18px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(32, 26, 16, 0.12);
}

.media-frame img {
  border-radius: 18px;
}

.stacked-tag {
  position: absolute;
  bottom: -18px;
  right: 18px;
  background: var(--gumleaf);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.strip {
  background: #fff;
}

.strip--dark {
  background: var(--dune);
  color: #fff;
}

.strip--dark a {
  color: #fff;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #efe8dc;
}

.card img {
  border-radius: 16px;
  margin-bottom: 16px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gumleaf);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(47, 79, 74, 0.12);
  font-size: 0.85rem;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #efe8dc;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d0c4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 40px 6vw;
  background: #fff;
  border-top: 1px solid #e6e0d6;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: 0 12px 24px rgba(32, 26, 16, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(32, 26, 16, 0.16);
  max-width: 320px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.list-split {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-split li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e0d6;
}

.list-split span {
  font-weight: 600;
}

.note {
  background: rgba(216, 125, 74, 0.14);
  padding: 14px 18px;
  border-radius: 16px;
}

.meta {
  font-size: 0.9rem;
  color: #5f5b55;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 32px 6vw 0;
  }
}
