* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #145a45;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #7a4b10;
  background: #f9e8cf;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 0 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 360px;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.tagline {
  font-size: 1.1rem;
  color: #303030;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: #145a45;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #f2c879;
  color: #2d1d05;
}

.btn.ghost {
  background: transparent;
  border: 2px solid #145a45;
  color: #145a45;
}

.section {
  padding: 48px 0;
}

.section.light {
  background: #fff;
}

.section.muted {
  background: #ece9e3;
}

.section-header {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-title {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  margin: 0;
}

.section-note {
  color: #4d4d4d;
  margin: 0;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: #145a45;
}

.img-box {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d8d0c8;
}

.img-box.soft {
  background-color: #d3e1d7;
}

.img-box.sunset {
  background-color: #e6d2c4;
}

.img-box.steel {
  background-color: #c9d1d6;
}

.img-box.olive {
  background-color: #c6cbb9;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin-bottom: 8px;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c3bc;
  font-size: 1rem;
}

.split-callout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  background: #f8f1e5;
  border-radius: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #145a45;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  text-decoration: none;
  background: #0f4535;
}

.footer {
  margin-top: auto;
  padding: 32px 0;
  background: #1f2b27;
  color: #f5f5f5;
}

.footer a {
  color: #f2c879;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background: rgba(31, 43, 39, 0.96);
  color: #f7f2ea;
  z-index: 30;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #f2c879;
  color: #2b1c06;
}

.cookie-btn.reject {
  background: transparent;
  border: 2px solid #f2c879;
  color: #f2c879;
}

.notice {
  background: #f5f0e8;
  border-left: 4px solid #f2c879;
  padding: 12px 16px;
  border-radius: 12px;
}

.inline-cta {
  font-weight: 600;
}

.no-form {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reference-list a {
  color: #145a45;
}
