/* ============================================================
   LOL TV — Bobby · Personal Brand, Portfolio & Shop
   Pure HTML5 / CSS3 / Vanilla JS — no build step required.
   ------------------------------------------------------------
   Table of contents
   01. Tokens (colors, type, spacing, motion)
   02. Reset & base
   03. Layout utilities
   04. Chrome (grain, cursor, scroll progress, back to top)
   05. Buttons & form controls
   06. Navigation + mobile menu
   07. Hero
   08. Marquee
   09. About
   10. Expertise
   11. Selected work
   12. Stats
   13. Partners / connections
   14. Services
   15. Contact
   16. Footer
   17. Shop
   18. 404
   19. Reveal animations
   20. Responsive
   21. Reduced motion
   ============================================================ */

/* 01. TOKENS ------------------------------------------------ */
:root {
  /* Palette */
  --background:      #08080a;
  --background-2:    #0d0d11;
  --surface:         #101015;
  --surface-2:       #16161d;
  --text:            #f0efec;
  --muted:           #9d9da6;
  --muted-2:         #6c6c75;
  --gold:            #c8a15a;
  --gold-bright:     #e0bd78;
  --gold-soft:       rgba(200, 161, 90, .12);
  --border:          rgba(255, 255, 255, .08);
  --border-strong:   rgba(255, 255, 255, .16);

  /* Type */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "JetBrains Mono",
               Roboto Mono, Menlo, monospace;

  /* Spacing */
  --max-width: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(88px, 12vh, 168px);
  --radius: 16px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .6s;

  --nav-h: 72px;
}

/* 02. RESET & BASE ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #2b2b34 var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul { list-style: none; padding: 0; }

img, svg, video { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s var(--ease);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* Custom selection */
::selection {
  background: rgba(200, 161, 90, .3);
  color: #fff;
}
::-moz-selection {
  background: rgba(200, 161, 90, .3);
  color: #fff;
}

/* Custom scrollbar (WebKit) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb {
  background: #26262e;
  border-radius: 10px;
  border: 3px solid var(--background);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Focus visibility — accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Anchor offset for sticky nav */
section[id], [id].section { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* 03. LAYOUT UTILITIES -------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px 2px rgba(200, 161, 90, .7);
  flex: none;
}

.section-head { max-width: 62ch; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
  margin-block: 1.1rem .9rem;
}
.section-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-weight: 400; }

.section-lead { color: var(--muted); font-size: clamp(.95rem, 1.1vw, 1.05rem); max-width: 56ch; }
.section-head.center .section-lead { margin-inline: auto; }

.section-index {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .14em;
  color: var(--muted-2);
}

.rule { height: 1px; background: var(--border); border: 0; margin: 0; }

/* 04. CHROME ------------------------------------------------ */
/* Film grain overlay */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9000;
  pointer-events: none;
  opacity: .05;
  background-image: url("../assets/images/noise.svg");
  background-size: 180px;
  will-change: transform;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 9500;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* Cursor light (desktop / fine pointers only) */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 560px; height: 560px;
  margin: -280px 0 0 -280px;
  z-index: 8999;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 161, 90, .09), transparent 62%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .5s var(--ease);
  will-change: transform;
}
.cursor-glow.is-on { opacity: 1; }

/* Back to top */
.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 8000;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: rgba(16, 16, 21, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), visibility .4s, transform .4s var(--ease), border-color .3s, background .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--gold); background: rgba(200, 161, 90, .14); }
.to-top svg { width: 16px; height: 16px; }

/* 05. BUTTONS ----------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .92rem 1.6rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .005em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), box-shadow .4s var(--ease),
              transform .35s var(--ease);
}
.btn .arrow {
  display: inline-block;
  transition: transform .45s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--text); color: #0a0a0b; }
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(240, 239, 236, .16);
}

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, .015);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1408;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(200, 161, 90, .28); }

/* Disabled state (shop "Coming Soon") */
.btn[disabled], .btn.is-disabled {
  cursor: not-allowed;
  color: var(--muted);
  border-color: var(--border);
  background: rgba(255, 255, 255, .02);
  transform: none;
  box-shadow: none;
}

/* 06. NAVIGATION -------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              backdrop-filter .4s var(--ease), height .4s var(--ease);
}
.site-header.is-scrolled {
  height: 62px;
  background: rgba(8, 8, 10, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  background: linear-gradient(160deg, rgba(200, 161, 90, .14), transparent);
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: .95rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.brand-sub { font-size: .625rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin: 0;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: .5rem .85rem;
  font-size: .875rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem;
  bottom: .28rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--text); }

.nav-cta { margin-left: .6rem; padding: .6rem 1.15rem !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  flex: none;
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 17px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .4s var(--ease-out), opacity .3s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 16px; transform: translateX(-50%); }
.menu-toggle span:nth-child(2) { top: 21px; transform: translateX(-50%); }
.menu-toggle span:nth-child(3) { top: 26px; transform: translateX(-50%); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateX(-50%) translateY(-5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 8990;
  background: rgba(8, 8, 10, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 2.5rem; }
.mobile-menu li {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(14px);
}
.mobile-menu.is-open li {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-menu.is-open li:nth-child(1) { transition-delay: .08s; }
.mobile-menu.is-open li:nth-child(2) { transition-delay: .14s; }
.mobile-menu.is-open li:nth-child(3) { transition-delay: .2s; }
.mobile-menu.is-open li:nth-child(4) { transition-delay: .26s; }
.mobile-menu.is-open li:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open li:nth-child(6) { transition-delay: .38s; }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0;
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -.02em;
}
.mobile-menu a .num {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .12em;
}
.mobile-menu-foot { opacity: 0; transition: opacity .5s .4s var(--ease); }
.mobile-menu.is-open .mobile-menu-foot { opacity: 1; }
.mobile-menu-foot p { color: var(--muted-2); font-size: .8rem; margin-bottom: 1rem; }
.mobile-socials { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.mobile-socials a { font-size: .85rem; color: var(--muted); }
.mobile-socials a:hover { color: var(--gold); }

/* 07. HERO -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + 48px) 64px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.orb-1 {
  width: 52vw; height: 52vw;
  left: -14vw; top: -18vw;
  background: radial-gradient(circle, rgba(200, 161, 90, .34), transparent 68%);
  animation: float-a 22s var(--ease) infinite;
}
.orb-2 {
  width: 44vw; height: 44vw;
  right: -10vw; bottom: -16vw;
  background: radial-gradient(circle, rgba(74, 102, 148, .34), transparent 68%);
  animation: float-b 26s var(--ease) infinite;
}
@keyframes float-a { 50% { transform: translate3d(4%, 5%, 0); } }
@keyframes float-b { 50% { transform: translate3d(-4%, -5%, 0); } }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 25%, transparent 82%);
  mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 25%, transparent 82%);
}

.hero-inner { position: relative; }
.hero-eyebrow { margin-bottom: clamp(1.5rem, 3vh, 2.25rem); }

.hero h1 {
  font-size: clamp(2.9rem, 9.2vw, 7.4rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
  margin-bottom: clamp(1.4rem, 3vh, 2rem);
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: clamp(1.8rem, 4vh, 2.5rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: clamp(2.4rem, 6vh, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: .8rem;
  letter-spacing: .04em;
  flex-wrap: wrap;
}
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5fd08a;
  flex: none;
  box-shadow: 0 0 0 0 rgba(95, 208, 138, .55);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(95, 208, 138, .5); }
  70% { box-shadow: 0 0 0 9px rgba(95, 208, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 208, 138, 0); }
}

/* 08. MARQUEE ----------------------------------------------- */
.marquee {
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding-block: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font-size: .75rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}
.marquee-track span b { color: var(--gold); font-weight: 400; margin-left: 3rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* 09. ABOUT ------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.about-sticky { position: sticky; top: calc(var(--nav-h) + 40px); }
.about-copy p { color: var(--muted); margin-bottom: 1.15rem; font-size: clamp(.98rem, 1.15vw, 1.08rem); }
.about-copy p strong { color: var(--text); font-weight: 500; }

.timeline { margin-top: 2.25rem; }
.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
}
.timeline li:last-child { border-bottom: 1px solid var(--border); }
.timeline .num { font-family: var(--font-mono); font-size: .75rem; color: var(--gold); padding-top: .2rem; letter-spacing: .1em; }
.timeline h3 { font-size: 1rem; font-weight: 500; margin-bottom: .25rem; }
.timeline p { color: var(--muted-2); font-size: .875rem; }

/* 10. EXPERTISE --------------------------------------------- */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.expertise-col {
  background: var(--background-2);
  padding: clamp(1.75rem, 2.6vw, 2.75rem);
  transition: background .4s var(--ease);
}
.expertise-col:hover { background: var(--surface); }
.expertise-col h3 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}
.expertise-col p { color: var(--muted-2); font-size: .8rem; line-height: 1.5; margin-bottom: 1.5rem; min-height: 3.2em; }
.expertise-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem .6rem .8rem 0;
  border-top: 1px solid var(--border);
  font-size: .9rem;
  color: var(--muted);
  cursor: default;
  transition: color .3s var(--ease), padding-left .35s var(--ease-out);
}
.expertise-list li:last-child { border-bottom: 1px solid var(--border); }
.expertise-list li:hover { color: var(--text); padding-left: .5rem; }
.expertise-list li::after {
  content: "↗";
  font-size: .75rem;
  color: var(--muted-2);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .3s var(--ease), transform .35s var(--ease-out), color .3s;
}
.expertise-list li:hover::after { opacity: 1; transform: none; color: var(--gold); }

/* 11. SELECTED WORK ----------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.1rem, 2vw, 1.5rem);
}
.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .45s var(--ease), transform .5s var(--ease-out), background .45s var(--ease);
}
.work-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.work-card:hover { border-color: var(--border-strong); transform: translateY(-4px); background: var(--surface-2); }
.work-card:hover::after { opacity: 1; }

.work-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.work-visual .art {
  position: absolute;
  inset: 0;
  transition: transform .8s var(--ease-out);
}
.work-card:hover .work-visual .art { transform: scale(1.045); }
.work-mark {
  position: absolute;
  right: 1.1rem; bottom: .55rem;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7vw, 5rem);
  line-height: 1;
  color: rgba(255, 255, 255, .085);
  transition: color .5s var(--ease), transform .6s var(--ease-out);
}
.work-card:hover .work-mark { color: rgba(200, 161, 90, .4); transform: translateY(-4px); }
.work-num {
  position: absolute;
  top: 1rem; left: 1.15rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .55);
  background: rgba(8, 8, 10, .5);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: .28rem .65rem;
}
/* Abstract placeholder art — replace .art content with real screenshots later */
.art-v1 { background:
  radial-gradient(120% 120% at 15% 10%, rgba(200, 161, 90, .3), transparent 55%),
  radial-gradient(90% 90% at 85% 90%, rgba(74, 102, 148, .34), transparent 60%),
  linear-gradient(150deg, #141419, #0a0a0d); }
.art-v2 { background:
  radial-gradient(120% 120% at 85% 15%, rgba(200, 161, 90, .24), transparent 55%),
  conic-gradient(from 200deg at 30% 80%, rgba(120, 140, 180, .22), transparent 45%),
  linear-gradient(150deg, #101015, #0a0a0d); }
.art-v3 { background:
  radial-gradient(100% 100% at 50% 0%, rgba(200, 161, 90, .2), transparent 60%),
  linear-gradient(150deg, #151519, #09090c); }
.art-v4 { background:
  radial-gradient(90% 120% at 10% 90%, rgba(95, 208, 138, .16), transparent 55%),
  radial-gradient(80% 80% at 80% 10%, rgba(200, 161, 90, .22), transparent 60%),
  linear-gradient(150deg, #121216, #0a0a0d); }
.art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 85%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 85%);
}

.work-body { padding: clamp(1.35rem, 2vw, 1.75rem); display: flex; flex-direction: column; flex: 1; }
.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .13em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.work-card h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; letter-spacing: -.02em; margin-bottom: .55rem; }
.work-card p { color: var(--muted); font-size: .9rem; margin-bottom: 1.35rem; }
.work-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.work-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--muted);
}
.work-link:hover { color: var(--gold); }
.work-link .arrow { transition: transform .4s var(--ease-out); }
.work-card:hover .work-link { color: var(--text); }
.work-card:hover .work-link .arrow { transform: translateX(4px); }

/* 12. STATS ------------------------------------------------- */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(1.75rem, 3vw, 2.5rem) 0; border-left: 1px solid var(--border); padding-left: clamp(1.25rem, 2.4vw, 2rem); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-value {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-value .suffix { color: var(--gold); }
.stat-label {
  margin-top: .7rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* 13. PARTNERS ---------------------------------------------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.9rem, 1.6vw, 1.25rem);
}
.partner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  transition: border-color .45s var(--ease), color .4s var(--ease), transform .5s var(--ease-out), background .45s var(--ease);
}
.partner:hover {
  border-color: rgba(200, 161, 90, .45);
  color: var(--text);
  transform: translateY(-3px);
  background: var(--surface-2);
}
.partner svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.2; transition: color .4s var(--ease); }
.partner:hover svg { color: var(--gold); }
.partner span { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.partners-note {
  margin-top: 1.75rem;
  text-align: center;
  color: var(--muted-2);
  font-size: .8rem;
}

/* 14. SERVICES ---------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.9rem, 1.6vw, 1.25rem); }
.service-card {
  position: relative;
  padding: clamp(1.6rem, 2.6vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .45s var(--ease), transform .5s var(--ease-out), background .45s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(140deg, rgba(200, 161, 90, .5), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.service-card:hover { border-color: var(--border-strong); transform: translateY(-4px); background: var(--surface-2); }
.service-card:hover::before { opacity: 1; }
.service-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.service-card h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); font-weight: 500; letter-spacing: -.02em; }
.service-num { font-family: var(--font-mono); font-size: .72rem; color: var(--gold); letter-spacing: .14em; }
.service-card p { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.tag {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .3rem .65rem;
}

/* 15. CONTACT ----------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.inquiry-list li { margin-bottom: .65rem; }
.inquiry-btn {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1.05rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font: inherit;
  transition: border-color .4s var(--ease), color .35s var(--ease), background .4s var(--ease), transform .4s var(--ease-out);
}
.inquiry-btn:hover, .inquiry-btn.is-selected {
  border-color: rgba(200, 161, 90, .5);
  color: var(--text);
  background: rgba(200, 161, 90, .06);
}
.inquiry-list .ico {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  flex: none;
}
.inquiry-list .ico svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.inquiry-list strong { display: block; font-size .92rem; font-weight: 500; color: var(--text); }
.inquiry-list small { font-size: .78rem; color: var(--muted-2); }

.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .018);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .8rem .95rem;
  font-size: .92rem;
  color: var(--text);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.5L6 8.5L10 4.5' stroke='%239d9da6' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .95rem center; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200, 161, 90, .05);
}
.form-note { margin: 1rem 0 0; font-size: .76rem; color: var(--muted-2); line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* 16. FOOTER ------------------------------------------------ */
.site-footer { border-top: 1px solid var(--border); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
}
.footer-brand .brand-name { font-size: 1.05rem; }
.footer-brand p { color: var(--muted-2); font-size: .85rem; margin-top: .9rem; max-width: 30ch; }
.footer-col h4 {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a { font-size: .88rem; color: var(--muted); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: .78rem;
}
.footer-bottom .year { font-family: var(--font-mono); }

/* 17. SHOP -------------------------------------------------- */
.shop-hero { padding-top: calc(var(--nav-h) + 88px); padding-bottom: 48px; }
.shop-hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
  margin-block: 1.1rem 1.1rem;
}
.shop-hero h1 em { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-weight: 400; }
.shop-note {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.6rem;
  padding: .55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: .8rem;
}

.shop-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .82rem;
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter-btn.is-active { background: var(--text); color: #0a0a0a; border-color: var(--text); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.9rem, 1.6vw, 1.25rem);
  padding-block: 2.25rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .45s var(--ease), transform .5s var(--ease-out), background .45s var(--ease);
}
.product-card:hover { border-color: var(--border-strong); transform: translateY(-4px); background: var(--surface-2); }
.product-card.is-hidden { display: none; }
.product-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.badge {
  position: absolute;
  top: .8rem; right: .8rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8, 8, 10, .62);
  border: 1px solid rgba(200, 161, 90, .4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: .26rem .6rem;
}
.product-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.product-cat {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: .5rem;
}
.product-card h3 { font-size: 1.05rem; font-weight: 500; letter-spacing: -.015em; margin-bottom: .45rem; }
.product-card p { color: var(--muted); font-size: .83rem; margin-bottom: 1.15rem; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.product-price { font-size: .85rem; color: var(--muted); font-family: var(--font-mono); }
.product-price b { color: var(--text); font-weight: 500; }

/* 18. 404 --------------------------------------------------- */
.page-404 {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--gutter);
  position: relative;
  overflow: hidden;
}
.page-404 .hero-bg { z-index: -1; }
.page-404 .num-404 {
  font-size: clamp(5rem, 20vw, 11rem);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: 1;
}
.page-404 .num-404 em { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-weight: 400; }
.page-404 h1 { font-size: clamp(1.4rem, 3.4vw, 2.1rem); font-weight: 500; letter-spacing: -.02em; margin: 1.1rem .5rem .6rem; }
.page-404 p { color: var(--muted); max-width: 40ch; margin: 0 auto 1.9rem; }
.page-404 .brand { margin-bottom: 2.5rem; }

/* 19. REVEAL ANIMATIONS ------------------------------------- */
/* Only hide content when JS is active (progressive enhancement) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
.js .reveal[data-delay="4"] { transition-delay: .32s; }
.js .reveal[data-delay="5"] { transition-delay: .4s; }
.js .reveal[data-delay="6"] { transition-delay: .48s; }

/* 20. RESPONSIVE -------------------------------------------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }

  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-col p { min-height: 0; }

  .work-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  body { font-size: 15.5px; }

  .hero { min-height: 100svh; padding-top: calc(var(--nav-h) + 40px); }
  .hero h1 { font-size: clamp(2.4rem, 13vw, 3.6rem); }
  .hero-actions { display: grid; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { font-size: .72rem; }

  .form-row { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }

  .marquee-track { gap: 2rem; }
}

@media (max-width: 400px) {
  .partners-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; padding-left: 0; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: 0; }
}

/* 21. REDUCED MOTION ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .cursor-glow { display: none; }
  .marquee-track { animation: none; }
}
