* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1d1a;
  --muted: #6f665d;
  --accent: #c25c2f;
  --accent-soft: #f6e4dc;
  --sage: #dce4d2;
  --cream: #fbf7f2;
  --stone: #ece6de;
  --night: #2a241f;
  --shadow: 0 14px 40px rgba(30, 18, 9, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 26px 7vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 7vw 70px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.08;
}

.hero p {
  max-width: 640px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-grid .hero-image {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-grid .hero-image span {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 70px 7vw;
}

.section.dark {
  background: var(--night);
  color: #f3eee8;
}

.section.soft {
  background: var(--accent-soft);
}

.section.sage {
  background: var(--sage);
}

.section.stone {
  background: var(--stone);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.section p {
  max-width: 720px;
  color: inherit;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card.dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff7f0;
  box-shadow: none;
}

.card .meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.quote {
  font-style: italic;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: 700;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d8cfc4;
  font-size: 1rem;
  font-family: inherit;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 50px 7vw;
  background: var(--night);
  color: #e4dbd0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f2e8dd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 7vw;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
  width: min(520px, 90vw);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.cookie-actions .primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

@media (min-width: 880px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-grid > div {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
  }

  .split-row > div {
    flex: 1;
  }

  .card-row,
  .pricing-grid {
    flex-direction: row;
  }

  .card-row .card,
  .pricing-grid .card {
    flex: 1;
  }
}
