@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* Luxury professional theme */
:root {
  --gold: #c9a96e;
  --gold-light: #d4b578;
  --gold-dark: #b8956a;
  --dark-bg: #0a0a0b;
  --dark-surface: #111113;
  --dark-border: rgba(201, 169, 110, 0.15);
  --text-primary: #f5f5f5;
  --text-secondary: #d1d1d1;
  --text-muted: #a8a8a8;
}

/* Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--dark-bg);
  color: var(--text-primary);
}

h1, h2, h3, h4, .page__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 1.75rem; }

/* Links */
a { 
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover, a:focus { 
  color: var(--gold-light);
  text-decoration: none;
}

/* Layout */
.page {
  background: var(--dark-bg);
}

/* Masthead */
.masthead {
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.masthead .greedy-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
}
.masthead .greedy-nav a:hover { 
  color: var(--gold);
}

/* Footer */
.page__footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  margin-top: 4rem;
}

/* Hide standard footer elements */
.page__footer-follow {
  display: none;
}

.page__footer-copyright:not(:first-child) {
  display: none;
}

/* Buttons */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--dark-border);
  background: transparent;
  color: var(--text-secondary) !important;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
}

.btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-bg) !important;
  font-weight: 600;
}

.btn:hover {
  background: var(--dark-surface);
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-1px);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark-bg) !important;
}

/* Hero Section */
.hero {
  padding: 4rem 0 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-portrait {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid var(--dark-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201, 169, 110, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-portrait:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201, 169, 110, 0.2);
}

.hero-copy {
  flex: 1;
  min-width: 320px;
}

.hero h1 {
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero .cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 1.5rem 0;
  position: relative;
}

.section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--dark-border);
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1rem;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
}

/* Lists */
ul.luxe-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.luxe-list li {
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
}

ul.luxe-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

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

/* Contact Panel */
.contact-panel {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.02));
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-panel p {
  margin: 0.5rem 0;
}

.contact-panel i {
  color: var(--gold);
  margin-right: 0.5rem;
  width: 1.2rem;
}

/* Impact Dashboard */
.impact-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem 0;
}

.impact-card {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.03));
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.1);
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Hide hero overlay completely */
.page__hero--overlay {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .hero-portrait {
    width: 220px;
    height: 220px;
  }
  
  h1 { font-size: 2rem; }
  .hero .lead { font-size: 1.1rem; }
  .hero-title { font-size: 1.1rem; }
  
  .impact-dashboard {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .impact-number {
    font-size: 2rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .page__hero--overlay {
    min-height: 300px;
  }
  
  .page__hero--overlay::after {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 5%;
  }
}

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

/* Selection */
::selection {
  background: rgba(201, 169, 110, 0.3);
  color: var(--text-primary);
}