/* ──────────────────────────────────────────────────────────
   Bee Blossom — Mobile Bar
   Design tokens + base styles
   ────────────────────────────────────────────────────────── */

:root {
  /* Palette — Green-led default */
  --bg: #faf6ea;
  --bg-2: #f3eddb;
  --ink: #1a2e1f;
  --ink-soft: #3d4a3f;
  --primary: #2f5d3a;
  --primary-deep: #1f4128;
  --accent: #d97433;
  --gold: #c69a3c;
  --gold-soft: #e0c684;
  --line: rgba(26, 46, 31, 0.14);

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Scale */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }

.bb-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

.bb-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.bb-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Nav ──────────────────────────────────────────────── */
.bb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.bb-nav.scrolled {
  background: rgba(250, 246, 234, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--line);
  padding: 12px var(--gutter);
}
.bb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.bb-logo .mark {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  color: var(--primary);
}
.bb-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.bb-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  cursor: pointer;
  background: none;
  border: 0;
  font-family: inherit;
}
.bb-nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.bb-nav-link:hover::after,
.bb-nav-link.active::after { transform: scaleX(1); }

.bb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary);
  color: var(--bg);
  border: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.bb-cta:hover { background: var(--primary-deep); transform: translateY(-1px); }
.bb-cta.bb-cta-accent { background: var(--accent); }
.bb-cta.bb-cta-accent:hover { background: #b85f24; }
.bb-cta.bb-cta-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.bb-cta.bb-cta-ghost:hover { background: var(--ink); color: var(--bg); }

.bb-mobile-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* ── Sections ─────────────────────────────────────────── */
section { position: relative; }

.bb-section {
  padding: clamp(80px, 12vw, 140px) 0;
}
.bb-section.dark {
  background: var(--primary-deep);
  color: var(--bg);
}
.bb-section.dark .bb-eyebrow { color: var(--gold-soft); }
.bb-section.cream {
  background: var(--bg-2);
}

.bb-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.bb-section-head h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.bb-section-head h2 em {
  font-style: italic;
  color: var(--accent);
}
.bb-section-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0;
}
.bb-section.dark .bb-section-head p { color: rgba(250,246,234,0.75); }

@media (max-width: 800px) {
  .bb-section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

/* ── Hero ─────────────────────────────────────────────── */
.bb-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bb-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Layout: split */
.bb-hero.layout-split .bb-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.bb-hero.layout-split .bb-hero-art {
  aspect-ratio: 4 / 5;
  position: relative;
}

/* Layout: centered */
.bb-hero.layout-centered .bb-hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.bb-hero.layout-centered h1 { font-size: clamp(56px, 11vw, 168px); }
.bb-hero.layout-centered .bb-hero-art {
  width: min(640px, 90%);
  aspect-ratio: 16 / 7;
  margin-top: 24px;
}

/* Layout: editorial (asymmetric) */
.bb-hero.layout-editorial .bb-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px clamp(40px, 6vw, 80px);
}
.bb-hero.layout-editorial h1 {
  grid-column: 1 / -1;
  font-size: clamp(64px, 14vw, 196px);
  line-height: 0.92;
}
.bb-hero.layout-editorial .bb-hero-lede {
  grid-column: 2;
  margin-top: -20px;
}
.bb-hero.layout-editorial .bb-hero-meta {
  grid-column: 1;
  align-self: end;
}
.bb-hero.layout-editorial .bb-hero-art { display: none; }

.bb-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.bb-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.bb-hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0;
}
.bb-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.bb-hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 12px;
  color: var(--ink-soft);
}
.bb-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bb-hero-meta-item b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 800px) {
  .bb-hero.layout-split .bb-hero-inner { grid-template-columns: 1fr; }
  .bb-hero.layout-editorial .bb-hero-inner { grid-template-columns: 1fr; }
  .bb-hero.layout-editorial .bb-hero-lede,
  .bb-hero.layout-editorial .bb-hero-meta { grid-column: 1; }
}

/* ── Imagery placeholders ─────────────────────────────── */
.bb-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.bb-img.tall { aspect-ratio: 4 / 5; height: auto; }
.bb-img.square { aspect-ratio: 1; height: auto; }
.bb-img.wide { aspect-ratio: 16 / 9; height: auto; }

.bb-img.stripes::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0px,
    transparent 14px,
    rgba(47, 93, 58, 0.06) 14px,
    rgba(47, 93, 58, 0.06) 15px
  );
}
.bb-img.botanical::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(217,116,51,0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 65% 18%, rgba(47,93,58,0.18) 0 6px, transparent 7px),
    radial-gradient(circle at 78% 70%, rgba(198,154,60,0.22) 0 5px, transparent 6px),
    radial-gradient(circle at 30% 78%, rgba(47,93,58,0.15) 0 8px, transparent 9px),
    radial-gradient(circle at 50% 55%, rgba(217,116,51,0.12) 0 3px, transparent 4px),
    linear-gradient(135deg, var(--bg-2), #ede4c9);
}
.bb-img.photo {
  background: var(--ink);
}
.bb-img.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.bb-img.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26,46,31,0.02), rgba(26,46,31,0.18));
  pointer-events: none;
}
.bb-cocktail:hover .bb-img.photo img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04);
}
.bb-img-label {
  position: relative;
  z-index: 1;
  margin: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: rgba(250,246,234,0.85);
  padding: 4px 8px;
  border-radius: 2px;
}

/* Honeycomb motif (only used decoratively) */
.bb-hex {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Menu ─────────────────────────────────────────────── */
.bb-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 1000px) { .bb-menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bb-menu-grid { grid-template-columns: 1fr; } }

.bb-cocktail {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bb-cocktail:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 46, 31, 0.08);
}
.bb-cocktail .bb-img { aspect-ratio: 4 / 5; flex-shrink: 0; border-radius: 0; border: 0; }
.bb-cocktail-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bb-cocktail-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.bb-cocktail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.bb-cocktail .bb-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  white-space: nowrap;
}
.bb-cocktail-tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}
.bb-cocktail-ingredients {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin: 4px 0 0;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.bb-section.dark .bb-cocktail { background: rgba(250,246,234,0.06); border-color: rgba(250,246,234,0.1); color: var(--bg); }
.bb-section.dark .bb-cocktail-tagline,
.bb-section.dark .bb-cocktail-ingredients { color: rgba(250,246,234,0.7); }
.bb-section.dark .bb-cocktail-ingredients { border-top-color: rgba(250,246,234,0.12); }

/* ── About ────────────────────────────────────────────── */
.bb-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.bb-about-art {
  aspect-ratio: 4 / 5;
  position: relative;
}
.bb-about p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: var(--ink-soft);
}
.bb-about p.lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
}
.bb-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.bb-about-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.bb-about-stat span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 800px) {
  .bb-about { grid-template-columns: 1fr; }
  .bb-about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ── Calculator ───────────────────────────────────────── */
.bb-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 56px);
}
.bb-section.dark .bb-calc {
  background: rgba(250,246,234,0.04);
  border-color: rgba(250,246,234,0.14);
}
@media (max-width: 900px) { .bb-calc { grid-template-columns: 1fr; } }

.bb-calc-field { margin-bottom: 28px; }
.bb-calc-field:last-child { margin-bottom: 0; }
.bb-calc-field-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 12px;
}
.bb-calc-field-head label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.bb-calc-field-head .bb-calc-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}
.bb-section.dark .bb-calc-field-head .bb-calc-value { color: var(--gold-soft); }

.bb-slider {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(26, 46, 31, 0.14);
  outline: none;
}
.bb-section.dark .bb-slider { background: rgba(250,246,234,0.18); }
.bb-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  cursor: pointer;
}
.bb-section.dark .bb-slider::-webkit-slider-thumb { background: var(--gold); border-color: var(--primary-deep); }
.bb-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  cursor: pointer;
}

.bb-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 4px;
  background: var(--bg-2);
  border-radius: 999px;
}
.bb-section.dark .bb-segmented { background: rgba(250,246,234,0.08); }
.bb-segmented button {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 999px;
  cursor: pointer;
  color: inherit;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}
.bb-segmented button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
}
.bb-section.dark .bb-segmented button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--primary-deep);
}

.bb-mix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bb-mix-row { display: flex; flex-direction: column; gap: 6px; }
.bb-mix-row > span {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
}
.bb-section.dark .bb-mix-row > span { color: rgba(250,246,234,0.7); }

.bb-results {
  background: var(--primary);
  color: var(--bg);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bb-section.dark .bb-results { background: var(--gold); color: var(--primary-deep); }
.bb-results h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bb-results-total {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 8px 0 4px;
}
.bb-results-total small {
  font-size: 16px;
  font-style: italic;
  margin-left: 8px;
  opacity: 0.78;
  font-weight: 400;
}
.bb-results-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(250,246,234,0.18);
}
.bb-section.dark .bb-results-breakdown { border-top-color: rgba(31,65,40,0.2); }
.bb-results-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: baseline;
}
.bb-results-row .label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}
.bb-results-row .qty {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.78;
}
.bb-results-row .amt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  min-width: 80px;
  text-align: right;
}
.bb-results-note {
  font-size: 12px;
  opacity: 0.78;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* ── Contact ──────────────────────────────────────────── */
.bb-contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (max-width: 900px) { .bb-contact { grid-template-columns: 1fr; } }

.bb-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bb-contact-aside h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
}
.bb-contact-aside h3 em { font-style: italic; color: var(--accent); }
.bb-contact-meta {
  display: flex; flex-direction: column; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.bb-contact-meta-row {
  display: flex; gap: 14px; align-items: flex-start;
}
.bb-contact-meta-row .ic {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 2px;
}
.bb-contact-meta-row b {
  display: block;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  margin-bottom: 4px;
}
.bb-contact-meta-row span { font-size: 15px; }

.bb-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 3.6vw, 44px);
  display: flex; flex-direction: column; gap: 20px;
}
.bb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .bb-form-row { grid-template-columns: 1fr; } }

.bb-input {
  display: flex; flex-direction: column; gap: 6px;
}
.bb-input label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft);
}
.bb-input input,
.bb-input select,
.bb-input textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.bb-input textarea { min-height: 110px; }
.bb-input input:focus,
.bb-input select:focus,
.bb-input textarea:focus {
  border-bottom-color: var(--primary);
}
.bb-input.error input,
.bb-input.error textarea {
  border-bottom-color: var(--accent);
}
.bb-input small {
  font-size: 11px; color: var(--accent);
}

.bb-form-actions {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 4px;
}
.bb-form-actions small { font-size: 12px; color: var(--ink-soft); max-width: 28ch; }

.bb-form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.bb-form-success svg { color: var(--primary); }
.bb-form-success h4 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}
.bb-form-success p { color: var(--ink-soft); margin: 0; max-width: 36ch; }

/* ── Footer ───────────────────────────────────────────── */
.bb-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px var(--gutter) 36px;
}
.bb-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.bb-footer h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-soft);
  margin: 0 0 16px;
}
.bb-footer a { color: rgba(250,246,234,0.78); text-decoration: none; font-size: 14px; display: block; padding: 4px 0; }
.bb-footer a:hover { color: var(--bg); }
.bb-footer .bb-footer-brand {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1.1; margin: 0 0 12px;
}
.bb-footer .bb-footer-tag { font-size: 14px; color: rgba(250,246,234,0.7); max-width: 32ch; line-height: 1.55; }
.bb-footer-bottom {
  max-width: var(--container);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(250,246,234,0.14);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 12px; color: rgba(250,246,234,0.6); letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .bb-footer-inner { grid-template-columns: 1fr 1fr; }
  .bb-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Honeycomb decorative band ───────────────────────── */
.bb-honey-band {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}
.bb-honey-band.top-right { top: 80px; right: -40px; width: 200px; height: 220px; }
.bb-honey-band.bottom-left { bottom: 40px; left: -30px; width: 180px; height: 200px; }

/* ── Responsive nav ──────────────────────────────────── */
@media (max-width: 760px) {
  .bb-nav-links { display: none; }
  .bb-mobile-toggle { display: flex; }
  .bb-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--line);
    gap: 18px;
    align-items: flex-start;
  }
  .bb-nav .bb-cta { display: none; }
  .bb-nav-links.open .bb-cta { display: inline-flex; }
}

/* ── Selection ───────────────────────────────────────── */
::selection { background: var(--accent); color: var(--bg); }
