* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1b1a18;
  --muted: #5b564f;
  --accent: #7a3f2c;
  --accent-soft: #f0d9c8;
  --deep: #0e0d0c;
  --card: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.section {
  padding: 72px 0;
}

.section.dark {
  background: var(--deep);
  color: #f5efe8;
}

.section.soft {
  background: var(--accent-soft);
}

.section.tight {
  padding: 48px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  width: fit-content;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 9, 9, 0.7), rgba(10, 9, 9, 0.1));
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #f6f0ea;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hero p {
  max-width: 560px;
  color: #e9ded3;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.outline {
  background: transparent;
  border-color: #fff;
}

.btn.light {
  background: #f5efe8;
  color: var(--deep);
}

.btn:hover {
  transform: translateY(-2px);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(17, 13, 10, 0.08);
}

.card img {
  border-radius: 16px;
}

.callout {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.tagline {
  font-size: 1.2rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing .card {
  border: 1px solid #e6dcd2;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.trust-line {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
}

.testimonial span {
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8ccc0;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  display: inline-flex;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 32px 0 48px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.subtle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.subtle-grid .panel {
  flex: 1 1 260px;
  padding: 18px;
  border-radius: 18px;
  background: #f2ece5;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
  }

  .hero .hero-content {
    max-width: 520px;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-grid .card {
    flex: 1 1 300px;
  }
}
