/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #161616;
  --bg2:      #1e1e1e;
  --bg3:      #242424;
  --surface:  #1e1e1e;
  --border:   #2e2e2e;
  --text:     #f2efe9;
  --muted:    #999;
  --dim:      #666;
  --accent:   #c8f135;
  --acc2:     #d8ff45;
  --serif:    'DM Serif Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --r:        12px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===================================
   NAV
=================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(22, 22, 22, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 8px; }

.nav-logo-mark, .footer-logo-mark {
  display: inline-flex; align-items: baseline; gap: 0;
  font-family: var(--sans); font-weight: 900;
  font-size: 1rem; letter-spacing: -0.02em; line-height: 1;
  text-transform: lowercase;
}
.mark-vv { color: var(--accent); }
.mark-c  { color: var(--text); }

.nav-logo-divider {
  display: inline-block; width: 1px; height: 14px;
  background: var(--border); margin: 0 2px;
}
.nav-logo-text {
  font-family: var(--sans); font-weight: 900; font-size: 1rem;
  letter-spacing: -0.02em; text-transform: lowercase; color: var(--text);
}

.nav-links { display: flex; align-items: center; gap: 36px; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--text) !important; border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 40px; transition: all 0.2s;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent) !important; }

/* ===================================
   HERO
=================================== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 40px 80px; max-width: 1320px; margin: 0 auto;
}
.hero-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before { content:''; display:inline-block; width:24px; height:1px; background:var(--accent); }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.04; font-weight: 400; margin-bottom: 32px;
  max-width: 900px; letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.1rem; color: var(--muted); max-width: 520px;
  margin-bottom: 48px; line-height: 1.75; font-weight: 400;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #0a0a0a;
  font-weight: 700; font-size: 0.88rem;
  padding: 14px 32px; border-radius: 40px; letter-spacing: 0.02em;
  transition: all 0.22s var(--ease);
}
.btn-primary:hover { background: var(--acc2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,241,53,0.22); }

.btn-secondary {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); color: var(--text);
  font-weight: 500; font-size: 0.88rem;
  padding: 14px 32px; border-radius: 40px; letter-spacing: 0.02em;
  transition: all 0.22s var(--ease);
}
.btn-secondary:hover { border-color: var(--muted); transform: translateY(-2px); }

/* ===================================
   MARQUEE
=================================== */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 13px 0; background: var(--bg2);
}
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dim);
}
.marquee-track .dot { color: var(--border); }
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ===================================
   SECTION LABEL
=================================== */
.section-label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}

/* ===================================
   WORK
=================================== */
.work { padding: 100px 40px; max-width: 1320px; margin: 0 auto; }

.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; letter-spacing: -0.02em; line-height: 1.1;
}

/* Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
  grid-column: span 4;
}
.card:hover { transform: translateY(-5px); border-color: #3a3a3a; box-shadow: 0 20px 50px rgba(0,0,0,0.45); }

.card--featured    { grid-column: span 8; }
.card--wide        { grid-column: span 8; }
.card--placeholder { grid-column: span 12; flex-direction: row; align-items: center; }
.card--placeholder .card-image { width: 280px; height: 140px; flex-shrink: 0; }
.card--placeholder .card-body  { padding: 32px; }

/* Card image */
.card-image {
  height: 220px; position: relative; overflow: hidden; flex-shrink: 0;
}
.card--featured .card-image { height: 300px; }
.card-image--dim { background: var(--bg3); }

/* ---- ART ELEMENTS ---- */
.art { position: absolute; inset: 0; }

/* Circles */
.art-circles { display: flex; align-items: center; justify-content: center; }
.circle {
  position: absolute; border-radius: 50%;
  animation: pulse 3.5s ease-in-out infinite;
}
.c1 { width:72px; height:72px; border:1.5px solid rgba(200,241,53,0.6); animation-delay:0s; }
.c2 { width:148px; height:148px; border:1.5px solid rgba(200,241,53,0.28); animation-delay:0.5s; }
.c3 { width:224px; height:224px; border:1.5px solid rgba(200,241,53,0.12); animation-delay:1s; }
@keyframes pulse { 0%,100%{ transform:scale(1); opacity:.7; } 50%{ transform:scale(1.04); opacity:1; } }
.art-label {
  position: absolute; bottom: 18px; left: 18px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); opacity: 0.65;
}

/* Grid lines */
.art-grid { }
.gl { position: absolute; background: rgba(200,241,53,0.14); }
.gl1 { width:1px; height:100%; left:33%; top:0; }
.gl2 { width:1px; height:100%; left:66%; top:0; }
.gl3 { width:100%; height:1px; top:50%; left:0; }
.gd { position: absolute; width:7px; height:7px; border-radius:50%; background:var(--accent); }
.gd1 { left:33%; top:50%; transform:translate(-50%,-50%); }
.gd2 { left:66%; top:25%; transform:translate(-50%,-50%); opacity:.5; }
.gd3 { left:20%; top:72%; transform:translate(-50%,-50%); opacity:.28; }

/* Waveform */
.art-wave {
  display: flex; align-items: center; justify-content: center; gap: 6px; padding: 0 32px;
}
.wb {
  flex-shrink: 0; width: 4px; height: var(--h); min-height: 4px;
  background: var(--accent); border-radius: 2px; opacity: 0.75;
  animation: wav 1.6s ease-in-out infinite;
}
.wb:nth-child(1){animation-delay:0s}  .wb:nth-child(2){animation-delay:.1s}
.wb:nth-child(3){animation-delay:.2s} .wb:nth-child(4){animation-delay:.3s}
.wb:nth-child(5){animation-delay:.4s} .wb:nth-child(6){animation-delay:.5s}
.wb:nth-child(7){animation-delay:.6s} .wb:nth-child(8){animation-delay:.7s}
.wb:nth-child(9){animation-delay:.8s} .wb:nth-child(10){animation-delay:.9s}
.wb:nth-child(11){animation-delay:1s} .wb:nth-child(12){animation-delay:1.1s}
@keyframes wav { 0%,100%{ transform:scaleY(1); } 50%{ transform:scaleY(0.35); } }

/* Type art */
.art-type {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; padding: 36px;
}
.t1 { font-family:var(--serif); font-size:3.8rem; font-style:italic; color:var(--accent); line-height:1; display:block; }
.t2 { font-family:var(--serif); font-size:1.9rem; color:rgba(255,255,255,0.25); display:block; margin-top:6px; }

/* Plus */
.art-plus {
  display: flex; align-items: center; justify-content: center;
  position: absolute; inset: 0;
  font-size: 4.5rem; font-weight: 100; color: var(--border);
  transition: color 0.25s;
}
.card--placeholder:hover .art-plus { color: var(--accent); }

/* Card body */
.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.card-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.card-num { font-size: 0.72rem; font-weight: 700; color: var(--dim); }
.card-title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 10px;
}
.card--featured .card-title { font-size: 1.65rem; }
.card-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; flex: 1; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border);
}
.card-stat { font-size: 0.72rem; font-weight: 600; color: var(--dim); letter-spacing: 0.06em; }
.card-link { font-size: 0.78rem; font-weight: 700; color: var(--muted); transition: color 0.2s; }
.card:hover .card-link { color: var(--accent); }

/* ===================================
   ABOUT
=================================== */
.about {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 100px 40px;
}
.about-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-text h2 {
  font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 28px;
}
.about-text h2 em { font-style: italic; color: var(--accent); }
.about-text p { color: var(--muted); margin-bottom: 18px; line-height: 1.75; }
.about-text .btn-secondary { margin-top: 10px; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 6px; }
.stat { padding: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); }
.stat-num { font-family:var(--serif); font-size:2.8rem; font-weight:400; color:var(--accent); line-height:1; margin-bottom:6px; letter-spacing:-0.02em; }
.stat-label { font-size: 0.78rem; color: var(--dim); font-weight: 500; letter-spacing: 0.05em; }

/* ===================================
   QUOTE
=================================== */
.quote-section { padding: 120px 40px; max-width: 1320px; margin: 0 auto; text-align: center; }
blockquote {
  font-family: var(--serif); font-size: clamp(1.7rem, 3.5vw, 2.9rem);
  font-style: italic; font-weight: 400; line-height: 1.3;
  letter-spacing: -0.01em; max-width: 900px; margin: 0 auto;
}
cite {
  display: block; margin-top: 26px; font-style: normal;
  font-size: 0.82rem; font-family: var(--sans); font-weight: 500;
  color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase;
}

/* ===================================
   CONTACT
=================================== */
.contact { background: var(--bg3); border-top: 1px solid var(--border); padding: 120px 40px; }
.contact-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-inner h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; letter-spacing: -0.02em; margin-bottom: 18px; line-height: 1.1;
}
.contact-inner p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 38px; }

/* ===================================
   FOOTER
=================================== */
.footer { border-top: 1px solid var(--border); padding: 40px; background: var(--bg); }
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark { font-size: 0.9rem; opacity: 0.8; }
.footer-logo-text { font-weight: 900; font-size: 0.9rem; letter-spacing: -0.02em; text-transform: lowercase; }
.footer-tagline { font-size: 0.74rem; color: var(--dim); padding-left: 6px; border-left: 1px solid var(--border); margin-left: 2px; }
.footer-right { display: flex; gap: 28px; font-size: 0.84rem; color: var(--muted); }
.footer-right a:hover { color: var(--text); }
.footer-base {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: var(--dim);
}

/* Cards are visible by default; JS adds inline animation on load */

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) {
  .card--featured, .card--wide { grid-column: span 12; }
  .card { grid-column: span 6; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 768px) {
  .nav-inner, .hero, .work, .about, .quote-section, .contact, .footer { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .work, .about { padding-top: 60px; padding-bottom: 60px; }
  .card, .card--featured, .card--wide { grid-column: span 12; }
  .nav-links a:not(.nav-cta) { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-base { flex-direction: column; gap: 6px; }
}
