/* Base */
* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --ink: #1e1b18;
  --muted: #6d6258;
  --accent: #b04a2f;
  --accent-dark: #8f3b26;
  --surface: #ffffff;
  --sand: #efe7df;
  --olive: #5a6b4d;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 120px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 12px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .pane {
  flex: 1 1 320px;
  min-width: 280px;
}

.pane.surface {
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.pane.sand {
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
}

.pane.dark {
  background: #22201d;
  color: #f7f2ed;
  padding: 28px;
  border-radius: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 10px 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 16px;
}

h3 {
  margin: 0 0 10px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.highlight {
  color: var(--ink);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--ink);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  border-color: var(--muted);
  color: var(--muted);
}

.btn.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(176, 74, 47, 0.15);
  color: var(--accent-dark);
  font-size: 0.8rem;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-card strong {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--olive);
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6ccc2;
  font-size: 1rem;
  background: #fff;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.floating-note {
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: var(--muted);
  border: 1px solid #eee2d7;
}

.logo-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 0 60px;
  background: #1f1b18;
  color: #f5efe8;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 720px) {
  .nav-links {
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
