* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1b16;
  background: #f7f3ef;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: #f3eee8;
  border-bottom: 1px solid #e0d6cc;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: #efe4d9;
}

.ad-label {
  font-size: 13px;
  color: #6a5441;
  border: 1px dashed #cdbfb3;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  align-items: stretch;
  min-height: 70vh;
  background-color: #2b1f16;
  background-image: linear-gradient(120deg, rgba(18, 13, 8, 0.65), rgba(18, 13, 8, 0.15)), url("https://images.unsplash.com/photo-1534177616072-ef7dc120449d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f2eb;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 8%;
  max-width: 720px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #c9652b;
  color: #fff7f0;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #b85720;
}

.btn-outline {
  background: transparent;
  color: #c9652b;
  border: 1px solid #c9652b;
}

.section {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section h2 {
  margin: 0;
  font-size: 32px;
}

.section p {
  margin: 0;
  line-height: 1.7;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.media-frame {
  background: #e7ddd1;
  padding: 10px;
  border-radius: 20px;
}

.media-img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.08);
}

.card .media-img {
  height: 180px;
}

.story-band {
  background-color: #f4e6d9;
  background-image: linear-gradient(140deg, rgba(255, 244, 235, 0.9), rgba(255, 244, 235, 0.6)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f2e7db;
  color: #5e4834;
  font-size: 14px;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #1f1b16;
  color: #f9f4ef;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 26px;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.12);
}

.form-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
  font-size: 14px;
}

.form-grid input,
.form-grid select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cfc5;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(25, 18, 12, 0.9);
  color: #f7efe7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 6%;
  gap: 18px;
  z-index: 10;
}

.footer {
  padding: 40px 8% 90px;
  background: #14100c;
  color: #e9dfd4;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #c6b7a6;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fffaf5;
  border: 1px solid #e2d5c8;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(31, 27, 22, 0.2);
  display: none;
  z-index: 12;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.legal-hero {
  background: #efe6dc;
  padding: 50px 8%;
  border-bottom: 1px solid #e1d5c7;
}

.legal-hero h1 {
  margin: 0;
}

.legal-content {
  padding: 40px 8% 80px;
  line-height: 1.7;
}

.note {
  background: #f2e7db;
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
