/*
Theme Name: DNR Studios
Theme URI: https://dnrstudios.com
Author: DNR Studios
Author URI: https://dnrstudios.com
Description: A premium dark cinematic WordPress theme for creative agencies and production houses. Features video hero backgrounds, animated statistics, scrolling marquees, brand carousels, and full-screen overlay navigation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dnr-studios
Tags: dark, entertainment, portfolio, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===================================================================
   DESIGN TOKENS
   =================================================================== */

:root {
  /* Colors — Dark Cinematic Palette */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-tertiary: #1a1a1a;
  --color-bg-card: #151515;
  --color-bg-overlay: rgba(0, 0, 0, 0.92);
  --color-bg-glass: rgba(255, 255, 255, 0.04);

  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(255, 255, 255, 0.4);
  --color-text-accent: #e8c872;

  --color-accent-primary: #FF6F00;
  --color-accent-secondary: #FFAB00;
  --color-accent-glow: rgba(232, 200, 114, 0.15);

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.2);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-display: clamp(3.5rem, 8vw, 8rem);
  --fs-h1: clamp(2.5rem, 5vw, 5rem);
  --fs-h2: clamp(2rem, 4vw, 3.5rem);
  --fs-h3: clamp(1.5rem, 2.5vw, 2rem);
  --fs-h4: clamp(1.125rem, 1.5vw, 1.5rem);
  --fs-body: clamp(0.938rem, 1vw, 1.125rem);
  --fs-small: clamp(0.813rem, 0.9vw, 0.875rem);
  --fs-caption: 0.75rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  --ls-tight: -0.03em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.1em;
  --ls-widest: 0.2em;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  --space-4xl: 12rem;

  --container-max: 1400px;
  --container-narrow: 900px;
  --container-padding: clamp(1.5rem, 4vw, 4rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
  --duration-slower: 800ms;
  --duration-slowest: 1200ms;

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-toast: 1500;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}


/* ===================================================================
   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 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}


/* ===================================================================
   UTILITIES
   =================================================================== */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slower) var(--ease-out-expo),
    transform var(--duration-slower) var(--ease-out-expo);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}


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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-md) var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color var(--duration-normal) ease,
    padding var(--duration-normal) ease;
}

.site-header.is-scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.site-logo {
  position: relative;
  z-index: var(--z-modal);
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

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

.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-primary);
}

/* Hamburger Menu Toggle */
.menu-toggle {
  position: relative;
  z-index: var(--z-modal);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: background-color var(--duration-fast) ease;
}

.menu-toggle:hover {
  background-color: var(--color-bg-glass);
}

.menu-toggle__lines {
  width: 28px;
  height: 18px;
  position: relative;
}

.menu-toggle__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: transform var(--duration-normal) var(--ease-out-expo),
    opacity var(--duration-fast) ease;
  border-radius: 2px;
}

.menu-toggle__line:nth-child(1) {
  top: 0;
}

.menu-toggle__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle__line:nth-child(3) {
  bottom: 0;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Full-Screen Overlay Menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background-color: var(--color-bg-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease-out-expo),
    visibility var(--duration-slow);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__inner {
  text-align: center;
}

.nav-overlay__menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-overlay__menu li {
  overflow: hidden;
}

.nav-overlay__menu a {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-primary);
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-out-expo),
    color var(--duration-fast) ease;
  position: relative;
}

.nav-overlay.is-open .nav-overlay__menu a {
  transform: translateY(0);
}

.nav-overlay__menu li:nth-child(1) a {
  transition-delay: 100ms;
}

.nav-overlay__menu li:nth-child(2) a {
  transition-delay: 150ms;
}

.nav-overlay__menu li:nth-child(3) a {
  transition-delay: 200ms;
}

.nav-overlay__menu li:nth-child(4) a {
  transition-delay: 250ms;
}

.nav-overlay__menu li:nth-child(5) a {
  transition-delay: 300ms;
}

.nav-overlay__menu li:nth-child(6) a {
  transition-delay: 350ms;
}

.nav-overlay__menu a:hover {
  color: var(--color-accent-primary);
}

.nav-overlay__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--color-accent-primary);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

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

.nav-overlay__social {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out-expo) 400ms,
    transform var(--duration-slow) var(--ease-out-expo) 400ms;
}

.nav-overlay.is-open .nav-overlay__social {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay__social a {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
  transition: color var(--duration-fast) ease;
}

.nav-overlay__social a:hover {
  color: var(--color-accent-primary);
}


/* ===================================================================
   HERO SECTION
   =================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg-primary);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.1) 40%,
      rgba(10, 10, 10, 0.6) 80%,
      rgba(10, 10, 10, 1) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--container-padding);
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: var(--fs-h4);
  font-weight: var(--fw-light);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

/* Sound Toggle */
.hero__sound-toggle {
  position: absolute;
  bottom: var(--space-2xl);
  right: var(--container-padding);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-full);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
}

.hero__sound-toggle:hover {
  border-color: var(--color-text-primary);
  color: var(--color-text-primary);
}

.hero__sound-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  animation: scrollBounce 2s var(--ease-in-out) infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


/* ===================================================================
   STATS SECTION
   =================================================================== */

.stats {
  padding: var(--space-3xl) 0;
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--color-text-primary);
  position: relative;
}

.stats__number .suffix {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--color-accent-primary);
}

.stats__label {
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
}


/* ===================================================================
   CTA SECTION
   =================================================================== */

.cta-section {
  padding: var(--space-4xl) 0;
  text-align: center;
  background-color: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-section__heading {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-snug);
}

.cta-section__description {
  font-size: var(--fs-h4);
  font-weight: var(--fw-light);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  line-height: var(--lh-relaxed);
}

/* Arrow CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--duration-fast) ease,
    gap var(--duration-normal) var(--ease-out-expo);
}

.cta-button:hover {
  color: var(--color-accent-primary);
  gap: var(--space-md);
}

.cta-button__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid currentColor;
  transition: background-color var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    transform var(--duration-normal) var(--ease-out-expo);
}

.cta-button:hover .cta-button__arrow {
  background-color: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
  color: var(--color-bg-primary);
  transform: scale(1.1);
}

.cta-button__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Alt CTA button style */
.cta-button--outline {
  font-size: var(--fs-body);
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) ease;
}

.cta-button--outline:hover {
  background-color: var(--color-text-primary);
  color: var(--color-bg-primary);
  border-color: var(--color-text-primary);
}


/* ===================================================================
   BRAND CAROUSEL
   =================================================================== */

.brands {
  padding: var(--space-3xl) 0;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.brands__heading {
  text-align: center;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.brands__track-wrapper {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands__track {
  display: flex;
  gap: var(--space-2xl);
  animation: brandScroll 30s linear infinite;
  width: max-content;
}

.brands__track:hover {
  animation-play-state: paused;
}

.brands__logo {
  flex-shrink: 0;
  height: 40px;
  width: auto;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity var(--duration-fast) ease;
}

.brands__logo:hover {
  opacity: 0.8;
}

@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brands__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}


/* ===================================================================
   CAPABILITIES MARQUEE
   =================================================================== */

.capabilities {
  padding: var(--space-4xl) 0;
  background-color: var(--color-bg-primary);
  text-align: center;
  overflow: hidden;
}

.capabilities__label {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xl);
}

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__word {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--fw-extrabold);
  color: transparent;
  -webkit-text-stroke: 1px var(--color-text-secondary);
  padding: 0 var(--space-xl);
  position: relative;
  transition: color var(--duration-fast) ease,
    -webkit-text-stroke var(--duration-fast) ease;
  white-space: nowrap;
}

.marquee__word:hover {
  color: var(--color-text-primary);
  -webkit-text-stroke: 0px transparent;
}

.marquee__word::after {
  content: '·';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent-primary);
  font-size: 0.5em;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.capabilities__description {
  margin-top: var(--space-2xl);
  font-size: var(--fs-h4);
  font-weight: var(--fw-light);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

.capabilities__cta {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}


/* ===================================================================
   GLOBAL / MAP SECTION
   =================================================================== */

.global {
  padding: var(--space-4xl) 0;
  background-color: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.global__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.global__content {
  position: relative;
  z-index: 2;
}

.global__heading {
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3xl);
}

.global__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.global__stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent-primary);
  line-height: 1;
}

.global__stat-label {
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}


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

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

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

.footer__column-title {
  font-family: var(--font-heading);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.footer__nav a {
  display: block;
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) ease,
    padding-left var(--duration-normal) var(--ease-out-expo);
}

.footer__nav a:hover {
  color: var(--color-text-primary);
  padding-left: var(--space-xs);
}

.footer__office {
  margin-bottom: var(--space-lg);
}

.footer__office-name {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.footer__office-address {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__social-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) ease;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

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

.footer__legal a {
  color: var(--color-text-muted);
  transition: color var(--duration-fast) ease;
}

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


/* ===================================================================
   BLOG / POSTS
   =================================================================== */

.blog-header {
  padding: calc(var(--space-4xl) + 80px) 0 var(--space-2xl);
  text-align: center;
  background-color: var(--color-bg-primary);
}

.blog-header__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.blog-header__description {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-lg);
  padding-bottom: var(--space-3xl);
}

.post-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--duration-normal) var(--ease-out-expo),
    border-color var(--duration-fast) ease;
}

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

.post-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.post-card__body {
  padding: var(--space-md);
}

.post-card__meta {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.post-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-xs);
}

.post-card__title a {
  transition: color var(--duration-fast) ease;
}

.post-card__title a:hover {
  color: var(--color-accent-primary);
}

.post-card__excerpt {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Single Post */
.single-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.single-hero__image {
  position: absolute;
  inset: 0;
}

.single-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-bg-primary), transparent 60%);
}

.single-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--container-padding);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.single-hero__meta {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.single-hero__title {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}

.single-content {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding: var(--space-2xl) var(--container-padding) var(--space-3xl);
}

.single-content h2 {
  font-size: var(--fs-h3);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
}

.single-content h3 {
  font-size: var(--fs-h4);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.single-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.single-content a {
  color: var(--color-accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-content a:hover {
  color: var(--color-accent-secondary);
}

.single-content blockquote {
  border-left: 3px solid var(--color-accent-primary);
  padding-left: var(--space-md);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

.single-content img {
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

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

.single-content li {
  margin-bottom: var(--space-xs);
  list-style: disc;
}

.single-content ol li {
  list-style: decimal;
}

/* Post Navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.post-nav__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.post-nav__item--next {
  text-align: right;
}

.post-nav__label {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-text-muted);
}

.post-nav__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  transition: color var(--duration-fast) ease;
}

.post-nav__title:hover {
  color: var(--color-accent-primary);
}


/* ===================================================================
   PAGE TEMPLATE
   =================================================================== */

.page-header {
  padding: calc(var(--space-4xl) + 80px) 0 var(--space-2xl);
  text-align: center;
}

.page-header__title {
  font-size: var(--fs-h1);
}

.page-content {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding: 0 var(--container-padding) var(--space-3xl);
}

.page-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.page-content h2 {
  font-size: var(--fs-h3);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
}

.page-content a {
  color: var(--color-accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content img {
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}


/* ===================================================================
   404 PAGE
   =================================================================== */

.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--container-padding);
}

.error-404__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 15rem);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-border-hover);
  margin-bottom: var(--space-md);
}

.error-404__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.error-404__text {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 500px;
}


/* ===================================================================
   SEARCH
   =================================================================== */

.search-form {
  display: flex;
  gap: var(--space-xs);
  max-width: 500px;
  margin-inline: auto;
}

.search-form__input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-primary);
  font-size: var(--fs-body);
  transition: border-color var(--duration-fast) ease;
}

.search-form__input:focus {
  border-color: var(--color-accent-primary);
}

.search-form__input::placeholder {
  color: var(--color-text-muted);
}

.search-form__submit {
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-text-primary);
  color: var(--color-bg-primary);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  transition: background-color var(--duration-fast) ease;
}

.search-form__submit:hover {
  background-color: var(--color-accent-primary);
}


/* ===================================================================
   COMMENTS
   =================================================================== */

.comments-section {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding: var(--space-2xl) var(--container-padding) var(--space-3xl);
}

.comments-section__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xl);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.comment {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.comment__avatar img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
}

.comment__meta {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.comment__author {
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

.comment__content p {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
}

.comment-respond {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.comment-respond label {
  display: block;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
  width: 100%;
  padding: var(--space-sm);
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  transition: border-color var(--duration-fast) ease;
}

.comment-respond input:focus,
.comment-respond textarea:focus {
  border-color: var(--color-accent-primary);
}

.comment-respond textarea {
  min-height: 120px;
  resize: vertical;
}

.comment-respond .submit {
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-text-primary);
  color: var(--color-bg-primary);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--duration-fast) ease;
}

.comment-respond .submit:hover {
  background-color: var(--color-accent-primary);
}


/* ===================================================================
   SIDEBAR
   =================================================================== */

.sidebar {
  padding: var(--space-lg) 0;
}

.widget {
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.widget-title {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.widget ul li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border);
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) ease;
}

.widget ul li a:hover {
  color: var(--color-accent-primary);
}


/* ===================================================================
   PAGINATION
   =================================================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xl) 0 var(--space-3xl);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  transition: all var(--duration-fast) ease;
}

.pagination a {
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

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

.pagination .current {
  background-color: var(--color-text-primary);
  color: var(--color-bg-primary);
}


/* ===================================================================
   WORDPRESS CORE STYLES
   =================================================================== */

.alignleft {
  float: left;
  margin-right: var(--space-md);
  margin-bottom: var(--space-md);
}

.alignright {
  float: right;
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.aligncenter {
  display: block;
  margin-inline: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: var(--fs-caption);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.gallery-item img {
  border-radius: var(--radius-md);
}

.sticky .post-card {
  border-color: var(--color-accent-primary);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


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

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .global__stats {
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .stats__number {
    font-size: var(--fs-h1);
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .global__stats {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav__item--next {
    text-align: left;
  }

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

  .capabilities__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__sound-toggle {
    bottom: var(--space-lg);
    right: var(--space-sm);
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-button {
    font-size: var(--fs-body);
  }

  .cta-button__arrow {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-overlay__menu a {
    font-size: 2rem;
  }
}

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

.work-page {
  padding: calc(var(--space-4xl) + 80px) 0 var(--space-4xl);
  background-color: var(--color-bg-primary);
  min-height: 100vh;
}

/* Filters Toggle */
.work-filters {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-4xl);
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  padding-bottom: 4px;
  position: relative;
  transition: color var(--duration-fast) ease;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent-primary);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

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

.filter-btn.is-active {
  color: var(--color-text-primary);
}

.filter-btn.is-active::after {
  width: 100%;
}

/* Views Container */
.work-view {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

.work-view.is-active {
  display: block;
  animation: fadeUpIn var(--duration-slow) var(--ease-out-expo) forwards;
}

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

/* Categories / Clients Rows (Hybrid List-Grid) */
.work-row {
  display: grid;
  grid-template-columns: minmax(auto, 1fr) minmax(auto, 1.5fr) 300px;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) var(--container-padding);
  border-top: 1px solid var(--color-border);
  position: relative;
  transition: background-color var(--duration-fast) ease;
  margin-inline: calc(var(--container-padding) * -1); /* Full width bleed out to container edge */
}

.work-row:last-child {
  border-bottom: 1px solid var(--color-border);
}

.work-row__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  transition: color var(--duration-fast) ease;
}

.work-row__tagline {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  transition: color var(--duration-fast) ease;
}

.work-row__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

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

/* High Contrast Hover Effect */
.work-row:hover {
  background-color: #000;
  border-top-color: transparent;
  z-index: 2;
  box-shadow: 0 0 0 1px #000;
}

.work-row:hover .work-row__title {
  color: #fff;
}

.work-row:hover .work-row__tagline {
  color: rgba(255, 255, 255, 0.9);
}

.work-row:hover .work-row__thumb {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(0.95);
}

/* All View (Chronological List) */
.work-year-header {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: var(--fw-extrabold);
  color: transparent;
  -webkit-text-stroke: 1px var(--color-text-muted);
  line-height: 1;
  margin: var(--space-4xl) 0 var(--space-lg);
  position: sticky;
  top: 100px;
  z-index: -1;
  opacity: 0.4;
}

.work-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  transition: padding-left var(--duration-normal) var(--ease-out-expo),
              padding-right var(--duration-normal) var(--ease-out-expo);
}

.work-list-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
}

.work-list-item__title a {
  transition: color var(--duration-fast) ease;
}

.work-list-item__client {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.work-list-item:hover {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.work-list-item:hover .work-list-item__title a {
  color: var(--color-accent-primary);
}

@media (max-width: 1024px) {
  .work-row {
    grid-template-columns: 1fr 200px;
  }
  .work-row__tagline {
    display: none;
  }
}

@media (max-width: 768px) {
  .work-row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .work-row__thumb {
    width: 60%;
    margin-top: var(--space-sm);
  }
  .work-list-item {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

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

.about-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
}

/* Hero Section */
.about-hero {
  padding: calc(var(--space-4xl) + 120px) 0 var(--space-4xl);
  text-align: center;
  position: relative;
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
}

.about-hero__plus {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--color-accent-primary);
  opacity: 0.5;
  margin: var(--space-xl) auto;
}

/* Manifesto Section */
.about-manifesto {
  padding: var(--space-4xl) 0;
}

.manifesto-text {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

/* Story Section */
.about-story {
  padding: var(--space-4xl) 0;
}

.story__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
  text-align: center;
}

.story__text {
  font-size: var(--fs-h4);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
  text-align: center;
  position: relative;
}

/* Staff Grid */
.about-staff {
  padding: var(--space-4xl) 0 var(--space-4xl);
}

.staff-group {
  margin-bottom: var(--space-4xl);
}

.staff-group__header {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.staff-member {
  display: flex;
  flex-direction: column;
}

.staff-member__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
  margin-bottom: var(--space-sm);
}

.staff-member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--duration-normal) ease;
}

.staff-member:hover .staff-member__img img {
  filter: grayscale(0%);
}

.staff-member__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-tertiary), rgba(255, 255, 255, 0.05));
}

.staff-member__info {
  text-align: left;
}

.staff-member__name {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.staff-member__role {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .staff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}