:root {
  --navy: #0A192F;
  --navy-light: #172a45;
  --navy-dark: #060e1a;
  --gold: #D4AF37;
  --gold-hover: #c49f27;
  --gold-light: #fdf8e6;
  --terracotta: #E2725B;
  --terracotta-hover: #cf6049;
  --slate: #708090;
  --slate-light: #94a3b8;
  --bg-light: #F8FAFC;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 25, 47, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(112, 128, 144, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link {
  text-decoration: none;
  color: var(--slate);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #E2725B 100%);
  color: var(--navy);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35); }

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d213f 60%, #162b4c 100%);
  color: var(--white);
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--slate-light);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover { background-color: var(--gold-hover); transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.15); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.hero-card-preview img {
  max-width: 160px;
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-card-preview h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-card-preview p {
  color: var(--slate-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Featured Release Section */
.featured-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-box {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFCF7 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.featured-tag {
  color: var(--terracotta);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.featured-desc {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.featured-bullets {
  list-style: none;
  margin-bottom: 2.5rem;
}

.featured-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.featured-art {
  text-align: center;
}

.featured-art img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 15px 30px rgba(10, 25, 47, 0.15));
}

/* Studio Pillars Section */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-desc { color: var(--slate); font-size: 1.1rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.studio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid rgba(112, 128, 144, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.studio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.studio-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.studio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.studio-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: var(--slate-light);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--slate); font-size: 0.95rem; max-width: 360px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: var(--slate); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--slate);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-grid, .featured-box { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.75rem; }
  .nav-links { display: none; }
  .footer-content { grid-template-columns: 1fr; }
}
