/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  transition: background 0.4s ease, color 0.4s ease;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === BRAND TOKENS === */
:root[data-theme="dark"] {
  --bg: #1a0f0a;            /* deep warm brown (matches logo bg) */
  --bg-elev: #261610;
  --bg-deep: #0d0705;
  --fg: #f5ecd9;            /* cream */
  --muted: #a89580;
  --accent: #c8312f;        /* logo red border */
  --accent-2: #f5c542;      /* mic yellow */
  --line: rgba(245,236,217,0.1);
  --nav-bg: rgba(26,15,10,0.8);
  --placeholder-bg: #261610;
}
:root[data-theme="light"] {
  --bg: #f5ecd9;            /* cream */
  --bg-elev: #ffffff;
  --bg-deep: #ebe0c8;
  --fg: #1a0f0a;
  --muted: #6b5640;
  --accent: #c8312f;
  --accent-2: #d4a017;
  --line: rgba(26,15,10,0.12);
  --nav-bg: rgba(245,236,217,0.85);
  --placeholder-bg: #ebe0c8;
}

/* === CUSTOM CURSOR === */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.18s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.3s ease;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring.hover {
  width: 80px; height: 80px;
  background: rgba(245,197,66,0.1);
  border-color: var(--accent);
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* === LOADER === */
.loader {
  position: fixed; inset: 0;
  background: #0d0705;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; width: min(420px, 80vw); }
.loader-logo-img {
  width: 140px; height: 140px;
  margin: 0 auto 28px;
  border-radius: 50%;
  animation: logoSpin 4s linear infinite;
}
@keyframes logoSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.loader-logo-fallback {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  color: #f5ecd9;
}
.loader-logo-fallback span { color: #c8312f; }
.loader-bar {
  height: 2px;
  background: rgba(245,236,217,0.12);
  overflow: hidden;
  margin-bottom: 12px;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: #c8312f;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px #c8312f;
}
.loader-percent {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #a89580;
  font-variant-numeric: tabular-nums;
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 16px;
}
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .small { font-size: 9px; letter-spacing: 0.3em; color: var(--muted); font-weight: 500; }
.nav-logo-text .big { font-size: 16px; }
.nav-logo-text .big span { color: var(--accent); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  font-weight: 600;
}
.nav-links a:hover { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 16px; }

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { border-color: var(--accent); }
.theme-icon-sun, .theme-icon-moon {
  position: absolute;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
:root[data-theme="dark"] .theme-icon-sun { transform: translateY(40px); opacity: 0; }
:root[data-theme="dark"] .theme-icon-moon { transform: translateY(0); opacity: 1; }
:root[data-theme="light"] .theme-icon-sun { transform: translateY(0); opacity: 1; }
:root[data-theme="light"] .theme-icon-moon { transform: translateY(-40px); opacity: 0; }

.nav-cta {
  background: var(--accent);
  color: #f5ecd9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { transform: scale(1.05); background: var(--accent-2); color: #1a0f0a; }

/* === SECTIONS === */
.section {
  padding: 140px 40px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-head { margin-bottom: 60px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  font-weight: 700;
}
h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.accent { color: var(--accent); }
.accent-2 { color: var(--accent-2); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,15,10,0.85) 0%,
    rgba(26,15,10,0.55) 40%,
    rgba(26,15,10,0.75) 80%,
    var(--bg) 100%);
  z-index: 1;
}
:root[data-theme="light"] .hero-bg { filter: brightness(0.7) saturate(1.1); }
:root[data-theme="light"] .hero-overlay {
  background: linear-gradient(180deg,
    rgba(245,236,217,0.7) 0%,
    rgba(245,236,217,0.4) 40%,
    rgba(245,236,217,0.75) 80%,
    var(--bg) 100%);
}
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .hero-inner { padding: 0 20px; } }

.hero-title {
  font-size: clamp(54px, 9vw, 130px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(200,49,47,0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-logo-fallback {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: var(--bg-elev);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 32px;
  color: var(--fg);
  font-family: Georgia, serif;
  font-style: italic;
}

.hero-marquee {
  margin: 60px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg-deep);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: 0.05em;
  font-style: italic;
}
.marquee-track span { color: var(--fg); }
.marquee-track span:nth-child(even) { color: var(--accent); }
.marquee-track span:nth-child(4n) { color: var(--accent-2); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: none;
}
.btn-primary { background: var(--accent); color: #f5ecd9; }
.btn-primary:hover { transform: scale(1.05); background: var(--accent-2); color: #1a0f0a; }
.btn-ghost { border: 1px solid var(--line); color: var(--fg); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* === GRID === */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* === IMAGE/PLACEHOLDER === */
.media {
  background: var(--placeholder-bg);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
/* Show placeholder text only when no background image is set */
.media:not([style*="background-image"])[data-src]::before {
  content: "image: " attr(data-src);
  opacity: 0.5;
}

/* === EVENTS GRID === */
.events-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .events-grid { grid-template-columns: 1fr; } }

/* === EVENT CARDS === */
.event-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(200,49,47,0.15);
}

/* BMS FEATURED CARD */
.bms-card {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #8a1f1d 100%);
  border-color: var(--accent);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 340px;
  padding: 32px;
  overflow: hidden;
}
.bms-card:hover {
  border-color: var(--accent-2);
  box-shadow: 0 20px 50px rgba(200,49,47,0.45);
  transform: translateY(-6px) scale(1.01);
}
.bms-pulse {
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  opacity: 0.4;
  animation: bmsPulse 3s ease-in-out infinite;
}
@keyframes bmsPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.6; }
}
.bms-body {
  position: relative;
  z-index: 1;
  color: #fff;
}
.bms-body .card-tag {
  color: var(--accent-2);
  background: rgba(0,0,0,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.bms-body h3 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: #fff;
}
.bms-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.5;
}
.bms-arrow {
  display: inline-flex; align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-2);
  transition: gap 0.3s ease, transform 0.3s ease;
  gap: 6px;
}
.bms-card:hover .bms-arrow { gap: 14px; transform: translateX(4px); }
@media (max-width: 900px) { .bms-card { grid-column: span 2; min-height: 240px; } }
@media (max-width: 560px) { .bms-card { grid-column: span 1; } }
.event-card .media { aspect-ratio: 4/3; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.event-card .card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
  font-weight: 700;
}
.card h3 { font-size: 22px; margin-bottom: 8px; font-weight: 700; }
.card-meta { color: var(--muted); font-size: 13px; letter-spacing: 0.05em; }

/* === COMEDIAN CARDS === */
.comedian-card {
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s ease;
}
.comedian-card:hover { transform: translateY(-6px); }
.comedian-card .media {
  aspect-ratio: 3/4;
  border-radius: 12px;
}
.comedian-card h4 { font-size: 18px; font-weight: 700; }
.comedian-card p { font-size: 13px; color: var(--muted); }

/* === VENUE GALLERY === */
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 14px;
  margin-bottom: 60px;
}
.venue-gallery .media {
  border-radius: 14px;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.venue-gallery .media:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}
.venue-gallery .gallery-hero { grid-column: span 2; grid-row: span 2; }
.venue-gallery .media:nth-child(2) { grid-column: span 2; }
.venue-gallery .media:nth-child(3),
.venue-gallery .media:nth-child(4) { grid-column: span 1; }
.venue-gallery .media:nth-child(5),
.venue-gallery .media:nth-child(6) { grid-column: span 2; }
@media (max-width: 768px) {
  .venue-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .venue-gallery .media { aspect-ratio: 4/3; height: auto; }
  .venue-gallery .gallery-hero,
  .venue-gallery .media:nth-child(2),
  .venue-gallery .media:nth-child(5),
  .venue-gallery .media:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .venue-gallery .gallery-hero { aspect-ratio: 16/9; }
}

/* === HIRES === */
.hires-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .hires-grid { grid-template-columns: 1fr; } }
.hires-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
}
.hires-lede {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.4;
}
.hires-meta { margin-bottom: 32px; }
.hires-meta li {
  display: flex; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.hires-meta span { color: var(--muted); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; }
.hires-meta b { font-size: 15px; font-weight: 600; }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 24px;
}
.about-secondary { color: var(--muted) !important; font-size: clamp(16px, 1.5vw, 20px) !important; }
.about-stats {
  display: flex; flex-direction: column; gap: 24px;
  padding: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat b { font-size: clamp(32px, 4vw, 44px); font-weight: 900; color: var(--accent); font-family: Georgia, serif; font-style: italic; }
.stat span { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.contact-card span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.contact-card b { font-size: 16px; font-weight: 600; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  background: var(--bg-deep);
}
.footer-logo-img { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px; }
.footer-tag { font-style: italic; }

/* === LAUGH-O-METER === */
.laugh-o-meter {
  position: fixed;
  top: 73px;
  left: 0; right: 0;
  z-index: 90;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 8px 40px 10px;
  display: flex; align-items: center; gap: 20px;
  transition: background 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
}
.laugh-o-meter.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.lom-track {
  flex: 1;
  position: relative;
  height: 22px;
}
.lom-fill {
  position: absolute;
  top: 9px;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 2px;
  transition: width 0.15s ease;
  box-shadow: 0 0 8px var(--accent);
}
.lom-track::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0; right: 0;
  height: 4px;
  background: rgba(245,236,217,0.08);
  border-radius: 2px;
}
:root[data-theme="light"] .lom-track::before { background: rgba(26,15,10,0.1); }
.lom-ticks {
  position: absolute;
  inset: 0;
  display: flex; justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.lom-ticks span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: var(--nav-bg);
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.lom-ticks span.active {
  color: var(--accent-2);
  transform: scale(1.15);
}
.lom-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  min-width: 100px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease, transform 0.3s ease;
}
.lom-label.bump { transform: scale(1.1); }

/* === BURGER === */
.nav-burger {
  display: none;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: none;
  position: relative;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 16px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* === MOBILE === */
@media (max-width: 900px) {
  .laugh-o-meter { padding: 6px 16px 8px; gap: 12px; }
  .lom-label { font-size: 10px; min-width: 75px; }
  .lom-ticks span:nth-child(2),
  .lom-ticks span:nth-child(4) { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 12px 16px; }
  .nav-links {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 16px; letter-spacing: 0.1em; }
  .nav-burger { display: flex; }
  .nav-cta { padding: 9px 16px; font-size: 11px; }
  .nav-logo-text .small { display: none; }
  .nav-logo-img { width: 36px; height: 36px; }
  .section { padding: 100px 20px 60px; }
  .hero { padding-top: 110px; }
  .hero-marquee { margin: 60px 0 0; }
  .hero-title { font-size: clamp(48px, 14vw, 90px); }
  .hero-logo-img { max-width: 220px; }
  .laugh-o-meter { top: 65px; }
}
@media (max-width: 480px) {
  .lom-ticks span:nth-child(1),
  .lom-ticks span:nth-child(5) { font-size: 8px; padding: 2px 4px; }
  .lom-ticks span:nth-child(3) { font-size: 8px; }
  .lom-label { font-size: 9px; min-width: 60px; letter-spacing: 0.08em; }
  .nav { padding: 10px 12px; gap: 8px; }
  .nav-right { gap: 8px; }
  .nav-cta { padding: 8px 12px; font-size: 10px; letter-spacing: 0.1em; }
  .theme-toggle { width: 34px; height: 34px; }
  .nav-burger { width: 34px; height: 34px; }
  .nav-logo-text .big { font-size: 14px; }
  .hero-title { font-size: clamp(42px, 13vw, 70px); }
  .hero-logo-img { max-width: 180px; }
}
