/*
Theme Name: Auxra Theme
Theme URI: https://auxra.agency
Author: Auxra
Author URI: https://auxra.agency
Description: A modern, premium digital agency theme with bronze/dark aesthetic, built for conversion-focused marketing agencies.
Version: 1.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: auxra
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, theme-options

Auxra Theme - A Founder-Led Digital Agency Theme
*/

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
  /* Colors - Core Palette */
  --background: hsl(0, 0%, 2%);
  --foreground: hsl(40, 20%, 95%);
  
  --card: hsl(0, 0%, 5%);
  --card-foreground: hsl(40, 20%, 95%);
  
  --primary: hsl(30, 85%, 22%);
  --primary-foreground: hsl(40, 20%, 95%);
  --primary-glow: hsl(30, 90%, 35%);
  
  --secondary: hsl(35, 15%, 12%);
  --secondary-foreground: hsl(40, 20%, 90%);
  
  --muted: hsl(30, 10%, 15%);
  --muted-foreground: hsl(35, 10%, 55%);
  
  --accent: hsl(30, 80%, 28%);
  --accent-foreground: hsl(40, 20%, 95%);
  
  --border: hsl(30, 15%, 18%);
  --input: hsl(30, 15%, 18%);
  --ring: hsl(30, 85%, 22%);
  
  /* Custom Tokens */
  --bronze: hsl(30, 85%, 22%);
  --bronze-light: hsl(30, 90%, 35%);
  --bronze-glow: hsl(30, 100%, 45%);
  --cream: hsl(40, 30%, 92%);
  --cream-muted: hsl(35, 15%, 75%);
  --charcoal: hsl(0, 0%, 8%);
  --charcoal-light: hsl(0, 0%, 12%);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding-y: clamp(6rem, 10vw, 10rem);
  --section-padding-x: clamp(1.5rem, 5vw, 5rem);
  --container-max-width: 1400px;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-bronze: 0 0 60px hsla(30, 100%, 45%, 0.2);
  --shadow-bronze-lg: 0 0 100px hsla(30, 100%, 45%, 0.3);
  --shadow-card: 0 25px 50px -12px hsla(0, 0%, 0%, 0.5);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.section-padding {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

/* Text Gradient */
.text-gradient-bronze {
  background: linear-gradient(135deg, var(--bronze-light) 0%, var(--bronze-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Card Effect */
.glass-card {
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(46, 33, 16, 0.5);
}

/* Glow Effects */
.glow-bronze {
  box-shadow: 0 0 60px hsla(30, 100%, 45%, 0.25);
}

.glow-bronze-lg {
  box-shadow: 0 0 120px hsla(30, 100%, 45%, 0.35);
}

/* Background Gradient */
.bg-gradient-bronze {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bronze-glow) 100%);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-display-xl {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-display-lg {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
}

.text-display-md {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
}

.text-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: var(--bronze-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-bronze);
}

.btn-hero {
  background: linear-gradient(135deg, var(--bronze-light) 0%, var(--bronze-glow) 100%);
  color: hsl(0, 0%, 5%);
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-hero:hover {
  box-shadow: var(--shadow-bronze-lg);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--bronze-light);
  color: var(--bronze-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(46, 33, 16, 0.5);
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color var(--transition-base);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--foreground);
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  padding: 0.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(5, 5, 5, 0.8) 0%, 
    rgba(5, 5, 5, 0.6) 50%, 
    rgba(20, 20, 20, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-padding-x);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(84, 51, 5, 0.3);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bronze-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-badge::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--bronze-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(46, 33, 16, 0.5);
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--muted-foreground);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--bronze-light);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* Floating Orbs (CSS approximation) */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.floating-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--bronze-glow);
  top: 10%;
  right: 10%;
}

.floating-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--bronze);
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--background) 100%);
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.value-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: rgba(84, 51, 5, 0.5);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -20px rgba(84, 51, 5, 0.3);
}

.value-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(84, 51, 5, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--bronze-light);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color var(--transition-base);
}

.value-card:hover h3 {
  color: var(--bronze-light);
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--background);
  opacity: 0.9;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card:first-child {
    grid-column: span 2;
  }
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
}

.service-card:hover {
  border-color: rgba(84, 51, 5, 0.5);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px -15px rgba(84, 51, 5, 0.25);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: rgba(84, 51, 5, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--transition-slow);
}

.service-card:hover .service-icon {
  box-shadow: var(--shadow-bronze);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--bronze-light);
}

.service-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--bronze-light);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color var(--transition-base);
}

.service-card:hover h3 {
  color: var(--bronze-light);
}

.service-card > p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-feature {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: var(--muted);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.service-card:hover .service-feature {
  background: rgba(84, 51, 5, 0.2);
  color: var(--cream);
}

/* ============================================
   FEATURED WORK SECTION
   ============================================ */
.featured-work {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.featured-work-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .featured-work-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.featured-work-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bronze-light);
  font-weight: 500;
  transition: color var(--transition-base);
}

.view-all-link:hover {
  color: var(--foreground);
}

.view-all-link svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--transition-base);
}

.view-all-link:hover svg {
  transform: translate(4px, -4px);
}

.projects-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-card:first-child {
    grid-column: span 2;
    min-height: 500px;
  }
}

.project-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 400px;
  transition: all var(--transition-base);
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(84, 51, 5, 0.2);
  transition: all var(--transition-base);
  z-index: 2;
}

.project-card:hover::before {
  border-width: 2px;
  border-color: rgba(84, 51, 5, 0.5);
  box-shadow: 0 0 40px rgba(84, 51, 5, 0.2);
}

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

.project-bg-1 {
  background: linear-gradient(135deg, rgba(120, 80, 40, 0.4) 0%, rgba(100, 60, 20, 0.2) 100%);
}

.project-bg-2 {
  background: linear-gradient(135deg, rgba(84, 51, 5, 0.4) 0%, rgba(120, 80, 40, 0.2) 100%);
}

.project-bg-3 {
  background: linear-gradient(135deg, rgba(100, 60, 20, 0.4) 0%, rgba(84, 51, 5, 0.2) 100%);
}

.project-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

@media (min-width: 768px) {
  .project-content {
    padding: 3rem;
  }
}

.project-category {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bronze-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.project-card h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color var(--transition-base);
}

.project-card:hover h3 {
  color: var(--bronze-light);
}

.project-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tag {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  background: rgba(84, 51, 5, 0.2);
  border: 1px solid rgba(84, 51, 5, 0.3);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.project-tag:hover {
  background: rgba(84, 51, 5, 0.4);
  transform: scale(1.05);
}

.project-link {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(84, 51, 5, 0.2);
  border: 1px solid rgba(84, 51, 5, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5) rotate(-180deg);
  transition: all var(--transition-base);
  z-index: 2;
}

.project-card:hover .project-link {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.project-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--cream);
}

/* ============================================
   WHY AUXRA SECTION
   ============================================ */
.why-auxra {
  position: relative;
  overflow: hidden;
}

.why-auxra::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(20, 20, 20, 0.9) 0%, 
    var(--background) 50%, 
    var(--background) 100%
  );
  z-index: 0;
}

.why-auxra .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
}

@media (min-width: 768px) {
  .why-card {
    padding: 2.5rem;
  }
}

.why-card:hover {
  border-color: rgba(84, 51, 5, 0.5);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(84, 51, 5, 0.3);
}

.why-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-card-content {
    flex-direction: row;
  }
}

.why-card-main {
  flex: 1;
}

.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: rgba(84, 51, 5, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: box-shadow var(--transition-slow);
}

.why-card:hover .why-icon {
  box-shadow: var(--shadow-bronze);
}

.why-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--bronze-light);
}

.why-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color var(--transition-base);
}

.why-card:hover h3 {
  color: var(--bronze-light);
}

.why-card p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.why-stat {
  flex-shrink: 0;
  text-align: right;
  min-width: 100px;
}

@media (min-width: 768px) {
  .why-stat {
    text-align: center;
  }
}

.why-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.why-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.process-steps {
  position: relative;
}

.process-line {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(84, 51, 5, 0.5), transparent);
}

@media (min-width: 1024px) {
  .process-line {
    display: block;
  }
}

.process-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-circle {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
}

.process-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(84, 51, 5, 0.3);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}

.process-step:hover .process-ring {
  border-color: var(--bronze);
}

.process-inner {
  position: absolute;
  inset: 0.5rem;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--transition-slow);
}

.process-step:hover .process-inner {
  box-shadow: 0 0 30px rgba(84, 51, 5, 0.5);
}

.process-inner svg {
  width: 2rem;
  height: 2rem;
  color: var(--bronze-light);
}

.process-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--bronze);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color var(--transition-base);
}

.process-step:hover h3 {
  color: var(--bronze-light);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Process Step Arrows */
.process-arrow {
  display: none;
  position: absolute;
  top: 3rem;
  right: -1rem;
  color: rgba(84, 51, 5, 0.5);
}

@media (min-width: 1024px) {
  .process-step:not(:last-child) .process-arrow {
    display: block;
  }
}

.process-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--charcoal) 100%);
  opacity: 0.9;
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-card {
    padding: 4rem;
  }
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(84, 51, 5, 0.1) 0%, transparent 50%, rgba(84, 51, 5, 0.05) 100%);
  animation: glow-pulse 4s ease-in-out infinite;
}

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

.contact-card h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-card > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.contact-info {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(46, 33, 16, 0.5);
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  transition: color var(--transition-base);
}

.contact-item:hover {
  color: var(--foreground);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(84, 51, 5, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--transition-base);
}

.contact-item:hover .contact-icon {
  box-shadow: var(--shadow-bronze);
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--bronze-light);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(46, 33, 16, 0.5);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
}

@media (min-width: 768px) {
  .footer-nav {
    gap: 2rem;
  }
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color var(--transition-base);
}

.footer-nav a:hover {
  color: var(--foreground);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all var(--transition-base);
}

.social-link:hover {
  color: var(--foreground);
  border-color: rgba(84, 51, 5, 0.5);
  transform: translateY(-3px);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 33, 16, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--foreground);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-5px);
  }
}

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

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Animation utility classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

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

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

/* ============================================
   WORDPRESS SPECIFIC STYLES
   ============================================ */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

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

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-content h1 {
  margin: 1rem 0 1.5rem;
}

.error-content p {
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   PAGE & SINGLE POST
   ============================================ */
.page-content,
.single-post {
  padding-top: calc(var(--section-padding-y) + 80px);
}

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

.entry-header {
  margin-bottom: 3rem;
  text-align: center;
}

.entry-title {
  margin-bottom: 1.5rem;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.entry-categories a {
  color: var(--bronze-light);
  transition: color var(--transition-base);
}

.entry-categories a:hover {
  color: var(--bronze-glow);
}

.entry-excerpt {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.entry-thumbnail {
  margin-bottom: 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.entry-thumbnail img {
  width: 100%;
  height: auto;
}

.entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--cream-muted);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content a {
  color: var(--bronze-light);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.entry-content a:hover {
  color: var(--bronze-glow);
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--bronze-light);
  background: var(--card);
  border-radius: var(--radius-md);
  font-style: italic;
  color: var(--foreground);
}

.entry-content img {
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.entry-content pre {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 2rem 0;
}

.entry-content code {
  font-family: 'Fira Code', 'Monaco', monospace;
  font-size: 0.9em;
  background: var(--card);
  padding: 0.2em 0.4em;
  border-radius: var(--radius-sm);
}

.entry-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.entry-tags a {
  color: var(--muted-foreground);
  transition: color var(--transition-base);
}

.entry-tags a:hover {
  color: var(--bronze-light);
}

/* Post Navigation */
.post-navigation {
  margin-top: 4rem;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .post-navigation .nav-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-navigation a {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.post-navigation a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-bronze);
}

.post-navigation .nav-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--bronze-light);
  margin-bottom: 0.5rem;
}

.post-navigation .nav-previous .nav-label svg {
  transform: rotate(180deg);
}

.post-navigation .nav-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--foreground);
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation .nav-next .nav-label {
  justify-content: flex-end;
}

/* ============================================
   ARCHIVE & SEARCH PAGES
   ============================================ */
.archive,
.search-results {
  padding-top: calc(var(--section-padding-y) + 80px);
}

.archive-header,
.search-header {
  text-align: center;
  margin-bottom: 4rem;
}

.archive-header h1,
.search-header h1 {
  margin: 1rem 0;
}

.archive-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted-foreground);
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-bronze);
}

.post-card .post-thumbnail {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-card .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.post-card .post-content {
  padding: 1.5rem;
}

.post-card .post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.post-card .post-category a {
  color: var(--bronze-light);
}

.post-card .post-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.post-card .post-title a {
  transition: color var(--transition-base);
}

.post-card .post-title a:hover {
  color: var(--bronze-light);
}

.post-card .post-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card .post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bronze-light);
  transition: color var(--transition-base);
}

.post-card .post-link:hover {
  color: var(--bronze-glow);
}

.post-card .post-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition-base);
}

.post-card .post-link:hover svg {
  transform: translateX(4px);
}

/* Pagination */
.pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.pagination a {
  background: var(--card);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}

.pagination a:hover {
  color: var(--foreground);
  border-color: var(--bronze-light);
}

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

.pagination .prev,
.pagination .next {
  gap: 0.5rem;
}

/* No Results */
.no-posts,
.no-results {
  text-align: center;
  padding: 4rem 0;
}

.no-results p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.search-form-container {
  max-width: 400px;
  margin: 0 auto;
}

/* Search Form */
.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-field {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color var(--transition-base);
}

.search-field:focus {
  outline: none;
  border-color: var(--bronze-light);
}

.search-field::placeholder {
  color: var(--muted-foreground);
}

.search-submit {
  padding: 0.75rem 1rem;
}

.search-submit svg {
  width: 1.25rem;
  height: 1.25rem;
}
