:root {
  --clr-maroon: #5E1914;
  --clr-maroon-dark: #3A0B09;
  --clr-gold: #D4AF37;
  --clr-gold-light: #F3E5AB;
  --clr-bg: #FAF6F0;
  --clr-bg-dark: #121212;
  --clr-bg-glass: rgba(255, 255, 255, 0.1);
  --clr-bg-glass-dark: rgba(0, 0, 0, 0.4);
  --clr-text: #2B2B2B;
  --clr-text-light: #FDFDFD;
  
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  --radius: 24px;
  --radius-sm: 12px;
  
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Glassmorphism Utilities */
.glass {
  background: var(--clr-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
}

.glass-dark {
  background: var(--clr-bg-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
}

/* Typography Utilities */
.title-xl { font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; letter-spacing: -2px; }
.title-lg { font-size: clamp(2.5rem, 5vw, 4rem); }
.title-md { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.text-lead { font-size: 1.25rem; font-weight: 300; }

.text-gold { color: var(--clr-gold); }
.text-maroon { color: var(--clr-maroon); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--clr-maroon);
  color: var(--clr-text-light);
  box-shadow: 0 4px 15px rgba(94, 25, 20, 0.3);
}

.btn-primary:hover {
  background: var(--clr-maroon-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(94, 25, 20, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}

.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
}

/* Layout Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 8rem 0;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

header.scrolled {
  background: var(--clr-bg-dark);
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--clr-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  color: var(--clr-gold);
  font-size: 1.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
}

/* Mega Footer */
.mega-footer {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
  padding: 6rem 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #ccc;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--clr-gold);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  padding: 0.8rem 1rem;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 5px 0 0 5px;
  outline: none;
  width: 100%;
}

.newsletter-form button {
  padding: 0.8rem 1.5rem;
  border: none;
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--clr-gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: var(--clr-gold);
}

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-maroon);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.back-to-top:hover {
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
  transform: translateY(-3px);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .nav-links {
    display: none; /* simple mobile handling */
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
