:root {
  --primary: #d4af37; /* Rose Gold/Metallic Gold */
  --secondary: #8b0000;
  --accent: #e6be8a;
  --bg: #0a0a0c;
  --card-bg: rgba(255, 255, 255, 0.03);
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(212, 175, 55, 0.15);
  --gold: linear-gradient(135deg, #d4af37 0%, #a67c00 100%);
  --font-serif: "Playfair Display", serif;
  --font-main: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 5rem;
}
h2 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h3 {
  font-size: 1.25rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--font-main);
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* Hero Section */
.hero {
  padding: 14.5rem 0 10rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 80%
  );
  z-index: -1;
}

.hero-title {
  margin-bottom: 2rem;
  line-height: 1.05;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  font-size: 1.3rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

/* Sections */
.section {
  padding: 12rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.feature-content h3 {
  margin-bottom: 1.5rem;
}

.feature-image img {
  width: 100%;
  border-radius: 4px; /* Minimalist for art */
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}

/* Grid System */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
}

.capability-card {
  background: var(--card-bg);
  padding: 4rem 3rem;
  border-radius: 2px; /* Art gallery feel */
  border: 1px solid var(--glass-border);
  transition: all 0.5s ease;
  text-align: center;
}

.capability-card:hover {
  transform: translateY(-10px);
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--primary);
}

.capability-icon {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  display: block;
  opacity: 0.8;
}

/* Footer */
footer {
  padding: 10rem 0 4rem;
  background: #050507;
  border-top: 1px solid var(--glass-border);
}

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

.footer-col h4 {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--font-main);
}

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

.footer-col ul li {
  margin-bottom: 1.5rem;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 4rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* Mobile */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .nav-links {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
