* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #0f3d3e;
  text-decoration: none;
}

header {
  background: #f6f4f1;
  border-bottom: 1px solid #e0d9d0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.ad-label {
  background: #1b1b1b;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 16px;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero {
  display: flex;
  padding: 60px 6%;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  background: #d8e3e7;
  padding: 12px;
  border-radius: 24px;
}

.hero-visual img {
  border-radius: 20px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  background: #0f3d3e;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: #e6c77c;
  color: #1b1b1b;
}

.split {
  display: flex;
  gap: 40px;
  padding: 60px 6%;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media-block {
  flex: 1 1 320px;
  background: #e7efe6;
  padding: 12px;
  border-radius: 20px;
}

.bg-sky {
  background: #e0e6ef;
}

.bg-sand {
  background: #f4e9da;
}

.bg-cream {
  background: #f5efe5;
}

.bg-mint {
  background: #e7efe6;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: #0f3d3e;
}

.section-tone {
  background: #f0ebe3;
}

.section-dark {
  background: #0f3d3e;
  color: #fff;
}

.section-dark a {
  color: #ffe7b0;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.form-section {
  background: #fff;
  padding: 60px 6%;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-box {
  flex: 1 1 320px;
  background: #f6f4f1;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0c8bd;
  font-size: 0.95rem;
  width: 100%;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  top: 0;
  background: #fff7e8;
  padding: 16px 6%;
  border-bottom: 1px solid #e6d8bf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.footer {
  padding: 40px 6%;
  background: #1b1b1b;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1b1b;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.page-header {
  padding: 50px 6% 20px;
}

.contact-blocks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 6% 60px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-content {
  padding: 20px 6% 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thanks {
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.divider {
  height: 1px;
  background: #e0d9d0;
  margin: 20px 0;
}
