/*
Theme Name: Nick Peres - XR Healthcare Innovation
Theme URI: https://nickperes.co.uk
Author: Will @ ODIN Discovery
Author URI: https://odindiscovery.com
Description: Premium professional theme for Dr. Nick Peres — Professor of Creative Health at Falmouth University, NHS XR Technologies Advisor, and founder of PatientVR. Dark charcoal design with teal accents reflecting human-centred healthcare innovation.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nickperes
Tags: one-column, custom-menu, featured-images, theme-options, dark-mode
*/

/* ==========================================================================
   CSS Variables — Premium Edition
   ========================================================================== */

:root {
  /* Dark palette — Deep Charcoal with variation */
  --bg-primary: #0C0E10;
  --bg-secondary: #111416;
  --bg-tertiary: #161A1C;
  --bg-card: #1A1E21;
  --bg-elevated: #1F2428;
  
  /* Text — Refined greys */
  --text-primary: #FFFFFF;
  --text-secondary: #C8CFD2;
  --text-tertiary: #8A9399;
  --text-muted: #5A6368;
  
  /* Teal accent — Single colour discipline */
  --accent: #00B4B4;
  --accent-light: #00D4D4;
  --accent-dark: #009090;
  --accent-subtle: rgba(0, 180, 180, 0.10);
  --accent-glow: rgba(0, 180, 180, 0.25);
  
  /* Gradient — matches logo */
  --gradient-accent: linear-gradient(135deg, #00B4B4 0%, #00D4D4 100%);
  
  /* Legacy aliases */
  --gold: var(--accent);
  --gold-light: var(--accent-light);
  --gold-dark: var(--accent-dark);
  --gold-subtle: var(--accent-subtle);
  
  /* Texture */
  --texture-honeycomb: url('https://nickperes.co.uk/wp-content/uploads/2025/11/Honey-scaled.jpg');
  
  /* Functional */
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.10);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px var(--accent-glow);
  
  /* Typography — Premium scale */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing — Generous breathing room */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
  --space-2xl: 7rem;
  --space-3xl: 10rem;
  --section-padding: clamp(6rem, 12vw, 10rem);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s var(--ease-out);
  --transition-medium: 0.3s var(--ease-out);
  --transition-slow: 0.6s var(--ease-premium);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Typography — Premium Bold
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { 
  font-size: clamp(3.5rem, 8vw, 5.5rem); 
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 { 
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h3 { 
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.015em;
}

h4 { 
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.75;
}

.lead {
  font-size: 1.375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Premium text utilities */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white {
  color: var(--text-primary);
}

.text-muted {
  color: var(--text-tertiary);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

/* ==========================================================================
   Sections — Premium with Texture & Depth
   ========================================================================== */

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

.section--large {
  padding: calc(var(--section-padding) * 1.25) 0;
}

/* Textured backgrounds — ACTUALLY VISIBLE */
.section--textured {
  position: relative;
}

.section--textured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-honeycomb);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: screen;
  z-index: 0;
  pointer-events: none;
}

.section--textured > * {
  position: relative;
  z-index: 1;
}

/* Alternate section backgrounds */
.section--dark {
  background: var(--bg-primary);
}

.section--darker {
  background: var(--bg-secondary);
}

.section--card {
  background: var(--bg-tertiary);
}

/* Section dividers — cinematic curves */
.section--curved::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: inherit;
  clip-path: ellipse(70% 60px at 50% 60px);
  z-index: -1;
}

/* Teal light line separator */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent-subtle) 20%,
    var(--accent) 50%,
    var(--accent-subtle) 80%,
    transparent 100%
  );
  margin: 0 auto;
  max-width: 400px;
}

/* Animated dot separator */
.section-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: var(--space-xl) 0;
}

.section-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: dotPulse 2s ease-in-out infinite;
}

.section-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.section-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-medium);
}

.site-header.scrolled {
  background: rgba(13, 13, 15, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-tagline {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  padding-left: var(--space-md);
  border-left: 1px solid var(--border);
}

@media (max-width: 768px) {
  .site-tagline {
    display: none;
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.primary-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  position: relative;
}

.primary-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-medium);
}

.primary-nav__link:hover,
.primary-nav__link.active {
  color: var(--text-primary);
}

.primary-nav__link:hover::after,
.primary-nav__link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section — Base
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

/* ==========================================================================
   Hero — Full Background Image Variant
   ========================================================================== */

.hero--fullbg {
  padding: 0;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.78) 25%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.32) 60%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 90%
  );
}

/* Honeycomb texture on hero — MORE VISIBLE */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-honeycomb);
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Subtle atmosphere for fullbg variant */
.hero__atmosphere--subtle {
  width: 50%;
  left: 0;
}

.hero__atmosphere--subtle .hero__glow--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 5%;
  opacity: 0.3;
}

/* Data ribbon constrained to left */
.hero--fullbg .hero__data-ribbon {
  width: 55%;
  left: 0;
  opacity: 0.25;
}

/* Content positioned left */
.hero__content--left {
  max-width: 580px;
  position: relative;
  z-index: 3;
  padding: var(--space-xl) 0 calc(var(--space-2xl) + 40px);
}

.hero--fullbg .hero__grid {
  display: block;
}

/* Hero element spacing — tighter for laptop screens */
.hero__eyebrow {
  margin-bottom: var(--space-sm);
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  margin-bottom: var(--space-md);
}

.hero__actions {
  margin-bottom: var(--space-md);
}

.hero__credentials {
  margin-bottom: var(--space-sm);
}

/* Inline stat card for fullbg variant */
.hero__stat-card--inline {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  background: rgba(24, 27, 29, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
  animation: floatCard 6s ease-in-out infinite;
}

/* Responsive for fullbg hero */
@media (max-width: 1024px) {
  .hero__bg-overlay {
    background: linear-gradient(
      90deg,
      rgba(18, 21, 22, 0.97) 0%,
      rgba(18, 21, 22, 0.9) 40%,
      rgba(18, 21, 22, 0.7) 70%,
      rgba(18, 21, 22, 0.5) 100%
    );
  }
  
  .hero__content--left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero__bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(18, 21, 22, 0.6) 0%,
      rgba(18, 21, 22, 0.85) 40%,
      rgba(18, 21, 22, 0.97) 70%,
      rgba(18, 21, 22, 1) 100%
    );
  }
  
  .hero__bg img {
    object-position: 70% center;
  }
  
  .hero--fullbg .hero__data-ribbon {
    width: 100%;
    opacity: 0.15;
  }
  
  .hero__stat-card--inline {
    display: none;
  }
}

/* Old gradient replaced by hero__atmosphere */

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  margin-bottom: var(--space-md);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 540px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.credential svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.hero__image {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}

.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 1;
}

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

.hero__accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  max-width: 280px;
}

.hero__accent-stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero__accent-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ==========================================================================
   Buttons — Premium Apple-like UI
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 16px rgba(0, 180, 180, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 32px rgba(0, 180, 180, 0.35),
    0 0 0 1px rgba(0, 212, 212, 0.3);
}

.btn--primary:active {
  transform: translateY(-1px);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding: 0.5rem 0;
}

.btn--ghost:hover {
  color: var(--accent-light);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-premium);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Full width on mobile */
@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 1.25rem 2rem;
  }
  
  .hero__actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   Quick Links Grid
   ========================================================================== */

.quick-links {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 0 auto;
}

.quick-link {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-medium);
}

.quick-link:hover {
  background: var(--bg-tertiary);
}

.quick-link__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  background: var(--gold-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
}

.quick-link:hover .quick-link__icon {
  background: var(--gold);
}

.quick-link__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: var(--transition-medium);
}

.quick-link:hover .quick-link__icon svg {
  color: var(--bg-primary);
}

.quick-link__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.quick-link__subtitle {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-sm);
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition-medium);
}

.card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.card__description {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-md);
}

.card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.card:hover .card__link svg {
  transform: translateX(4px);
}

/* Project Card */
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-medium);
}

.project-card:hover {
  border-color: var(--border-light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card__image {
  aspect-ratio: 16/9;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.project-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
}

.project-card__content {
  padding: var(--space-lg);
}

.project-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.project-card__excerpt {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  background: var(--bg-secondary);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__content h2 {
  margin-bottom: var(--space-md);
}

.about__content p {
  margin-bottom: var(--space-md);
}

.about__roles {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.role-badge {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ==========================================================================
   Featured Logos / As Seen In
   ========================================================================== */

/* Legacy logos-strip (keeping for compatibility) */
.logos-strip {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.logos-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.logos-strip__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.logos-strip__logos {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.logos-strip__logo {
  opacity: 0.5;
  transition: var(--transition-fast);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-tertiary);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
}

.logos-strip__logo:hover {
  opacity: 1;
}

/* ==========================================================================
   Logo Strip — Premium Image Version
   ========================================================================== */

.section--logos {
  padding: var(--space-xl) 0;
  background: var(--bg-tertiary);
}

.logos-strip__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.logos-strip__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.logos-strip__grid img {
  max-height: 42px;
  width: auto;
  filter: grayscale(1) opacity(0.8);
  transition: all 0.3s var(--ease-premium);
}

.logos-strip__grid img:hover {
  opacity: 1;
  filter: grayscale(0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .logos-strip__grid {
    gap: 1.5rem 2rem;
  }
  
  .logos-strip__grid img {
    max-height: 32px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: var(--space-md);
}

.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.footer__column h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
}

.footer__social {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer__social:hover {
  background: var(--gold);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer__social:hover svg {
  color: var(--bg-primary);
}

/* ==========================================================================
   Page Headers
   ========================================================================== */

.page-header {
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Textured background image — ACTUALLY VISIBLE */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://nickperes.co.uk/wp-content/uploads/2025/11/Honey-scaled.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: screen;
  z-index: 1;
}

/* Subtle gradient overlay — MUCH LIGHTER */
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 20, 22, 0.3) 0%,
    rgba(17, 20, 22, 0.5) 100%
  );
  z-index: 2;
}

.page-header--center {
  text-align: center;
}

.page-header__inner {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

/* Page header title — BRIGHT WHITE */
.page-header__title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.page-header--center .page-header__inner {
  margin: 0 auto;
}

.page-header__breadcrumbs {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-md);
}

.page-header__breadcrumbs a {
  color: var(--gold);
}

.page-header__breadcrumbs span {
  margin: 0 var(--space-xs);
}

.page-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-sm);
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.page-header--center .page-header__subtitle {
  margin: 0 auto;
}

/* ==========================================================================
   Content Styles
   ========================================================================== */

.content-area {
  max-width: 800px;
  margin: 0 auto;
}

.content-area p {
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.content-area h2,
.content-area h3,
.content-area h4 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-area ul,
.content-area ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  color: var(--text-secondary);
}

.content-area li {
  margin-bottom: var(--space-sm);
}

.content-area blockquote {
  border-left: 3px solid var(--gold);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) + 4px);
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline__year {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.timeline__description {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
}

/* ==========================================================================
   Publications List
   ========================================================================== */

.publication-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: var(--transition-medium);
}

.publication-item:hover {
  border-color: var(--border-light);
}

.publication-item__type {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
}

.publication-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.publication-item__journal {
  font-size: 0.9375rem;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.publication-item__meta {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-sm);
}

.publication-item__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ==========================================================================
   Contact Form
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero__grid,
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .hero__image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .quick-links__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .primary-nav__list {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .quick-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .hero__credentials {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .quick-links__grid {
    grid-template-columns: 1fr;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.wp-block-image {
  margin: var(--space-lg) 0;
}

.wp-block-image img {
  border-radius: var(--radius-md);
}

.alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ==========================================================================
   CINEMATIC HERO — Immersive + Atmospheric
   ========================================================================== */

/* Text gradient for emphasis */
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, #00E5E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero atmosphere container */
.hero__atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Animated glow orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 200, 0.4) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -7s;
  animation-duration: 25s;
}

.hero__glow--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 168, 168, 0.3) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: -14s;
  animation-duration: 18s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

/* Grid lines overlay */
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 168, 168, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 168, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 60%);
}

/* Particle effect placeholder */
.hero__particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(0, 200, 200, 0.15) 0%, transparent 0.5%),
                    radial-gradient(circle at 80% 20%, rgba(0, 200, 200, 0.1) 0%, transparent 0.3%),
                    radial-gradient(circle at 40% 40%, rgba(0, 168, 168, 0.08) 0%, transparent 0.4%),
                    radial-gradient(circle at 60% 70%, rgba(0, 200, 200, 0.12) 0%, transparent 0.35%),
                    radial-gradient(circle at 90% 60%, rgba(0, 168, 168, 0.1) 0%, transparent 0.25%);
  animation: particleShift 30s ease-in-out infinite;
}

@keyframes particleShift {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-20px) translateY(10px); }
}

/* Data ribbon SVG */
.hero__data-ribbon {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.ribbon-svg {
  position: absolute;
  width: 150%;
  height: 100%;
  left: -25%;
}

.ribbon-path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.ribbon-path--1 {
  stroke: var(--accent);
  stroke-dasharray: 20 30;
  animation: ribbonFlow 8s linear infinite;
}

.ribbon-path--2 {
  stroke: rgba(0, 196, 196, 0.5);
  stroke-dasharray: 15 40;
  animation: ribbonFlow 12s linear infinite reverse;
}

.ribbon-path--3 {
  stroke: rgba(0, 168, 168, 0.3);
  stroke-dasharray: 25 35;
  animation: ribbonFlow 10s linear infinite;
  animation-delay: -3s;
}

@keyframes ribbonFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

/* Eyebrow with animated dot */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Glowing primary button */
.btn--glow {
  position: relative;
  overflow: hidden;
}

.btn--glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--accent));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s ease;
}

.btn--glow:hover::before {
  opacity: 0.6;
}

/* Glass button */
.btn--glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Credential icons with glow */
.credential__icon {
  width: 32px;
  height: 32px;
  background: var(--accent-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition-fast);
}

.credential:hover .credential__icon {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--accent-subtle);
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  transition: var(--transition-fast);
}

.credential:hover {
  color: var(--text-primary);
}

/* Hero visual container */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VR Frame with glow */
.hero__vr-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__vr-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, var(--accent-subtle) 0%, transparent 60%);
  filter: blur(40px);
  animation: breathe 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes breathe {
  0%, 100% { 
    opacity: 0.5;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero__image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}

.hero__image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 21, 22, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

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

/* Placeholder styling */
.hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
}

.hero__placeholder-icon {
  color: var(--accent);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

.hero__placeholder span {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

/* Floating stat cards */
.hero__stat-card {
  position: absolute;
  background: rgba(24, 27, 29, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  animation: floatCard 6s ease-in-out infinite;
}

.hero__stat-card--1 {
  bottom: 10%;
  left: -15%;
  animation-delay: 0s;
}

.hero__stat-card--2 {
  top: 15%;
  right: -10%;
  animation-delay: -3s;
  text-align: center;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero__stat-number span {
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__stat-icon {
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.hero__stat-pulse {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-tertiary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { 
    transform: scaleY(0);
    transform-origin: top;
  }
  50% { 
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% { 
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% { 
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Hero responsive adjustments */
@media (max-width: 1024px) {
  .hero__stat-card--1 {
    left: 0;
    bottom: -10%;
  }
  
  .hero__stat-card--2 {
    right: 0;
    top: -5%;
  }
  
  .hero__glow--1 {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero__stat-card {
    display: none;
  }
  
  .hero__scroll {
    display: none;
  }
  
  .hero__data-ribbon {
    opacity: 0.2;
  }
}

/* ==========================================================================
   Centered 3-column grid for "Areas of Expertise"
   ========================================================================== */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Podcasts hero: ensure bright, readable text above the texture
   ========================================================================== */

.page-header.page-header--center.section--textured .page-header__inner {
  position: relative;
  z-index: 10;
}

.page-header.page-header--center.section--textured .page-header__title,
.page-header.page-header--center.section--textured .page-header__subtitle,
.page-header.page-header--center.section--textured .page-header__eyebrow {
  color: #FFFFFF !important;
  opacity: 1 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}

/* ---- FIX: Make Podcasts hero text bright and above background ---- */
body.post-type-archive-np_podcast .page-header__inner {
  position: relative;
  z-index: 10;
}
body.post-type-archive-np_podcast .page-header__eyebrow,
body.post-type-archive-np_podcast .page-header__title,
body.post-type-archive-np_podcast .page-header__subtitle {
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}
