* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2428;
  background: #f6f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand small {
  color: #6a5d55;
  font-size: 0.85rem;
}

.nav-toggle {
  border: 1px solid #1f2428;
  padding: 8px 12px;
  background: #f6f2ee;
  cursor: pointer;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus {
  background: #1f2428;
  color: #f6f2ee;
}

.ad-label {
  font-size: 0.8rem;
  color: #5c4740;
  border: 1px solid #e0d5cc;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-wrapper {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0 20px;
}

.nav-panel.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0 20px;
}

.hero .hero-copy {
  flex: 1.2;
  min-width: 260px;
}

.hero .hero-image {
  flex: 1;
  min-width: 260px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2428;
  gap: 8px;
  font-weight: 600;
}

.btn.primary {
  background: #1f2428;
  color: #f6f2ee;
}

.btn.secondary {
  background: transparent;
}

.section {
  padding: 50px 0;
}

.section-muted {
  background: #efe6df;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.col-main {
  flex: 2;
  min-width: 280px;
}

.col-side {
  flex: 1;
  min-width: 240px;
}

.image-frame {
  background-color: #d8c6bb;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.image-frame.tall {
  min-height: 360px;
}

.image-frame.medium {
  min-height: 260px;
}

.image-frame.small {
  min-height: 200px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fdfbf9;
  border: 1px solid #eadfd6;
}

.price-item strong {
  font-weight: 700;
}

.testimonial {
  padding: 18px;
  background: #fdfbf9;
  border-radius: 14px;
  border: 1px solid #e6d9cf;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eadfd6;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cdbdb1;
  font-size: 1rem;
}

.footer {
  background: #1f2428;
  color: #f6f2ee;
  padding: 40px 0 70px;
}

.footer a:hover,
.footer a:focus {
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d9c8bd;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  background: #b46a4e;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e2d5cb;
  display: none;
  z-index: 11;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.subtle {
  color: #6a5d55;
}

.link-inline {
  border-bottom: 1px solid #1f2428;
}

.highlight-box {
  border-left: 4px solid #b46a4e;
  padding-left: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
