/* ═══════════════════════════════════════════════════════
   home.css — Home Page
═══════════════════════════════════════════════════════ */

/* ── Hero Grid ──────────────────────────────────────── */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  border-bottom: 1px solid var(--border-strong);
}

/* ── Left: Main Title ───────────────────────────────── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 3.5rem 4rem var(--page-px);
  border-right: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}

/* Large decorative initial */
.hero-left::before {
  content: 'M';
  position: absolute;
  top: -0.08em;
  left: -0.04em;
  font-family: var(--font-serif);
  font-size: 40vw;
  color: rgba(240,240,244,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 1.2rem;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.hero-name em {
  font-style: italic;
  color: var(--gray-400);
}

.hero-sub {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 360px;
  margin-top: 1.2rem;
}

.hero-scroll {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-line-h {
  width: 48px;
  height: 1px;
  background: var(--border-strong);
}
.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-disabled);
}

/* ── Right: Section Cards ───────────────────────────── */
.hero-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.hero-card {
  padding: 2.8rem 3.5rem 2.8rem 3rem;
  border-bottom: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: background var(--duration);
  position: relative;
  overflow: hidden;
}
.hero-card:last-child { border-bottom: none; }
.hero-card:hover { background: var(--bg-surface); }

/* Arrow indicator */
.hero-card::after {
  content: '→';
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--border-strong);
  transition: transform 0.25s, color 0.25s;
}
.hero-card:hover::after {
  transform: translateX(5px);
  color: var(--text-muted);
}

.card-no {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  color: var(--text-disabled);
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0.6rem 0 0.4rem;
  line-height: 1.2;
}
.card-desc {
  font-size: 0.74rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 270px;
}

/* ── Bottom Row ─────────────────────────────────────── */
.home-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid var(--border-strong);
  min-height: 200px;
}

.bottom-card {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: background var(--duration);
  position: relative;
  overflow: hidden;
}
.bottom-card:hover { background: var(--bg-surface); }
.bottom-card:first-child { border-right: 1px solid var(--border-strong); }

.bottom-card::after {
  content: '→';
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--border-strong);
  transition: transform 0.25s, color 0.25s;
}
.bottom-card:hover::after {
  transform: translateX(5px);
  color: var(--text-muted);
}

.bottom-about {
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: center;
}

/* ── Footer ─────────────────────────────────────────── */
.home-footer {
  padding: 1.5rem var(--page-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  color: var(--text-disabled);
}
