* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1c1a;
  background: #faf7f4;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #f3ece6;
  border-bottom: 1px solid #e1d7cf;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  padding: 4px 0;
}

.ad-label {
  font-size: 12px;
  max-width: 220px;
  text-align: right;
  color: #5a4b43;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 6vw 40px;
  gap: 32px;
  align-items: stretch;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  background: #e8d9d2;
  border-radius: 18px;
  overflow: hidden;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1c1a;
  background: #1d1c1a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: #1d1c1a;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #f1e7df;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .visual {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #eadfd8;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a6359;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(29, 28, 26, 0.08);
}

.card-media {
  border-radius: 12px;
  overflow: hidden;
  background: #ecdcd3;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #1d1c1a;
}

.quote {
  border-left: 3px solid #d6bfb3;
  padding-left: 16px;
  font-style: italic;
  color: #4c3f38;
}

.form-section {
  background: #1d1c1a;
  color: #fff;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-wrap form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 14px;
}

.form-wrap select,
.form-wrap input,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

.form-wrap button {
  border: none;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 14px 6vw;
  border-top: 1px solid #e3d4ca;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer {
  padding: 40px 6vw;
  background: #f3ece6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
}

.legal {
  color: #5a4b43;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e5d7cc;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.simple-header {
  padding: 48px 6vw 24px;
}

.simple-header h1 {
  margin: 0;
  font-size: 34px;
}

.content {
  padding: 24px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8dad0;
}

@media (max-width: 780px) {
  .nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
