/* landing.css — teaser page specific styling */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #f4f2ec;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.12 0.02 190 / 0.35) 0%, oklch(0.1 0.02 190 / 0.55) 55%, oklch(0.08 0.02 190 / 0.92) 100%);
}
.hero__dial {
  position: absolute;
  top: 8%;
  right: 6%;
  width: clamp(90px, 14vw, 170px);
  height: clamp(90px, 14vw, 170px);
  color: #d9cfa8;
  opacity: 0.55;
  transition: transform 60ms linear;
}
.hero__dial-needle { transform-origin: 100px 100px; }

.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(var(--space-16), 10vw, var(--space-32));
  padding-top: var(--space-32);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfc6a1;
  margin-bottom: var(--space-5);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  color: #faf8f2;
  max-width: 14ch;
  margin-bottom: var(--space-6);
}
.hero__subtitle {
  font-size: var(--text-lg);
  max-width: 46ch;
  color: #e3ded0;
  margin-bottom: var(--space-8);
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero__actions .btn--ghost {
  color: #f4f2ec;
  border-color: color-mix(in oklab, #f4f2ec 40%, transparent);
}
.hero__actions .btn--ghost:hover {
  border-color: #f4f2ec;
  color: #f4f2ec;
  background: color-mix(in oklab, #f4f2ec 12%, transparent);
}

.hero__scrolldown {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 24px;
  height: 40px;
  border: 1.5px solid color-mix(in oklab, #f4f2ec 55%, transparent);
  border-radius: var(--radius-full);
}
.hero__scrolldown span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #f4f2ec;
  border-radius: var(--radius-full);
  animation: scrolldown 1.8s ease-in-out infinite;
}
@keyframes scrolldown {
  0% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ---- museum note ---- */
.museum-note {
  background: var(--color-surface);
}
.museum-note h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-block: var(--space-4) var(--space-6);
}
.museum-note p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* ---- threshold ---- */
.threshold {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.threshold__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: start;
}
.threshold__copy .hero__eyebrow { color: var(--color-primary); }
.threshold__copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}
.threshold__copy p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
}
.link-arrow {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--text-sm);
}
.link-arrow:hover { color: var(--color-primary-hover); }

.threshold__facts {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.fact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.fact-card__label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-2);
}
.fact-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.fact-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---- paths ---- */
.paths { background: var(--color-bg); }
.section-title--center {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  text-align: center;
  max-width: 26ch;
  margin: 0 auto var(--space-12);
}
.paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  max-width: 1160px;
  margin-inline: auto;
}
.path-card--featured {
  border-color: color-mix(in oklab, var(--color-primary) 55%, var(--color-border));
  background: linear-gradient(145deg, var(--color-surface), var(--color-primary-highlight));
}
.path-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--transition-ui), box-shadow var(--transition-ui), border-color var(--transition-ui);
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.path-card__num {
  display: block;
  font-family: var(--font-mono);
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
.path-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.path-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.path-card__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

/* ---- closing ---- */
.closing {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
}
.closing h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-block: var(--space-4) var(--space-6);
}
.closing p { color: var(--color-text-muted); font-size: var(--text-lg); }

@media (max-width: 900px) {
  .threshold__grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .paths__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { min-height: 100vh; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero__dial { display: none; }
}
