* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background-color: #f6f2ee;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 18px 0;
  border-bottom: 1px solid #ddd0c3;
  background-color: #f9f6f2;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: #4d433b;
  background-color: #efe5d8;
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px 0 32px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fdfbf8;
  background-color: #2d2a27;
}

.hero-bg h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 720px;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.mag-col {
  flex: 1 1 280px;
}

.mag-col.narrow {
  flex: 1 1 220px;
}

.mag-col.wide {
  flex: 2 1 420px;
}

.section {
  padding: 32px 0;
}

.section.alt {
  background-color: #efe8dd;
}

.section.dark {
  background-color: #1f1c1a;
  color: #f6f2ee;
}

.section.dark a {
  color: #f6f2ee;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #a2795b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1b1b1b;
  color: #f6f2ee;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background-color: #a2795b;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background-color: #fffaf4;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(27, 27, 27, 0.08);
}

.card h3 {
  margin: 0;
}

.image-frame {
  background-color: #d8cbbf;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.small {
  height: 160px;
}

.image-frame.medium {
  height: 220px;
}

.image-frame.large {
  height: 280px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  border-left: 3px solid #a2795b;
  padding-left: 16px;
  font-style: italic;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ded3c7;
}

.pricing-item strong {
  font-size: 1.05rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fffaf4;
  padding: 24px;
  border-radius: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

select,
input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbbbab;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 28px 0 40px;
  background-color: #f2e9de;
  border-top: 1px solid #e2d6c8;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background-color: #a2795b;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #1b1b1b;
  color: #f6f2ee;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 8px 12px;
  font-size: 0.85rem;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 28px;
  background-color: #3a332d;
}

.section-bg .card {
  background-color: rgba(255, 250, 244, 0.92);
}

.meta-note {
  font-size: 0.9rem;
  color: #4d433b;
}
