:root {
  --ink: #1c1c1a;
  --muted: #6b6b63;
  --paper: #f7f3ee;
  --accent: #b45f41;
  --accent-dark: #8f472f;
  --panel: #fff9f3;
  --sage: #e5ebe3;
  --stone: #ece7e1;
  --shadow: 0 22px 50px rgba(21, 18, 14, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

a:focus,
a:hover {
  text-decoration: underline;
}

header {
  padding: 24px 6vw 12px;
  position: relative;
}

.navbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 30px 6vw 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero p {
  margin: 0 0 18px;
}

.hero-image {
  flex: 1 1 360px;
  min-width: 300px;
  position: relative;
}

.hero-image .image-frame {
  height: 420px;
  border-radius: 24px 24px 6px 24px;
  overflow: hidden;
  background: var(--stone);
  box-shadow: var(--shadow);
}

.hero-image .floating-card {
  position: absolute;
  bottom: -24px;
  left: -18px;
  background: var(--panel);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 220px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.section {
  padding: 50px 6vw;
}

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

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

.backdrop-image {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: var(--stone);
}

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

.backdrop-content {
  position: relative;
  max-width: 720px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

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

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing {
  font-weight: 700;
  color: var(--accent-dark);
}

.offset-panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: -30px;
}

.process-steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1 1 200px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}

.image-frame.small {
  height: 180px;
}

.image-frame.tall {
  height: 460px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-panel {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3bb;
  font-family: inherit;
}

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

.notice {
  font-size: 13px;
  color: var(--muted);
}

footer {
  padding: 40px 6vw 80px;
  background: #f1ece6;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button.close {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 30;
}

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

.hidden {
  display: none;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
