* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #6b6b6b;
  --accent: #b36b5e;
  --accent-dark: #8f5146;
  --soft: #f7f1ee;
  --sand: #efe7e2;
  --stone: #d8cdc6;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 16px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.hero {
  padding: 24px 6vw 48px;
  position: relative;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.hero-media {
  background: var(--soft);
  padding: 16px;
  border-radius: 24px;
  transform: translateX(12px);
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 6vw 72px;
}

.asym-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.asym-section.offset-left {
  background: var(--soft);
  padding: 28px;
  border-radius: 24px;
  transform: translateX(-8px);
}

.asym-section.offset-right {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
  transform: translateX(8px);
}

.asym-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--stone);
}

.split-highlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-item {
  padding: 16px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--stone);
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  background: var(--soft);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 15px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

footer {
  padding: 40px 6vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 90px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

@media (min-width: 860px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-media {
    max-width: 420px;
    transform: translateX(28px);
  }

  h1 {
    font-size: 52px;
  }

  .asym-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .asym-section.reverse {
    flex-direction: row-reverse;
  }

  .asym-columns {
    flex-direction: row;
  }

  .asym-card {
    flex: 1;
  }

  .split-highlight {
    flex-direction: row;
    align-items: flex-start;
  }

  .metrics {
    flex-direction: row;
  }

  .pricing-row {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-field {
    flex: 1 1 220px;
  }
}
