:root {
  --ink: #1f2328;
  --muted: #5a616a;
  --sand: #f4f0ea;
  --brick: #b44b3a;
  --brick-dark: #8d392b;
  --stone: #d8d2c6;
  --shadow: rgba(19, 25, 32, 0.12);
}

* {
  box-sizing: border-box;
}

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

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;
}

header {
  padding: 28px 6vw 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
}

.disclosure {
  font-size: 13px;
  color: var(--muted);
  border-left: 2px solid var(--stone);
  padding-left: 12px;
  max-width: 220px;
}

main {
  flex: 1;
}

.section {
  padding: 56px 6vw;
}

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

.section.dark {
  background: #23262b;
  color: #f8f6f2;
}

.section-title {
  font-size: 32px;
  margin: 0 0 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

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

.split .text {
  flex: 1.1;
}

.split .media {
  flex: 0.9;
}

.media-frame {
  background: var(--stone);
  padding: 10px;
  border-radius: 24px;
  box-shadow: 0 20px 40px var(--shadow);
}

.media-frame.tilt {
  transform: rotate(-1.5deg);
}

.media-frame.offset {
  transform: translateY(-18px);
}

.hero {
  padding-top: 24px;
}

.hero h1 {
  font-size: 44px;
  margin: 0 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  background: var(--brick);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--brick-dark);
  border: 1px solid var(--brick-dark);
}

.inline-link {
  color: var(--brick-dark);
  text-decoration: underline;
}

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

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 35px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 18px 18px 22px;
}

.card h3 {
  margin: 0 0 8px;
}

.price {
  font-weight: 700;
  color: var(--brick-dark);
}

.highlight {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 22px 36px var(--shadow);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-number {
  font-weight: 700;
  color: var(--brick-dark);
}

.offset-panel {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 30px var(--shadow);
  position: relative;
  top: 16px;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--brick);
  padding-left: 16px;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 18px 28px var(--shadow);
}

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

label {
  font-weight: 600;
}

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

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

.footer {
  padding: 36px 6vw 48px;
  background: #1c1f24;
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin: 16px 0;
}

.footer small {
  color: #c8c3b9;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f9f6f1;
  border-top: 1px solid #d9d2c6;
  padding: 16px 6vw;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
}

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

.banner-image {
  border-radius: 24px;
  overflow: hidden;
  background: var(--stone);
  height: 260px;
}

.listing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.listing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 24px var(--shadow);
}

.listing-item .details {
  max-width: 480px;
}

.notice {
  background: #fff7ed;
  border-left: 3px solid var(--brick);
  padding: 16px 18px;
  border-radius: 12px;
}

.asym-row {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.asym-row .wide {
  flex: 1.3;
}

.asym-row .narrow {
  flex: 0.7;
}

@media (max-width: 980px) {
  .split,
  .split.reverse,
  .asym-row {
    flex-direction: column;
  }

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

@media (max-width: 700px) {
  .hero h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 26px;
  }
}
