:root {
  --bg-color: #0f0f0f; /* Deep, elegant charcoal */
  --accent-color: #c5a059; /* Sophisticated champagne gold */
  --accent-soft: #d9c18a;
  --text-primary: #f8f8f8;
  --text-secondary: #a0a0a0;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(197, 160, 89, 0.2); /* Gold-tinted border */
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

.blob-1 { top: -10%; left: -10%; background: var(--accent-color); opacity: 0.1; }
.blob-2 { bottom: -10%; right: -10%; background: #ffffff; opacity: 0.05; }

/* Background effects */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s infinite alternate;
}

.blob-1 { top: -10%; left: -10%; background: var(--accent-color); }
.blob-2 { bottom: -10%; right: -10%; background: var(--accent-secondary); animation-delay: -5s; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.1); }
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accent-text {
  color: var(--accent-color);
  background: linear-gradient(90deg, var(--accent-color), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

section {
  padding: 8rem 0;
}

/* Glassmorphism */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  background: rgba(12, 12, 14, 0.7);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 5.5rem;
  line-height: 1.05;
  margin-bottom: 2rem;
  font-weight: 500;
  font-style: italic;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  letter-spacing: 0.03em;
}

.btn-primary {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: transparent;
  color: var(--accent-color);
  text-decoration: none;
  border: 1px solid var(--accent-color);
  border-radius: 0; /* Sharp, luxury look */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

/* Shimmer Animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer-text {
  background: linear-gradient(90deg, 
    var(--accent-color) 0%, 
    var(--accent-soft) 25%, 
    var(--accent-color) 50%, 
    var(--accent-soft) 75%, 
    var(--accent-color) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

/* Strategic Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.pillar-item {
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.5s ease;
}

.pillar-item:hover {
  border-bottom-color: var(--accent-color);
  transform: translateY(-5px);
}

.pillar-item h4 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.pillar-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Consulting Cards */
.consulting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 3rem;
  border: 1px solid var(--glass-border);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--accent-color);
  transition: height 0.4s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3.5rem; }
  .nav-links { display: none; }
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-color);
  color: var(--bg-color);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.project-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Timeline/Experience Customization */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
