/* ============================================
   HOME PAGE — home.css
   ============================================ */

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.25) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 900px;
}

.hero-tag {
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.hero-name .line {
  display: block;
}

.hero-sub {
  margin-bottom: 36px;
}

.hero-sub p {
  font-size: 1rem;
  color: rgba(240,237,232,0.65);
  line-height: 1.7;
}

.hero-sub p:first-child {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost {
  border-color: rgba(240,237,232,0.15);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(240,237,232,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollDrop 1.8s ease infinite;
}

@keyframes scrollDrop {
  from { top: -100%; }
  to   { top: 200%; }
}

/* Hero page number */
.hero-number {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(240,237,232,0.12);
  writing-mode: vertical-rl;
  z-index: 2;
}

/* ---- INTRO ---- */
.intro {
  padding: 120px 0;
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.intro-heading em {
  font-style: normal;
  color: var(--accent);
}

.intro-right p {
  color: rgba(240,237,232,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ---- SELECTED WORKS ---- */
.selected-works {
  padding: 80px 0 0;
}

.work-item {
  display: block;
  padding: 36px 0;
  position: relative;
  transition: background 0.3s;
}

.work-item:hover {
  background: rgba(240,237,232,0.02);
}

.work-item-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.work-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.work-tags {
  display: flex;
  gap: 8px;
}

.work-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-title-row h3 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.3s;
}

.work-item:hover .work-title-row h3 {
  color: var(--accent);
}

.work-arrow {
  font-size: 2rem;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s;
}

.work-item:hover .work-arrow {
  transform: translate(6px, -6px);
  color: var(--accent);
}

.work-desc {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 560px;
}

.work-item-line {
  height: 1px;
  background: rgba(240,237,232,0.08);
}

/* ---- STATS ---- */
.stats {
  padding: 100px 0;
  border-top: 1px solid rgba(240,237,232,0.08);
  border-bottom: 1px solid rgba(240,237,232,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- CTA STRIP ---- */
.cta-strip {
  padding: 100px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-availability {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-content { padding: 0 24px 60px; }
  .hero-number { display: none; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; gap: 32px; align-items: flex-start; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .work-title-row h3 { font-size: 2rem; }
}