/* =============================================
   Josh Fischer — Dark + Bronze | Monospace Labels + Modern Display
   ============================================= */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Space+Mono:wght@400;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

:root {
  --bg: #0a0a0a;
  --bg-subtle: rgba(255,255,255,0.02);
  --bg-hover: rgba(194,145,86,0.04);
  --text: #e8e4df;
  --text-muted: rgba(232,228,223,0.6);
  --text-faint: rgba(232,228,223,0.35);
  --text-ghost: rgba(232,228,223,0.2);
  --accent: #c29156;
  --accent-dim: rgba(194,145,86,0.15);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(194,145,86,0.2);
  --gh-font-heading: Outfit, sans-serif;
  --gh-font-body: Crimson Pro, Georgia, serif;
  --font-display: var(--gh-font-heading);
  --font-body: var(--gh-font-body);
  --font-mono: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(194,145,86,0.3);
}

/* --- Label Style (reused everywhere) --- */
.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}

.label--small {
  font-size: 10px;
  letter-spacing: 2px;
}

/* --- Section Headings --- */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 64px 0;
}

/* =============================================
   Navigation
   ============================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(10,10,10,0.85);
}

.site-nav__logo {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.site-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.site-nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.site-nav__link:hover,
.site-nav__link.active {
  color: var(--accent);
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
  transform: scaleX(1);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* =============================================
   Hero
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.hero__accent-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(194,145,86,0.2), transparent);
  transform: rotate(-15deg) scaleY(1.5);
}

.hero__accent-line:nth-child(1) { right: 20%; }
.hero__accent-line:nth-child(2) {
  right: 22%;
  background: linear-gradient(to bottom, transparent, rgba(194,145,86,0.08), transparent);
}

.hero__content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin: 0 0 32px 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
  opacity: 0;
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 48px 0;
  font-weight: 300;
  animation: fadeInUp 0.8s ease forwards 0.6s;
  opacity: 0;
}

.hero__subtitle em {
  color: var(--accent);
  font-style: italic;
}

.hero__handoff {
  font-size: 15px;
  color: var(--text-faint);
  margin: -32px 0 48px;
}

.hero__handoff a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  transition: border-color 0.3s;
}

.hero__handoff a:hover {
  border-color: var(--accent);
}

.hero__actions {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.8s ease forwards 0.8s;
  opacity: 0;
}

/* --- Buttons --- */
.btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  background: #d4a36a;
  color: var(--bg);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(232,228,223,0.2);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =============================================
   Social links
   ============================================= */
.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.social-link {
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-link__platform {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.social-link__handle {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__identity {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-faint);
}

.site-footer__location {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-ghost);
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-in--d1 { animation-delay: 0.2s; }
.animate-in--d2 { animation-delay: 0.4s; }
.animate-in--d3 { animation-delay: 0.6s; }
.animate-in--d4 { animation-delay: 0.8s; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 680px) {
  .site-nav {
    padding: 16px 24px;
  }

  .site-nav__links {
    display: none;
  }

  .site-nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.95);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 0 24px;
  }

  .social-links {
    gap: 24px;
  }

  .site-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 32px 24px;
  }
}
