:root {
  --navy: #0b1a3a;
  --navy-dark: #060f24;
  --gold: #d4af37;
  --gold-light: #f3dfa0;
  --cream: #faf6ec;
  --ink: #171717;
  --muted: #5b5f6b;
  --maroon: #7a1030;
  --shadow: 0 20px 40px -20px rgba(6, 15, 36, 0.35);
  --radius: 16px;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  min-width: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

section { padding: 88px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: 0 10px 25px -8px rgba(212, 175, 55, 0.6);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 15, 36, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: 48px; object-fit: cover; border-radius: 50%; }
.brand-name { color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.15rem; letter-spacing: 0.02em; }
.brand-name span { display: block; font-size: 0.62rem; letter-spacing: 0.22em; color: var(--gold); font-family: 'Poppins', sans-serif; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.12), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(122,16,48,0.25), transparent 45%),
              linear-gradient(160deg, var(--navy-dark), var(--navy) 55%, #10234f);
  color: var(--cream);
  padding: 150px 0 80px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 8%; right: -12%;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,16,48,0.35), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 60% 15%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 80% 60%, rgba(255,255,255,0.35), transparent),
    radial-gradient(2px 2px at 90% 30%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 45% 85%, rgba(255,255,255,0.3), transparent);
  opacity: 0.7;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-copy, .hero-visual { min-width: 0; }
.hero-copy .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--cream); font-size: clamp(2.2rem, 4.4vw, 3.2rem); line-height: 1.18; max-width: 620px; margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead { color: rgba(250,246,236,0.8); font-size: 1.1rem; max-width: 480px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stats div { border-left: 2px solid var(--gold); padding-left: 14px; }
.hero-stats strong { display: block; font-size: 1.5rem; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.hero-stats span { font-size: 0.8rem; color: rgba(250,246,236,0.65); }

.hero-follow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,246,236,0.12);
}
.hero-follow span { font-size: 0.78rem; letter-spacing: 0.05em; color: rgba(250,246,236,0.55); }
.hero-follow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold-light);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-follow a:hover { background: rgba(212,175,55,0.15); transform: translateY(-2px); }

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid rgba(212,175,55,0.22);
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-visual img {
  margin: 0 auto 20px;
  height: 96px; width: 96px;
  object-fit: cover;
  border-radius: 50%;
  padding: 6px;
  background: rgba(212,175,55,0.1);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.3), 0 0 22px rgba(0,0,0,0.22);
}
.hero-visual h3 { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 8px; }
.hero-visual p { color: rgba(250,246,236,0.75); font-size: 0.92rem; }
.hero-visual-list {
  text-align: left;
  margin: 28px 0 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,175,55,0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-visual-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: rgba(250,246,236,0.8);
}
.hero-visual-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-visual-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-visual-link:hover { color: var(--gold); }

/* About */
.about { background: var(--cream); min-height: 100vh; display: flex; align-items: center; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--cream);
  box-shadow: var(--shadow);
  position: relative;
}
.about-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 10px;
  pointer-events: none;
}
.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(212,175,55,0.15);
  color: var(--gold-light);
  margin-bottom: 20px;
}
.about-card h3 { color: var(--gold-light); font-size: 1.2rem; margin-bottom: 10px; }
.about-card p { color: rgba(250,246,236,0.8); font-size: 0.95rem; }

.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 18px; }
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(11,26,58,0.08);
}
.feature .icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* Events */
.events {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  color: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.events .container { width: 100%; }
.events .section-head h2 { color: var(--cream); }
.events .section-head p { color: rgba(250,246,236,0.7); }
.events .eyebrow { color: var(--gold-light); }

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(250,246,236,0.04);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.event-media {
  background: radial-gradient(circle at 30% 20%, rgba(122,16,48,0.55), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(212,175,55,0.25), transparent 50%),
              linear-gradient(160deg, #1a0f33, var(--navy-dark));
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.event-tag {
  align-self: flex-start;
  background: rgba(212,175,55,0.18);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.event-media h3 { color: var(--cream); font-size: 1.9rem; }
.event-media .subtitle { color: var(--gold-light); font-style: italic; font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.event-media .presented-by { font-size: 0.8rem; color: rgba(250,246,236,0.6); }

.event-details { padding: 40px; display: flex; flex-direction: column; gap: 22px; }
.event-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.event-meta li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: rgba(250,246,236,0.9); }
.event-meta li svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.event-meta li strong { display: block; font-size: 0.75rem; color: rgba(250,246,236,0.55); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

.event-desc { color: rgba(250,246,236,0.8); font-size: 0.94rem; border-top: 1px solid rgba(212,175,55,0.25); padding-top: 18px; }

.event-price { display: flex; align-items: baseline; gap: 8px; }
.event-price strong { font-size: 1.4rem; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.event-price span { font-size: 0.8rem; color: rgba(250,246,236,0.6); }

.event-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.event-actions .btn { flex: 1; justify-content: center; }

/* Follow / social */
.follow { background: var(--cream); text-align: center; min-height: 100vh; display: flex; align-items: center; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.social-card {
  background: #fff;
  border: 1px solid rgba(11,26,58,0.08);
  border-radius: 16px;
  padding: 32px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.social-card .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold-light);
}
.social-card h4 { font-size: 1rem; margin-bottom: 4px; }
.social-card p { color: var(--muted); font-size: 0.85rem; }

/* Contact */
.contact { background: var(--navy); color: var(--cream); min-height: 100vh; display: flex; align-items: center; }
.contact .section-head h2 { color: var(--cream); }
.contact .section-head p { color: rgba(250,246,236,0.7); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.contact-item h4 { font-size: 0.95rem; color: var(--gold-light); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: rgba(250,246,236,0.85); font-size: 0.92rem; }

.contact-card {
  background: rgba(250,246,236,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.contact-card h3 { color: var(--cream); font-size: 1.3rem; }
.contact-card p { color: rgba(250,246,236,0.75); font-size: 0.92rem; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(250,246,236,0.6);
  padding: 32px 0;
  font-size: 0.85rem;
}
.site-footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: rgba(250,246,236,0.6); }
.footer-socials a:hover { color: var(--gold); }

.site-header.scrolled {
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.55);
  border-bottom-color: rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.25);
  }
  .about-features { grid-template-columns: 1fr; }
  .event-meta { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  section { padding: 64px 0; }
}
