
/* typefaces :root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif-italic: 'Libre Baskerville', Georgia, serif;
} */
 :root {
  --font-sans: "Suisse Int’l", "Graphik", "Neue Haas Grotesk",
               -apple-system, BlinkMacSystemFont,
               "Inter", "Helvetica Neue", Arial, sans-serif;

  --font-mono: "IBM Plex Mono", "Space Mono",
               ui-monospace, SFMono-Regular,
               Menlo, Consolas, monospace;
}
:root {
  --text-primary: #111;
  --text-secondary: #444;

  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-loose: 1.65;

  --max-measure: 68ch;
}
/* essay text. */
.editorial {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: var(--leading-loose);
  color: var(--text-secondary);

  max-width: var(--max-measure);
}

.editorial p {
  margin: 0 0 1.25em 0;
}
/* For dates, IDs, small labels. */
.meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.4;
  color: #666;
}

body {
  font-kerning: normal;
  font-feature-settings: "kern", "liga", "tnum";
  text-rendering: optimizeLegibility;
}

* {
  text-align: left;
}
/*
body {
  font-family: var(--font-sans);
}
*/
.emphasis,
.italic {
  font-family: var(--font-serif-italic);
  font-style: italic;
}


/* Crown persistent nav */
.crown-nav {
  background: transparent;
  padding-top: 18px;
  padding-bottom: 18px;
  z-index: 1000;
}

/* Typography */
.crown-nav .navbar-brand,
.crown-nav .nav-link {
  color: #000;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hover states */
.crown-nav .nav-link:hover {
  opacity: 0.6;
}

/* Prevent content from hiding under nav */
body {
  padding-top: 80px;
}

/* Optional mobile background */
@media (max-width: 991px) {
  .crown-nav {
    background: rgba(255, 255, 255, 0.96);
  }
}

/* Hero Section */

.hero {
  height: 100svh;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  text-align: center;
  max-width: 720px;
}

.hero-plus {
  opacity: 0.5;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 2rem 0;
}

.hero-cta {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.hero-cta:hover {
  opacity: 1;
}

/* Parallax */

.parallax {
  background: #000;
  padding-bottom: 15rem;
}

.parallax-stage {
  position: relative;
  height: 120svh;
  min-height: 120svh;
  opacity: 0;
  transition: opacity .25s ease;
}

.parallax-stage.is-ready {
  opacity: 1;
}

.parallax-item {
  position: absolute;
  width: 300px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  backface-visibility: hidden;  
  opacity: 0;
  transition: opacity .4s cubic-bezier(.65,0,.35,1);

  transform: translate3d(0, var(--py, 0), 0);
  will-change: transform;
}

.parallax-item.is-loaded {
  opacity: 1;
}

/* layout positions, tune later */
.parallax-item:nth-child(1) { top: 10%; left: 10%; }
.parallax-item:nth-child(2) { top: 35%; left: 55%; }







