:root {
  --bg: #020202;
  --bg-2: #0f071f;
  --ink: #ffffff;
  --brand: #612dae;
  --brand-2: #7c43d2;
  --display-font: "Bebas Neue", sans-serif;
  --soft: #d7caef;
  --lux: #b898ef;
  --card: #121212;
  --ok: #37d972;
  --warn: #ff6f6f;
  --line: #ffffff2b;
  --shadow: 0 14px 40px #0000008a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, #612dae55 0%, transparent 42%),
    radial-gradient(circle at 95% 15%, #ffffff12 0%, transparent 35%),
    linear-gradient(140deg, var(--bg), var(--bg-2));
  min-height: 100vh;
  line-height: 1.5;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#ffffff17 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  opacity: 0.28;
  z-index: -1;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 3vw, 44px);
  background: #0a0a0bcf;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.promo-ticker {
  border-bottom: 1px solid #ffffff2f;
  border-top: 1px solid #ffffff2f;
  overflow: hidden;
  background: #14101d;
}

.promo-track {
  display: flex;
  width: max-content;
  gap: 26px;
  padding: 10px 16px;
  animation: ticker 32s linear infinite;
}

.promo-track span {
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}

.logo-image {
  width: clamp(44px, 5.2vw, 58px);
  height: clamp(44px, 5.2vw, 58px);
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid #ffffff3d;
  background: #ffffff0a;
  padding: 4px;
}

.logo-text {
  font-family: var(--display-font);
  letter-spacing: 0.02em;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 800;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  gap: 18px;
}

.top-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.top-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

main {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 48px);
  padding: clamp(28px, 5vw, 64px) 0 24px;
  align-items: center;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #f4f4f4;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: var(--display-font);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.05rem, 5.2vw, 4.2rem);
  max-width: 20ch;
}

h1 span {
  display: inline-block;
  color: #c6a9ff;
  text-shadow: 0 0 26px #612dae80;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.14rem);
  margin: 18px 0 0;
  max-width: 58ch;
  color: #ebebeb;
}

.hero-tagline {
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft);
  font-weight: 700;
}

.fun-badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fun-badges span {
  border: 1px solid #ffffff3d;
  background: linear-gradient(125deg, #612dae42, #ffffff12);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 2px solid var(--ink);
  border-radius: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: "Manrope", sans-serif;
  gap: 8px;
}

.btn-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: #e9dcff;
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: #ffffff12;
  color: #fff;
}

.btn-whats {
  background: #1fca63;
  color: #08220f;
  border-color: #134e27;
}

.status-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.status-card {
  border: 2px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
}

.label {
  margin: 0;
  font-size: 0.84rem;
  color: #cccccc;
}

.status-text {
  margin: 3px 0 0;
  font-weight: 800;
}

.status-open {
  color: var(--ok);
}

.status-closed {
  color: var(--warn);
}

.hero-art {
  position: relative;
  min-height: 380px;
}

.hero-photo-frame {
  margin: 0 0 12px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #ffffff38;
  box-shadow: 0 10px 26px #00000070;
  background: #0f0f10;
}

.hero-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-card {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 26px;
  background: #131313;
  box-shadow: 0 8px 22px #00000066;
  padding: 22px;
  z-index: 2;
}

.signature-stamp {
  position: absolute;
  right: 8px;
  top: -18px;
  z-index: 3;
  border: 1px solid #ffffff4d;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #f0e8ff;
  background: #3a1f66;
}

.product-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.product-card li {
  margin-bottom: 8px;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  margin: 0;
  border-radius: 999px;
  padding: 5px 12px;
  background: #612dae;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.blob-1 {
  width: 260px;
  height: 260px;
  background: #612dae7d;
  top: -40px;
  left: -30px;
}

.blob-2 {
  width: 190px;
  height: 190px;
  background: #ffffff3d;
  right: -24px;
  bottom: -30px;
}

.quick-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-card {
  border: 1px solid #ffffff45;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(140deg, #1a1a1a, #24113f);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-3px);
}

.quick-card strong {
  display: block;
  font-size: 0.98rem;
}

.quick-card span {
  display: block;
  margin-top: 5px;
  font-size: 0.86rem;
  color: #d6d6d6;
}

section {
  margin-top: clamp(28px, 4vw, 46px);
}

.highlights h2,
.conversion h2,
.hours h2,
.location h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.grid-4 {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip {
  border: 2px solid #ffffff33;
  border-radius: 20px;
  padding: 14px;
  background: linear-gradient(130deg, #111111, #1f1235);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-strip article {
  border: 1px solid #ffffff22;
  border-radius: 14px;
  padding: 12px;
  background: #ffffff08;
}

.trust-strip strong {
  font-size: 0.95rem;
}

.trust-strip p {
  margin: 5px 0 0;
  color: #dadada;
  font-size: 0.9rem;
}

.collection-banner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 12px;
}

.collection-card {
  border: 2px solid #ffffff36;
  border-radius: 18px;
  padding: 16px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 8px 22px #00000066;
}

.collection-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.collection-card span {
  margin-top: 8px;
  color: #e0e0e0;
  font-size: 0.92rem;
}

.collection-card.c1 {
  background: linear-gradient(140deg, #141414, #2b1652);
}

.collection-card.c2 {
  background: linear-gradient(140deg, #1c1032, #111111);
}

.collection-card.c3 {
  background: linear-gradient(140deg, #111111, #5b2ca7);
}

.card {
  background: var(--card);
  border: 2px solid #ffffff1f;
  border-radius: 18px;
  padding: 18px;
}

.card p {
  color: #e5e5e5;
}

.card-wide {
  grid-column: span 2;
  background: linear-gradient(130deg, #151515, #271344);
}

.card-accent {
  border-color: #c5a7ff;
  background: linear-gradient(140deg, #251046, #181818);
}

.card h3 {
  font-size: 1.15rem;
}

.conversion {
  background: linear-gradient(135deg, #1f1333, #0d0d0d);
  border: 2px solid #ffffff2e;
  border-radius: 22px;
  padding: clamp(18px, 4vw, 34px);
}

.conversion p {
  margin: 12px 0 0;
  font-size: 1.06rem;
}

.vibe-board h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

.vibe-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.8fr;
  gap: 12px;
}

.vibe-card {
  border-radius: 20px;
  border: 2px solid #ffffff3b;
  padding: 18px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.vibe-card h3 {
  font-size: 1.25rem;
}

.kicker {
  margin: 0 0 8px;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  font-weight: 800;
  color: #ececec;
  font-family: var(--display-font);
}

.vibe-card.v1 {
  background: radial-gradient(circle at 10% 15%, #ffffff1f, transparent 40%),
    linear-gradient(135deg, #612dae, #120927);
}

.vibe-card.v2 {
  background: linear-gradient(145deg, #101010, #3a1c66);
}

.vibe-card.v3 {
  background: linear-gradient(145deg, #1f1f1f, #612dae);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stats article {
  border: 1px solid #ffffff2f;
  border-radius: 16px;
  padding: 14px;
  background: #121212;
}

.stats strong {
  display: block;
  font-size: 1.32rem;
  color: #d6bcff;
}

.stats span {
  display: block;
  margin-top: 2px;
  color: #d2d2d2;
  font-size: 0.92rem;
}

.testimonial-band {
  border: 2px solid #ffffff2d;
  border-radius: 22px;
  padding: clamp(18px, 4vw, 34px);
  background: linear-gradient(150deg, #141414, #1d1033);
}

.testimonial-band h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.testimonial-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.testimonial-grid article {
  border: 1px solid #ffffff2f;
  border-radius: 14px;
  padding: 14px;
  background: #ffffff09;
}

.testimonial-grid p {
  margin: 0;
  color: #f1f1f1;
  font-size: 0.95rem;
}

.testimonial-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--lux);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.premium-cta {
  border: 2px solid #d8beff79;
  border-radius: 22px;
  padding: clamp(20px, 4vw, 34px);
  background: linear-gradient(125deg, #250f4d, #0f0f10);
  position: relative;
  overflow: hidden;
}

.premium-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 44%, #ffffff0d 50%, transparent 56%);
  transform: translateX(-100%);
  animation: shine 9s linear infinite;
  pointer-events: none;
}

.premium-cta p {
  margin: 8px 0 0;
  color: #ececec;
  max-width: 58ch;
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hours-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hours-box {
  border: 2px solid #ffffff4f;
  border-radius: 18px;
  overflow: hidden;
  background: #101010;
  box-shadow: var(--shadow);
}

.hours-box h3 {
  margin: 0;
  padding: 12px 14px;
  background: linear-gradient(120deg, #612dae, #7c43d2);
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hours-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-box li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  background: #111111;
}

.hours-box li:nth-child(odd) {
  background: #191919;
}

.hours-box li strong {
  font-size: 1.02rem;
  color: #ffffff;
}

.location p {
  margin: 10px 0 0;
  font-size: 1.06rem;
  font-weight: 500;
}

.storefront-frame {
  margin: 14px 0 0;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #ffffff4f;
  box-shadow: 0 10px 26px #00000070;
}

.storefront-photo {
  width: 100%;
  height: clamp(220px, 34vw, 340px);
  object-fit: cover;
  display: block;
}

.map-frame {
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #ffffff4f;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 330px;
  border: 0;
  display: block;
  filter: saturate(1.1) contrast(1.02);
}

.floating-whats {
  position: fixed;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  min-height: 48px;
  padding: 10px 16px;
  background: #1fca63;
  border: 2px solid #134e27;
  text-decoration: none;
  color: #08220f;
  font-weight: 900;
  box-shadow: var(--shadow);
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-sticky-cta {
  display: none;
}

.site-footer {
  padding: 34px 16px 100px;
  text-align: center;
  color: #c8c8c8;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.14s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes shine {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: auto;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vibe-grid,
  .stats,
  .trust-strip,
  .collection-banner,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .top-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .site-header .btn-whats {
    display: none;
  }

  .status-cards,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .card-wide {
    grid-column: span 1;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    width: 100%;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .vibe-grid,
  .stats,
  .trust-strip,
  .collection-banner,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .signature-stamp {
    right: 0;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 36;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: #0d0d0ef2;
    border-top: 1px solid var(--line);
    backdrop-filter: blur(8px);
  }

  .floating-whats {
    bottom: 80px;
  }
}
