@font-face {
  font-family: 'Cormorant Garamond';
  src: local('Cormorant Garamond');
}

:root {
  --bg: oklch(0.16 0.012 60);
  --panel-bg: oklch(0.20 0.012 60);
  --ink: oklch(0.94 0.012 80);
  --ink-dim: oklch(0.68 0.015 80);
  --hairline: oklch(1 0 0 / 0.12);
  --glow: oklch(0.3 0.03 60 / 0.35);
  --accent: oklch(0.74 0.10 80);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit !important; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  mix-blend-mode: difference;
}
.nav-name {
  font-size: 24px;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a {
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* HERO */
.hero {
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 64px;
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, var(--glow), transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  z-index: 1;
}
.hero-name {
  font-weight: 500;
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  z-index: 1;
}
.hero-tagline {
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--ink-dim);
  margin-top: 24px;
  max-width: 640px;
  z-index: 1;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: center;
  padding: 160px 64px;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--hairline);
}
.about-photo {
  aspect-ratio: 3/4;
  position: relative;
  border: 1px solid var(--hairline);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eyebrow {
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.about-headline {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 28px;
}
.about-body {
  font-size: 21px;
  line-height: 1.8;
  color: var(--ink-dim);
  font-weight: 300;
  max-width: 52ch;
  white-space: pre-line;
}

/* BOOKS */
.books-section {
  padding: 120px 64px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.books-heading {
  text-align: center;
  margin-bottom: 100px;
}
.books-heading h2 {
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 500;
  margin: 0;
}
.book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--hairline);
}
.book-row.reverse .book-cover { order: 2; }
.book-row.reverse .book-text { order: 1; }
.book-cover {
  aspect-ratio: 2/3;
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  border: 1px solid var(--hairline);
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-status {
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.book-title {
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}
.book-annotation {
  font-size: 21px;
  line-height: 1.8;
  color: var(--ink-dim);
  font-weight: 300;
  max-width: 50ch;
  margin-bottom: 36px;
  font-style: italic;
}
.book-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.book-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--accent);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.book-links a:hover {
  background: var(--accent);
  color: var(--bg);
}

/* LINKS / RESOURCES */
.resources {
  padding: 140px 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.resources h2 {
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 500;
  margin: 0 0 56px;
}
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.resource-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 26px 8px;
  border-top: 1px solid var(--hairline);
  text-decoration: none;
  font-size: 32px;
  transition: color 0.2s;
}
.resource-list a:first-child { border-top: none; }
.resource-list a:hover { color: var(--accent); }
.resource-hint {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* CONTACT */
.contact {
  padding: 160px 64px 100px;
  text-align: center;
}
.contact-email {
  display: inline-block;
  font-size: clamp(34px, 4.4vw, 60px);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 10px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer-copy {
  margin-top: 80px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
