* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1c1a;
  --ink-soft: #3b362f;
  --paper: #f6f2eb;
  --paper-contrast: #fffaf2;
  --accent: #8b5e34;
  --accent-dark: #5c3a1d;
  --emerald: #2f6f63;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 30px 0 60px;
}

.hero-card {
  background: var(--paper-contrast);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 30px;
  background: rgba(139, 94, 52, 0.18);
  top: -20px;
  right: 10%;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.ghost {
  background: rgba(47, 111, 99, 0.12);
  color: var(--emerald);
  border-color: transparent;
}

.tagline {
  font-size: 1rem;
  color: var(--ink-soft);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.offset {
  background: var(--paper-contrast);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  margin-left: 0;
}

.offset.dark {
  background: var(--ink);
  color: var(--paper);
}

.offset.dark a {
  color: var(--paper);
  text-decoration: underline;
}

.accent-strip {
  background: linear-gradient(130deg, rgba(139, 94, 52, 0.15), rgba(47, 111, 99, 0.12));
  padding: 36px 0;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper-contrast);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--emerald);
  font-weight: 600;
}

.badge span {
  width: 10px;
  height: 10px;
  background: var(--emerald);
  border-radius: 50%;
}

.pricing {
  background: var(--paper-contrast);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-item:last-child {
  border-bottom: none;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--ink);
  color: var(--paper);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
}

.sticky-cta a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--emerald);
  color: white;
  box-shadow: var(--shadow);
}

footer {
  padding: 48px 0 60px;
  background: #131210;
  color: var(--paper);
  margin-top: 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--paper-contrast);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.muted {
  color: var(--ink-soft);
}

.subtle {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-image {
    flex: 0.8;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset {
    margin-left: -60px;
  }

  .offset.right {
    margin-left: 0;
    margin-right: -60px;
  }

  .grid-cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    max-width: 520px;
  }
}
