:root {
  --bg: #f7f5f2;
  --ink: #1e1f24;
  --muted: #5b616a;
  --accent: #b26b2c;
  --accent-dark: #8c4e1b;
  --soft: #efe6dc;
  --highlight: #fff2df;
  --deep: #2b2d33;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 0 16px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  color: #fff;
  padding: 90px 0 120px;
  background-color: #2b2d33;
  background: linear-gradient(120deg, rgba(22, 22, 25, 0.88), rgba(22, 22, 25, 0.4)),
    url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80") center/cover no-repeat;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  color: #f1ede7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  border: 1px solid #fff;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #fff;
}

.section.soft {
  background: var(--soft);
}

.section-bg {
  position: relative;
  background-color: #efe6dc;
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
}

.section-bg .container {
  position: relative;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.media-frame {
  background: #e5dfd7;
  padding: 12px;
  border-radius: 18px;
}

.media-frame img {
  border-radius: 14px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 12px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 0.75rem;
  color: var(--accent-dark);
}

.quote {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  flex-wrap: wrap;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-box {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, select, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c2ba;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-status {
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  padding: 40px 0 70px;
  background: var(--deep);
  color: #d8d8d8;
}

.footer a {
  color: #f3c79b;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #bcbcbc;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e0d7cb;
  padding: 12px 0;
  z-index: 10;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  padding: 8px 14px;
  background: transparent;
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent-dark);
  color: #fff;
}

.page-hero {
  background: var(--soft);
  padding: 60px 0;
}

.page-hero h1 {
  margin: 0;
}

.notice {
  background: var(--highlight);
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 720px) {
  .hero {
    padding: 70px 0 90px;
  }
  .nav-links {
    gap: 10px;
  }
  .price-item {
    align-items: flex-start;
  }
}
