:root {
  --brand: #c65f2a;
  --brand-dark: #8f3d1c;
  --ink: #1e211d;
  --muted: #68706a;
  --paper: #fffaf4;
  --surface: #f2eadf;
  --teal: #17646f;
  --gold: #b48a2c;
  --line: #ded4c8;
  --bs-primary: var(--brand);
  --bs-primary-rgb: 198, 95, 42;
  --bs-secondary: var(--teal);
  --bs-secondary-rgb: 23, 100, 111;
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
  --bs-border-radius: 8px;
  --bs-font-sans-serif: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--bs-font-sans-serif);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: "Lora", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

a {
  color: var(--brand-dark);
}

.navbar {
  background: rgba(255, 250, 244, 0.95);
  border-bottom: 1px solid var(--line);
}

.navbar-brand {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.nav-link {
  color: var(--ink);
  font-weight: 700;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-dark);
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.hero {
  background: linear-gradient(135deg, #f4e6d8 0%, #e4efe9 100%);
  border-bottom: 1px solid var(--line);
  min-height: 72vh;
  padding: 5.5rem 0 4rem;
}

.hero-compact {
  background: linear-gradient(135deg, #f4e6d8 0%, #e8f1ef 100%);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 0;
}

.hero img,
.feature-img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(30, 33, 29, 0.18);
  object-fit: cover;
  width: 100%;
}

.btn {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 0.45rem;
  justify-content: center;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #111;
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.soft-card {
  background: var(--surface);
}

.metric {
  color: var(--teal);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.icon {
  align-items: center;
  background: #e5f1ef;
  border-radius: 8px;
  color: var(--teal);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.6rem;
  height: 3.25rem;
  justify-content: center;
  width: 3.25rem;
}

.eyebrow {
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  color: #41473f;
}

.muted {
  color: var(--muted);
}

.band {
  background: var(--teal);
  color: #fff;
}

.band .lead,
.band .muted {
  color: rgba(255, 255, 255, 0.82);
}

.price {
  font-family: "Lora", Georgia, serif;
  font-size: 2.7rem;
  font-weight: 800;
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-check li {
  margin-bottom: 0.65rem;
  padding-left: 1.8rem;
  position: relative;
}

.list-check li::before {
  color: var(--teal);
  content: "\2713";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.legal h2 {
  margin-top: 2.5rem;
}

.legal p,
.legal li {
  color: #4b514a;
}

.footer {
  background: #252a27;
  color: rgba(255, 255, 255, 0.82);
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.form-control,
.form-select {
  background: #fffdf9;
  border-color: var(--line);
  min-height: 3rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(198, 95, 42, 0.18);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
  }

  .section {
    padding: 3.5rem 0;
  }
}
