@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --bg: #080713;
  --panel: rgba(255, 255, 255, .075);
  --panel-strong: rgba(255, 255, 255, .11);
  --line: rgba(110, 231, 255, .30);
  --neon: #6ee7ff;
  --green: #ff7ad9;
  --mint: #9b8cff;
  --cream: #f8f2ff;
  --muted: rgba(248, 242, 255, .74);
  --dark: #10081f;
  --orange: #ffb84d;
  --pink: #ff5ec4;
  --blue: #6ee7ff;
  --radius: 26px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 8%, rgba(110, 231, 255, .22), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 217, .20), transparent 28%),
    radial-gradient(circle at 50% 88%, rgba(255, 184, 77, .12), transparent 36%),
    linear-gradient(180deg, #0c0920 0%, #151032 48%, #05030a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(110, 231, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.08));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.035), transparent);
  transform: translateX(-100%);
  animation: shimmer 10s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 45% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(110, 231, 255, .16);
  background: rgba(8, 7, 19, .78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #10081f;
  background: linear-gradient(135deg, var(--neon), var(--green));
  box-shadow: 0 0 24px rgba(110, 231, 255, .26);
  font-family: "Permanent Marker", cursive;
  font-size: 1.1rem;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.social-brand-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-brand-link {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #10081f;
  background: linear-gradient(135deg, var(--neon), var(--green));
  box-shadow: 0 0 24px rgba(110, 231, 255, .20);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .18s ease, filter .18s ease;
  overflow: hidden;
  font-weight: 1000;
  font-size: .72rem;
  letter-spacing: -.03em;
}

.social-brand-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.social-mark {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: "Permanent Marker", cursive;
  font-size: 1rem;
}

.social-discord .social-mark {
  font-size: .74rem;
  letter-spacing: -.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: rgba(248, 242, 255, .76);
  font-size: .92rem;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--cream);
  background: rgba(110, 231, 255, .12);
  transform: translateY(-1px);
}

.nav-cta {
  color: #10081f !important;
  background: linear-gradient(135deg, var(--neon), var(--green)) !important;
  box-shadow: 0 12px 30px rgba(255, 122, 217, .18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(110, 231, 255, .35);
  border-radius: 14px;
  color: var(--cream);
  background: rgba(16, 8, 31, .78);
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

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

.hero {
  padding: clamp(54px, 8vw, 110px) 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .82fr);
  gap: 34px;
  align-items: center;
}

.hero-intro {
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero-intro h1 {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--neon);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1, h2, h3 { line-height: 1.02; }

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(3rem, 8vw, 7.5rem);
  letter-spacing: -.08em;
}

.marker {
  font-family: "Permanent Marker", cursive;
  color: var(--neon);
  letter-spacing: -.03em;
  text-shadow: 0 0 32px rgba(110, 231, 255, .25);
}

.lead {
  margin: 24px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-cartoon {
  display: block;
  margin: 26px auto 0;
  width: min(340px, 78vw);
  max-width: 100%;
  padding: 0;
  border-radius: 28px;
  border: 1px solid rgba(110, 231, 255, .30);
  background:
    radial-gradient(circle at top left, rgba(110, 231, 255, .14), transparent 36%),
    rgba(255, 255, 255, .07);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .28),
    0 0 34px rgba(110, 231, 255, .12);
  overflow: hidden;
  transform: rotate(-1deg);
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
  appearance: none;
  -webkit-appearance: none;
}

.hero-cartoon:hover {
  transform: rotate(-1deg) translateY(-2px) scale(1.01);
  filter: brightness(1.06);
}

.hero-cartoon img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 27px;
}

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

.hero-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-primary {
  color: #10081f;
  background: linear-gradient(135deg, var(--neon), var(--green));
  box-shadow: 0 16px 34px rgba(255, 122, 217, .22);
}

.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(110, 231, 255, .32);
  background: rgba(255, 255, 255, .055);
}

.hero-card {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border: 1px solid rgba(110, 231, 255, .28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 20%, rgba(110, 231, 255, .18), transparent 32%),
    radial-gradient(circle at 76% 22%, rgba(255, 122, 217, .13), transparent 30%),
    rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "GET\A BUDDAH";
  white-space: pre;
  position: absolute;
  right: -14px;
  bottom: -18px;
  color: rgba(110, 231, 255, .07);
  font-family: "Permanent Marker", cursive;
  font-size: 6.4rem;
  line-height: .78;
  transform: rotate(-6deg);
}

.ad-card {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(12, 8, 30, .68);
  border: 1px solid rgba(255, 255, 255, .12);
}

.ad-sticker {
  display: inline-flex;
  align-self: flex-start;
  padding: 9px 13px;
  border-radius: 999px;
  color: #10081f;
  background: var(--orange);
  font-weight: 1000;
  transform: rotate(-2deg);
  box-shadow: 0 14px 28px rgba(0,0,0,.26);
}

.ad-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -.06em;
}

.ad-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.02rem;
}

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

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(248, 242, 255, .86);
  font-weight: 750;
}

.mini-list li::before {
  content: "✦";
  color: var(--neon);
}

section { padding: 44px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.06em;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-grid,
.link-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.service-card,
.link-card,
.proof-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.service-card,
.proof-card {
  grid-column: span 4;
  padding: 22px;
  min-height: 220px;
}

.service-card.big,
.proof-card.big {
  grid-column: span 6;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(110, 231, 255, .12);
  border: 1px solid rgba(110, 231, 255, .24);
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.service-card h3,
.link-card h3,
.proof-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  letter-spacing: -.03em;
}

.service-card p,
.link-card p,
.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.link-card {
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
  padding: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 255, .55);
  background: var(--panel-strong);
}

.link-card::after {
  content: attr(data-short);
  position: absolute;
  right: 14px;
  bottom: 8px;
  color: rgba(255, 255, 255, .045);
  font-weight: 1000;
  letter-spacing: -.08em;
  font-size: 4.2rem;
  line-height: 1;
  pointer-events: none;
}

.project-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(110, 231, 255, .18);
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(110,231,255,.18), rgba(255,122,217,.08));
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 3, 10, .72), rgba(5, 3, 10, .08) 55%, rgba(5, 3, 10, .12));
  pointer-events: none;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .25s ease;
  filter: saturate(1.02) contrast(1.02);
}

.link-card:hover .project-thumb img {
  transform: scale(1.045);
}

.thumb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(16, 8, 31, .72);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--cream);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
}

.link-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  flex: 1;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  color: rgba(248, 242, 255, .86);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: .76rem;
  font-weight: 850;
}

.site-link {
  position: relative;
  z-index: 2;
  color: var(--neon);
  font-weight: 950;
  text-decoration: none;
  margin-top: auto;
}

.proof-number {
  color: var(--neon);
  font-size: 2.3rem;
  font-weight: 1000;
  letter-spacing: -.07em;
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact-panel {
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at top left, rgba(110, 231, 255, .15), transparent 36%),
    rgba(255, 255, 255, .07);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  letter-spacing: -.07em;
}

.contact-panel p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.08rem;
  max-width: 740px;
}

.fun-panel {
  border: 1px dashed rgba(110, 231, 255, .42);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(110, 231, 255, .065);
}

.fun-panel h3 {
  margin: 0 0 12px;
  font-family: "Permanent Marker", cursive;
  color: var(--neon);
  font-size: 2rem;
}

.fun-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.notice {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed rgba(110, 231, 255, .42);
  border-radius: 22px;
  background: rgba(110, 231, 255, .065);
  color: rgba(248, 242, 255, .84);
  line-height: 1.55;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(110, 231, 255, .28);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  background: rgba(0,0,0,.25);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(5, 3, 10, .88);
  backdrop-filter: blur(10px);
}

.image-modal.open {
  display: flex;
}

.image-modal img {
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  border-radius: 28px;
  border: 1px solid rgba(110, 231, 255, .35);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, .55),
    0 0 42px rgba(110, 231, 255, .15);
  object-fit: contain;
}

.image-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(110, 231, 255, .35);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(16, 8, 31, .84);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
}

.site-footer {
  padding: 34px 0 46px;
  color: rgba(248, 242, 255, .58);
  text-align: center;
}

.site-footer a {
  color: var(--neon);
  text-decoration: none;
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions,
  .site-nav {
    justify-content: flex-start;
  }

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

  .hero-card {
    min-height: auto;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card,
  .service-card.big,
  .proof-card,
  .proof-card.big,
  .link-card {
    grid-column: span 6;
  }

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

@media (max-width: 760px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 10px;
  }

  body.nav-open .header-actions {
    display: flex;
  }

  .social-brand-buttons {
    justify-content: center;
    width: 100%;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .service-card,
  .service-card.big,
  .proof-card,
  .proof-card.big,
  .link-card {
    grid-column: span 12;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.65rem, 18vw, 4.4rem);
  }

  .link-card {
    min-height: 330px;
  }
}

.social-brand-link {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: 0 0 24px rgba(110, 231, 255, .20);
  transition: transform .18s ease, filter .18s ease;
}

.social-brand-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.social-brand-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chef-buddah-photo {
  width: 100%;
  margin-top: 10px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(110, 231, 255, .28);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .28),
    0 0 34px rgba(110, 231, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.chef-buddah-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.food-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.food-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(110, 231, 255, .18);
}

.food-card div {
  padding: 20px;
}

.food-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -.03em;
}

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

@media (max-width: 980px) {
  .food-card {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .food-card {
    grid-column: span 12;
  }
}