:root {
  --ink: #111426;
  --ink-soft: #1c2140;
  --paper: #f7f7fb;
  --white: #ffffff;
  --red: #f02a3c;
  --red-dark: #c60e2c;
  --purple: #7a35ff;
  --cyan: #13c7e7;
  --yellow: #f6bf25;
  --text: #171a2e;
  --muted: #60647a;
  --line: #dfe1eb;
  --shadow: 0 22px 60px rgba(17, 20, 38, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .55rem;
  padding: .45rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-align: center;
}
.announcement span:nth-child(even) { color: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 251, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 20, 38, .09);
}
.header-inner {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.brand-copy small { margin-top: .28rem; color: var(--purple); font-size: .68rem; font-weight: 900; letter-spacing: .11em; }
.site-nav { display: flex; align-items: center; gap: 1.8rem; font-weight: 800; }
.site-nav a { position: relative; font-size: .94rem; }
.site-nav a:not(.nav-cart)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-cart {
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4.4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 3.2rem;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  left: -7vw;
  top: 3rem;
  width: 280px;
  height: 280px;
  opacity: .18;
  background-image: radial-gradient(var(--purple) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--purple);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .17em;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: .98;
  letter-spacing: .012em;
}
h1 { max-width: 760px; font-size: clamp(3rem, 6vw, 5.6rem); text-transform: uppercase; }
h2 { font-size: clamp(2.35rem, 4.3vw, 4.2rem); text-transform: uppercase; }
.hero-lede { max-width: 660px; margin: 1.4rem 0 0; color: var(--muted); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); box-shadow: 0 12px 30px rgba(240, 42, 60, .26); }
.button-secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--ink); color: var(--white); }
.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.trust-list li { padding-right: .75rem; border-right: 1px solid var(--line); }
.trust-list li:last-child { border-right: 0; }
.trust-list strong, .trust-list span { display: block; }
.trust-list strong { color: var(--ink); font-size: .9rem; }
.trust-list span { color: var(--muted); font-size: .77rem; line-height: 1.35; }

.hero-visual {
  position: relative;
  min-height: 430px;
  border: 8px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 22px 22px 0 var(--purple), var(--shadow);
  overflow: hidden;
  background: var(--ink);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 20, 38, .36));
  pointer-events: none;
}
.hero-visual img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.hero-sticker {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  width: min(275px, calc(100% - 2.4rem));
  padding: .9rem 1rem;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 14px;
  transform: rotate(-2deg);
  box-shadow: 8px 8px 0 rgba(17, 20, 38, .9);
}
.hero-sticker span, .hero-sticker strong { display: block; }
.hero-sticker span { font-size: .72rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.hero-sticker strong { font-size: 1.05rem; line-height: 1.25; text-transform: uppercase; }

.category-strip {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: linear-gradient(90deg, var(--purple), #4d2ace 50%, var(--cyan));
  color: var(--white);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.category-strip::-webkit-scrollbar { display: none; }
.category-strip a {
  flex: 1 0 auto;
  min-width: 170px;
  padding: 1rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,.35);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.category-strip a:hover, .category-strip a:focus-visible { background: rgba(17, 20, 38, .22); }

.shop-section, .services-section, .faq-section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 5.4rem 0;
}
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-heading h2 { max-width: 760px; }
.section-summary { max-width: 420px; margin: 0; color: var(--muted); }
.text-link { flex: 0 0 auto; color: var(--purple); font-weight: 950; }
.text-link span { display: inline-block; transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(17, 20, 38, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { position: relative; aspect-ratio: 4 / 4.5; overflow: hidden; background: #e8e9f1; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-badge {
  position: absolute;
  left: .75rem;
  top: .75rem;
  padding: .35rem .55rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.product-badge-hot { background: var(--red); }
.product-body { display: flex; justify-content: space-between; gap: .75rem; padding: 1rem 1rem .65rem; }
.product-type { margin: 0 0 .25rem; color: var(--purple); font-size: .67rem; font-weight: 950; letter-spacing: .1em; }
.product-body h3 { margin: 0; font-size: .98rem; line-height: 1.25; }
.product-body h3 a:hover { color: var(--purple); }
.price { flex: 0 0 auto; margin: 0; color: var(--ink); font-size: .9rem; font-weight: 950; }
.product-action {
  margin: auto 1rem 1rem;
  padding: .72rem .8rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
}
.product-action:hover, .product-action:focus-visible { background: var(--purple); }

.shop-callouts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.callout {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  overflow: hidden;
  color: var(--white);
  border: 4px solid var(--ink);
  border-radius: var(--radius-md);
}
.callout::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -35px;
  top: -55px;
  border: 32px solid rgba(255,255,255,.15);
  border-radius: 50%;
}
.callout-purple { background: linear-gradient(135deg, #4c1ab8, var(--purple)); }
.callout-red { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.callout-kicker { position: relative; z-index: 1; font-size: .72rem; font-weight: 950; letter-spacing: .13em; }
.callout strong { position: relative; z-index: 1; max-width: 520px; margin-top: .4rem; font-size: clamp(1.55rem, 3vw, 2.4rem); line-height: 1.05; }
.callout-link { position: relative; z-index: 1; margin-top: 1rem; font-weight: 900; }

.custom-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 4rem;
  align-items: center;
  padding: 5.4rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}
.custom-intro p:not(.eyebrow) { max-width: 560px; color: #cdd0de; }
.process-list { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
}
.process-list > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--cyan);
  color: var(--ink);
  border-radius: 15px;
  font-weight: 950;
}
.process-list li:nth-child(2) > span { background: var(--yellow); }
.process-list li:nth-child(3) > span { background: var(--red); color: var(--white); }
.process-list h3 { margin: 0; font-size: 1.15rem; }
.process-list p { margin: .25rem 0 0; color: #bfc3d4; }

.services-section { padding-bottom: 3.4rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  position: relative;
  min-height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 9px 9px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover, .service-card:focus-visible { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--ink); }
.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -40px;
  right: -40px;
  border-radius: 50%;
  opacity: .18;
  background: repeating-linear-gradient(45deg, transparent 0 8px, currentColor 8px 12px);
}
.service-card-beats { color: var(--purple); }
.service-card-bbq { color: var(--red); }
.service-card-events { color: #087d95; }
.service-number { position: absolute; top: 1.2rem; left: 1.5rem; color: var(--ink); font-size: .75rem; font-weight: 950; letter-spacing: .12em; }
.service-label { margin: 0; font-size: .72rem; font-weight: 950; letter-spacing: .16em; }
.service-card h3 { margin: .3rem 0 .6rem; color: var(--ink); font-size: 1.75rem; line-height: 1.05; }
.service-card > p:not(.service-label) { margin: 0 0 1.3rem; color: var(--muted); }
.service-card > span:last-child { font-weight: 950; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 4rem; align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading p:last-child { color: var(--muted); }
.faq-heading a { color: var(--purple); font-weight: 850; }
.faq-list { display: grid; gap: .7rem; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 6px 20px rgba(17,20,38,.045); }
.faq-list summary { position: relative; padding: 1rem 3.2rem 1rem 1.15rem; cursor: pointer; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple);
  font-size: 1.45rem;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0; padding: 0 1.15rem 1.1rem; color: var(--muted); }

.final-cta {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(120deg, var(--purple), #4328a2 48%, var(--red));
  color: var(--white);
  border: 5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 14px 14px 0 var(--ink);
}
.final-cta h2 { max-width: 760px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.final-cta .eyebrow { color: var(--yellow); }
.final-actions { display: flex; flex: 0 0 255px; flex-direction: column; gap: .7rem; }
.button-light { background: var(--white); color: var(--ink); }
.button-outline-light { border-color: var(--white); color: var(--white); }
.button-outline-light:hover { background: var(--white); color: var(--ink); }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem max(1rem, calc((100vw - var(--max)) / 2));
  background: #0b0d18;
  color: var(--white);
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: Impact, sans-serif; font-size: 1.6rem; text-transform: uppercase; }
.footer-brand span { color: var(--cyan); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.footer-links, .footer-contact { display: grid; align-content: center; gap: .35rem; }
.footer-links a, .footer-contact a { color: #d6d8e4; }
.footer-links a:hover, .footer-contact a:hover { color: var(--cyan); }
.footer-contact { justify-items: end; text-align: right; }
.footer-contact p { margin: .4rem 0 0; color: #9296aa; font-size: .82rem; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@media (max-width: 1020px) {
  .site-nav { gap: 1rem; }
  .hero { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .hero-visual { min-height: 380px; box-shadow: 14px 14px 0 var(--purple), var(--shadow); }
  .hero-visual img { min-height: 380px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section { gap: 2rem; }
}

@media (max-width: 780px) {
  .announcement { font-size: .74rem; }
  .announcement span:nth-of-type(4), .announcement span:nth-of-type(5) { display: none; }
  .header-inner { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 1.2rem; }
  .brand-copy small { font-size: .58rem; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 10px;
    background: var(--ink);
    border: 0;
    border-radius: 12px;
  }
  .menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--white); border-radius: 99px; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: .7rem;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem .7rem; }
  .site-nav a::after { display: none; }
  .nav-cart { text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 2.8rem; }
  h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero-visual { min-height: 330px; box-shadow: 10px 10px 0 var(--purple), var(--shadow); }
  .hero-visual img { min-height: 330px; }
  .section-heading { align-items: start; flex-direction: column; }
  .shop-callouts, .custom-section, .faq-section { grid-template-columns: 1fr; }
  .custom-section { gap: 2rem; padding-top: 4rem; padding-bottom: 4rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 315px; }
  .faq-heading { position: static; }
  .final-cta { align-items: stretch; flex-direction: column; padding: 2rem; }
  .final-actions { flex-basis: auto; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-contact { justify-items: start; text-align: left; }
}

@media (max-width: 520px) {
  .announcement { justify-content: flex-start; white-space: nowrap; overflow: hidden; }
  .announcement span:nth-of-type(3) { display: none; }
  .brand-copy small { display: none; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-list { grid-template-columns: 1fr; }
  .trust-list li { padding: .6rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-list li:last-child { border-bottom: 0; }
  .hero-visual { min-height: 290px; }
  .hero-visual img { min-height: 290px; }
  .hero-sticker { right: .8rem; bottom: .8rem; }
  .shop-section, .services-section, .faq-section { padding: 4rem 0; }
  .product-grid { grid-template-columns: 1fr; }
  .shop-callouts { grid-template-columns: 1fr; }
  .callout { min-height: 220px; padding: 1.4rem; }
  .process-list li { grid-template-columns: 58px 1fr; padding: 1rem; }
  .process-list > li > span { width: 48px; height: 48px; }
  .final-cta { margin-bottom: 3.5rem; padding: 1.5rem; box-shadow: 8px 8px 0 var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
