/* ========================================
   BLAKE TURLEY — MIDNIGHT NEON EDITORIAL
   Gucci Blue foundation + neon atmosphere
   ======================================== */

:root {
  /* Foundation — deep navy (Gucci Blue DNA) */
  --bg-abyss: #060C1F;
  --bg-deep: #091326;
  --bg-mid: #0E1A38;
  --bg-elevated: #132347;

  /* Neon palette */
  --neon-cyan: #00FFFF;
  --neon-green: #39FF14;
  --neon-blue: #0080FF;
  --neon-pink: #FF1493;
  --neon-gold: #C9A96E;

  /* Neon glows (for box-shadow / radial-gradient) */
  --glow-cyan: rgba(0, 255, 255, 0.15);
  --glow-green: rgba(57, 255, 20, 0.12);
  --glow-blue: rgba(0, 128, 255, 0.15);
  --glow-gold: rgba(201, 169, 110, 0.10);
  --glow-pink: rgba(255, 20, 147, 0.12);

  /* Text */
  --text-bright: #F0EDE6;
  --text-primary: #C8C3B8;
  --text-secondary: #8A8577;
  --text-muted: #5C5850;

  /* Borders */
  --border: rgba(0, 255, 255, 0.08);
  --border-hover: rgba(0, 255, 255, 0.2);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Garamond, serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-ui: 'Outfit', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container: 1000px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-abyss);
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain — very subtle */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

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

/* ========================================
   NEON STRIPE — Animated brand signature
   ======================================== */

.neon-stripe {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--neon-cyan) 20%,
    var(--neon-green) 40%,
    var(--neon-gold) 50%,
    var(--neon-blue) 70%,
    transparent 100%
  );
  box-shadow: 0 0 12px var(--glow-cyan), 0 0 24px var(--glow-green);
  animation: stripePulse 3s ease-in-out infinite;
}

@keyframes stripePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 12, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--neon-cyan);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--glow-cyan);
  position: relative;
}

.nav-logo-mark::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-gold), var(--neon-cyan));
  box-shadow: 0 0 6px var(--glow-cyan);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-bright);
}

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

.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--glow-cyan);
}

.nav-links .nav-firm {
  color: var(--text-muted);
  font-size: 10px;
  border-left: 1px solid rgba(0, 255, 255, 0.1);
  padding-left: 32px;
}

.nav-links .nav-firm:hover {
  color: var(--neon-gold);
  text-shadow: 0 0 12px var(--glow-gold);
}

/* 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(--neon-cyan);
  margin: 5px 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px var(--glow-cyan);
}

/* ========================================
   HERO — Neon-lit editorial
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 var(--section-pad);
  position: relative;
}

/* Ambient neon glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 15% 50%, rgba(0, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 400px 300px at 85% 30%, rgba(57, 255, 20, 0.02), transparent),
    radial-gradient(ellipse 300px 300px at 70% 80%, rgba(201, 169, 110, 0.025), transparent);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-gold);
  text-shadow: 0 0 16px var(--glow-gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--text-bright);
  letter-spacing: -0.025em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-name-accent {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.05;
  font-weight: 400;
  font-style: italic;
  color: var(--neon-cyan);
  letter-spacing: -0.025em;
  text-shadow: 0 0 40px var(--glow-cyan);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-intro {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--text-primary);
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-social {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.0s;
}

.hero-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero-social a:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background: rgba(0, 255, 255, 0.04);
  box-shadow: 0 0 16px var(--glow-cyan);
  text-shadow: 0 0 8px var(--glow-cyan);
}

.hero-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

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

/* ========================================
   SECTION SHARED
   ======================================== */

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-gold);
  text-shadow: 0 0 12px var(--glow-gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--text-bright);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-heading em {
  font-style: italic;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--glow-cyan);
}

.section-desc {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   VIDEOS — Featured content
   ======================================== */

.videos-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.video-featured {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 32px;
}

.video-featured:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px var(--glow-cyan), 0 12px 48px rgba(0,0,0,0.4);
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-abyss);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.video-embed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.03), transparent 70%);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px var(--glow-cyan);
  transition: all 0.3s ease;
}

.video-embed:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--glow-cyan), 0 0 80px rgba(0, 255, 255, 0.08);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--neon-cyan);
  margin-left: 4px;
  filter: drop-shadow(0 0 8px var(--glow-cyan));
}

.video-info {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.video-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-green);
  text-shadow: 0 0 8px var(--glow-green);
  margin-bottom: 6px;
}

.video-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.3;
}

.video-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-left: 32px;
  padding-top: 4px;
}

/* Video grid — secondary videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 0 24px var(--glow-cyan), 0 8px 32px rgba(0,0,0,0.3);
}

.video-card-thumb {
  aspect-ratio: 16 / 9;
  background: var(--bg-abyss);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-card-thumb .play-btn {
  width: 40px;
  height: 40px;
  border-width: 1.5px;
}

.video-card-thumb .play-btn svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.video-card-body {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

.video-card-body .video-tag {
  font-size: 8px;
  margin-bottom: 4px;
}

.video-card-body .video-title {
  font-size: 16px;
}

/* ========================================
   JOURNAL / BLOG — Personal writing
   ======================================== */

.journal-section {
  position: relative;
}

.journal-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.02), transparent 70%);
  pointer-events: none;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.journal-card {
  display: block;
  text-decoration: none;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.journal-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--neon-green);
  box-shadow: 0 0 12px var(--glow-green);
  transition: width 0.3s ease;
}

.journal-card:hover::before {
  width: 3px;
}

.journal-card:hover {
  padding-left: 20px;
  border-color: var(--border-hover);
}

.journal-category {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.journal-category--law { color: var(--neon-cyan); text-shadow: 0 0 8px var(--glow-cyan); }
.journal-category--peppers { color: var(--neon-green); text-shadow: 0 0 8px var(--glow-green); }
.journal-category--photo { color: var(--neon-pink); text-shadow: 0 0 8px var(--glow-pink); }
.journal-category--brew { color: var(--neon-gold); text-shadow: 0 0 8px var(--glow-gold); }
.journal-category--life { color: var(--neon-blue); text-shadow: 0 0 8px var(--glow-blue); }
.journal-category--building { color: var(--neon-blue); text-shadow: 0 0 8px var(--glow-blue); }

.journal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-bright);
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.journal-card:hover .journal-title {
  color: var(--neon-cyan);
}

.journal-excerpt {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.journal-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Featured journal entry — full width */
.journal-featured {
  grid-column: 1 / -1;
  padding: 40px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.4s ease;
}

.journal-featured:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 32px var(--glow-cyan);
  padding-left: 40px;
}

.journal-featured::before { display: none; }

.journal-featured .journal-title {
  font-size: 28px;
  font-style: normal;
}

.journal-featured .journal-title em {
  font-style: italic;
  color: var(--neon-cyan);
}

.journal-featured .journal-excerpt {
  font-size: 18px;
  max-width: 640px;
}

/* ========================================
   NEWSLETTER — Email capture with neon glow
   ======================================== */

.newsletter-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 50% 50%, rgba(0, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.newsletter-content { position: relative; z-index: 1; }

.newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.newsletter-heading em {
  font-style: italic;
  color: var(--neon-cyan);
  text-shadow: 0 0 24px var(--glow-cyan);
}

.newsletter-desc {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.newsletter-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-bright);
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 16px 20px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder { color: var(--text-muted); }

.newsletter-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px var(--glow-cyan);
}

.newsletter-btn {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-abyss);
  background: var(--neon-green);
  border: none;
  border-radius: 3px;
  padding: 16px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0 16px var(--glow-green);
}

.newsletter-btn:hover {
  background: #4dff33;
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--glow-green), 0 4px 20px rgba(57, 255, 20, 0.2);
}

.newsletter-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ========================================
   ABOUT — Personal, neon-lit sidebar
   ======================================== */

.about-section { position: relative; }

.about-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 300px;
  height: 500px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.03), transparent 70%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.about-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-primary);
}

.about-text p { margin-bottom: 24px; }

.about-text .first-line {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.5;
}

.about-text .first-line em {
  font-style: italic;
  color: var(--neon-cyan);
  text-shadow: 0 0 16px var(--glow-cyan);
}

.about-sidebar {
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

.about-sidebar-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-gold);
  text-shadow: 0 0 8px var(--glow-gold);
  margin-bottom: 16px;
}

.about-sidebar-list {
  list-style: none;
  margin-bottom: 32px;
}

.about-sidebar-list li {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.about-sidebar-list li:hover {
  color: var(--text-bright);
  border-color: var(--border-hover);
  padding-left: 8px;
}

.about-sidebar-list li:last-child { border-bottom: none; }

.about-sidebar-list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-sidebar-list li a:hover {
  color: var(--neon-cyan);
}

/* ========================================
   CONTACT — Neon-minimal
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-method {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.contact-method-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-gold);
  text-shadow: 0 0 8px var(--glow-gold);
  margin-bottom: 12px;
}

.contact-method-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-bright);
}

.contact-method-value a {
  color: var(--text-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-method-value a:hover {
  color: var(--neon-cyan);
  border-bottom-color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--glow-cyan);
}

.contact-method-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 8px;
}

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

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left { display: flex; flex-direction: column; gap: 6px; }

.footer-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-bright);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
}

.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--glow-cyan);
}

.footer-firm-link {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-firm-link:hover {
  color: var(--neon-gold);
  text-shadow: 0 0 8px var(--glow-gold);
}

/* ========================================
   BOOKSHELF — Neon-lit reading list
   ======================================== */

.bookshelf-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.bookshelf-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.025), transparent 70%);
  pointer-events: none;
}

.bookshelf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.book-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 28px 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 0 24px var(--glow-gold), 0 8px 32px rgba(0,0,0,0.3);
}

.book-card--current {
  border-color: rgba(201, 169, 110, 0.2);
  background: linear-gradient(135deg, var(--bg-mid), rgba(201, 169, 110, 0.04));
}

.book-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-gold);
  text-shadow: 0 0 8px var(--glow-gold);
  margin-bottom: 14px;
}

.book-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-bright);
  margin-bottom: 4px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

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

.book-author {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--neon-cyan);
  margin-bottom: 12px;
}

.book-note {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   BLOG — Long-form essay list
   ======================================== */

.blog-section {
  position: relative;
}

.blog-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 128, 255, 0.02), transparent 70%);
  pointer-events: none;
}

.blog-list {
  display: flex;
  flex-direction: column;
}

.blog-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.blog-entry::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--neon-blue);
  box-shadow: 0 0 12px var(--glow-blue);
  transition: width 0.3s ease;
}

.blog-entry:first-child {
  border-top: 1px solid var(--border);
}

.blog-entry:hover {
  padding-left: 24px;
}

.blog-entry:hover::before {
  width: 3px;
}

.blog-entry-inner {
  flex: 1;
}

.blog-entry-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-blue);
  text-shadow: 0 0 8px var(--glow-blue);
  margin-bottom: 8px;
  display: inline-block;
}

.blog-entry-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.blog-entry:hover .blog-entry-title {
  color: var(--neon-cyan);
}

.blog-entry--featured .blog-entry-title {
  font-size: 26px;
}

.blog-entry-excerpt {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.blog-entry-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.blog-entry-date {
  color: var(--text-muted);
}

.blog-entry-arrow {
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.blog-entry:hover .blog-entry-arrow {
  color: var(--neon-cyan);
  transform: translateX(4px);
  filter: drop-shadow(0 0 8px var(--glow-cyan));
}

/* ========================================
   PHOTOGRAPHY — Masonry-ish gallery
   ======================================== */

.photography-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.photography-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 40%, rgba(255, 20, 147, 0.015), transparent),
    radial-gradient(ellipse 400px 300px at 70% 60%, rgba(0, 255, 255, 0.015), transparent);
  pointer-events: none;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.photo-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.photo-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 32px var(--glow-pink), 0 8px 32px rgba(0,0,0,0.4);
  transform: scale(1.02);
  z-index: 2;
}

.photo-card--tall {
  grid-row: span 2;
}

.photo-card--wide {
  grid-column: span 2;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card:hover img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(6, 12, 31, 0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.photo-card:hover .photo-overlay {
  opacity: 1;
  transform: translateY(0);
}

.photo-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-bright);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.photo-cta {
  margin-top: 40px;
  text-align: center;
}

.photo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.photo-link:hover {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
  background: rgba(255, 20, 147, 0.04);
  box-shadow: 0 0 16px var(--glow-pink);
  text-shadow: 0 0 8px var(--glow-pink);
}

/* ========================================
   SINGLE POST / LIST — Content pages
   ======================================== */

.post-content {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-primary);
  max-width: 680px;
  margin-top: 48px;
}

.post-content p { margin-bottom: 24px; }

.post-content h2, .post-content h3 {
  font-family: var(--font-display);
  color: var(--text-bright);
  margin: 48px 0 16px;
}

.post-content a {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 255, 0.3);
  transition: text-decoration-color 0.3s ease;
}

.post-content a:hover {
  text-decoration-color: var(--neon-cyan);
}

.post-content blockquote {
  border-left: 3px solid var(--neon-cyan);
  padding-left: 24px;
  margin: 32px 0;
  color: var(--text-secondary);
  font-style: italic;
}

.post-content code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-mid);
  padding: 2px 8px;
  border-radius: 3px;
  color: var(--neon-green);
}

.post-content pre {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  overflow-x: auto;
  margin: 32px 0;
}

.post-content pre code {
  background: none;
  padding: 0;
}

/* Editorial card for list pages */
.editorial-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  transition: border-color 0.4s ease;
  text-decoration: none;
  display: block;
}

.editorial-card:hover {
  border-bottom-color: var(--neon-cyan);
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-green);
  text-shadow: 0 0 8px var(--glow-green);
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-bright);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-title a:hover {
  color: var(--neon-cyan);
}

.card-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

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

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .video-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-featured { padding: 28px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .bookshelf-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .photo-card--tall { grid-row: span 2; }
  .photo-card--wide { grid-column: span 1; }
  .blog-entry--featured .blog-entry-title { font-size: 22px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-right { align-items: center; }
  .hero-social { flex-wrap: wrap; }
  .video-info { flex-direction: column; gap: 8px; }
  .video-date { margin-left: 0; }
}
