* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3ef;
  --ink: #1c1a19;
  --muted: #60574f;
  --accent: #2f4b45;
  --accent-light: #d7e0db;
  --card: #ffffff;
  --sand: #e7dfd6;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background-color: var(--card);
  border-bottom: 1px solid #e8dfd6;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background-color: var(--accent);
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 6%;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 16, 0.45);
}

.hero-content {
  position: relative;
  max-width: 560px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  padding: 70px 6%;
}

.section.alt {
  background-color: var(--sand);
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.asym-row {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.col.narrow {
  flex: 0.8 1 260px;
}

.image-frame {
  background-color: var(--accent-light);
  border-radius: 18px;
  overflow: hidden;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background-color: var(--card);
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  width: fit-content;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  background-color: var(--card);
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 260px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.form-panel {
  background-color: var(--card);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7cfc5;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  padding: 40px 6% 60px;
  background-color: #1f1d1c;
  color: #e7dfd6;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e7dfd6;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background-color: var(--card);
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.legal-block {
  background-color: var(--card);
  padding: 26px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background-color: var(--card);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-sub {
  font-size: 18px;
  color: #f2ece6;
}

.no-margin {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 8%;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
