/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #2D6A1F;
  --green-dark: #1B4A10;
  --green-light:#3D8A2A;
  --gold:       #E8A818;
  --gold-light: #F5C842;
  --cream:      #F5E6C8;
  --dark:       #111008;
  --dark-2:     #1A1605;
  --dark-3:     #221C08;
  --text:       #F0E8D0;
  --text-muted: #A89870;
  --red:        #CC2200;
  --pink:       #C13584;
  --radius:     12px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 16, 8, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link { display: flex; align-items: center; }
.logo-img { height: 58px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.1s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid var(--green);
  padding: 12px 0;
}

.mobile-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s, color 0.2s;
}

.mobile-link:hover { background: var(--dark-3); color: var(--gold); }

.mobile-nav.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  letter-spacing: 0.02em;
}

.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn:active { transform: translateY(0); }

.btn-gold  { background: var(--gold); color: var(--dark); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-red   { background: var(--red); color: #fff; }
.btn-pink  { background: var(--pink); color: #fff; }
.btn-sm    { padding: 9px 18px; font-size: 0.875rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero_background.png') center center / cover no-repeat;
  opacity: 0.58;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,16,8,0.88) 35%, rgba(17,16,8,0.35) 100%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: clamp(120px, 22vw, 320px);
  color: rgba(232,168,24,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  color: var(--cream);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tags span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-light);
  background: rgba(45,106,31,0.15);
  border: 1px solid rgba(45,106,31,0.3);
  padding: 4px 12px;
  border-radius: 50px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.bazza-main {
  width: 100%;
  max-width: 480px;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.35)) drop-shadow(0 8px 32px rgba(232,168,24,0.2));
  animation: bazza-float 4s ease-in-out infinite;
}

@keyframes bazza-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.speech-bubble {
  position: absolute;
  top: 10%;
  right: -10px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  padding: 12px 20px;
  border-radius: 20px 20px 4px 20px;
  white-space: nowrap;
  transform: rotate(3deg);
  animation: bubble-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.8s both;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 18px;
  border: 12px solid transparent;
  border-top-color: var(--gold);
  border-bottom: 0;
}

@keyframes bubble-pop {
  from { transform: rotate(3deg) scale(0); opacity: 0; }
  to   { transform: rotate(3deg) scale(1); opacity: 1; }
}

.hero-scroll-hint {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }

.dark-section { background: var(--dark-3); }

.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.05;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 52px;
}

/* ── ABOUT ── */
.about-inner { text-align: center; }
.about-inner .section-title, .about-inner .section-sub { margin-left: auto; margin-right: auto; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.about-card {
  background: var(--dark-3);
  border: 1px solid rgba(232,168,24,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}

.about-card:hover {
  border-color: rgba(232,168,24,0.4);
  transform: translateY(-4px);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── CREW ── */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.crew-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.crew-card:hover { transform: translateY(-6px); border-color: rgba(232,168,24,0.3); }

.crew-main {
  border-color: rgba(232,168,24,0.25);
  background: linear-gradient(160deg, rgba(45,106,31,0.15), rgba(232,168,24,0.08));
}

.crew-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--green);
}

.rooster-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hen-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.hen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hen-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bangers', cursive;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.shazza { background: #E8A818; }
.bev    { background: #E87018; }
.trace  { background: #C13584; }
.karen  { background: #1884E8; }

.crew-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.crew-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 2px;
}

.crew-role {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}

.crew-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.crew-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.crew-traits span {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(45,106,31,0.2);
  border: 1px solid rgba(45,106,31,0.3);
  color: var(--green-light);
  padding: 3px 8px;
  border-radius: 50px;
}

/* ── WATCH ── */
.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.watch-card {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}

.watch-card:hover { transform: translateY(-4px); }

.watch-card.youtube {
  background: rgba(204,34,0,0.12);
  border-color: rgba(204,34,0,0.25);
}

.watch-card.youtube:hover { border-color: var(--red); }

.watch-card.instagram {
  background: rgba(193,53,132,0.12);
  border-color: rgba(193,53,132,0.25);
}

.watch-card.instagram:hover { border-color: var(--pink); }

.watch-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-card.youtube .watch-icon { color: var(--red); }
.watch-card.instagram .watch-icon { color: var(--pink); }

.watch-icon svg { width: 48px; height: 48px; }

.watch-info h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 8px;
}

.watch-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.watch-cta {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.coming-soon-strip {
  background: rgba(232,168,24,0.08);
  border: 1px solid rgba(232,168,24,0.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
}

.coming-soon-strip p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── CHOOK TUBE ── */
.chooktube { background: #0f0f0f; }

.ct-header {
  text-align: center;
  margin-bottom: 52px;
}

.ct-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ct-logo-icon {
  background: var(--red);
  color: #fff;
  width: 52px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-logo-icon svg { width: 28px; height: 28px; }

.ct-logo-text {
  font-family: 'Bangers', cursive;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.ct-chook { color: var(--cream); }
.ct-tube  { color: var(--red); }

.ct-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.ct-subscribe { font-size: 1rem; }

.ct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.ct-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 0;
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.ct-featured .ct-thumb { border-radius: 0; height: 100%; min-height: 220px; }
.ct-featured .ct-meta  { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
.ct-featured .ct-info h3 { font-size: 1.2rem; }

.ct-video {
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}

.ct-video:hover { transform: translateY(-4px); border-color: var(--red); }

.ct-thumb {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ct-thumb-1 { background: linear-gradient(135deg, #2d1b00 0%, #8b3a00 100%); }
.ct-thumb-2 { background: linear-gradient(135deg, #003d00 0%, #2d6a1f 100%); }
.ct-thumb-3 { background: linear-gradient(135deg, #1a0030 0%, #4a0080 100%); }
.ct-thumb-4 { background: linear-gradient(135deg, #300000 0%, #8b0000 100%); }
.ct-thumb-5 { background: linear-gradient(135deg, #001a30 0%, #003d6b 100%); }
.ct-thumb-6 { background: linear-gradient(135deg, #1a1000 0%, #5a4000 100%); }

.ct-thumb::before {
  content: 'CHOOK TUBE';
  font-family: 'Bangers', cursive;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.08);
  position: absolute;
}

.ct-play {
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: background 0.2s, transform 0.2s;
}

.ct-video:hover .ct-play { background: var(--red); transform: scale(1.1); }
.ct-play svg { width: 24px; height: 24px; }

.ct-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.ct-new-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
}

.ct-meta {
  display: flex;
  gap: 12px;
  padding: 14px;
  align-items: flex-start;
}

.ct-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--green);
}

.ct-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 4px;
}

.ct-channel {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.ct-views {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ct-insta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(193,53,132,0.1);
  border: 1px solid rgba(193,53,132,0.25);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}

.ct-insta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--pink);
}

.ct-insta-left div strong {
  display: block;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 2px;
}

.ct-insta-left div p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── MERCH ── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.merch-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.merch-card:hover { transform: translateY(-6px); border-color: rgba(232,168,24,0.3); }

.merch-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tshirt-1 { background: var(--green-dark); }
.tshirt-2 { background: #1a1a3a; }
.cap-1    { background: #1a1206; border-bottom: 1px solid rgba(232,168,24,0.15); }
.stickers { background: #0f1a0f; }
.hoodie   { background: #0a0a1a; }
.mug      { background: #1a0a0a; }

.merch-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.merch-graphic {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.merch-graphic-sub {
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0.7;
}

.cap-shape {
  background: var(--green-dark);
  width: 120px;
  height: 70px;
  border-radius: 50px 50px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-shape::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -10px;
  right: -10px;
  height: 10px;
  background: var(--green);
  border-radius: 0 0 6px 6px;
}

.cap-text {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.stickers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}

.sticker {
  font-family: 'Bangers', cursive;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
}

.s1 { background: var(--gold); color: var(--dark); transform: rotate(-2deg); }
.s2 { background: var(--green); color: var(--cream); transform: rotate(1.5deg); }
.s3 { background: var(--red); color: #fff; transform: rotate(-1deg); }
.s4 { background: #1884E8; color: #fff; transform: rotate(2deg); }

.mug-text { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 0.05em; color: var(--gold); text-align: center; line-height: 1.4; }

.merch-info { padding: 24px; }

.merch-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.merch-info h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 8px;
}

.merch-info p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.merch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.merch-price {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* ── SOCIALS ── */
.socials { background: var(--dark-2); }

.socials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.socials-text .section-title { margin-bottom: 16px; }

.socials-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.social-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.socials-bazza {
  position: relative;
  display: flex;
  justify-content: center;
}

.socials-img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 12px 40px rgba(232,168,24,0.2));
}

.speech-bubble-right {
  position: absolute;
  top: 5%;
  left: -20px;
  border-radius: 20px 20px 20px 4px;
  transform: rotate(-3deg);
  font-size: 1.1rem;
}

.speech-bubble-right::after {
  bottom: -12px;
  right: 18px;
  left: auto;
}

/* ── FOOTER ── */
.site-footer {
  background: #0A0805;
  border-top: 2px solid var(--green);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo { height: 80px; width: auto; }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.footer-tagline {
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .crew-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .crew-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    text-align: left;
  }

  .crew-main .crew-avatar { margin: 0; }
  .crew-main .crew-traits { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px 20px;
  }

  .hero-image { order: -1; }
  .bazza-main { max-width: 280px; }
  .hero-buttons { justify-content: center; }
  .hero-tags { justify-content: center; }
  .speech-bubble { font-size: 1rem; right: 0; }

  .about-grid { grid-template-columns: 1fr; }

  .crew-grid { grid-template-columns: 1fr 1fr; }

  .crew-main {
    grid-column: 1 / -1;
    display: block;
    text-align: center;
  }

  .crew-main .crew-avatar { margin: 0 auto 16px; }
  .crew-main .crew-traits { justify-content: center; }

  .ct-grid { grid-template-columns: 1fr; }
  .ct-featured { grid-template-columns: 1fr; }
  .ct-featured .ct-thumb { min-height: 180px; }
  .ct-insta-strip { flex-direction: column; gap: 16px; text-align: center; }
  .ct-insta-left { flex-direction: column; }

  .merch-grid { grid-template-columns: 1fr 1fr; }

  .socials-inner { grid-template-columns: 1fr; }
  .socials-bazza { display: none; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .crew-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 56px; }
}
