:root {
  --navy: #0A192F;
  --navy-light: #172a45;
  --navy-dark: #060e1a;
  --gold: #D4AF37;
  --gold-hover: #c49f27;
  --gold-light: #fdf8e6;
  --terracotta: #E2725B;
  --slate: #334155;
  --slate-light: #64748B;
  --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;
}

/* Global Link Rules */
a {
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:visited {
  color: var(--navy);
}
a:hover {
  color: var(--gold);
}

.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(10, 25, 47, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.brand-link {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none !important;
  color: var(--navy) !important;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.brand-name-primary {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0A192F !important;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-name-secondary {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  color: #D4AF37 !important;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
  margin-left: 1px;
}

/* Original brand-link replaced */
.brand-link-old {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none !important;
  color: var(--navy) !important;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy) !important;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link,
.nav-link:visited {
  text-decoration: none !important;
  color: var(--slate) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy) !important; }

.nav-cta,
.nav-cta:visited {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}
.nav-cta:hover { transform: translateY(-1px); background-color: var(--navy-light) !important; }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d213f 60%, #162b4c 100%);
  color: var(--white);
  padding: 6.5rem 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.35);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  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;
  color: var(--white);
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary,
.btn-primary:visited {
  background-color: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover { background-color: var(--gold-hover) !important; transform: translateY(-2px); }

.btn-secondary,
.btn-secondary:visited {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.15) !important; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-preview {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.preview-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.preview-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  background: var(--navy);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.preview-coin {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.preview-seal {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px 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: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.featured-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-box {
  background: #FFFFFF;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.featured-tag {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  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: 1.25rem;
}

.featured-desc {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.featured-bullets {
  list-style: none;
  margin-bottom: 2.5rem;
}

.featured-bullets li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.bullet-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.featured-art {
  text-align: center;
  display: flex;
  justify-content: center;
}

.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(--navy);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  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(10, 25, 47, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.studio-card:hover {
  transform: translateY(-5px);
  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.98rem;
  line-height: 1.7;
}

.footer {
  background: var(--navy-dark);
  color: #94A3B8;
  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: #94A3B8; 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,
.footer-col a:visited {
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold) !important; }

.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: #64748B;
  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; }
}
