/* Holly Eakin Moody Law Firm - Luxury Website Styles */

/* CSS Variables */
:root {
  --ink: #000000;
  --obsidian: #111111;
  --charcoal: #1A1A1A;
  --silver: #EAEAEA;
  --pearl: #F5F5F5;
  --silver-accent: #C0C0C0;
  --silver-bright: #E5E5E5;
  
  --font-blackletter: 'UnifrakturMaguntia', serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --font-ui: 'Inter', system-ui, sans-serif;
  
  --shadow-luxury: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
  --shadow-luxury-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  
  /* Interactive variables */
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: #000000;
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

/* Global Animated Background for ALL pages */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26, 26, 26, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(234, 234, 234, 0.2) 0%, transparent 45%),
    linear-gradient(45deg, rgba(192, 192, 192, 0.15) 0%, transparent 30%, rgba(26, 26, 26, 0.2) 60%, transparent 100%),
    conic-gradient(from 0deg at 40% 60%, 
      rgba(26, 26, 26, 0.18) 0deg,
      rgba(192, 192, 192, 0.22) 90deg,
      rgba(234, 234, 234, 0.15) 180deg,
      rgba(26, 26, 26, 0.20) 270deg,
      rgba(192, 192, 192, 0.18) 360deg
    );
  z-index: -10;
  animation: global-chrome-flow 10s ease-in-out infinite;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@keyframes global-chrome-flow {
  0%, 100% { 
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    filter: blur(0px) brightness(1.3) contrast(1.2);
    opacity: 1;
  }
  25% { 
    transform: translateX(100px) translateY(-80px) rotate(3deg) scale(1.2);
    filter: blur(2px) brightness(1.6) contrast(1.4);
    opacity: 0.8;
  }
  50% { 
    transform: translateX(-70px) translateY(60px) rotate(-2deg) scale(0.85);
    filter: blur(3px) brightness(0.9) contrast(0.8);
    opacity: 0.6;
  }
  75% { 
    transform: translateX(90px) translateY(-40px) rotate(4deg) scale(1.3);
    filter: blur(1px) brightness(1.5) contrast(1.3);
    opacity: 0.9;
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(110deg, #ffffff 0%, #f0f0f0 40%, #e8e8e8 50%, #f5f5f5 100%);
  z-index: -3;
  pointer-events: none;
}

/* Premium Chrome Hearts Loading Deck - ПРЕМИАЛЬНАЯ АНИМАЦИЯ КОЛОДЫ */
.chrome-hearts-card-deck {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  z-index: -2;
  perspective: 1500px;
  pointer-events: none;
}

.loading-card {
  position: absolute;
  width: 140px;
  height: 200px;
  background: linear-gradient(145deg, 
    #0a0a0a 0%, 
    #1a1a1a 30%, 
    #000000 50%, 
    #1a1a1a 70%, 
    #0a0a0a 100%);
  border: 2px solid;
  border-image: linear-gradient(45deg, 
    #c0c0c0 0%, 
    #ffffff 50%, 
    #c0c0c0 100%) 1;
  border-radius: 15px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.8),
    0 15px 30px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    inset 0 -1px 2px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(192, 192, 192, 0.2);
  transform-style: preserve-3d;
  backface-visibility: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: -70px;
  font-family: serif;
  color: #c0c0c0;
  text-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

/* Премиальная рубашка карты */
.loading-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: 
    radial-gradient(circle at 50% 20%, rgba(192, 192, 192, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.25) 0%, transparent 35%),
    linear-gradient(45deg, 
      rgba(192, 192, 192, 0.1) 0%, 
      transparent 25%, 
      rgba(255, 255, 255, 0.08) 50%, 
      transparent 75%, 
      rgba(192, 192, 192, 0.1) 100%);
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-radius: 12px;
  z-index: 1;
}

/* Chrome Hearts Pattern */
.loading-card::after {
  content: '♠ ♣ ♥ ♦';
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  opacity: 0.4;
  z-index: 2;
  animation: pattern-glow 3s ease-in-out infinite;
}

@keyframes pattern-glow {
  0%, 100% { opacity: 0.4; text-shadow: 0 0 10px rgba(192, 192, 192, 0.3); }
  50% { opacity: 0.8; text-shadow: 0 0 25px rgba(192, 192, 192, 0.8); }
}

/* Колесо загрузки - 5 карт по кругу */
.loading-card:nth-child(1) { 
  animation: loading-wheel 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  transform-origin: 200px 100px;
}

.loading-card:nth-child(2) { 
  animation: loading-wheel 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite -1.6s;
  transform-origin: 200px 100px;
}

.loading-card:nth-child(3) { 
  animation: loading-wheel 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite -3.2s;
  transform-origin: 200px 100px;
}

.loading-card:nth-child(4) { 
  animation: loading-wheel 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite -4.8s;
  transform-origin: 200px 100px;
}

.loading-card:nth-child(5) { 
  animation: loading-wheel 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite -6.4s;
  transform-origin: 200px 100px;
}

/* Джокер - ЦЕНТРАЛЬНАЯ ПРЕМИАЛЬНАЯ КАРТА */
.loading-card.joker {
  width: 160px;
  height: 220px;
  margin-top: -110px;
  margin-left: -80px;
  background: linear-gradient(145deg, 
    #1a0000 0%, 
    #000000 25%, 
    #2a0000 50%, 
    #000000 75%, 
    #1a0000 100%);
  border-image: linear-gradient(45deg, 
    #ff0000 0%, 
    #c0c0c0 25%, 
    #ffffff 50%, 
    #c0c0c0 75%, 
    #ff0000 100%) 1;
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.9),
    0 20px 40px rgba(255, 0, 0, 0.4),
    inset 0 3px 6px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(255, 0, 0, 0.6),
    0 0 100px rgba(255, 0, 0, 0.3);
  color: #ff0000;
  animation: joker-master-spin 4s ease-in-out infinite;
  z-index: -1;
}

.loading-card.joker::before {
  background: 
    radial-gradient(circle at 50% 30%, rgba(255, 0, 0, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(192, 192, 192, 0.3) 0%, transparent 35%),
    linear-gradient(45deg, 
      rgba(255, 0, 0, 0.2) 0%, 
      transparent 25%, 
      rgba(192, 192, 192, 0.15) 50%, 
      transparent 75%, 
      rgba(255, 0, 0, 0.2) 100%);
  border-color: rgba(255, 0, 0, 0.5);
}

.loading-card.joker::after {
  content: '✠ ♚ ✠';
  font-size: 2.5rem;
  color: #ff0000;
  text-shadow: 
    0 0 20px rgba(255, 0, 0, 1.0),
    0 0 40px rgba(255, 0, 0, 0.6);
  letter-spacing: 0.8rem;
  animation: joker-glow 2s ease-in-out infinite alternate;
}

@keyframes joker-glow {
  0% { 
    opacity: 0.8; 
    text-shadow: 
      0 0 20px rgba(255, 0, 0, 1.0),
      0 0 40px rgba(255, 0, 0, 0.6);
  }
  100% { 
    opacity: 1; 
    text-shadow: 
      0 0 30px rgba(255, 0, 0, 1.0),
      0 0 60px rgba(255, 0, 0, 0.8),
      0 0 90px rgba(255, 0, 0, 0.4);
  }
}

/* ПРЕМИАЛЬНОЕ КОЛЕСО ЗАГРУЗКИ С ЗАМЕДЛЕНИЕМ */
@keyframes loading-wheel {
  0% { 
    transform: translate(-70px, -100px) rotate(0deg) translateX(150px) rotateZ(0deg);
    animation-timing-function: ease-out;
  }
  12.5% { 
    transform: translate(-70px, -100px) rotate(45deg) translateX(150px) rotateZ(-90deg);
    animation-timing-function: ease-in-out;
  }
  25% { 
    transform: translate(-70px, -100px) rotate(90deg) translateX(150px) rotateZ(-180deg);
    animation-timing-function: ease-in;
  }
  30% { 
    transform: translate(-70px, -100px) rotate(90deg) translateX(150px) rotateZ(-200deg);
    animation-timing-function: ease-out;
  }
  37.5% { 
    transform: translate(-70px, -100px) rotate(135deg) translateX(150px) rotateZ(-270deg);
    animation-timing-function: ease-in-out;
  }
  50% { 
    transform: translate(-70px, -100px) rotate(180deg) translateX(150px) rotateZ(-360deg);
    animation-timing-function: ease-out;
  }
  62.5% { 
    transform: translate(-70px, -100px) rotate(225deg) translateX(150px) rotateZ(-450deg);
    animation-timing-function: ease-in-out;
  }
  75% { 
    transform: translate(-70px, -100px) rotate(270deg) translateX(150px) rotateZ(-540deg);
    animation-timing-function: ease-in;
  }
  80% { 
    transform: translate(-70px, -100px) rotate(270deg) translateX(150px) rotateZ(-560deg);
    animation-timing-function: ease-out;
  }
  87.5% { 
    transform: translate(-70px, -100px) rotate(315deg) translateX(150px) rotateZ(-630deg);
    animation-timing-function: ease-in-out;
  }
  100% { 
    transform: translate(-70px, -100px) rotate(360deg) translateX(150px) rotateZ(-720deg);
    animation-timing-function: ease-out;
  }
}

/* ЦЕНТРАЛЬНЫЙ ДЖОКЕР - МАСТЕР СПИН */
@keyframes joker-master-spin {
  0%, 100% { 
    transform: scale(1) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    filter: brightness(1.2) contrast(1.3) saturate(1.5) hue-rotate(0deg);
  }
  25% { 
    transform: scale(1.05) rotateY(90deg) rotateX(10deg) rotateZ(90deg);
    filter: brightness(1.6) contrast(1.6) saturate(2.0) hue-rotate(15deg);
  }
  50% { 
    transform: scale(1.1) rotateY(180deg) rotateX(0deg) rotateZ(180deg);
    filter: brightness(1.8) contrast(1.8) saturate(2.5) hue-rotate(30deg);
  }
  75% { 
    transform: scale(1.05) rotateY(270deg) rotateX(-10deg) rotateZ(270deg);
    filter: brightness(1.6) contrast(1.6) saturate(2.0) hue-rotate(15deg);
  }
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(192, 192, 192, 0.25) 0%, transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(26, 26, 26, 0.20) 0%, transparent 40%),
    radial-gradient(circle at 45% 85%, rgba(234, 234, 234, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 75% 15%, rgba(192, 192, 192, 0.18) 0%, transparent 25%),
    conic-gradient(from 0deg at 30% 70%, 
      rgba(26, 26, 26, 0.12) 0deg,
      rgba(192, 192, 192, 0.15) 90deg,
      rgba(234, 234, 234, 0.10) 180deg,
      rgba(26, 26, 26, 0.14) 270deg,
      rgba(192, 192, 192, 0.12) 360deg
    );
  z-index: -2;
  animation: chrome-hearts-flow 8s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

@keyframes chrome-hearts-flow {
  0%, 100% { 
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    filter: blur(0px) brightness(1.2) contrast(1.1);
  }
  25% { 
    transform: translateX(80px) translateY(-60px) rotate(5deg) scale(1.15);
    filter: blur(2px) brightness(1.4) contrast(1.3);
  }
  50% { 
    transform: translateX(-50px) translateY(40px) rotate(-3deg) scale(0.90);
    filter: blur(3px) brightness(0.8) contrast(0.9);
  }
  75% { 
    transform: translateX(60px) translateY(-30px) rotate(4deg) scale(1.20);
    filter: blur(1px) brightness(1.3) contrast(1.2);
  }
}

@keyframes pattern-shift {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(20px) translateY(-20px) rotate(0.5deg); }
  50% { transform: translateX(-10px) translateY(10px) rotate(-0.5deg); }
  75% { transform: translateX(15px) translateY(15px) rotate(0.3deg); }
  100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

@keyframes luxury-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float-background {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, -20px) rotate(1deg); }
  66% { transform: translate(20px, -10px) rotate(-1deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-blackletter);
  font-weight: normal;
  letter-spacing: 0.025em;
}

/* Liquid Metal Background */
.liquid-metal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Animated Waves Background Layer */
.liquid-metal-bg::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: 
    linear-gradient(45deg, rgba(192, 192, 192, 0.4) 0%, transparent 30%, rgba(26, 26, 26, 0.3) 60%, transparent 100%),
    linear-gradient(-45deg, transparent 0%, rgba(234, 234, 234, 0.35) 40%, transparent 70%),
    radial-gradient(ellipse at 20% 80%, rgba(192, 192, 192, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 26, 26, 0.4) 0%, transparent 50%);
  animation: wave-motion 6s ease-in-out infinite;
  z-index: -1;
  mix-blend-mode: overlay;
}

@keyframes wave-motion {
  0%, 100% { 
    transform: translateX(0) translateY(0) rotate(0deg) scaleX(1) scaleY(1);
    opacity: 0.7;
  }
  33% { 
    transform: translateX(-30px) translateY(20px) rotate(2deg) scaleX(1.1) scaleY(0.9);
    opacity: 0.9;
  }
  66% { 
    transform: translateX(40px) translateY(-15px) rotate(-1deg) scaleX(0.9) scaleY(1.1);
    opacity: 0.6;
  }
}

.liquid-metal-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at var(--mouse-x, 20%) var(--mouse-y, 80%), rgba(192, 192, 192, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234, 234, 234, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(26, 26, 26, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(26, 26, 26, 0.15) 50%, rgba(0, 0, 0, 0.1) 100%);
  animation: liquid-metal 25s ease-in-out infinite;
  filter: blur(40px);
  transition: background 0.3s ease;
  opacity: 0.5;
}

.liquid-metal-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(192, 192, 192, 0.08) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(234, 234, 234, 0.06) 1px, transparent 1px);
  background-size: 100px 100px, 60px 60px;
  animation: particles 30s linear infinite;
  opacity: 0.4;
}

@keyframes liquid-metal {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1) rotate(0deg); 
    filter: blur(2px) hue-rotate(0deg);
  }
  25% { 
    transform: translateY(-30px) translateX(20px) scale(1.05) rotate(1deg); 
    filter: blur(3px) hue-rotate(10deg);
  }
  50% { 
    transform: translateY(15px) translateX(-15px) scale(0.95) rotate(-1deg); 
    filter: blur(1px) hue-rotate(-5deg);
  }
  75% { 
    transform: translateY(10px) translateX(25px) scale(1.02) rotate(0.5deg); 
    filter: blur(2.5px) hue-rotate(15deg);
  }
}

@keyframes particles {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-20px) translateX(20px); }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  .liquid-metal-bg {
    animation: none;
    background: radial-gradient(ellipse at center, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(192, 192, 192, 0.1);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 48px;
  height: 48px;
  color: var(--pearl);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.brand-name {
  font-family: var(--font-blackletter);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  color: var(--pearl);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
  font-size: 0.75rem;
  color: rgba(234, 234, 234, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}

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

.nav-menu a {
  text-decoration: none;
  color: rgba(234, 234, 234, 0.9);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--pearl);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--silver-accent);
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  opacity: 0.05;
}

.hero-established {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-blackletter);
  font-size: clamp(3rem, 8vw, 7rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(26, 26, 26, 0.7);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

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

/* Premium Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 100%);
  color: var(--pearl);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--obsidian) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--pearl);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--pearl);
  color: var(--ink);
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: var(--silver-bright);
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-blackletter);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section-title {
  font-family: var(--font-blackletter);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.chrome-hearts-ornament::before,
.chrome-hearts-ornament::after {
  content: '†';
  position: absolute;
  font-family: var(--font-blackletter);
  color: rgba(192, 192, 192, 0.5);
  font-size: 1.5em;
}

.chrome-hearts-ornament::before {
  left: -1.5em;
}

.chrome-hearts-ornament::after {
  right: -1.5em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(26, 26, 26, 0.7);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Practice Areas */
.practice-areas-preview {
  padding: 5rem 0;
  background: var(--pearl);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.07),
    0 1px 3px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(192, 192, 192, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.area-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s;
}

.area-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(192, 192, 192, 0.3);
}

.area-card:hover::after {
  transform: rotate(45deg) translate(100%, 100%);
}

.area-card h3 {
  font-family: var(--font-blackletter);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.area-card p {
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-link {
  color: var(--silver-accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: var(--charcoal);
}

/* Case Pathway */
.case-pathway {
  padding: 4rem 0;
  background: white;
}

.pathway-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.pathway-step {
  text-align: center;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.pathway-step h3 {
  font-family: var(--font-blackletter);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-center {
  text-align: center;
}

/* Final CTA */
.final-cta {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--pearl);
  text-align: center;
}

.cta-title {
  font-family: var(--font-blackletter);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.125rem;
  color: var(--silver);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--pearl);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo {
  filter: brightness(0) invert(1);
}

.footer-name {
  font-family: var(--font-blackletter);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(234, 234, 234, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.footer-brand p {
  color: rgba(234, 234, 234, 0.8);
  margin-bottom: 1rem;
}

.footer-brand address {
  color: rgba(234, 234, 234, 0.6);
  font-style: normal;
  font-size: 0.875rem;
}

.footer-links h4 {
  font-family: var(--font-blackletter);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: rgba(234, 234, 234, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--pearl);
}

.footer-contact h4 {
  font-family: var(--font-blackletter);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-contact p {
  color: rgba(234, 234, 234, 0.8);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(234, 234, 234, 0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal a {
  color: rgba(234, 234, 234, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.legal-disclaimer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(234, 234, 234, 0.1);
  text-align: center;
}

.legal-disclaimer small {
  color: rgba(234, 234, 234, 0.4);
  font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .pathway-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .chrome-hearts-ornament::before,
  .chrome-hearts-ornament::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav {
    padding: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--silver-accent);
  outline-offset: 2px;
}

/* Chrome Hearts Floating Elements */
.chrome-hearts-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.chrome-hearts-particles::before {
  content: '✢ ♦ ✦ ◊ ✢ ♦ ✦ ◊ ✢ ♦';
  position: absolute;
  top: -5%;
  left: -10%;
  width: 120%;
  height: 120%;
  font-size: 4rem;
  color: rgba(192, 192, 192, 0.4);
  animation: floating-particles-1 20s linear infinite;
  font-family: serif;
  text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
  word-spacing: 8rem;
  line-height: 12rem;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-around;
}

.chrome-hearts-particles::after {
  content: '† ♠ ♣ ♥ † ♠ ♣ ♥ † ♠';
  position: absolute;
  top: -5%;
  right: -10%;
  width: 120%;
  height: 120%;
  font-size: 3rem;
  color: rgba(26, 26, 26, 0.35);
  animation: floating-particles-2 25s linear infinite reverse;
  font-family: serif;
  text-shadow: 0 0 25px rgba(26, 26, 26, 0.4);
  word-spacing: 6rem;
  line-height: 10rem;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-around;
}

@keyframes floating-particles-1 {
  0% { 
    transform: translateX(-20%) translateY(-10%) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: translateX(20%) translateY(10%) rotate(180deg) scale(1.2);
    opacity: 0.4;
  }
  100% { 
    transform: translateX(-20%) translateY(-10%) rotate(360deg) scale(1);
    opacity: 0.8;
  }
}

@keyframes floating-particles-2 {
  0% { 
    transform: translateX(15%) translateY(5%) rotate(0deg) scale(0.8);
    opacity: 0.7;
  }
  50% { 
    transform: translateX(-25%) translateY(-15%) rotate(-180deg) scale(1.3);
    opacity: 0.3;
  }
  100% { 
    transform: translateX(15%) translateY(5%) rotate(-360deg) scale(0.8);
    opacity: 0.7;
  }
}

/* Enhanced Gradients for Sections */
.hero-section {
  background: 
    linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(234, 234, 234, 0.9) 50%, rgba(229, 229, 229, 0.95) 100%),
    radial-gradient(ellipse at top, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 45deg at 50% 50%, 
      rgba(192, 192, 192, 0.05) 0deg, 
      rgba(234, 234, 234, 0.02) 90deg, 
      rgba(192, 192, 192, 0.05) 180deg, 
      rgba(229, 229, 229, 0.03) 270deg, 
      rgba(192, 192, 192, 0.05) 360deg);
  animation: rotate-gradient 40s linear infinite;
  z-index: -1;
}

@keyframes rotate-gradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Interactive Hover Effects */
.area-card {
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.area-card:hover::before {
  transform: scale(1);
}

.area-card > * {
  position: relative;
  z-index: 1;
}

/* Enhanced Footer Background */
.footer {
  position: relative;
  background: 
    linear-gradient(135deg, var(--charcoal) 0%, var(--obsidian) 50%, var(--ink) 100%),
    radial-gradient(ellipse at bottom, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(192, 192, 192, 0.3) 25%, 
    rgba(234, 234, 234, 0.5) 50%, 
    rgba(192, 192, 192, 0.3) 75%, 
    transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; transform: scaleX(1); }
  50% { opacity: 0.8; transform: scaleX(1.02); }
}

/* Button Enhancements */
.btn-primary, .btn-light {
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .btn-light::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn-primary:hover::before, .btn-light:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary > *, .btn-light > * {
  position: relative;
  z-index: 1;
}

/* Print styles */
@media print {
  .liquid-metal-bg,
  .chrome-hearts-particles,
  .header,
  .footer {
    display: none;
  }
  
  .hero-section::before,
  .area-card::before,
  .footer::before {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}