@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Spectral:wght@400;600&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: #2b2a28;
  background-color: #f7f3ee;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background-color: #f0e8df;
  border-bottom: 1px solid #e2d7cb;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-family: "Spectral", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: #6b6157;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding: 8px 12px;
  border-radius: 20px;
  background-color: #efe6db;
  border: 1px solid #e2d7cb;
}

.nav .ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background-color: #2b2a28;
  color: #f7f3ee;
  border-radius: 999px;
}

.hero {
  position: relative;
  background-color: #d8c7b3;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
}

.hero-image {
  flex: 1.1;
  background-size: cover;
  background-position: center;
}

.hero-media {
  flex: 1.1;
  background-color: #d8c7b3;
  display: flex;
  align-items: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-content {
  flex: 0.9;
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: rgba(247, 243, 238, 0.95);
}

.hero-title {
  font-family: "Spectral", serif;
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #2b2a28;
  background-color: #2b2a28;
  color: #f7f3ee;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background-color: transparent;
  color: #2b2a28;
}

.button.text-link {
  background-color: transparent;
  border: none;
  padding: 0;
  color: #9a6a3a;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.layered {
  position: relative;
  overflow: hidden;
}

.section-layer {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 0;
  background-color: #d8c7b3;
}

.section-layer img {
  width: 100%;
  height: 100%;
}

.section-content {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: "Spectral", serif;
  font-size: 2rem;
  margin: 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1.1;
  min-width: 280px;
}

.split-image {
  flex: 0.9;
  min-width: 260px;
  background-color: #e7dcd0;
  border-radius: 20px;
  overflow: hidden;
}

.story-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1;
  min-width: 220px;
  padding: 22px;
  background-color: #efe6db;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-image {
  background-color: #d8c7b3;
  border-radius: 18px;
  overflow: hidden;
}

.benefit-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.benefit {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  border-radius: 16px;
  background-color: #f0e8df;
  border: 1px solid #e2d7cb;
}

.testimonial {
  padding: 20px 24px;
  border-radius: 16px;
  background-color: #fffaf3;
  border: 1px solid #eadfcf;
}

.pricing-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  border-radius: 18px;
  background-color: #fff;
  border: 1px solid #eadfcf;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card img {
  border-radius: 14px;
  background-color: #e7dcd0;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 20px;
  background-color: #fefaf4;
  border: 1px solid #eadfcf;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-step.hidden {
  display: none;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5c7b8;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  background-color: #fff;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background-color: #2b2a28;
  color: #f7f3ee;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #2b2a28;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background-color: #2b2a28;
  color: #f7f3ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #d3c7bc;
}

.legal-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.legal-card {
  flex: 1;
  min-width: 230px;
  padding: 18px;
  border-radius: 16px;
  background-color: #f0e8df;
  border: 1px solid #e2d7cb;
}

.contact-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  padding: 22px;
  border-radius: 18px;
  background-color: #fffaf3;
  border: 1px solid #eadfcf;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 18px;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #eadfcf;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 0.9rem;
  color: #6b6157;
}

.highlight {
  background-color: #efe6db;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
}

.image-banner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-banner img {
  border-radius: 18px;
  background-color: #e7dcd0;
}

.muted {
  color: #6b6157;
}

.hidden {
  display: none;
}
