/* ============================================================
   HOME — Hero carousel, intro, work scroll, wins grid, CTA
   ============================================================ */

/* ── Hero ── */
.hero {
  position: relative;
  height:   100vh;
  overflow: hidden;
  cursor:   grab;
}
.hero:active { cursor: grabbing; }

.carousel-scene {
  position:           absolute;
  inset:              0;
  perspective:        1400px;
  perspective-origin: 50% 50%;
}

.carousel-track {
  position:        absolute;
  inset:           0;
  transform-style: preserve-3d;
}

/* Carousel cards */
.c-card {
  position:    absolute;
  width:       288px;
  height:      389px;
  border-radius: 2px;
  overflow:    hidden;
  cursor:      pointer;
  will-change: transform, opacity, filter;
}

.c-card img {
  width:       100%;
  height:      79%;
  object-fit:  cover;
  display:     block;
  background:  #1c1c1c;
}

.c-card-foot {
  height:          21%;
  background:      #0c0c0c;
  padding:         10px 13px;
  display:         flex;
  flex-direction:  column;
  justify-content: center;
}

.c-card-artist {
  font-size:       9px;
  letter-spacing:  0.17em;
  text-transform:  uppercase;
  color:           rgba(255, 255, 255, 0.9);
  white-space:     nowrap;
  overflow:        hidden;
  text-overflow:   ellipsis;
}

.c-card-cat {
  font-size:       9px;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  color:           rgba(255, 255, 255, 0.35);
  margin-top:      3px;
  white-space:     nowrap;
  overflow:        hidden;
  text-overflow:   ellipsis;
}

.c-badge {
  position:       absolute;
  top:            10px;
  right:          10px;
  font-size:      8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding:        3px 7px;
  background:     rgba(0, 0, 0, 0.75);
  border:         0.5px solid rgba(255, 255, 255, 0.17);
  color:          rgba(255, 255, 255, 0.85);
}
.c-badge.winner {
  color:        var(--gold);
  border-color: var(--gold-dim);
}

/* Hero text overlay */
.hero-overlay {
  position:        absolute;
  inset:           0;
  z-index:         20;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  pointer-events:  none;
  text-align:      center;
}

.hero-eyebrow {
  font-size:       9px;
  letter-spacing:  0.35em;
  text-transform:  uppercase;
  color:           rgba(255, 255, 255, 0.3);
  margin-bottom:   20px;
}

.hero-title {
  font-family:    var(--serif);
  font-size:      clamp(72px, 11vw, 120px);
  font-weight:    700;
  line-height:    0.88;
  letter-spacing: -0.02em;
  color:          var(--white);
  text-shadow:    0 0 100px rgba(0,0,0,1), 0 0 40px rgba(0,0,0,0.9);
}

.hero-title em {
  font-style: italic;
  color:      rgba(255, 255, 255, 0.32);
}

.hero-sub {
  font-size:      9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.5);
  margin-top:     20px;
  padding:        0 20px;
  text-align:     center;
  line-height:    2;
  max-width:      480px;
}

.hero-label {
  position:       absolute;
  bottom:         90px;
  left:           0;
  right:          0;
  text-align:     center;
  z-index:        20;
  pointer-events: none;
  font-size:      9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.35);
}

.drag-hint {
  position:       absolute;
  bottom:         74px;
  right:          44px;
  z-index:        20;
  font-size:      8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.18);
}

/* Stats bar */
.stats-bar {
  position:        absolute;
  bottom:          0;
  left:            0;
  right:           0;
  display:         flex;
  z-index:         20;
  border-top:      0.5px solid var(--border);
  background:      rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(10px);
}

.stat-item {
  flex:         1;
  padding:      20px 16px;
  text-align:   center;
  border-right: 0.5px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size:   28px;
  font-weight: 700;
  color:       var(--white);
  line-height: 1;
}

.stat-label {
  font-size:       8px;
  letter-spacing:  0.22em;
  text-transform:  uppercase;
  color:           var(--dim);
  margin-top:      4px;
}

/* ── Intro strip ── */
.intro-strip {
  display:     flex;
  align-items: stretch;
  border-top:  0.5px solid var(--border);
}

.intro-text {
  flex:         1;
  padding:      72px var(--gutter);
  border-right: 0.5px solid var(--border);
}

.intro-text h2 {
  font-family:   var(--serif);
  font-size:     44px;
  font-weight:   400;
  line-height:   1.15;
  margin-bottom: 24px;
}
.intro-text h2 em { font-style: italic; color: var(--dim); }

.intro-text p {
  font-size:  14px;
  color:      var(--mid);
  line-height: 1.8;
  max-width:  480px;
}

.intro-services {
  width:                   320px;
  display:                 grid;
  grid-template-columns:   1fr 1fr;
}

.svc-item {
  padding:      28px 24px;
  border-bottom: 0.5px solid var(--border);
  border-right:  0.5px solid var(--border);
  display:      flex;
  flex-direction: column;
  gap:          8px;
}
.svc-item:nth-child(even) { border-right: none; }
.svc-item:nth-child(5),
.svc-item:nth-child(6)    { border-bottom: none; }

.svc-icon  { font-size: 18px; opacity: 0.5; }
.svc-label {
  font-size:      9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--mid);
}

/* ── Work scroll ── */
.work-scroll {
  display:    flex;
  gap:        2px;
  overflow-x: auto;
  padding:    0 var(--gutter) 64px;
  scrollbar-width: none;
}
.work-scroll::-webkit-scrollbar { display: none; }

.work-card {
  flex-shrink: 0;
  width:       300px;
  cursor:      pointer;
  border:      0.5px solid var(--border);
  transition:  border-color 0.2s;
}
.work-card:hover { border-color: rgba(255, 255, 255, 0.25); }

.work-card img {
  width:       100%;
  height:      380px;
  object-fit:  cover;
  background:  #1a1a1a;
  display:     block;
}

.work-card-info { padding: 18px 16px; }

.work-card-name {
  font-size:      10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.9);
  margin-bottom:  4px;
}

.work-card-cat {
  font-size:      10px;
  color:          var(--dim);
  letter-spacing: 0.08em;
}

.wtag {
  display:        inline-block;
  margin-top:     10px;
  font-size:      8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding:        3px 8px;
}
.wtag.w { border: 0.5px solid var(--gold-dim); color: var(--gold); }
.wtag.n { border: 0.5px solid rgba(255,255,255,0.18); color: var(--dim); }

/* ── Home wins grid ── */
.home-wins {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  margin:                0 var(--gutter);
  border:                0.5px solid var(--border);
}

.hw-tile {
  padding:      28px 22px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  transition:   background 0.2s;
}
.hw-tile:hover              { background: rgba(255,255,255,0.03); }
.hw-tile:nth-child(4n)      { border-right: none; }

.hw-year {
  font-size:      8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          rgba(255,255,255,0.2);
  margin-bottom:  10px;
}

.hw-name {
  font-size:     13px;
  font-weight:   500;
  color:         var(--white);
  margin-bottom: 3px;
}

.hw-cat {
  font-size:      11px;
  color:          var(--dim);
  letter-spacing: 0.04em;
}

.hw-status {
  display:        inline-block;
  margin-top:     12px;
  font-size:      8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding:        3px 8px;
}
.hw-status.w { border: 0.5px solid var(--gold-dim); color: var(--gold); }
.hw-status.n { border: 0.5px solid rgba(255,255,255,0.15); color: var(--dim); }

/* ── CTA band ── */
.cta-band {
  margin:     80px var(--gutter);
  padding:    80px var(--gutter);
  border:     0.5px solid var(--border);
  text-align: center;
}

.cta-band h2 {
  font-family:   var(--serif);
  font-size:     52px;
  font-weight:   400;
  margin-bottom: 20px;
  line-height:   1.1;
}
.cta-band h2 em { font-style: italic; color: var(--dim); }

.cta-band p {
  font-size:   14px;
  color:       var(--mid);
  max-width:   460px;
  margin:      0 auto 40px;
  line-height: 1.8;
}
