* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  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: 22px 6%;
  background: #fffdf9;
  border-bottom: 1px solid #efe7dd;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.78rem;
  color: #6d5d50;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a,
.nav-links button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links button:hover {
  background: #efe7dd;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 6%;
  gap: 40px;
  background: #fffdf9;
}

.hero-content {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.btn-primary {
  background: #c87c5b;
  color: #fffdf9;
}

.btn-secondary {
  background: #f2e6d7;
  color: #4b3b31;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #c87c5b;
  color: #c87c5b;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.hero-visual {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.image-frame {
  background: #f1e4d4;
  border-radius: 24px;
  overflow: hidden;
  padding: 8px;
}

.image-frame img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
}

.image-frame.size-sm {
  max-width: 360px;
}

.image-frame.size-md {
  max-width: 420px;
}

.image-frame.size-lg {
  max-width: 440px;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #f1e4d4;
}

.section.dark {
  background: #2f2723;
  color: #f8f4ef;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual-block {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.callout {
  padding: 28px;
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: 0 18px 36px rgba(60, 45, 36, 0.12);
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fffdf9;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-body button {
  align-self: flex-start;
}

.card-image {
  background: #e7d7c4;
  padding: 6px;
}

.card-image img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  background: #f2e6d7;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #5b4a3e;
}

.quote {
  font-style: italic;
  border-left: 3px solid #c87c5b;
  padding-left: 14px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fffdf9;
  border-radius: 18px;
  padding: 18px 22px;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: #c87c5b;
  font-size: 1.1rem;
}

.form-card {
  background: #fffdf9;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 30px rgba(45, 32, 24, 0.12);
}

.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5c6b8;
  font-size: 1rem;
  background: #fff;
}

.form-card button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2f2723;
  color: #f8f4ef;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background: #f8f4ef;
  color: #2f2723;
  border-radius: 999px;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

.sticky-cta button:hover {
  transform: translateY(-2px);
}

.footer {
  margin-top: auto;
  background: #1f1a18;
  color: #f6f3ef;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fffdf9;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 12px 28px rgba(45, 32, 24, 0.2);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f2e6d7;
}

.cookie-actions button.primary {
  background: #c87c5b;
  color: #fffdf9;
}

.page-banner {
  padding: 36px 6%;
  background: #f1e4d4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-box {
  flex: 1 1 240px;
  background: #fffdf9;
  border-radius: 18px;
  padding: 20px;
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1756364071388-862fedb2fc09?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-texture-overlay {
  background: rgba(47, 39, 35, 0.8);
  padding: 50px;
  border-radius: 24px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.muted {
  color: inherit;
  opacity: 0.8;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
