* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1c1e;
  --muted: #5e636b;
  --stone: #e8e3dc;
  --sand: #f6f1ea;
  --moss: #6a7a63;
  --clay: #b07c5a;
  --shadow: rgba(15, 20, 30, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 10px;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 4px 8px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 40px 0 20px;
}

.hero-media {
  flex: 1.1;
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px var(--shadow);
}

.hero-content {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.hero h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.alt {
  background: var(--clay);
}

.btn.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--stone);
}

.section {
  padding: 50px 0;
}

.section.alt {
  background: var(--sand);
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 24, 0.55);
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  max-width: 660px;
}

.asym-split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-split.reverse {
  flex-direction: row-reverse;
}

.asym-block {
  flex: 1;
  min-width: 260px;
}

.asym-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 40px var(--shadow);
}

.image-wrap {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--moss);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-left: 4px solid var(--clay);
  box-shadow: 0 10px 22px var(--shadow);
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d2cc;
  font-size: 14px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.divider {
  height: 1px;
  background: #ded8d1;
  margin: 20px 0;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #1f2124;
  color: #f4f4f4;
}

.footer p,
.footer a {
  color: #f4f4f4;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #d9d6d2;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 14px 30px var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 40px var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.simple-grid .info-card {
  flex: 1 1 240px;
  border-radius: 16px;
  padding: 18px;
  background: var(--sand);
}

.hero-note {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 12px 30px var(--shadow);
}

.mt-16 {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
