/* ============================================
   VINCENT ANIOKE — AUTHOR SITE
   Design: Literary Noir / Editorial Minimalism
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,700;1,6..96,400;1,6..96,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* --- Variables --- */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --charcoal: #1a1a1a;
  --warm-gray: #6b6560;
  --mid-gray: #3d3a37;
  --ivory: #e8e0d4;
  --cream: #d4cdc2;
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --gold-dim: rgba(196, 162, 101, 0.15);
  --font-display: 'Bodoni Moda', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lora', serif;
  --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

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

/* --- Grain Overlay (atmospheric texture) --- */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ============================================
   HOMEPAGE
   ============================================ */

.home-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
}

/* Subtle radial glow behind the text */
.home-page::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.home-author {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

.home-novel {
  text-align: center;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.8s;
}

.home-novel-line1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

.home-novel-line2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
}

.home-nav {
  position: absolute;
  bottom: 3rem;
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 1.6s;
}

.home-nav a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color var(--transition);
  position: relative;
}

.home-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.home-nav a:hover {
  color: var(--ivory);
}

.home-nav a:hover::after {
  width: 100%;
}

/* ============================================
   INNER PAGE LAYOUT
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 100%);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-logo a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory);
}
.site-logo a:hover { color: var(--gold); }

.site-nav { display: flex; gap: 2rem; align-items: center; }

.site-nav a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.site-nav a:hover { color: var(--ivory); }
.site-nav a:hover::after { width: 100%; }
.site-nav a.active { color: var(--ivory); }
.site-nav a.active::after { width: 100%; }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  margin: 6px 0;
  transition: var(--transition);
}

/* Page content wrapper */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  min-height: 100vh;
}

.page-content-wide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  min-height: 100vh;
}

/* Page titles */
.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  color: var(--ivory);
}

.page-subtitle {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Section spacing */
.section { margin-bottom: 5rem; }
.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 4rem 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-intro {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--ivory);
  margin-bottom: 2.5rem;
}

.about-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.about-photo-container {
  margin: 3rem 0;
  position: relative;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  background: var(--charcoal);
  border: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-note {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-style: italic;
}

/* ============================================
   BOOKS PAGE
   ============================================ */

.novel-teaser {
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--mid-gray);
  margin-bottom: 4rem;
}

.novel-teaser-label {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.novel-teaser-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.novel-teaser-status {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* PLA section */
.pla-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.pla-cover {
  aspect-ratio: 2/3;
  background: var(--charcoal);
  border: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pla-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pla-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.pla-info .pla-publisher {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--warm-gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pla-info .pla-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 2rem;
}

.pla-purchase {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.75rem 2rem;
  transition: all var(--transition);
}

.pla-purchase:hover {
  background: var(--gold);
  color: var(--black);
}

/* Reviews */
.review {
  padding: 2rem 0;
  border-top: 1px solid rgba(61, 58, 55, 0.5);
}

.review blockquote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.review cite {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-style: normal;
}

/* ============================================
   WORK PAGE
   ============================================ */

.work-section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--mid-gray);
}

/* Publications list */
.pub-list { list-style: none; }

.pub-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(61, 58, 55, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.pub-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ivory);
}

.pub-venue {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-align: right;
  white-space: nowrap;
}

.pub-item a {
  color: var(--ivory);
  transition: color var(--transition);
}
.pub-item a:hover { color: var(--gold); }

/* Awards list */
.award-list { list-style: none; }

.award-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(61, 58, 55, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.award-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ivory);
}

.award-type {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--gold);
  margin-left: 0.5rem;
}

.award-year {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--warm-gray);
}

/* Interviews */
.interview-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 58, 55, 0.3);
}

.interview-item a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ivory);
}
.interview-item a:hover { color: var(--gold); }

.interview-year {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-left: 1rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact-email {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  display: inline-block;
  margin: 1rem 0;
}

.contact-email:hover { color: var(--gold-light); }

.contact-social {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
}

.contact-social a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.contact-social a:hover { color: var(--ivory); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: 3rem;
  border-top: 1px solid var(--mid-gray);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--warm-gray);
}

/* ============================================
   PLA BUTTONS (Purchase + Discover)
   ============================================ */

.pla-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pla-discover {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border: 1px solid var(--mid-gray);
  padding: 0.75rem 2rem;
  transition: all var(--transition);
}

.pla-discover:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   SHORT STORIES I LOVE PAGE
   ============================================ */

.stories-intro {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 700px;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(61, 58, 55, 0.3);
  border: 1px solid rgba(61, 58, 55, 0.3);
}

.story-card {
  display: block;
  padding: 2rem;
  background: var(--black);
  text-decoration: none;
  transition: background var(--transition);
  position: relative;
}

.story-card:hover {
  background: var(--charcoal);
}

.story-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ivory);
  display: block;
  margin-bottom: 0.35rem;
  transition: color var(--transition);
}

.story-card:hover .story-card-title {
  color: var(--gold);
}

.story-card-author {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.story-card-venue {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-bottom: 0.75rem;
}

.story-card-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.8;
}

/* ============================================
   DISCOVER PAGE
   ============================================ */

.discover-section {
  margin-bottom: 3rem;
}

.discover-section-header {
  margin-bottom: 2rem;
}

.discover-section-label {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Music Section --- */

.music-intro {
  margin-bottom: 2.5rem;
}

.music-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.music-title em {
  font-style: italic;
  color: var(--gold);
}

.music-note {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  max-width: 650px;
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.music-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border: 1px solid var(--mid-gray);
  padding: 0.6rem 1.5rem;
  transition: all var(--transition);
}

.music-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Diary Entries Section --- */

.diary-intro {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.diary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(61, 58, 55, 0.3);
  border: 1px solid rgba(61, 58, 55, 0.3);
}

.diary-card {
  background: var(--black);
  border: none;
  padding: 1.75rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100px;
}

.diary-card:hover {
  background: var(--charcoal);
}

.diary-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ivory);
  display: block;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.diary-card:hover .diary-card-title {
  color: var(--gold);
}

.diary-card-hint {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color var(--transition);
}

.diary-card:hover .diary-card-hint {
  color: var(--gold);
}

/* --- Diary Overlay / Modal --- */

.diary-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.diary-overlay.active {
  display: flex;
  opacity: 1;
}

.diary-overlay-inner {
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  border: 1px solid var(--mid-gray);
  background: var(--black);
}

.diary-overlay-inner::-webkit-scrollbar {
  width: 4px;
}
.diary-overlay-inner::-webkit-scrollbar-track {
  background: transparent;
}
.diary-overlay-inner::-webkit-scrollbar-thumb {
  background: var(--mid-gray);
}

.diary-overlay-close {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: none;
  color: var(--warm-gray);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  padding: 0 0 1rem 1rem;
  z-index: 1;
}

.diary-overlay-close:hover {
  color: var(--ivory);
}

.diary-overlay-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.diary-story-meta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.diary-story-body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.diary-story-body em {
  font-style: italic;
}

/* --- Artwork Section --- */

.artwork-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 600px;
}

.artwork-card {
  border: 1px solid var(--mid-gray);
  overflow: hidden;
}

.artwork-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.artwork-card:hover .artwork-image img {
  transform: scale(1.02);
}

.artwork-credit {
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--cream);
}

.artwork-credit strong {
  color: var(--ivory);
  font-weight: 500;
}

/* --- Trailers Section --- */

.trailers-note {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--warm-gray);
}

/* --- Back Link --- */

.discover-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mid-gray);
}

.discover-back a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color var(--transition);
}

.discover-back a:hover {
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .site-header {
    padding: 1.25rem 1.5rem;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  .nav-toggle { display: block; z-index: 101; }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .page-content, .page-content-wide {
    padding: 8rem 1.5rem 4rem;
  }

  .home-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .pla-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pla-cover {
    max-width: 280px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .diary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diary-overlay-inner {
    padding: 2rem 1.5rem;
  }

  .music-links {
    gap: 0.5rem;
  }

  .pub-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .pub-venue { text-align: left; }

  .award-item {
    flex-direction: column;
    gap: 0.15rem;
  }
}

@media (max-width: 480px) {
  .home-author {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
  }

  .home-nav a {
    font-size: 0.75rem;
  }
}
