:root {
  --bg: #faf3e6;
  --cream: #f9f2e4;
  --ink: #2a1e3f;
  --pink: #e94b8a;
  --pink-deep: #c92f6d;
  --yellow: #f6c94c;
  --yellow-deep: #f0b429;
  --blue: #4a8fd1;
  --purple: #7a6fd9;
  --red: #e4572e;
  --radius: 24px;
  --font-display: "Alfa Slab One", "Georgia", serif;
  --font-body: "Space Grotesk", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; letter-spacing: .01em; }

/* chunky 3D offset type, like the "Funky Fresh" ref */
.funk {
  color: var(--pink);
  text-shadow:
    1px 1px 0 var(--blue), 2px 2px 0 var(--blue), 3px 3px 0 var(--blue),
    4px 4px 0 var(--blue), 5px 5px 0 var(--blue), 6px 6px 0 var(--blue);
}
.funk-light {
  color: var(--cream);
  text-shadow:
    1px 1px 0 var(--ink), 2px 2px 0 var(--ink), 3px 3px 0 var(--ink),
    4px 4px 0 var(--ink), 5px 5px 0 var(--ink), 6px 6px 0 var(--ink);
}
.funk-blue {
  color: var(--blue);
  text-shadow:
    1px 1px 0 var(--pink), 2px 2px 0 var(--pink), 3px 3px 0 var(--pink),
    4px 4px 0 var(--pink), 5px 5px 0 var(--pink), 6px 6px 0 var(--pink);
}
.funk-yellow {
  color: var(--yellow-deep);
  text-shadow:
    1px 1px 0 var(--blue), 2px 2px 0 var(--blue), 3px 3px 0 var(--blue),
    4px 4px 0 var(--blue), 5px 5px 0 var(--blue), 6px 6px 0 var(--blue);
}

/* alternate the hero lines, CMYK-style like the "Be the Hero" ref */
.hero-title .line:nth-child(1) {
  color: var(--blue);
  text-shadow:
    1px 1px 0 var(--pink), 2px 2px 0 var(--pink), 3px 3px 0 var(--pink),
    4px 4px 0 var(--pink), 5px 5px 0 var(--pink), 6px 6px 0 var(--pink);
}
.hero-title .line:nth-child(2) {
  color: var(--yellow-deep);
  text-shadow:
    1px 1px 0 var(--blue), 2px 2px 0 var(--blue), 3px 3px 0 var(--blue),
    4px 4px 0 var(--blue), 5px 5px 0 var(--blue), 6px 6px 0 var(--blue);
}

/* ---------- cursor blob ---------- */
.cursor-blob {
  position: fixed;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .45;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: multiply;
}
.cursor-blob.grow { width: 60px; height: 60px; opacity: .3; }
@media (hover: none) { .cursor-blob { display: none; } }

/* ---------- logo ---------- */
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--pink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  border-radius: 50%;
  line-height: 1;
  padding-top: 2px;
}
.logo-mark-sm { width: 28px; height: 28px; font-size: .8rem; vertical-align: middle; margin-right: 6px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
  background: transparent;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
  z-index: 100;
}
/* invisible markers: one at the page top (nav colour), one at the hero's end (bg honcho) */
.nav-sentinel {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 40px;
  pointer-events: none;
}
.hero-end-sentinel {
  width: 1px; height: 1px;
  margin-top: -1px;
  pointer-events: none;
}
.nav.scrolled {
  background: var(--cream);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 2px 14px rgba(42, 30, 63, .08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo-name {
  font-family: "DM Serif Display", "Georgia", serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: .01em;
  color: var(--ink);
}
.logo-name em {
  color: var(--pink);
  font-style: italic;
}

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--pink);
  color: var(--cream) !important;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 0 var(--ink); }

.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 24px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-inner {
  text-align: center;
  max-width: 950px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* the honcho drifts behind the whole page as a soft background layer */
.bg-honcho {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(820px, 78vw);
  transform: translate(-50%, -50%) rotate(3deg);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
  animation: honcho-drift 18s ease-in-out infinite;
}
/* he stays out of the hero and fades in once you scroll past the first screen */
.bg-honcho.visible { opacity: .25; }
.bg-honcho img,
.bg-honcho video {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at center, #000 55%, transparent 75%);
  mask-image: radial-gradient(ellipse 72% 72% at center, #000 55%, transparent 75%);
}
.bg-honcho img.hero-still { display: none; }
@keyframes honcho-drift {
  0%, 100% { transform: translate(-50%, -50%) rotate(3deg) scale(1); }
  50% { transform: translate(-50%, -52%) rotate(0deg) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-honcho { animation: none; }
  .bg-honcho video.hero-video { display: none; }
  .bg-honcho img.hero-still { display: block; }
}

/* sound toggle */
.sound-toggle {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 200;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sound-toggle:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.sound-toggle[aria-pressed="true"] { background: var(--yellow); }

.hero-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 30px;
}

.hero-brand {
  font-family: "DM Serif Display", "Georgia", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.hero-brand em { color: var(--pink); font-style: italic; }

/* crown sitting on top of the word "head" */
.crowned { position: relative; display: inline-block; }
.crown {
  position: absolute;
  left: 50%;
  bottom: 88%;
  width: 92%;
  height: auto;
  transform: translateX(-50%) rotate(-7deg);
  transform-origin: bottom center;
  overflow: visible;
  animation: crown-tip 5s ease-in-out infinite, crown-glow 4s ease-in-out infinite;
}
@keyframes crown-tip {
  0%, 100% { transform: translateX(-50%) rotate(-7deg); }
  50% { transform: translateX(-50%) rotate(-1deg) translateY(-3px); }
}

/* the gold glows as the glint sweeps past, and sparkles pop in its wake */
@keyframes crown-glow {
  0%, 45%, 100% { filter: drop-shadow(0 1px 1px rgba(42, 30, 63, .18)); }
  20% { filter: drop-shadow(0 0 9px rgba(255, 214, 92, .95)) drop-shadow(0 1px 1px rgba(42, 30, 63, .18)); }
}
.crown-sparkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: crown-twinkle 4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
}
@keyframes crown-twinkle {
  0%, 8%, 46%, 100% { opacity: 0; transform: scale(.2) rotate(-25deg); }
  24% { opacity: 1; transform: scale(1) rotate(20deg); }
}

.hero-title {
  font-size: clamp(2.5rem, 6.2vw, 4.8rem);
  line-height: 1.22;
}
.hero-title .line { display: block; }
.hero-title em { font-style: normal; }
.squiggle { position: relative; white-space: nowrap; font-style: normal; }
.squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.06em;
  height: .14em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 12" preserveAspectRatio="none"><path d="M0 8 Q 12.5 0, 25 8 T 50 8 T 75 8 T 100 8" fill="none" stroke="%23e94b8a" stroke-width="4" stroke-linecap="round"/></svg>') repeat-x;
  background-size: 80px 100%;
}
.dot { color: var(--yellow); }

.hero-sub {
  margin: 28px auto 38px;
  max-width: 520px;
  font-size: 1.15rem;
  font-weight: 500;
  color: #5a4a6e;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary {
  background: var(--blue);
  color: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--yellow); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn-big {
  background: var(--yellow);
  color: var(--ink);
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  padding: 20px 36px;
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-big:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--ink); }

.hero-badge {
  position: absolute;
  right: clamp(8px, 6vw, 90px);
  bottom: 90px;
  z-index: 2;
  background: var(--blue);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(8deg);
}
.float { animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: rotate(8deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-14px); } }

/* rotating sunburst behind hero, like the "Vegan as Funk" rays */
.sunburst {
  position: absolute;
  inset: -30%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(246, 201, 76, .18) 0deg 7deg,
    transparent 7deg 14deg
  );
  -webkit-mask: radial-gradient(circle at center, #000 0%, transparent 55%);
  mask: radial-gradient(circle at center, #000 0%, transparent 55%);
  animation: spin 90s linear infinite;
  pointer-events: none;
}

/* letter-by-letter hero animation */
.word { display: inline-block; white-space: nowrap; }
.ch {
  display: inline-block;
  animation: ch-in .55s cubic-bezier(.34, 1.56, .64, 1) both;
  animation-delay: calc(var(--i, 0) * 35ms);
  will-change: transform;
}
@keyframes ch-in {
  from { opacity: 0; transform: translateY(.6em) rotate(8deg) scale(.7); }
  to   { opacity: 1; transform: none; }
}

/* spinning circular text badge */
.spin-badge {
  position: absolute;
  left: clamp(12px, 6vw, 80px);
  bottom: 70px;
  width: 130px; height: 130px;
  z-index: 2;
}
.spin-badge svg {
  width: 100%; height: 100%;
  animation: spin 14s linear infinite;
  overflow: visible;
}
.spin-badge text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  fill: var(--ink);
}
.spin-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.spin-center .logo-mark { width: 48px; height: 48px; font-size: 1.25rem; }

/* daisy flowers, like the "Carry On" / "Summer Sale" refs */
.flower {
  position: absolute;
  pointer-events: none;
  animation: flower-bob 6s ease-in-out infinite;
}
.fl-1 { width: 64px; top: 18%; left: 7%; z-index: 1; }
.fl-2 { width: 44px; bottom: 24%; right: 6%; z-index: 1; animation-delay: -3s; }
.fl-3 { width: 70px; top: 36px; right: 48px; opacity: .9; }
.fl-4 { width: 46px; bottom: 40px; left: 56px; opacity: .9; animation-delay: -2s; }
@keyframes flower-bob {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-10px); }
}

/* sparkle cursor trail */
.trail {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  font-size: 15px;
  transform: translate(-50%, -50%);
  animation: trail-fade .7s ease-out forwards;
}
@keyframes trail-fade {
  to { transform: translate(-50%, -160%) scale(.2) rotate(90deg); opacity: 0; }
}

/* confetti burst (logo easter egg) */
.confetti {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  font-size: 18px;
  transform: translate(-50%, -50%);
  animation: confetti-fly .9s cubic-bezier(.17, .67, .43, 1) forwards;
}
@keyframes confetti-fly {
  to {
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot));
    opacity: 0;
  }
}

/* flat retro deco shapes */
.deco { position: absolute; border-radius: 50%; pointer-events: none; }
.deco-circle-1 {
  width: 340px; height: 340px;
  background: var(--yellow);
  opacity: .35;
  top: -100px; left: -100px;
}
.deco-circle-2 {
  width: 260px; height: 260px;
  background: var(--blue);
  opacity: .25;
  bottom: -60px; right: -60px;
}
.deco-ring {
  width: 180px; height: 180px;
  border: 14px solid var(--blue);
  opacity: .25;
  top: 22%; right: 12%;
  animation: spin 30s linear infinite;
  border-top-color: transparent;
}
@keyframes spin { to { transform: rotate(360deg); } }

.sparkle {
  position: absolute;
  color: var(--pink);
  font-size: 2rem;
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.sp-1 { top: 24%; left: 12%; color: var(--blue); animation-delay: -1s; }
.sp-2 { top: 62%; left: 7%; color: var(--yellow); font-size: 1.4rem; animation-delay: -2s; }
.sp-3 { top: 30%; right: 8%; color: var(--pink); font-size: 1.6rem; }
.sp-4 { top: 18%; left: 10%; color: var(--yellow); }
.sp-5 { bottom: 20%; right: 10%; color: var(--cream); animation-delay: -1.5s; }
@keyframes twinkle {
  0%,100% { transform: scale(1) rotate(0deg); opacity: .9; }
  50% { transform: scale(1.35) rotate(20deg); opacity: .5; }
}

/* ---------- sections ---------- */
section { padding: 110px 24px; max-width: 1150px; margin: 0 auto; }

.section-head { margin-bottom: 56px; }
.section-kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--pink);
  margin-bottom: 14px;
}
.section-head h2, .about h2, .cta h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
}
/* alternate section headline colors */
.services .funk, .work .funk, .about .funk {
  color: var(--blue);
  text-shadow:
    1px 1px 0 var(--pink), 2px 2px 0 var(--pink), 3px 3px 0 var(--pink),
    4px 4px 0 var(--pink), 5px 5px 0 var(--pink), 6px 6px 0 var(--pink);
}

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: var(--card-accent, var(--pink));
}
.card:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--ink);
}
.card-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.card:hover .card-emoji { display: inline-block; animation: pop .4s ease; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: #5a4a6e; font-size: .95rem; }
.card-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--card-accent, var(--pink));
}

/* ---------- work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.work-item {
  text-decoration: none;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.work-item:hover { transform: translate(-3px,-3px); box-shadow: 10px 10px 0 var(--ink); }
.work-thumb {
  aspect-ratio: 16 / 10;
  background: var(--wi);
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.work-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249,242,228,.28), transparent 45%);
}
.work-item:hover .work-thumb span { animation: pop .4s ease; display: inline-block; }
@keyframes pop { 50% { transform: scale(1.35) rotate(-8deg); } }
.work-meta { padding: 18px 22px; display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 4px; }
.work-meta h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; }
.work-meta p { color: #5a4a6e; font-size: .85rem; }

/* ---------- about ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text { margin-top: 20px; color: #5a4a6e; font-size: 1.05rem; max-width: 480px; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--ink);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--pink);
  text-shadow: 2px 2px 0 var(--blue);
}
.stat:nth-child(2) strong { color: var(--blue); text-shadow: 2px 2px 0 var(--pink); }
.stat:nth-child(3) strong { color: var(--yellow-deep); text-shadow: 2px 2px 0 var(--blue); }
.stat:nth-child(4) strong { color: var(--purple); text-shadow: 2px 2px 0 var(--yellow-deep); }
.stat span { font-size: .85rem; color: #5a4a6e; }

/* ---------- cta ---------- */
.cta {
  position: relative;
  text-align: center;
  background: var(--pink);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 100px 24px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.cta-inner { position: relative; z-index: 2; }
.cta p { margin: 20px 0 36px; opacity: .92; font-size: 1.1rem; font-weight: 500; }

/* ---------- footer ---------- */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  font-size: .9rem;
  color: #5a4a6e;
}
.footer-links a { color: var(--ink); font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: var(--pink); }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- mobile ---------- */
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 4px 4px 0 var(--ink);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .logo-name { font-size: .85rem; }
  .funk, .funk-light { text-shadow:
    1px 1px 0 var(--blue), 2px 2px 0 var(--blue), 3px 3px 0 var(--blue), 4px 4px 0 var(--blue); }
  .funk-light { text-shadow:
    1px 1px 0 var(--ink), 2px 2px 0 var(--ink), 3px 3px 0 var(--ink), 4px 4px 0 var(--ink); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-badge { display: none; }
  .spin-badge { display: none; }
  .fl-1 { width: 44px; top: 14%; left: 4%; }
  .fl-2 { display: none; }
  section { padding: 80px 20px; }
}
