:root {
  --bg: #f7f2ec;
  --ink: #2b241c;
  --accent: #8c5a34;
  --muted: #6f6256;
  --soft: #efe6da;
  --highlight: #d9c3a5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
}

.wrapper {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4vw 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 18px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--soft);
}

.section-with-bg {
  position: relative;
  overflow: hidden;
}

.section-with-bg .wrapper {
  position: relative;
  z-index: 1;
}

.section-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.hero {
  padding-top: 28px;
}

.hero-grid {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.hero-copy p {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
}

.image-frame {
  background-color: var(--highlight);
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 320px;
}

.tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.tile {
  flex: 1 1 240px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
}

.tile h3 {
  margin-top: 0;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5c9ba;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 50px 4vw 80px;
  background: #1f1a15;
  color: #f4ede4;
}

.footer a {
  color: #f0d7b2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.disclaimer {
  font-size: 0.9rem;
  color: #e6d6c3;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #dbcbb8;
  padding: 16px 4vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.small-text {
  font-size: 0.92rem;
  color: var(--muted);
}

.legal-hero {
  padding: 60px 0 20px;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 880px) {
  .top-bar {
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
