* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1a17;
  --muted: #60564f;
  --paper: #f9f5f1;
  --accent: #a63d2a;
  --accent-dark: #7d2a1f;
  --sage: #e5e0d6;
  --gold: #d7b77d;
  --shadow: 0 18px 40px rgba(25, 18, 14, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 6vw 8px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 12px 6vw 80px;
}

.section {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.section.alt {
  background: var(--sage);
}

.section.dark {
  background: #231d19;
  color: #f9f5f1;
}

.section.tight {
  padding: 22px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-pane {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 22px rgba(25, 18, 14, 0.08);
}

.card h3 {
  font-size: 1.25rem;
}

.price {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(214, 165, 90, 0.25);
  color: #6a441f;
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 70%;
  height: 60%;
  background: rgba(166, 61, 42, 0.12);
  border-top-right-radius: 100%;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}

.form-card label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c1b8;
  font-size: 1rem;
  background: #fff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-status {
  font-size: 0.95rem;
  color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 11;
  max-width: 360px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw 40px;
  border-top: 1px solid #e3dbd2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }
}
