:root{
  --black:#050505;
  --black-soft:#080808;
  --gold:#c99a2e;
  --gold-light:#f3cf74;
  --gold-dark:#7a4f12;
  --white:#f5f5f5;
  --muted:rgba(255,255,255,.7);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Arial,Helvetica,sans-serif;
  overflow-x:hidden;
}

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

img{
  max-width:100%;
  height:auto;
}

.cursor-glow{
  position:fixed;
  width:240px;
  height:240px;
  border-radius:50%;
  pointer-events:none;
  z-index:1;
  background:radial-gradient(circle,rgba(243,207,116,.10),transparent 70%);
  transform:translate(-50%,-50%);
  mix-blend-mode:screen;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,.92);
  border-bottom:1px solid rgba(243,207,116,.15);
  backdrop-filter:blur(12px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:20px 5vw;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:70px;
}

.brand span{
  font-size:14px;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-light);
}

.main-nav ul{
  display:flex;
  gap:30px;
  list-style:none;
  margin:0;
  padding:0;
}

.main-nav a{
  color:rgba(255,255,255,.8);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

.main-nav a:hover{
  color:var(--gold-light);
}

/* BUTTONS */
.gold-btn,
.ghost-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 28px;
  font-size:12px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:.35s ease;
}

.gold-btn{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#050505;
}

.gold-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 0 34px rgba(243,207,116,.28);
}

.ghost-btn{
  border:1px solid rgba(243,207,116,.4);
  color:var(--gold-light);
  background:rgba(255,255,255,.02);
}

/* HERO */
.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  padding:80px 5vw;
  overflow:hidden;
  background:
    radial-gradient(circle at top right,rgba(243,207,116,.12),transparent 35%),
    linear-gradient(135deg,#020202,#0c0804);
}

.hero-content{
  position:relative;
  z-index:2;
}

.eyebrow{
  margin:0 0 18px;
  color:var(--gold-light);
  font-size:12px;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
}

.hero h1{
  margin:0;
  font-size:clamp(60px,8vw,120px);
  line-height:.9;
  text-transform:uppercase;
  letter-spacing:-4px;
}

.hero h1 span{
  display:block;
  color:var(--gold);
}

.hero-text{
  max-width:560px;
  margin:30px 0;
  color:var(--muted);
  line-height:1.8;
  font-size:18px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.hero-visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* BOWL */
.luxury-bowl{
  position:relative;
  width:620px;
  height:620px;
  border-radius:50%;
  background:radial-gradient(circle,#2b1708 0%,#090604 72%);
  border:4px solid rgba(243,207,116,.28);
  box-shadow:
    inset 0 0 60px rgba(0,0,0,.85),
    0 0 100px rgba(243,207,116,.08);
  animation:bowlFloat 8s ease-in-out infinite;
}

.bowl-glow{
  position:absolute;
  inset:-40px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(243,207,116,.16),transparent 70%);
  filter:blur(40px);
  pointer-events:none;
}

.bowl-liquid{
  position:absolute;
  inset:50px;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 30%,rgba(243,207,116,.24),transparent 20%),
    conic-gradient(from 0deg,#3a1d08,#7a4618,#2a1405,#8a5118,#3a1d08);
  animation:liquidRotate 12s linear infinite;
}

/* BOWL LINKS */
.bowl-link{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  min-height:52px;
  padding:0 18px;
  background:rgba(0,0,0,.82);
  border:1px solid rgba(243,207,116,.4);
  color:var(--gold-light);
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:1.5px;
  font-weight:900;
  backdrop-filter:blur(10px);
  z-index:10;
  transition:.35s ease;
}

.bowl-link:hover{
  transform:translateY(-6px) scale(1.04);
  background:rgba(243,207,116,.95);
  color:#050505;
  box-shadow:0 0 40px rgba(243,207,116,.35);
}

.link-design{top:24%;left:-4%}
.link-brand{top:16%;right:10%}
.link-production{top:48%;right:-8%}
.link-apparel{bottom:18%;left:4%}
.link-dropship{bottom:12%;right:18%}

/* SPOON */
.gold-spoon{
  position:absolute;
  right:18%;
  top:4%;
  width:120px;
  height:380px;
  transform-origin:70% 80%;
  animation:spoonMix 8s ease-in-out infinite;
  z-index:9;
  pointer-events:none;
}

.spoon-handle{
  position:absolute;
  left:48px;
  top:0;
  width:24px;
  height:290px;
  border-radius:999px;
  background:linear-gradient(90deg,#7a4f12,#f3cf74,#c99a2e);
}

.spoon-head{
  position:absolute;
  left:12px;
  bottom:0;
  width:96px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%,#f3cf74,#c99a2e,#7a4f12);
}

/* PROCESS SECTION */
.process-section{
  padding:120px 5vw;
  background:
    radial-gradient(circle at top left,rgba(243,207,116,.06),transparent 32%),
    #050505;
}

.section-title{
  margin-bottom:60px;
}

.section-title h2{
  margin:0;
  font-size:clamp(40px,5vw,80px);
  line-height:.95;
  text-transform:uppercase;
  letter-spacing:-2px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.process-card{
  position:relative;
  overflow:hidden;
  min-height:260px;
  padding:40px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.01)),
    #080808;
  border:1px solid rgba(243,207,116,.14);
  transition:.4s ease;
}

.process-card:hover{
  transform:translateY(-10px);
  border-color:rgba(243,207,116,.45);
}

.process-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(243,207,116,.05),transparent);
  transform:translateX(-120%);
  transition:.8s ease;
}

.process-card:hover::before{
  transform:translateX(120%);
}

.process-card span{
  display:inline-block;
  margin-bottom:40px;
  color:var(--gold);
  font-size:14px;
  font-weight:900;
  letter-spacing:2px;
}

.process-card h3{
  margin:0 0 16px;
  text-transform:uppercase;
  font-size:26px;
}

.process-card p{
  margin:0;
  color:rgba(255,255,255,.7);
  line-height:1.8;
}

/* FOOTER */
.site-footer{
  padding:40px 5vw;
  border-top:1px solid rgba(243,207,116,.12);
  background:#030303;
}

.footer-inner{
  text-align:center;
  color:rgba(255,255,255,.5);
}

/* REVEAL */
.hero-content,
.luxury-bowl{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.revealed{
  opacity:1!important;
  transform:translateY(0)!important;
}

/* ANIMATIONS */
@keyframes bowlFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
}

@keyframes liquidRotate{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

@keyframes spoonMix{
  0%,100%{transform:rotate(-12deg)}
  50%{transform:rotate(12deg)}
}

/* RESPONSIVE */
@media(max-width:1000px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text{
    margin-left:auto;
    margin-right:auto;
  }

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

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

@media(max-width:700px){
  .main-nav{
    display:none;
  }

  .header-inner{
    gap:16px;
  }

  .brand span{
    display:none;
  }

  .luxury-bowl{
    width:360px;
    height:360px;
  }

  .bowl-liquid{
    inset:28px;
  }

  .gold-spoon{
    width:80px;
    height:240px;
  }

  .spoon-handle{
    left:32px;
    width:16px;
    height:180px;
  }

  .spoon-head{
    width:60px;
    height:80px;
  }

  .bowl-link{
    min-width:84px;
    min-height:40px;
    font-size:8px;
    padding:0 10px;
  }

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