* {
  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: #1d4ed8;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background-color: #f1ede7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 12px;
  color: #5f5a52;
  background-color: #e9e3db;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-size: 15px;
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px 16px;
  background-color: #1d4ed8;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-section {
  color: #fff;
  min-height: 420px;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background-color: rgba(17, 24, 39, 0.65);
  padding: 48px;
  max-width: 600px;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.hero-title {
  font-size: 36px;
  margin: 0 0 12px 0;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  background-color: #1d4ed8;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.btn-outline {
  padding: 12px 20px;
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
  border-radius: 8px;
  font-weight: 600;
}

.split-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-image {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #dcd5ca;
  padding: 8px;
  border-radius: 16px;
}

.image-cover {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.bg-hero {
  background-color: #1f2937;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.bg-ritual {
  background-color: #0f172a;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.bg-about {
  background-color: #111827;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9fafb;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.price {
  font-weight: 700;
  color: #0f172a;
}

.quote {
  padding: 16px;
  background-color: #eef2ff;
  border-radius: 12px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  width: 100%;
}

.form-wrap button {
  padding: 12px 20px;
  background-color: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0f172a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  padding: 32px 72px 72px 72px;
  background-color: #f1ede7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 16px 24px;
  background-color: #111827;
  color: #f9fafb;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #22c55e;
  color: #0f172a;
}

.cookie-reject {
  background-color: #f87171;
  color: #0f172a;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .section,
  .footer {
    padding: 48px 24px;
  }

  .hero-overlay {
    padding: 32px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    transform: none;
    justify-content: center;
  }
}
