:root {
  --cb-yellow: #f5c518;
  --cb-yellow-deep: #d4a017;
  --cb-yellow-soft: rgba(245, 197, 24, 0.12);
  --cb-black: #070707;
  --cb-charcoal: #111111;
  --cb-gray: #1a1a1a;
  --cb-gray-mid: #2a2a2a;
  --cb-gray-soft: #9a9a9a;
  --cb-white: #f4f4f4;
  --cb-white-pure: #ffffff;
  --cb-border: rgba(245, 197, 24, 0.4);
  --cb-font-display: "Bebas Neue", Impact, sans-serif;
  --cb-font-body: "Oswald", "Arial Narrow", sans-serif;
  --cb-wrap: min(1180px, calc(100% - 2rem));
  --cb-header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #050505;
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(245, 197, 24, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.82)),
    url("../images/bg-texture.jpg");
  background-size: auto, auto, 900px auto;
  background-attachment: fixed, fixed, fixed;
  background-position: center top, center, center top;
  color: var(--cb-white);
  font-family: var(--cb-font-body);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.cb-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cb-yellow);
  color: var(--cb-black);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.cb-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
/* Header */
.cb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--cb-header-h);
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.12);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.cb-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(245, 197, 24, 0.22);
}

.cb-header__inner {
  width: var(--cb-wrap);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cb-header__logo {
  width: auto;
  height: 56px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cb-header__brand:hover .cb-header__logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(245, 197, 24, 0.35));
}

.cb-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cb-nav a:not(.cb-btn) {
  position: relative;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e8e8e8;
  transition: color 0.2s ease;
}

.cb-nav a:not(.cb-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--cb-yellow);
  transition: width 0.25s ease;
}

.cb-nav a:not(.cb-btn):hover {
  color: var(--cb-yellow);
}

.cb-nav a:not(.cb-btn):hover::after {
  width: 100%;
}

.cb-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cb-border);
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.cb-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cb-yellow);
  transition: transform 0.25s ease;
}

/* Buttons */
.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.7rem;
  background: var(--cb-yellow);
  color: var(--cb-black) !important;
  font-family: var(--cb-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--cb-yellow);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.cb-btn:hover {
  background: #ffd84a;
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 22px rgba(245, 197, 24, 0.28));
}

.cb-btn--ghost {
  background: transparent;
  color: var(--cb-yellow) !important;
  border-color: var(--cb-border);
}

.cb-btn--ghost:hover {
  background: var(--cb-yellow-soft);
  filter: none;
}

.cb-btn--sm {
  min-height: 40px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
}

.cb-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

/* Hero */
.cb-hero {
  position: relative;
  min-height: calc(100vh - var(--cb-header-h));
  min-height: calc(100dvh - var(--cb-header-h));
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 4.5rem 1.25rem 3.5rem;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.cb-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("../images/hero-bg.jpg") center 30% / cover no-repeat;
  transform: scale(1.04);
  filter: saturate(0.85);
}

.cb-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.94) 100%),
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(245, 197, 24, 0.16), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 0, 0, 0.85), transparent 55%);
}

.cb-hero__stage {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.cb-hero__glow {
  position: absolute;
  inset: 8% 18% auto;
  height: 42%;
  z-index: 1;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.18), transparent 70%);
  filter: blur(42px);
  pointer-events: none;
  animation: cb-pulse 7s ease-in-out infinite;
}

.cb-hero__embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.cb-hero__embers span {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cb-yellow);
  opacity: 0;
  animation: cb-ember linear infinite;
  box-shadow: 0 0 8px rgba(245, 197, 24, 0.8);
}

.cb-hero__embers span:nth-child(1) { left: 12%; animation-duration: 9s; animation-delay: 0s; }
.cb-hero__embers span:nth-child(2) { left: 28%; width: 2px; height: 2px; animation-duration: 11s; animation-delay: 1.5s; }
.cb-hero__embers span:nth-child(3) { left: 45%; animation-duration: 8s; animation-delay: 0.8s; }
.cb-hero__embers span:nth-child(4) { left: 62%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 2.2s; }
.cb-hero__embers span:nth-child(5) { left: 78%; animation-duration: 10s; animation-delay: 0.4s; }
.cb-hero__embers span:nth-child(6) { left: 88%; width: 2px; height: 2px; animation-duration: 13s; animation-delay: 3s; }

.cb-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cb-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: cb-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cb-hero__logo {
  width: min(200px, 46vw);
  height: auto;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 0 36px rgba(245, 197, 24, 0.35));
  animation: cb-logo-float 5s ease-in-out infinite;
}

.cb-hero__tag {
  margin: 0 auto 1.1rem;
  max-width: 22rem;
  color: #c8c8c8;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.cb-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--cb-font-display);
  font-size: clamp(3rem, 9vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--cb-white-pure);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}

.cb-hero__title span {
  display: block;
  color: var(--cb-yellow);
}

.cb-hero__lead {
  margin: 0 auto 1.9rem;
  max-width: 28rem;
  color: #d4d4d4;
  font-size: 1.08rem;
  font-weight: 400;
}

.cb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.cb-hero__meta {
  position: relative;
  z-index: 2;
  margin-top: 3.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: cb-rise 1.15s ease 0.18s both;
}

.cb-hero__meta > div {
  min-width: 200px;
  padding: 0.95rem 1.25rem;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(245, 197, 24, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.cb-hero__meta-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--cb-yellow);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cb-hero__meta strong {
  font-weight: 500;
  font-size: 1.02rem;
}

/* Torn paper / strip */
.cb-torn {
  position: relative;
  height: 18px;
  background: var(--cb-yellow);
  clip-path: polygon(
    0 40%, 2% 0, 5% 55%, 8% 10%, 12% 60%, 16% 5%, 20% 50%, 24% 0, 28% 45%,
    32% 15%, 36% 55%, 40% 0, 44% 50%, 48% 20%, 52% 60%, 56% 5%, 60% 45%,
    64% 15%, 68% 55%, 72% 0, 76% 50%, 80% 10%, 84% 55%, 88% 5%, 92% 45%,
    96% 15%, 100% 50%, 100% 100%, 0 100%
  );
  margin-top: -1px;
}

.cb-torn--flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -1px;
}

.cb-strip {
  background: var(--cb-yellow);
  color: var(--cb-black);
  overflow: hidden;
}

.cb-strip__track {
  display: flex;
  gap: 1.35rem;
  width: max-content;
  padding: 0.95rem 0;
  font-family: var(--cb-font-display);
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: cb-marquee 30s linear infinite;
}

/* Sections */
.cb-section {
  position: relative;
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(8, 8, 8, 0.88) 50%, rgba(5, 5, 5, 0.78));
}

.cb-section--alt {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(245, 197, 24, 0.07), transparent 42%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(6, 6, 6, 0.94) 55%, rgba(8, 8, 8, 0.9));
}

.cb-section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.05) 8px,
    rgba(255, 255, 255, 0.05) 9px
  );
}

.cb-wrap {
  position: relative;
  z-index: 1;
  width: var(--cb-wrap);
  margin: 0 auto;
}

.cb-section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.cb-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--cb-yellow);
  font-size: 0.88rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cb-section__title {
  margin: 0 0 0.85rem;
  font-family: var(--cb-font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  letter-spacing: 0.07em;
  line-height: 0.95;
  text-transform: uppercase;
}

.cb-section__desc {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--cb-gray-soft);
  font-size: 1.08rem;
}

.cb-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--cb-gray-soft);
  font-size: 0.9rem;
}

/* Reveal on scroll */
.cb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-reveal.is-in {
  opacity: 1;
  transform: none;
}

.cb-reveal-delay-1 { transition-delay: 0.08s; }
.cb-reveal-delay-2 { transition-delay: 0.16s; }
.cb-reveal-delay-3 { transition-delay: 0.24s; }

/* Placeholders & cards */
.cb-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, #222 0%, #121212 48%, #1c1c1c 100%);
  border: 1px dashed rgba(245, 197, 24, 0.4);
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.cb-grid {
  display: grid;
  gap: 1.35rem;
}

.cb-grid--breweries {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.cb-grid--bands {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.cb-card,
.cb-band {
  position: relative;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.95), rgba(14, 14, 14, 0.98));
  border: 1px solid rgba(245, 197, 24, 0.14);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-card::before,
.cb-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s ease;
  z-index: 2;
}

.cb-card:hover,
.cb-band:hover {
  border-color: rgba(245, 197, 24, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 197, 24, 0.15);
}

.cb-card:hover::before,
.cb-band:hover::before {
  border-color: rgba(245, 197, 24, 0.25);
  inset: 6px;
}

.cb-card__media,
.cb-band__media {
  position: relative;
  overflow: hidden;
}

.cb-card__media::after,
.cb-band__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  pointer-events: none;
}

.cb-card__img,
.cb-band__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cb-card:hover .cb-card__img,
.cb-band:hover .cb-band__media img {
  transform: scale(1.05);
}

.cb-card__body,
.cb-band__body {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.05rem 1.25rem;
}

.cb-card__title,
.cb-band__name {
  margin: 0;
  font-family: var(--cb-font-display);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cb-card__text,
.cb-band__genre {
  margin: 0.4rem 0 0;
  color: var(--cb-gray-soft);
  font-size: 0.9rem;
}

.cb-band__time {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  background: var(--cb-yellow);
  color: var(--cb-black);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.65rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.cb-day + .cb-day {
  margin-top: 3.25rem;
}

.cb-day__title {
  margin: 0 0 1.4rem;
  font-family: var(--cb-font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  color: var(--cb-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cb-day__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.45), transparent);
}

/* Features */
.cb-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 3.25rem;
}

.cb-feature {
  text-align: center;
  padding: 1.75rem 1.1rem;
  background: rgba(12, 12, 12, 0.82);
  border: 1px solid rgba(245, 197, 24, 0.2);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cb-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.45);
  background: #1a1a1a;
}

.cb-feature__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  color: var(--cb-yellow);
}

.cb-feature__icon svg {
  width: 100%;
  height: 100%;
}

.cb-feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--cb-font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cb-feature p {
  margin: 0;
  color: var(--cb-gray-soft);
  font-size: 0.92rem;
}

.cb-cta {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--cb-border);
  overflow: hidden;
  background: #121212;
}

.cb-cta__media .cb-placeholder,
.cb-cta__media img {
  height: 100%;
  min-height: 280px;
  aspect-ratio: auto;
  object-fit: cover;
}

.cb-cta__body {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: 2.4rem 2rem;
  background:
    radial-gradient(circle at top right, rgba(245, 197, 24, 0.1), transparent 55%),
    #161616;
}

.cb-cta__body h3 {
  margin: 0;
  font-family: var(--cb-font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cb-cta__body p {
  margin: 0 0 0.4rem;
  color: var(--cb-gray-soft);
}

/* Footer */
.cb-footer__banner {
  background: var(--cb-yellow);
  color: var(--cb-black);
  text-align: center;
  padding: 1rem 1rem;
  font-family: var(--cb-font-display);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
}

.cb-footer__banner::before,
.cb-footer__banner::after {
  content: "★";
  margin: 0 0.35rem;
}

.cb-footer__inner {
  padding: 3rem 1.25rem 2.25rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 197, 24, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.95), #030303),
    url("../images/bg-texture.jpg");
  background-size: auto, auto, 900px auto;
}

.cb-footer__logo {
  width: auto;
  height: 84px;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 0 18px rgba(245, 197, 24, 0.2));
}

.cb-footer__tag {
  margin: 0 0 0.85rem;
  color: var(--cb-gray-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.cb-footer__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.4rem;
  color: var(--cb-yellow);
  font-size: 1rem;
}

.cb-footer__copy {
  margin: 0;
  color: #666;
  font-size: 0.8rem;
}

/* Voting UI */
.cb-vote-status {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.95);
}

.cb-vote-status--ok {
  border-color: rgba(245, 197, 24, 0.5);
  color: var(--cb-yellow);
  background: rgba(245, 197, 24, 0.06);
}

.cb-vote-status--err {
  border-color: rgba(220, 80, 80, 0.5);
  color: #ff9a9a;
}

.cb-card--vote {
  display: flex;
  flex-direction: column;
}

.cb-card--vote .cb-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cb-card__actions {
  margin-top: auto;
  padding-top: 0.85rem;
}

.cb-card__actions .cb-btn {
  width: 100%;
}

.cb-card.is-voted {
  border-color: var(--cb-yellow);
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.4), 0 12px 28px rgba(245, 197, 24, 0.12);
}

.cb-google-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.95), rgba(14, 14, 14, 0.98));
  border: 1px solid rgba(245, 197, 24, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.cb-google-bar__user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #ddd;
}

.cb-google-bar__user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--cb-border);
}

@keyframes cb-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cb-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes cb-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cb-ember {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 0.9; }
  100% { transform: translateY(-85vh) scale(0.4); opacity: 0; }
}

@keyframes cb-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .cb-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .cb-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    background-attachment: scroll, scroll, scroll;
    background-size: auto, auto, 700px auto;
  }

  .cb-hero__bg {
    transform: none;
  }

  /* Garante que nada fique invisível no celular */
  .cb-reveal {
    opacity: 1;
    transform: none;
  }

  .cb-grid--breweries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .cb-grid--bands {
    grid-template-columns: 1fr;
  }

  .cb-nav-toggle {
    display: flex;
  }

  .cb-nav {
    position: fixed;
    inset: var(--cb-header-h) 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid rgba(245, 197, 24, 0.15);
    padding: 0.5rem 0;
  }

  .cb-nav.is-open {
    display: flex;
  }

  .cb-nav a {
    width: 100%;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .cb-nav .cb-btn {
    margin: 0.85rem 1.25rem 1.1rem;
    width: calc(100% - 2.5rem);
  }

  .cb-hero {
    min-height: auto;
    padding-top: 3.25rem;
  }

  .cb-hero__meta > div {
    min-width: calc(50% - 0.5rem);
    flex: 1;
  }

  .cb-features {
    grid-template-columns: 1fr;
  }

  .cb-section {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cb-strip__track,
  .cb-hero__glow,
  .cb-hero__logo,
  .cb-hero__embers span,
  .cb-hero__content,
  .cb-hero__meta,
  .cb-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
