* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background-color: #f6f4f1;
  border-bottom: 1px solid #e4dfd8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #1f1f1f;
  color: #f6f4f1;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6vw;
}

.lead-section {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
  position: relative;
}

.lead-overlay {
  background: rgba(23, 20, 18, 0.72);
  width: 100%;
}

.lead-main {
  flex: 1 1 420px;
  min-width: 280px;
}

.lead-side {
  flex: 0 1 260px;
  min-width: 220px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 12px;
}

.section-title {
  font-size: 2.4rem;
  margin: 0 0 18px;
}

.lead-text {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #f9b248;
  color: #1f1f1f;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.inline-link {
  border-bottom: 1px solid #1f1f1f;
}

.image-frame {
  background-color: #e7e1d7;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 320px;
  min-width: 240px;
}

.responsive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-block {
  flex: 1 1 380px;
  min-width: 260px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  min-width: 200px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(31, 31, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background-color: #ded7cd;
  border-radius: 12px;
  overflow: hidden;
  height: 140px;
}

.quote {
  font-style: italic;
  font-size: 0.95rem;
}

.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 6vw;
  background-color: #fff5e5;
}

.stat {
  flex: 1 1 200px;
  min-width: 160px;
}

.pricing {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1f1f;
}

.pricing-overlay {
  background: rgba(246, 244, 241, 0.92);
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 240px;
  min-width: 220px;
  border: 1px solid #e7e1d7;
}

.form-section {
  background-color: #1f1f1f;
  color: #f6f4f1;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.form-panel {
  flex: 1 1 320px;
  min-width: 260px;
  background-color: #2f2a27;
  padding: 24px;
  border-radius: 16px;
}

.form-panel label {
  display: block;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 14px;
}

.form-panel button {
  width: 100%;
}

.footer {
  padding: 36px 6vw;
  background-color: #ede7dd;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1f1f1f;
  color: #f6f4f1;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta button {
  background-color: #f9b248;
  color: #1f1f1f;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-accept {
  background-color: #1f1f1f;
  color: #f6f4f1;
}

.cookie-reject {
  background-color: #e7e1d7;
}

.side-rail {
  flex: 0 1 220px;
  min-width: 200px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e7e1d7;
}

.legal-block {
  flex: 1 1 520px;
  min-width: 280px;
}

.section-image {
  background-color: #e7e1d7;
  border-radius: 18px;
  overflow: hidden;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e7e1d7;
  flex: 1 1 240px;
  min-width: 200px;
}

.newsletter-panel {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.newsletter-overlay {
  background: rgba(23, 20, 18, 0.7);
}

.page-title {
  font-size: 2.1rem;
  margin: 0 0 12px;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
