/* ============================================================
   HOMEPAGE — dark slider, slides, dots, scroll hint, nav colors
   ============================================================ */

:root {
  --white: rgba(255,255,255,0.92);
  --dim:   rgba(255,255,255,0.45);
  --ease:  cubic-bezier(0.76, 0, 0.24, 1);
  --dur:   0.85s;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #111;
  font-family: 'Inter', sans-serif;
}

/* Header colors (dark bg) */
.site-name { color: var(--white); }
.site-nav a { color: var(--dim); }
.site-nav a:hover, .site-nav a.active { color: var(--white); }
.hamburger span { background: rgba(255,255,255,0.9); }

/* Mobile nav colors (dark) */
@media (max-width: 768px) {
  .mobile-nav { background: rgba(0,0,0,0.96); }
  .mobile-nav a { color: rgba(255,255,255,0.9); }
}

/* ── VIEWPORT & STRIP ── */
.viewport { position: fixed; inset: 0; overflow: hidden; }
.strip {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform var(--dur) var(--ease);
  will-change: transform;
}

/* ── SLIDE ── */
.slide { position: relative; width: 100vw; height: 100vh; flex-shrink: 0; overflow: hidden; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 20% 50%, rgba(0,0,0,0.38) 0%, transparent 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 22%);
  z-index: 1;
  pointer-events: none;
}

/* ── SLIDE INFO ── */
.slide-info {
  position: absolute;
  left: 64px; top: 50%;
  transform: translateY(calc(-50% + 10px));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.45s, transform 0.45s;
}
.slide.active .slide-info { opacity: 1; transform: translateY(-50%); }

.info-meta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 2px 24px rgba(0,0,0,0.7);
}
.info-title {
  font-family: 'PP Pangaia', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 2px 24px rgba(0,0,0,0.7);
  max-width: 380px;
}
.slide-cta {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  height: 32px;
  width: auto;
  background: rgba(255,255,255,0.2);
  box-shadow: 0px 4px 16px rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 99px;
  border: none;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 14px;
  transition: background 0.2s;
  white-space: nowrap;
}
.slide-cta:hover { background: rgba(255,255,255,0.32); }

/* ── LEFT NAV — dots ── */
.left-nav {
  position: fixed;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.l-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s, width 0.3s, height 0.3s;
  border: none;
  padding: 0;
}
.l-dot.active {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.9);
}

/* ── COUNTER ── */
.left-counter {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

/* ── SCROLL HINT ── */
.left-hint {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
  margin-top: 16px;
  transition: opacity 0.4s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}
.left-hint.hidden { opacity: 0; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* slide background — cover full viewport including notch */
  .slide { height: 100dvh; }
  .slide-bg { background-position: center center; }

  /* left nav */
  .left-nav { left: 10px; }
  .left-counter { font-size: 8px; }
  .l-dot { width: 4px; height: 4px; }
  .l-dot.active { width: 8px; height: 8px; }
  .left-hint { display: none; }

  /* slide info — vertically centered, offset for header */
  .slide-info {
    top: 50%;
    transform: translateY(calc(-50% + 40px));
    left: 24px;
    right: 24px;
  }
  .slide.active .slide-info {
    transform: translateY(calc(-50% + 40px));
    opacity: 1;
  }
  .site-name { font-size: 24px; }
  .info-title { font-size: 26px; line-height: 30px; max-width: 100%; }
  .info-meta { font-size: 9px; }
  .slide-cta { font-size: 10px; height: 28px; padding: 6px 14px; }
}

.left-bullets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
