:root {
  --bg: #07070a;
  --bg-2: #0f0f14;
  --bg-3: #16161d;
  --gold: #f0b020;
  --gold-dim: #c48a12;
  --foil: #e8e4dc;
  --text: #f5f2ea;
  --muted: #9a958a;
  --line: rgba(240, 176, 32, 0.22);
  --card: #121218;
  --ok: #3dd68c;
  --radius: 16px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(240,176,32,0.12), transparent),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(120,80,255,0.06), transparent);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: #ffd060; }
img { max-width: 100%; display: block; }
.wrap {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 6vw, 3.5rem);
}
button { font: inherit; color: inherit; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,7,10,0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7,7,10,0.92);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 0; gap: 1rem;
  min-height: 56px;
}
.nav-brand {
  display: flex; align-items: center;
  min-width: 120px; min-height: 40px;
  text-decoration: none;
}
.nav-logo {
  height: 40px; width: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav.is-scrolled .nav-logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.15rem; border-radius: 999px; font-weight: 650; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: 0.15s ease;
}
.btn-gold {
  background: linear-gradient(180deg, #ffc93a, var(--gold) 45%, var(--gold-dim));
  color: #1a1200; box-shadow: 0 0 24px rgba(240,176,32,0.35);
}
.btn-gold:hover { filter: brightness(1.06); color: #1a1200; }
.btn-ghost {
  background: transparent; border-color: var(--line); color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* HERO */
.hero-room {
  position: relative;
  min-height: calc(100vh - 64px);
  max-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 72% 45%, rgba(240,176,32,0.18), transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(120,80,255,0.06), transparent 70%);
}
.hero {
  position: relative;
  z-index: 1;
  padding-block: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.75rem, 5vw, 4.5rem);
}
.hero-copy {
  flex: 0 1 36rem;
  max-width: 36rem;
}
.hero-logo {
  width: min(100%, 250px);
  height: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 8px 28px rgba(240,176,32,0.35));
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.55rem;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px var(--gold);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.1; font-weight: 700; margin-bottom: 0.65rem;
}
.hero h1 span { color: var(--gold); }
.hero-lead {
  color: var(--muted); font-size: 1rem; max-width: 34rem; margin-bottom: 0.9rem;
  line-height: 1.45;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 0.7rem; }
.hero-follow { color: var(--muted); font-size: 0.95rem; }
.hero-follow a { color: var(--gold); font-weight: 650; margin-left: 0.35rem; }

.hero-mascot {
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
  align-self: center;
}
.hero-mascot img {
  width: min(100%, 300px);
  height: auto;
  max-height: min(300px, calc(100vh - 160px));
  object-fit: contain;
  filter: drop-shadow(0 24px 56px rgba(240,176,32,0.4));
}

/* SECTIONS */
section { padding: 4.5rem 0; }
.section-head { margin-bottom: 1.5rem; max-width: 42rem; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin-bottom: 0.45rem;
}
.section-head p { color: var(--muted); }

/* WORK */
#work { background: linear-gradient(180deg, transparent, rgba(240,176,32,0.03), transparent); }
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
button.work-card { background: #0c0c10; color: inherit; }
.work-card {
  display: block; width: 100%; text-align: left;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  padding: 0;
  transition: transform 0.15s ease, border-color 0.15s;
}
.work-card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
}
.work-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #000;
  display: block;
}
.work-meta {
  padding: 0.45rem 0.7rem 0.55rem;
  font-size: 0.8rem; color: var(--muted);
  line-height: 1.3;
}
.work-meta strong {
  display: block; color: var(--text); font-size: 0.88rem; margin-bottom: 0.1rem;
}
.work-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40rem;
}
.work-note strong { color: var(--gold); }

/* SERVICES */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.svc {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
}
.svc h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.svc p { color: var(--muted); font-size: 0.95rem; }
.svc .price {
  margin-top: 1rem; color: var(--gold); font-weight: 700; font-size: 0.95rem;
}

/* HIRE */
#hire {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.hire-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start;
}
.wallet-box {
  background: #0a0a0e;
  border: 1px dashed rgba(240,176,32,0.45);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.wallet-box h3 { margin-bottom: 0.4rem; }
.wallet-box > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.wallet-addr {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  word-break: break-all;
  background: #14141c;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--foil);
  margin-bottom: 0.85rem;
}
.wallet-actions {
  margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.note { font-size: 0.82rem; color: var(--muted); }
.note strong { color: var(--ok); }
.steps { list-style: none; display: grid; gap: 0.85rem; }
.steps li {
  display: grid; grid-template-columns: 2rem 1fr; gap: 0.75rem; align-items: start;
}
.steps .n {
  width: 2rem; height: 2rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(240,176,32,0.15); color: var(--gold); font-weight: 700; font-size: 0.85rem;
}
.steps strong { display: block; margin-bottom: 0.15rem; }
.steps span { color: var(--muted); font-size: 0.92rem; }
.packages { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.pkg {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 0.9rem 1rem;
  background: var(--bg-3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pkg strong { display: block; }
.pkg span { color: var(--muted); font-size: 0.85rem; }
.pkg .amt { color: var(--gold); font-weight: 700; white-space: nowrap; }

/* ABOUT */
.about-row {
  display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 2rem; align-items: center;
}
.about-mascot {
  width: min(100%, 280px);
  margin-inline: auto;
  filter: drop-shadow(0 12px 28px rgba(240,176,32,0.3));
}
.about-follow { color: var(--muted); }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  color: var(--muted); font-size: 0.9rem;
}
.foot-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center;
}
.foot-brand { display: flex; align-items: center; gap: 0.6rem; color: var(--text); }
.foot-brand img { height: 28px; width: auto; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.88);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem; gap: 0.75rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: min(960px, 92vw);
  max-height: 82vh;
  width: auto; height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-cap { color: var(--muted); font-size: 0.95rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: transparent; border: none; color: #fff;
  font-size: 2rem; line-height: 1; cursor: pointer;
}

@media (max-width: 960px) {
  .hire-grid, .about-row { grid-template-columns: 1fr; }
  .hero-room { max-height: none; min-height: unset; }
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
    padding-block: 1.75rem 2.25rem;
  }
  .hero-copy { max-width: 36rem; }
  .hero-lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-mascot { min-height: 0; }
  .hero-mascot img { width: min(100%, 240px); max-height: none; }
  .hero-logo { width: min(100%, 260px); margin-inline: auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
