* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b1a;
  --muted: #6f6a66;
  --sand: #f6f1eb;
  --linen: #f0e8df;
  --clay: #c9b6a6;
  --accent: #3b3a38;
  --light: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 6vw 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 30px 6vw 60px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 360px;
  background: var(--linen);
  border-radius: 20px;
  overflow: hidden;
  align-self: stretch;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--linen);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.section p {
  color: var(--muted);
  max-width: 700px;
}

.asym-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-wrap.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  flex: 1 1 300px;
  background: var(--light);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(29, 27, 26, 0.08);
}

.offset-box.shift-right {
  margin-left: 40px;
}

.offset-box.shift-left {
  margin-right: 40px;
}

.image-frame {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--clay);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--light);
  flex: 1 1 240px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1 1 200px;
  padding: 16px 18px;
  border-left: 3px solid var(--ink);
  background: var(--light);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c1bb;
  background: var(--light);
  font-size: 1rem;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--ink);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(29, 27, 26, 0.2);
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: var(--accent);
  color: var(--light);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--light);
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--light);
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(29, 27, 26, 0.15);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--light);
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--ink);
}

.cookie-actions button:hover {
  transform: translateY(-1px);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: var(--light);
  border-radius: 16px;
  padding: 22px;
  flex: 1 1 240px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}

@media (max-width: 840px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .offset-box.shift-right,
  .offset-box.shift-left {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
