#deck {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  padding: clamp(40px, 6vw, 80px) clamp(48px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.slide.is-active {
  pointer-events: auto;
}

/* Click zones */
#click-prev, #click-next {
  position: fixed;
  top: 0; bottom: 0;
  width: 50%;
  z-index: 100;
  cursor: pointer;
}
#click-prev { left: 0; }
#click-next { right: 0; }

/* Nav arrows hint */
#nav-hint {
  position: fixed;
  bottom: 24px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 200;
  opacity: 0.45;
}
#nav-hint span {
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* Progress dots */
#progress {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 200;
  padding: 10px 14px 6px;
  border-radius: 20px;
  transition: gap 0.25s ease, background 0.2s;
}
#progress:hover {
  gap: 16px;
  background: rgba(34,31,26,0.06);
}
.dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transform-origin: center bottom;
}
.dot-label {
  font-size: 9px;
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s;
  user-select: none;
  pointer-events: none;
}
#progress:hover .dot-label {
  opacity: 0.7;
}
#progress .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9B8B7A;
  transition: background 0.3s;
  flex-shrink: 0;
}
#progress .dot.active {
  background: var(--accent);
}

/* Slide counter */
#counter {
  position: fixed;
  bottom: 20px;
  left: 32px;
  font-size: 12px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  opacity: 0.5;
  z-index: 200;
}

/* Two-column layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  height: 100%;
}
.split.left-wide { grid-template-columns: 1.2fr 1fr; }
.split.right-wide { grid-template-columns: 1fr 1.3fr; }

.col { display: flex; flex-direction: column; gap: 20px; }

/* Image frame */
.img-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 100%;
}

/* Slide heading */
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
}

.slide-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
}
