* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f4f0;
  line-height: 1.6;
}

a {
  color: #2e5f3a;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.88;
}

header {
  padding: 18px 6vw;
  background-color: #fff8ef;
  border-bottom: 1px solid #eaded2;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3f2f23;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #7a5b45;
  max-width: 240px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 40px 6vw 28px;
  background-color: #fdf9f4;
}

.hero-text {
  flex: 1 1 340px;
  min-width: 280px;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  background-color: #d8c8b6;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  border: none;
  background-color: #2e5f3a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background-color: #7a5b45;
}

.btn.outline {
  background-color: transparent;
  border: 1px solid #2e5f3a;
  color: #2e5f3a;
}

main {
  padding: 0 6vw 60px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 34px 0;
  align-items: flex-start;
}

.col-2 {
  flex: 1 1 320px;
}

.col-3 {
  flex: 1 1 240px;
}

.feature-panel,
.note-panel,
.story-panel {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.story-panel {
  background-color: #f1e7db;
}

.note-panel {
  background-color: #fff2e8;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.inline-list li {
  background-color: #faf7f3;
  padding: 14px 16px;
  border-radius: 12px;
  border-left: 4px solid #c49b7f;
}

.image-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.image-card .img-frame {
  background-color: #e5d6c8;
}

img.cover {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-card .img-frame {
  background-color: #d7c5b4;
}

.service-content {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: #2e5f3a;
}

.cta-strip {
  margin: 40px 0 10px;
  padding: 22px;
  background-color: #fff4e4;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.bg-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 36, 28, 0.6);
}

.bg-section > * {
  position: relative;
  z-index: 1;
}

.form-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5c7b8;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  padding: 30px 6vw 70px;
  background-color: #2b231e;
  color: #f7efe6;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #f7efe6;
}

.disclaimer {
  font-size: 0.85rem;
  color: #e8d7c8;
  margin-top: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 14px;
  margin: 30px auto 0;
  max-width: 980px;
  background-color: #2e5f3a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  z-index: 1000;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.section-split .img-frame {
  background-color: #dccab6;
  border-radius: 16px;
  overflow: hidden;
}

.legal-note {
  background-color: #fff2e8;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 860px) {
  header,
  main,
  .footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sticky-cta {
    flex-direction: column;
    text-align: center;
  }
}
