@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #1a1a0e;
  color: #e8d5a3;
  font-family: 'Oswald', sans-serif;
  min-height: 100vh;
}

/* Header */
.bb-header {
  background: #0d0d07;
  border-bottom: 3px solid #7ab648;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bb-logo { display: flex; align-items: baseline; }
.bb-logo-br  { font-size: 36px; font-weight: 700; color: #e8d5a3; letter-spacing: -1px; }
.bb-logo-ea  { font-size: 36px; font-weight: 700; color: #7ab648;  letter-spacing: -1px; }
.bb-logo-ing { font-size: 36px; font-weight: 700; color: #c8a040;  letter-spacing: -1px; }
.bb-tagline  { font-size: 12px; color: #7ab648; letter-spacing: 3px; text-transform: uppercase; margin-top: 4px; }

nav { display: flex; gap: 24px; }
nav a { color: #b8b8a0; font-size: 14px; letter-spacing: 2px; text-decoration: none; text-transform: uppercase; }
nav a:hover { color: #7ab648; }

/* Hero */
.bb-hero {
  background: #0d0d07;
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid #2a2a1a;
}
.bb-hero-text h1 { font-size: 42px; font-weight: 700; color: #e8d5a3; line-height: 1.1; margin-bottom: 12px; }
.bb-hero-text h1 span { color: #7ab648; }
.bb-hero-text p  { font-size: 15px; color: #a09880; line-height: 1.6; font-family: serif; font-weight: 400; margin-bottom: 20px; }
.bb-hero-img { text-align: center; }
.bb-hero-img svg { max-width: 260px; width: 100%; }

/* Button */
.bb-btn {
  display: inline-block;
  background: #7ab648;
  color: #0d0d07;
  padding: 12px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
}
.bb-btn:hover { background: #8fcf55; }

/* Section */
.bb-section { padding: 40px 48px; }
.bb-section-title { font-size: 11px; letter-spacing: 4px; color: #7ab648; text-transform: uppercase; margin-bottom: 6px; }
.bb-section-h2   { font-size: 28px; font-weight: 700; color: #e8d5a3; margin-bottom: 28px; }
.bb-section-h2 span { color: #c8a040; }

/* Badge */
.bb-badge {
  display: inline-block;
  background: #1a2a0a;
  border: 1px solid #3a5a18;
  color: #7ab648;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 3px 8px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* Recipe box */
.bb-recipe {
  background: #0d0d07;
  border: 1px solid #2a2a1a;
  border-left: 4px solid #c8a040;
  padding: 28px 32px;
  margin-bottom: 40px;
  border-radius: 2px;
}
.bb-recipe-title { font-size: 20px; color: #c8a040; margin-bottom: 20px; letter-spacing: 1px; }
.bb-recipe-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bb-recipe-col h4 { font-size: 12px; letter-spacing: 3px; color: #7ab648; text-transform: uppercase; margin-bottom: 12px; }
.bb-recipe-col ul { list-style: none; }
.bb-recipe-col ul li {
  font-size: 13px;
  color: #a09880;
  padding: 6px 0;
  border-bottom: 1px solid #1e1e12;
  font-family: serif;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.bb-recipe-col ul li::before { content: "▸"; color: #7ab648; font-size: 10px; }

/* Warning */
.bb-warning {
  background: #1a0d00;
  border: 1px solid #4a2800;
  border-left: 4px solid #c8a040;
  padding: 16px 20px;
  margin-bottom: 40px;
  border-radius: 2px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bb-warning-icon { color: #c8a040; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.bb-warning p    { font-size: 13px; color: #a07040; font-family: serif; font-weight: 400; line-height: 1.6; }
.bb-warning strong { color: #c8a040; font-family: 'Oswald', sans-serif; }

/* Steps */
.bb-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 40px; }
.bb-step {
  background: #111109;
  border: 1px solid #2a2a1a;
  padding: 16px;
  border-radius: 2px;
  position: relative;
}
.bb-step-num { font-size: 36px; font-weight: 700; color: #2a2a1a; position: absolute; top: 8px; right: 12px; line-height: 1; }
.bb-step h4  { font-size: 14px; color: #7ab648; margin-bottom: 6px; letter-spacing: 1px; }
.bb-step p   { font-size: 12px; color: #6a6a58; font-family: serif; font-weight: 400; line-height: 1.5; }

/* Cards */
.bb-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.bb-card {
  background: #111109;
  border: 1px solid #2a2a1a;
  border-top: 3px solid #7ab648;
  padding: 20px;
  border-radius: 2px;
}
.bb-card-icon { font-size: 28px; margin-bottom: 10px; }
.bb-card h3   { font-size: 16px; color: #e8d5a3; margin-bottom: 8px; letter-spacing: 1px; }
.bb-card p    { font-size: 13px; color: #7a7a68; font-family: serif; font-weight: 400; line-height: 1.5; }

/* Divider */
hr.bb-divider { border: none; border-top: 1px solid #1e1e12; margin: 0 48px; }

/* Footer */
.bb-footer {
  background: #0d0d07;
  border-top: 3px solid #2a2a1a;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bb-footer p { font-size: 11px; color: #4a4a38; letter-spacing: 2px; text-transform: uppercase; font-family: serif; }
.bb-footer-logo { font-size: 18px; font-weight: 700; color: #3a3a28; }
.bb-footer-logo span { color: #4a6a30; }

/* Responsive */
@media (max-width: 768px) {
  .bb-header { padding: 16px 20px; flex-direction: column; gap: 16px; }
  .bb-hero   { grid-template-columns: 1fr; padding: 32px 20px; }
  .bb-hero-img { display: none; }
  .bb-section { padding: 32px 20px; }
  .bb-recipe-grid { grid-template-columns: 1fr; }
  .bb-steps  { grid-template-columns: repeat(2, 1fr); }
  .bb-cards  { grid-template-columns: 1fr; }
  hr.bb-divider { margin: 0 20px; }
  .bb-footer { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
}
