@font-face {
  font-family: 'Figtree';
  src: url('assets/fonts/Figtree.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Figtree';
  src: url('assets/fonts/Figtree-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100dvh;
  overflow: hidden;
}

body {
  background-color: #0a0a0a;
  background-image: url('assets/chloe-portrait.jpg');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  min-height: 100dvh;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events: none;
}

main {
  position: fixed;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 480px;
  padding: 0 24px;
}

h1 {
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.tagline {
  position: fixed;
  top: clamp(68px, 14vh, 108px);
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  padding: 0 28px;
  font-size: clamp(14px, 4vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

button {
  margin-top: 8px;
  padding: 11px 32px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  border-radius: 50px;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s ease;
  width: 100%;
  max-width: 200px;
}

button:hover {
  opacity: 0.88;
}

button:disabled {
  opacity: 0.5;
  cursor: default;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-5px); }
  70%       { transform: translateY(-2px); }
}

#cta {
  animation: nudge 2.8s ease-in-out infinite;
}

.nav-arrows {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 16px;
}

.nav-arrows button {
  all: unset;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  width: auto;
  max-width: none;
  padding: 0;
  background: none;
  border-radius: 0;
  letter-spacing: 0;
  text-transform: none;
}

.nav-arrows button:hover {
  opacity: 0.7;
}

#photo-counter {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  min-width: 36px;
  text-align: center;
}

.noscript {
  position: fixed;
  inset: auto 0 0 0;
  padding: 16px;
  text-align: center;
  background: #0a0a0a;
  font-size: 14px;
}
