@charset "UTF-8";

@font-face {
  font-family: 'Brier';
  src: url('https://cdn.prod.website-files.com/67b5a02dc5d338960b17a7e9/67b6113a220f85ad6497495a_Brier-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('https://cdn.prod.website-files.com/67b5a02dc5d338960b17a7e9/67bc6274c5b4108b123aa4d5_MonaSans-VariableFont_wdth%2Cwght.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

/* ==============================================
   KD WORK LIFE — Complete Premium CSS Rebuild
   Design System: Modeled after landonorris.com
   ============================================== */

/* ---- CSS Custom Properties ---- */
:root {
  /* Easing and transitions */
  --cubic-default: cubic-bezier(0.65, 0.05, 0, 1);
  --duration-default: 0.75s;
  --ease-spring: linear(
    0, 0.06 1%, 0.226 2%, 1.116 5.4%, 1.565 8.2%, 1.581 9.3%,
    1.458 10.9%, 0.937 14.3%, 0.693 16.6%, 0.671 18.7%, 1.042 23.3%,
    1.201 26.7%, 1.156 28.8%, 0.977 32.2%, 0.894 34.5%, 0.887 36.6%,
    1.045 42.4%, 1.059 46.3%, 0.979 50.9%, 0.966 55.3%, 1.013 59.9%,
    0.986 71.2%, 1.008 79.9%, 0.995 88.9%, 1
  );

  /* Accents */
  --accent: #d2ff00;            /* Neon Lime */
  --accent-hover: #b2c73a;      /* Muted Lime */
  --accent-orange: #ff6b00;     /* Papaya Orange */

  /* Typography */
  --font-serif: 'Brier', 'Instrument Serif', Georgia, serif;
  --font-sans: 'Mona Sans', 'Inter', -apple-system, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  /* Spacing & Layout */
  --section-pad: clamp(80px, 12vh, 160px);
  --content-width: 720px;
  --max-width: 1200px;
  --gap: clamp(20px, 3vw, 48px);
  --padding--container: clamp(20px, 5vw, 64px);

  /* Default theme values (theme-light) */
  --bg-primary: #F8F8F3;        /* Lando's Light Cream */
  --bg-secondary: #CBCBB9;
  --text-primary: #282c20;      /* Dark Olive Green text */
  --text-secondary: #50593F;    /* Muted Sage */
  --text-muted: #6b6f5d;        /* Olive — 4.6:1 contrast on light bg */
  --border: #CBCBB9;            /* Faint border */
  --border-light: rgba(40, 44, 32, 0.1);
  --border-dark: rgba(0, 0, 0, 0.05);
}

/* Theme Classes */
body.theme-light {
  --bg-primary: #F8F8F3;
  --text-primary: #282c20;
  --text-secondary: #50593F;
  --text-muted: #6b6f5d;
  --border: #CBCBB9;
  --border-light: rgba(40, 44, 32, 0.1);
  --border-dark: rgba(0, 0, 0, 0.05);
  --accent: #3a6b1e;             /* Forest Green — readable on light bg */
  --accent-hover: #2d5016;       /* Deeper forest on hover */
}

body.theme-dark {
  --bg-primary: #282c20;
  --text-primary: #f4f4ed;
  --text-secondary: #b4b8a5;
  --text-muted: #727666;
  --border: #363b25;
  --border-light: rgba(210, 255, 0, 0.15);
  --border-dark: rgba(255, 255, 255, 0.05);
}

body.theme-charcoal {
  --bg-primary: #111112;
  --text-primary: #f4f4ed;
  --text-secondary: #b4b8a5;
  --text-muted: #555558;
  --border: #222224;
  --border-light: rgba(210, 255, 0, 0.12);
  --border-dark: rgba(255, 255, 255, 0.03);
}

/* ==============================================
   RESET & GLOBAL LAYOUT
   ============================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: initial; /* Handled by Lenis smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F8F8F3; /* Fallback Lando cream background */
  color: var(--text-primary);
}

body {
  font-family: var(--font-sans);
  background-color: transparent; /* Allows WebGL canvas to show through */
  color: var(--text-primary);
  line-height: 1.6;
  text-wrap: pretty;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hide scrollbars but keep functionality */
*::-webkit-scrollbar {
  display: none;
}
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--cubic-default);
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

/* ==============================================
   BACKGROUND & ORGANIC OVERLAYS
   ============================================== */

/* Film Grain Overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.045;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Technical Drawing Grid Lines */
.grid-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.grid-line {
  position: absolute;
  background: rgba(54, 59, 37, 0.18);
}
.grid-line.vertical {
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateY(calc(var(--grid-scroll, 0) * -80px));
}
.grid-line.horizontal {
  left: 0;
  right: 0;
  height: 1px;
  transform: translateX(calc(var(--grid-scroll, 0) * -60px));
}

.page-wrapper {
  position: relative;
  width: 100%;
  z-index: 2;
}

/* ==============================================
   TYPOGRAPHY & UTILITIES
   ============================================== */
.h-display {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  font-weight: 400;
  text-wrap: balance;
}

.h-display .accent {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Intro Highlight and Spark */
.intro-highlight-container {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0px 8px;
  margin: 0px -8px;
  border-radius: 4px;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-highlight-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--accent);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
}

.intro-highlight-container.is-highlighted {
  color: #111112 !important;
}

.intro-highlight-container.is-highlighted .accent {
  -webkit-text-fill-color: #111112 !important;
  color: #111112 !important;
}

.intro-spark {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 15px var(--accent), 0 0 5px #ffffff;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  transform: translate(-50%, -50%);
}


.h-section {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-wrap: balance;
}

.h-chapter {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-wrap: balance;
  color: var(--text-primary);
}

.text-body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: var(--content-width);
}

.text-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* ==============================================
   TOP BAR & FIXED ELEMENTS
   ============================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--padding--container);
  z-index: 500;
  mix-blend-mode: difference; /* Elegantly reverses color based on background */
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s var(--cubic-default), transform 0.5s var(--cubic-default);
  pointer-events: none; /* Disable pointer events while hidden */
}

.topbar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* Enable pointer events when visible */
}

.topbar-logo {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.topbar-links {
  display: flex;
  gap: 2rem;
}

.topbar-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.topbar-links a:hover {
  color: var(--accent);
}

/* ==============================================
   SPLIT HERO SECTION
   ============================================== */
.hero {
  position: relative;
  height: 200vh; /* 200vh track for scroll-driven visual reveal */
  padding: 0;
}

.hero-content {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding--container);
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 38%;
  z-index: 10;
  pointer-events: none;
}

.hero-left * {
  pointer-events: auto;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-right {
  position: absolute;
  top: 50%;
  left: 53%; /* Slightly shifted right to frame the left text beautifully */
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.hero-portrait-placeholder {
  position: relative;
  width: min(540px, 45vw);
  aspect-ratio: 3/4;
  background: transparent;
  border: none; /* No bounding boxes! */
  overflow: visible;
  cursor: crosshair;
  pointer-events: auto;
  perspective: 1000px; /* Enable 3D parallax space for crown */
}

/* Faint CAD Blueprint Crown */
.holographic-crown {
  position: absolute;
  left: 50%;
  top: 21%; /* Positioned right above the head */
  transform: translate(-50%, -50%);
  width: 140px;
  height: 56px;
  pointer-events: none;
  z-index: 10;
  opacity: 0.22;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: opacity 0.5s var(--cubic-default);
}

.holographic-crown .crown-path,
.holographic-crown .crown-line {
  stroke: var(--text-secondary);
  stroke-width: 1px;
  stroke-dasharray: 2 2;
  fill: none;
}

.holographic-crown .crown-dot {
  fill: var(--text-secondary);
}

.holographic-crown .crown-hair {
  stroke: var(--text-muted);
  stroke-width: 0.5px;
}

#glCanvasWrap {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background-color: var(--bg-primary);
  transition: background-color 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

#glCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Scroll Hint Line */
.scroll-indicator {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-muted);
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* ==============================================
   CHAPTER NAV (Right Side Dots)
   ============================================== */
.chapter-nav {
  position: fixed;
  right: clamp(16px, 2.5vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chapter-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.5s var(--ease-spring);
  position: relative;
}

.chapter-dot.is-active {
  background: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(210, 255, 0, 0.15);
}

.chapter-dot-label {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--cubic-default), transform 0.3s var(--cubic-default);
}

.chapter-dot:hover .chapter-dot-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==============================================
   MARQUEE
   ============================================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: clamp(16px, 2vh, 24px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0 clamp(20px, 2.5vw, 40px);
}

.marquee-track .marquee-dot {
  color: var(--accent);
  font-size: 0.6em;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================================
   SECTIONS
   ============================================== */
.section {
  position: relative;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
  z-index: 10;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding--container);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header .section-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Alternate Dark Charcoal Background */
.section--dark {
  background: transparent;
  border-bottom: 1px solid var(--border-dark);
}

.webgl-3d-placeholder {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 35vw, 500px);
  height: clamp(300px, 35vw, 500px);
  pointer-events: none;
  z-index: 1;
  background: transparent;
}

@media (max-width: 991px) {
  .webgl-3d-placeholder {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 280px;
    height: 280px;
    margin: 2.5rem auto 0;
    z-index: 5;
  }
}

.section--dark .chapter-divider {
  background: var(--border-dark);
}

/* Content blocks */
.content-block {
  max-width: var(--content-width);
}

.content-block ul {
  list-style: none;
}

.content-block li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

.content-block li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.6rem;
  color: var(--accent);
}

.content-block li strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Quote/Highlight Box */
.highlight-block {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.8rem;
  margin: 2.5rem 0;
  border-left: 2px solid var(--accent);
  max-width: var(--content-width);
}

.highlight-block p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  line-height: 1.5;
  color: var(--text-primary);
}

.text-emphasis {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.45;
  color: var(--accent);
}

.chapter-divider {
  max-width: var(--content-width);
  height: 1px;
  background: var(--border);
  margin: 3.5rem 0;
}

.chapter-card {
  margin-bottom: 4rem;
}

.chapter-card:last-child {
  margin-bottom: 0;
}

.chapter-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.chapter-role em {
  font-family: var(--font-sans);
  font-style: italic;
  text-transform: none;
  color: var(--text-muted);
}

.chapter-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* Expandable content drawer */
.expandable {
  margin-top: 1.25rem;
  max-width: var(--content-width);
}

.expandable-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s var(--cubic-default);
}

.expandable-trigger:hover {
  color: var(--accent);
}

.expandable-trigger .arrow {
  display: inline-block;
  font-size: 0.5rem;
  transition: transform 0.3s var(--cubic-default);
}

.expandable.is-open .expandable-trigger .arrow {
  transform: rotate(90deg);
}

.expandable-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s var(--cubic-default);
}

.expandable-content .content-block {
  padding-top: 1rem;
}

/* Research section specific cards */
.research-questions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.research-question {
  border: 1px solid var(--border);
  padding: 1.75rem;
  background: rgba(17, 17, 18, 0.2);
}

.research-question h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.research-question p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Closing statement */
.closing-statement {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.closing-body {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: var(--content-width);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
  padding: 5rem 0 3rem 0;
  z-index: 10;
  position: relative;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding--container);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: #4a4e3e;              /* Darkened for contrast on --bg-secondary */
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3d4530;              /* Darkened for contrast on --bg-secondary */
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  max-width: var(--max-width);
  margin: 3rem auto 0 auto;
  padding: 0 var(--padding--container);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: #4a4e3e;              /* Darkened for contrast on --bg-secondary */
}

/* ==============================================
   LINE REVEAL — Hero Text Staggered Animation
   ============================================== */
.line-reveal {
  display: block;
  overflow: hidden;
}

.line-reveal-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s var(--cubic-default);
}

.line-reveal.is-visible .line-reveal-inner {
  transform: translateY(0%);
}

/* ==============================================
   SCROLL REVEAL CLASSES (GSAP/ScrollTrigger)
   ============================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--cubic-default), transform 0.7s var(--cubic-default);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--cubic-default), transform 0.7s var(--cubic-default);
}

[data-reveal-stagger].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   RESPONSIVE DESIGN (Breakpoints)
   ============================================== */

/* Desktop scaling and grids */
@media (min-width: 768px) {
  .research-questions {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Stack */
@media (max-width: 767px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 3rem;
    position: relative;
    top: auto;
  }
  
  .hero {
    height: auto; /* stacked hero doesn't need to be sticky track on tablet */
  }
  
  .hero-left {
    max-width: 100%;
    text-align: center;
    align-items: center;
    pointer-events: auto;
  }
  
  .hero-right {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }

  .hero-portrait-placeholder {
    width: 290px;
    height: 387px;
    margin: 0 auto;
  }
  
  .scroll-indicator {
    display: none; /* remove on mobile/tablet */
  }
  
  .chapter-nav {
    display: none; /* remove on mobile/tablet */
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .topbar-links {
    gap: 1rem;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
