* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f2ee;
  --ink: #1f1c18;
  --muted: #6f665d;
  --accent: #9b5b2a;
  --accent-dark: #7a4520;
  --soft: #efe7df;
  --highlight: #f7d8b6;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 60px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero-image {
  flex: 1;
  background: #d9cfc6;
  border-radius: 18px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  gap: 8px;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--highlight);
}

.section {
  margin: 70px 0;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.magazine-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.magazine-col {
  flex: 1;
  min-width: 240px;
}

.feature-panel {
  background: var(--soft);
  padding: 26px;
  border-radius: 16px;
}

.image-card {
  background: #d9cfc6;
  border-radius: 16px;
  overflow: hidden;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.gallery-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-item {
  flex: 1;
  min-width: 220px;
  background: #d9cfc6;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(31, 28, 24, 0.08);
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: 700;
}

.split-band {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff4e7;
  padding: 28px;
  border-radius: 20px;
}

.background-feature {
  background-image: url("https://images.unsplash.com/photo-1525351484163-7529414344d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9cfc6;
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.background-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 28, 24, 0.55);
}

.background-feature .feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.split-band .image-card {
  flex: 1;
  min-width: 240px;
}

.split-band .band-text {
  flex: 1.2;
  min-width: 260px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(31, 28, 24, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d3c9c0;
  font-size: 1rem;
  background: #fff;
}

.footer {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid #d6cdc4;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 28, 24, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.plain-link {
  color: var(--accent);
  text-decoration: underline;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.page-hero .hero-image {
  flex: 1;
  min-width: 240px;
}

.page-hero .hero-text {
  flex: 1.2;
}

.legal-block {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  margin: 24px 0;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
