* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  padding: 24px 6vw 10px;
  background-color: #fff7f0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #7a4b2b;
  background-color: #f4e5d7;
  padding: 6px 10px;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  gap: 20px;
  border-top: 1px solid #e2d7cb;
  padding-top: 14px;
}

.nav-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-group a {
  font-weight: 600;
  font-size: 14px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1476224203421-9ac39bcb3327?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 6vw;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
}

.hero p {
  font-size: 18px;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 30px;
  background-color: #f5b87f;
  color: #1f1f1f;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background-color: #fff;
  border: 1px solid #1f1f1f;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.section {
  padding: 60px 6vw;
}

.section.dark {
  background-color: #26211c;
  color: #fdf6ef;
}

.section.alt {
  background-color: #fff;
}

.section.background-pane {
  background-image: url("https://images.unsplash.com/photo-1473093295043-cdd812d0e601?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #f7f0e8;
  background-blend-mode: multiply;
}

.section-title {
  font-size: 26px;
  margin: 0 0 20px;
}

.columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 260px;
  min-width: 240px;
}

.media-block {
  background-color: #e7d8c7;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.quote {
  font-style: italic;
  background-color: #f9efe5;
  padding: 18px;
  border-radius: 14px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2d7cb;
}

.price {
  font-weight: 700;
  white-space: nowrap;
}

.form-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8b9ab;
  font-size: 14px;
  font-family: inherit;
}

.contact-block {
  background-color: #fff;
  padding: 22px;
  border-radius: 14px;
}

.footer {
  padding: 40px 6vw;
  background-color: #1a1713;
  color: #f7f0e8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.footer-links a {
  color: #f7f0e8;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  background-color: #f5b87f;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.legal-list {
  padding-left: 18px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.muted {
  color: #6b5c4e;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 30px;
  }

  .main-nav {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
