* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #231f20;
  background-color: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 7vw;
  background-color: #efe9e2;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-brand span {
  font-size: 13px;
  color: #6b5f55;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #fff5ee;
}

.ad-label {
  font-size: 12px;
  color: #6b5f55;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f7dfd2;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 7vw 30px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero-text p {
  font-size: 17px;
  color: #4b3f38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #2f231a;
  color: #fff;
  font-size: 15px;
  border: none;
}

.btn.secondary {
  background-color: #d2b49c;
  color: #2f231a;
}

.hero-media {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #e6ddd4;
  border-radius: 18px;
  overflow: hidden;
}

.frame-small {
  flex: 1 1 260px;
}

.site-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 7vw;
}

.section-title {
  font-size: 28px;
}

.section-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section-layout.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: #3b332f;
}

.inline-link {
  color: #7a4c32;
  text-decoration: underline;
}

.bg-image-section {
  background-image: url("https://images.unsplash.com/photo-1516822003754-cca485356ecb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(25, 17, 12, 0.6);
}

.bg-image-section .section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card h3 {
  font-size: 18px;
}

.card .price {
  font-weight: 600;
  color: #7a4c32;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 180px;
  background-color: #f4ede6;
  border-radius: 14px;
  padding: 14px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background-color: #fff5ee;
  padding: 14px;
  border-radius: 14px;
  font-style: italic;
}

.pricing-highlight {
  background-color: #efe2d6;
  border-radius: 20px;
  padding: 24px;
}

.form-section {
  background-color: #f1e6db;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: #4b3f38;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7b9ad;
  font-size: 15px;
  background-color: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2f231a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 30px 7vw;
  background-color: #efe9e2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #4b3f38;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 7vw;
  background-color: #2f231a;
  color: #fff;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
}

.cookie-actions .accept {
  background-color: #f7dfd2;
  color: #2f231a;
}

.cookie-actions .reject {
  background-color: #fff;
  color: #2f231a;
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 30px 7vw;
}

.simple-hero h1 {
  font-size: 32px;
}

.simple-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 7vw 40px;
}

.content-card {
  background-color: #fff;
  padding: 18px;
  border-radius: 16px;
}
