*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #110a0d;
  --fg: #ebe4e7;
  --primary: #b42d5a;
  --primary-light: #d44a76;
  --primary-fg: #f2e8ec;
  --secondary: #1f1418;
  --muted: #2a1c21;
  --muted-fg: #87707a;
  --border: #2a1c21;
  --silver: #b8b8b8;
  --silver-light: #d9d9d9;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }

a { color: inherit; text-decoration: none; }

.section-padding { padding: 5rem 6rem; }
@media (max-width: 768px) { .section-padding { padding: 3rem 1.5rem; } }

.crimson-gradient { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }

.crimson-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.silver-text {
  background: linear-gradient(135deg, var(--silver), var(--silver-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(17, 10, 13, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(180, 45, 90, 0.15);
  border-radius: 1rem;
}

.btn-royal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-royal.filled {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--primary-fg);
  box-shadow: 0 10px 25px -5px rgba(180, 45, 90, 0.3);
}
.btn-royal.filled:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px -5px rgba(180, 45, 90, 0.45);
}

.btn-royal.outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-royal.outline:hover {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-royal.dark {
  background: var(--bg);
  color: var(--fg);
}
.btn-royal.dark:hover { background: rgba(17, 10, 13, 0.9); }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), rgba(17,10,13,0.8), transparent);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--bg), transparent, rgba(17,10,13,0.4));
}

.hero__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6rem;
}
@media (max-width: 768px) { .hero__nav { padding: 1.5rem; } }

.hero__nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }

.hero__nav-links { display: flex; gap: 2rem; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; 
  /* color: var(--muted-fg);  */
  list-style: none;
}
.hero__nav-links a:hover { color: var(--primary); }
@media (max-width: 768px) { .hero__nav-links { display: none; } }

.hero__content {
  position: relative;
  z-index: 10;
  padding: 7rem 6rem;
  max-width: 48rem;
}
@media (max-width: 768px) { .hero__content { padding: 6rem 1.5rem 3rem; } }

.hero__badge {
  margin-top: 2rem;
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(180, 45, 90, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 2rem;
}
.hero h1 em { font-style: italic; }

.hero__desc {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 32rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 28, 33, 0.5);
}
.hero__stats .stat-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
}
.hero__stats .stat-label {
  font-size: 0.75rem;
  /* color: var(--muted-fg); */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.navbar-brand .logo {
  height: 80px;
  width: auto;
}

/* Arrow icon inline */
.arrow-icon { display: inline-block; width: 1rem; height: 1rem; vertical-align: middle; transition: transform 0.3s; }
.btn-royal:hover .arrow-icon { transform: translateX(4px); }

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }