:root {
  --neon-lime: #c8ff00;
  --hot-pink: #f2058c;
  --hot-red: #ff3131;
  --electric-blue: #00aeea;
  --award-gold: #ffd43b;
  --acid-purple: #5b178a;
  --deep-purple: #3b005d;
  --ink: #130f24;
  --surface: #fffdf7;
  --surface-warm: #fff3dc;
  --soft-panel: #ffffff;
  --muted: #4e455f;
  --shadow-hard: 8px 8px 0 rgba(19, 15, 36, 0.95);
  --shadow-soft: 0 24px 70px rgba(19, 15, 36, 0.14);
  --radius-large: 32px;
  --radius-medium: 20px;
  --max-width: 1280px;
  --font-main: "Arial Black", "Trebuchet MS", Impact, Arial, sans-serif;
  --font-body: "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(200, 255, 0, 0.28), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(0, 174, 234, 0.28), transparent 28%),
    radial-gradient(circle at 54% 100%, rgba(242, 5, 140, 0.18), transparent 32%),
    linear-gradient(135deg, #fffdf7 0%, #fff3dc 48%, #f1fbff 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(19, 15, 36, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 15, 36, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 4px solid var(--hot-pink);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 999;
  background: var(--ink);
  color: var(--surface);
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid rgba(19, 15, 36, 0.18);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  width: min(280px, 42vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--neon-lime);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 5px 5px 0 var(--hot-pink);
}

.nav-toggle-label span {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list,
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-list > li {
  position: relative;
}

.nav-list a,
.submenu-toggle {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.nav-list a:hover,
.submenu-toggle:hover {
  background: var(--ink);
  color: var(--surface);
}

.submenu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 240px;
  padding: 0.7rem;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--soft-panel);
  box-shadow: var(--shadow-hard);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu a {
  width: 100%;
  justify-content: flex-start;
  border-radius: 14px;
  color: var(--ink);
}

.submenu a:hover {
  background: var(--hot-pink);
  color: var(--surface);
}

.intro-section {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 3.5rem auto 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 1.5rem;
  align-items: stretch;
}

.intro-copy,
.quick-award-card {
  border: 4px solid var(--ink);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-hard), var(--shadow-soft);
}

.intro-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top right, rgba(242, 5, 140, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 220, 0.96));
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--hot-pink);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-main);
  font-size: clamp(2.9rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow:
    4px 4px 0 rgba(255, 212, 59, 0.9),
    8px 8px 0 rgba(0, 174, 234, 0.38);
}

.intro-copy p:last-child {
  max-width: 800px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.55;
  font-weight: 800;
}

.quick-award-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, var(--deep-purple), var(--acid-purple));
  color: var(--surface);
}

.quick-award-card span {
  width: 76px;
  height: 76px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--award-gold);
  color: var(--ink);
  font-size: 2.1rem;
  box-shadow: 5px 5px 0 var(--hot-pink);
}

.quick-award-card p {
  margin: 1.5rem 0 0;
  font-family: var(--font-main);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-section {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 2rem auto 3rem;
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border: 5px solid var(--ink);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(242, 5, 140, 0.9), rgba(91, 23, 138, 0.88) 52%, rgba(0, 174, 234, 0.88));
  box-shadow: var(--shadow-hard), 0 0 60px rgba(0, 174, 234, 0.2);
}

.award-strip,
.content-section {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 3rem auto;
}

.award-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 4px solid var(--ink);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, var(--award-gold), var(--neon-lime));
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}

.award-badge {
  width: 76px;
  height: 76px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--award-gold);
  font-size: 2.2rem;
  box-shadow: 5px 5px 0 rgba(242, 5, 140, 0.75);
}

.award-card h2,
.award-card p,
.section-heading h2,
.section-heading p,
.feature-card h3,
.feature-card p,
.site-footer h2,
.site-footer p {
  margin-top: 0;
}

.award-card h2 {
  margin-bottom: 0.35rem;
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.award-card p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 1.5rem;
  border: 4px solid var(--ink);
  border-radius: var(--radius-medium);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}

.feature-card:nth-child(1) {
  background: var(--hot-pink);
  color: var(--surface);
}

.feature-card:nth-child(2) {
  background: var(--electric-blue);
}

.feature-card:nth-child(3) {
  background: var(--neon-lime);
}

.feature-card h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-main);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.feature-card p {
  margin-bottom: 0;
  line-height: 1.55;
  font-weight: 900;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 1rem 1.5rem;
  color: var(--surface);
  background:
    linear-gradient(90deg, rgba(200, 255, 0, 0.16), transparent 18%, rgba(242, 5, 140, 0.2) 55%, rgba(0, 174, 234, 0.18)),
    var(--ink);
  border-top: 3px solid rgba(19, 15, 36, 0.28);
}

.footer-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner h2 {
  margin-bottom: 0.5rem;
  font-family: var(--font-main);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.footer-inner p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.82);
  line-height: 1.55;
  font-weight: 800;
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.social-nav a {
  width: 52px;
  height: 52px;
  border: 3px solid var(--surface);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--hot-pink);
  color: var(--surface);
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 5px 5px 0 rgba(200, 255, 0, 0.85);
}

.social-nav a:nth-child(2) {
  background: var(--electric-blue);
  color: var(--ink);
}

.social-nav a:nth-child(3) {
  background: var(--award-gold);
  color: var(--ink);
}

.social-nav a:nth-child(4) {
  background: var(--acid-purple);
}

.footer-bottom {
  width: min(var(--max-width), 100%);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
  color: rgba(255, 253, 247, 0.74);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 82px;
  }

  .site-logo {
    width: min(220px, 48vw);
    max-height: 60px;
  }

  .nav-toggle-label {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 1rem;
    border: 4px solid var(--ink);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow-hard);
  }

  .nav-toggle:checked ~ .site-nav {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0.55rem;
  }

  .nav-list a,
  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
    background: rgba(19, 15, 36, 0.07);
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 0.55rem;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    display: block;
  }

  .intro-section {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  h1 {
    max-width: 13ch;
  }

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

  .footer-inner {
    flex-direction: column;
  }

  .social-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: min(100% - 1rem, var(--max-width));
    gap: 0.75rem;
  }

  .site-logo {
    width: min(185px, 50vw);
    max-height: 54px;
  }

  .intro-section,
  .hero-section,
  .award-strip,
  .content-section {
    width: min(100% - 1rem, var(--max-width));
  }

  .intro-copy,
  .quick-award-card,
  .hero-image,
  .award-card,
  .feature-card {
    border-width: 3px;
    box-shadow: 5px 5px 0 rgba(19, 15, 36, 0.95);
  }

  .award-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    border-radius: 22px;
  }
}


/* Updated footer, award explanation, and where-to-buy/contact additions */

.quick-award-card {
  scroll-margin-top: 120px;
}

#award,
#loud-mouth-bites,
#where-to-buy,
#contact {
  scroll-margin-top: 120px;
}

.award-card {
  align-items: flex-start;
}

.award-card .eyebrow {
  color: var(--acid-purple);
}

.award-card p:not(.eyebrow) {
  max-width: 940px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.5;
  font-weight: 900;
}

.buy-section {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 3rem auto;
}

.buy-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  border: 4px solid var(--ink);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at top right, rgba(0, 174, 234, 0.16), transparent 34%),
    var(--soft-panel);
  box-shadow: var(--shadow-hard), var(--shadow-soft);
}

.buy-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.buy-card p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 800;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-main);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-primary {
  background: var(--hot-pink);
  color: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(210px, auto) auto;
  align-items: start;
}

.footer-brand h2,
.footer-contact h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-main);
  text-transform: uppercase;
}

.footer-brand h2 {
  font-size: 1.8rem;
}

.footer-contact h3 {
  font-size: 1.25rem;
}

.footer-brand p,
.footer-contact p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 253, 247, 0.82);
  line-height: 1.55;
  font-weight: 800;
}

.footer-contact {
  font-style: normal;
}

.footer-contact a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.social-nav a:nth-child(3) {
  background: var(--award-gold);
  color: var(--ink);
}

@media (max-width: 1020px) {
  .nav-list {
    gap: 0.2rem;
  }

  .nav-list a,
  .submenu-toggle {
    padding-inline: 0.7rem;
  }
}

@media (max-width: 900px) {
  .buy-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .buy-card .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .buy-section {
    width: min(100% - 1rem, var(--max-width));
  }

  .buy-card {
    border-width: 3px;
    box-shadow: 5px 5px 0 rgba(19, 15, 36, 0.95);
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
