:root {
  --bg: #faf6ec;
  --surface: #ffffff;
  --fg: #2b2418;
  --muted: #6f6350;
  --border: #e7dec9;
  --accent: #c67610;
  --accent-dark: #a35f08;
  --accent-soft: #fdeed3;
  --success: #3c7a3f;
  --radius: 18px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
}
h1,
h2,
h3 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.15;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.bs-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.bs-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.bs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 26px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.bs-button:hover {
  background: var(--accent-dark);
}
.bs-button-soft {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}
.bs-button-soft:hover {
  background: var(--surface);
}
.bs-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.bs-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.bs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.bs-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0a83a, var(--accent));
  color: #fff;
}
.bs-logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.bs-logo-text small {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 3px;
}
.bs-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.bs-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 0;
}
.bs-nav a:hover,
.bs-nav a[aria-current="page"] {
  color: var(--accent);
}
.bs-menu-toggle {
  display: none;
}
.bs-hero {
  padding: 64px 0 72px;
}
.bs-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
}
.bs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}
.bs-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}
.bs-hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.bs-hero-lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 30px;
}
.bs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.bs-hero-stats {
  display: flex;
  gap: 36px;
  font-size: 15px;
  color: var(--muted);
}
.bs-hero-stats strong {
  color: var(--fg);
  font-size: 17px;
}
.bs-hero-media {
  position: relative;
}
.bs-hero-media img {
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px -20px rgba(80, 55, 10, 0.35);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.bs-hero-card {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 12px 24px -12px rgba(80, 55, 10, 0.3);
  font-size: 14px;
}
.bs-hero-card strong {
  display: block;
  font-size: 15px;
}
.bs-trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.bs-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  font-size: 15px;
  color: var(--muted);
}
.bs-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bs-trust-row svg {
  color: var(--success);
  flex: none;
}
.bs-section {
  padding: 72px 0;
}
.bs-section-head {
  margin-bottom: 40px;
}
.bs-section-head h2 {
  font-size: 36px;
}
.bs-section-sub {
  color: var(--muted);
  margin-top: 10px;
  max-width: 60ch;
}
.bs-grid {
  display: grid;
  gap: 22px;
}
.bs-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.bs-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.bs-cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}
.bs-cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.bs-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.bs-cat-card h3 {
  font-size: 21px;
  margin-bottom: 6px;
}
.bs-cat-card p {
  font-size: 14px;
  color: var(--muted);
}
.bs-product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.bs-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -16px rgba(80, 55, 10, 0.28);
}
.bs-product-media {
  position: relative;
}
.bs-product-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.bs-product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}
.bs-product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.bs-product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.bs-product-top h3 {
  font-size: 20px;
}
.bs-product-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.bs-price {
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
}
.bs-product-desc {
  font-size: 14.5px;
  color: var(--muted);
  flex: 1;
}
.bs-product .bs-button {
  width: 100%;
}
.bs-guide {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bs-guide-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 48px;
  align-items: center;
}
.bs-guide-grid h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
.bs-guide-grid img {
  border-radius: 22px;
  border: 1px solid var(--border);
}
.bs-guide-price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0;
}
.bs-guide-price strong {
  font-size: 38px;
  font-weight: 700;
}
.bs-guide-price span {
  font-size: 14px;
  color: var(--muted);
}
.bs-checks {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.bs-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}
.bs-checks svg {
  color: var(--accent);
  flex: none;
  margin-top: 4px;
}
.bs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bs-split img {
  border-radius: 22px;
  border: 1px solid var(--border);
}
.bs-split h2 {
  font-size: 34px;
  margin-bottom: 18px;
}
.bs-split p {
  color: var(--muted);
  margin-bottom: 14px;
}
.bs-contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
}
.bs-contact-list {
  display: grid;
  gap: 20px;
  font-size: 16px;
}
.bs-contact-list strong {
  display: block;
  margin-bottom: 3px;
}
.bs-contact-list a {
  color: var(--accent);
  text-decoration: none;
}
.bs-contact-list a:hover {
  text-decoration: underline;
}
.bs-contact-note {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 14px;
  color: var(--muted);
}
.bs-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 18px;
}
.bs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bs-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.bs-field input,
.bs-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 16px;
  background: var(--bg);
}
.bs-field input:focus,
.bs-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
.bs-form-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.bs-alert {
  border-radius: 14px;
  padding: 14px 18px;
  background: #e9f4e9;
  border: 1px solid #bcd9bd;
  color: var(--success);
  font-weight: 600;
}
.bs-page-head {
  padding: 56px 0 8px;
}
.bs-page-head h1 {
  font-size: 42px;
  margin-bottom: 12px;
}
.bs-page-head p {
  color: var(--muted);
  max-width: 64ch;
}
.bs-prose {
  max-width: 760px;
  padding-bottom: 72px;
}
.bs-prose h2 {
  font-size: 24px;
  margin: 34px 0 12px;
}
.bs-prose p,
.bs-prose li {
  color: var(--muted);
  margin-bottom: 10px;
}
.bs-prose ul {
  padding-left: 22px;
}
.bs-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
}
.bs-prose th,
.bs-prose td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.bs-prose th {
  background: var(--surface);
}
.bs-footer {
  background: #241d12;
  color: #cfc4ae;
  padding: 56px 0 0;
  margin-top: 40px;
}
.bs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 40px;
}
.bs-footer-brand {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.bs-footer p {
  font-size: 14px;
  line-height: 1.65;
}
.bs-footer-head {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.bs-footer a {
  display: block;
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 9px;
}
.bs-footer a:hover {
  color: #fff;
}
.bs-footer-bottom {
  border-top: 1px solid #3a3122;
  padding: 18px 20px;
  font-size: 13px;
}
.bs-cookie {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 48px -16px rgba(40, 28, 6, 0.4);
  z-index: 60;
}
.bs-cookie p {
  font-size: 14px;
  margin-bottom: 16px;
}
.bs-cookie a {
  color: var(--accent);
}
.bs-cookie-actions {
  display: flex;
  gap: 10px;
}
.bs-cookie-actions .bs-button {
  min-height: 44px;
  padding: 8px 18px;
  font-size: 15px;
  flex: 1;
}
.bs-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: var(--fg);
  color: #fff;
  border-radius: 14px;
  padding: 12px 22px;
  font-size: 15px;
  z-index: 80;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
@media (max-width: 900px) {
  .bs-hero h1 {
    font-size: 38px;
  }
  .bs-hero-grid,
  .bs-guide-grid,
  .bs-split,
  .bs-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bs-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bs-grid-3 {
    grid-template-columns: 1fr;
  }
  .bs-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bs-menu-toggle {
    display: block;
    margin-left: auto;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    padding: 10px 16px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
  }
  .bs-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 16px;
    margin: 0;
  }
  .bs-nav.open {
    display: flex;
  }
  .bs-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .bs-nav a:last-child {
    border-bottom: none;
  }
  .bs-header-cta {
    display: none;
  }
  .bs-form-row {
    grid-template-columns: 1fr;
  }
  .bs-hero-card {
    position: static;
    margin-top: 14px;
  }
}
@media (max-width: 540px) {
  .bs-grid-4 {
    grid-template-columns: 1fr;
  }
  .bs-footer-grid {
    grid-template-columns: 1fr;
  }
  .bs-hero {
    padding: 40px 0 48px;
  }
  .bs-section {
    padding: 52px 0;
  }
}
.bs-faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 4px 20px;
  margin-bottom: 12px;
}
.bs-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--fg);
  padding: 14px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.bs-faq summary::-webkit-details-marker { display: none; }
.bs-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
}
.bs-faq[open] summary::after { content: "\2212"; }
.bs-faq p { padding: 0 0 16px; }
.bs-quiz {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  max-width: 680px;
  margin: 0 auto;
}
.bs-quiz-step h3 { font-size: 22px; margin-bottom: 20px; }
.bs-quiz-options { display: grid; gap: 12px; }
.bs-quiz-options button {
  text-align: left;
  border: 2px solid var(--border);
  background: var(--bg);
  border-radius: 14px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.bs-quiz-options button:hover { border-color: var(--accent); background: var(--accent-soft); }
.bs-quiz-result { text-align: center; }
.bs-quiz-result h3 { font-size: 26px; margin-bottom: 10px; }
.bs-quiz-result .bs-price { display: block; margin: 8px 0 20px; }
.bs-quiz-progress { font-size: 13px; color: var(--muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; }
