:root {
  --gold: #C9A227;
  --deep-blue: #0D1B4B;
  --royal-purple: #3D1F6E;
  --sky-blue: #1B9FD4;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --dark: #111111;
  --text-body: #2C2C2C;
  --warm-gray: #E8E4DC;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(13,27,75,0.97); backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg,#0D1B4B,#3D1F6E);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold); font-size: 1.2rem; color: var(--gold);
  text-decoration: none;
}
.nav-logo-text { font-family: 'Oswald', sans-serif; color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; line-height: 1.3; }
.nav-logo-text span { color: var(--gold); display: block; font-size: 0.7rem; font-weight: 400; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.25s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* SHARED */
.section-eyebrow {
  font-family: 'Oswald', sans-serif; color: var(--gold);
  letter-spacing: 0.2em; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.section-eyebrow.left::before { display: none; }
.section-eyebrow.left { justify-content: flex-start; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); color: var(--deep-blue); line-height: 1.2; }
.section-desc { color: #666; max-width: 600px; margin: 16px auto 0; line-height: 1.7; }
.btn-primary {
  background: var(--gold); color: var(--dark); padding: 14px 32px; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; border: none;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-primary:hover { background: #e8b92e; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white); padding: 13px 32px; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4); cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.page-hero {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-purple) 60%, #0D1B4B 100%);
  padding: 120px 5% 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3.5rem); color: var(--white); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 16px auto 0; line-height: 1.7; position: relative; z-index: 1; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 60px 5% 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto 40px; }
.footer-brand p { line-height: 1.8; margin-top: 16px; font-size: 0.9rem; max-width: 320px; }
.footer-brand-name { font-family: 'Oswald', sans-serif; color: var(--white); font-size: 1.1rem; letter-spacing: 0.08em; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom .rbim { color: rgba(255,255,255,0.4); }

/* AFFILIATES */
.affiliates-section { padding: 60px 5%; background: linear-gradient(135deg, var(--deep-blue), #1a2d70); }
.affiliates-inner { max-width: 1100px; margin: 0 auto; }
.affiliates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; margin-top: 40px; }
.affiliate-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(201,162,39,0.2); padding: 28px 24px; text-align: center; transition: all 0.25s; }
.affiliate-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.affiliate-region { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.affiliate-name { color: var(--white); font-weight: 500; line-height: 1.4; font-size: 0.95rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(13,27,75,0.98); padding: 30px 5%; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 100px 5% 50px; }
}
