:root {
  --bg: #080908;
  --charcoal: #141613;
  --ink: #1a1b17;
  --panel: #1d211e;
  --panel-2: #222d33;
  --yellow: #fcff00;
  --cyan: #5cfffb;
  --pink: #ff5c7e;
  --green: #7dff6a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Rubik", "Arial Rounded MT Bold", "Arial Black", system-ui, sans-serif;
  --font-body: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 10%, rgba(92, 255, 251, 0.12), transparent 25rem),
    linear-gradient(180deg, #060706 0%, #11130f 48%, #070807 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img,
video,
svg { display: block; }

img { max-width: 100%; }

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

button,
input {
  font: inherit;
}

.wrap {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font: 800 0.78rem/1 var(--font-head);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  max-width: 920px;
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 8vw, 7.4rem);
  line-height: 0.88;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.section-lede {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 28px), 1180px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 9, 8, 0.55);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 9, 8, 0.9);
  border-color: rgba(252, 255, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 5px 9px 5px 6px;
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  position: relative;
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  animation: bowlSpin 10s linear infinite;
}

.brand-mark::before {
  content: "";
  width: 18px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: rotate(-25deg) translate(9px, -9px);
  transform-origin: center;
}

@keyframes bowlSpin {
  to { transform: rotate(360deg); }
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 30px);
}

.nav a,
.mobile-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease);
}

.nav a:hover::after,
.mobile-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.menu-open .menu-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 24;
  inset: 0;
  padding: 110px 28px 34px;
  background: rgba(8, 9, 8, 0.96);
}

.mobile-nav a {
  display: block;
  width: max-content;
  margin: 0 0 28px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 10vw, 4.6rem);
  line-height: 0.9;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 21px;
  overflow: hidden;
  border: 1px solid rgba(252, 255, 0, 0.45);
  border-radius: 999px;
  background: var(--yellow);
  color: #050505;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(252, 255, 0, 0);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(252, 255, 0, 0.2);
}

.btn:hover svg { transform: translateX(4px) rotate(-8deg); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: rgba(92, 255, 251, 0.56);
  box-shadow: 0 15px 50px rgba(92, 255, 251, 0.12);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 0 46px;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 46%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: end;
}

.hero-inner > div:first-child { order: 2; }

.hero-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(4.1rem, 14vw, 11.2rem);
  line-height: 0.75;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-side {
  order: 1;
  justify-self: end;
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.menu-section {
  background: linear-gradient(180deg, #080908 0%, #1a1b17 100%);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 76px);
}

.section-head .section-lede {
  margin-bottom: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(252, 255, 0, 0.48);
  background: rgba(255, 255, 255, 0.085);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(252, 255, 0, 0.18), rgba(92, 255, 251, 0.1));
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transform: scale(1);
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-media img { transform: scale(1.06) rotate(-1deg); }

.placeholder-bowl {
  height: 100%;
  display: grid;
  place-items: center;
}

.placeholder-bowl svg {
  width: min(62%, 210px);
  color: var(--yellow);
  filter: drop-shadow(0 20px 38px rgba(252, 255, 0, 0.1));
}

.product-body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-name {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.price {
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
}

.small-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

.small-link:hover { color: var(--yellow); }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--yellow);
  color: #050505;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee span {
  padding: 18px 30px;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.announcement {
  background: #0b0c0a;
}

.announcement-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(92, 255, 251, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 255, 251, 0.12), rgba(255, 92, 126, 0.08)),
    #141613;
}

.announce-title {
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.announce-lede {
  margin: 0 0 30px;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.photo-pill {
  margin: 0;
  justify-self: center;
  width: min(100%, 340px);
  position: relative;
}

.photo-pill img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(252, 255, 0, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.photo-pill figcaption {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: max-content;
  padding: 10px 18px;
  border: 1px solid rgba(5, 5, 5, 0.2);
  border-radius: 999px;
  background: var(--yellow);
  color: #050505;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.reviews {
  background: var(--panel-2);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 24px 0;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.review-card figcaption {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.about {
  background:
    linear-gradient(180deg, #11130f 0%, #080908 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.3rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact {
  background: #070807;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: stretch;
}

.contact-info {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(252, 255, 0, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-info h2 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.contact-info p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.5;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-weight: 900;
}

.contact-list small {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.location-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(252, 255, 0, 0.94), rgba(92, 255, 251, 0.78));
  color: #080908;
}

.location-badge {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 14px;
  border: 2px solid #080908;
  border-radius: 999px;
  font: 900 0.74rem/1 var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.82;
  text-transform: uppercase;
}

#location-map {
  flex: 1;
  min-height: 280px;
  border: 2px solid rgba(8, 9, 8, 0.35);
  border-radius: 8px;
  z-index: 1;
}

.location-card p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}

.location-card a:hover { text-decoration: underline; }

.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 15vw, 13rem);
  line-height: 0.72;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: block; visibility: hidden; opacity: 0; transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease); }
  .menu-open .mobile-nav { visibility: visible; opacity: 1; }

  .hero-inner,
  .announcement-panel,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-side { max-width: 520px; }
  .product-grid,
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { display: block; }
  .photo-pill { width: min(100%, 300px); margin-top: 8px; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .site-header { top: 10px; width: calc(100% - 18px); gap: 10px; }
  .brand { font-size: 0.92rem; }
  .header-actions .btn { display: none; }
  .hero { min-height: 94svh; padding-bottom: 28px; }
  .hero h1 { font-size: clamp(4rem, 23vw, 7rem); white-space: normal; }
  .hero-side { padding: 18px; }
  .scroll-cue { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .product-grid,
  .review-grid,
  .footer-bottom { grid-template-columns: 1fr; }
  .product-body { padding: 18px; }
  .announcement-panel { padding: 24px; }
  .photo-pill { width: min(100%, 250px); }
  .photo-pill figcaption { font-size: 0.8rem; padding: 8px 14px; bottom: 18px; }
  .location-card { gap: 30px; }
  .review-card { min-height: 250px; }
  .footer-top { display: block; }
  .footer-links { justify-content: flex-start; margin-top: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
