* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e1b17;
  background: #f9f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  gap: 20px;
  background: #f3eee8;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.75rem;
  color: #7a6a5c;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 0;
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  background: #d8cdc2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: relative;
  padding: 48px;
  color: #ffffff;
  max-width: 480px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 0 0 12px;
}

.hero-subtitle {
  margin: 0 0 20px;
  color: #f9efe6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1e1b17;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #3b312a;
}

.btn-light {
  background: #f4ebe2;
  color: #1e1b17;
}

.section {
  padding: 56px 6vw;
}

.section-title {
  margin: 0 0 18px;
  font-size: 2rem;
}

.narrow {
  max-width: 720px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 260px;
  min-width: 260px;
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #e1d6cc;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background: #e7dfd7;
}

.highlight {
  background: #efe7dd;
  border-radius: 26px;
  padding: 32px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #b99d87;
  padding-left: 16px;
}

.pricing-tag {
  font-weight: 600;
  color: #7f5742;
}

.form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-box label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbb7a6;
  font-size: 1rem;
  background: #fefcf9;
}

.inline-link {
  font-weight: 600;
  color: #7f5742;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1e1b17;
  color: #f7f1eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(30, 27, 23, 0.92);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  z-index: 10;
}

.sticky-cta p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #d9cabb;
  padding: 14px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notice {
  background: #f5eee7;
  border-radius: 20px;
  padding: 20px;
}

.no-margin {
  margin: 0;
}

.section-alt {
  background: #f1e6db;
}

.section-dark {
  background: #1e1b17;
  color: #f7f1eb;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 8px;
}

.spaced {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.small {
  font-size: 0.9rem;
  color: #7a6a5c;
}
