/* ========== HANCIFY SHARED STYLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #D4A843; --gold-dark: #A87D1F;
  --black: #111111; --dark: #1A1A1A; --mid: #2E2E2E;
  --text-muted: #888; --white: #FFFFFF;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(17,17,17,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
}
.nav-logo img { height: 42px; vertical-align: middle; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: #ccc; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 0.6rem 1.4rem !important; border-radius: 4px !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* FOOTER */
footer { background: #0A0A0A; padding: 4rem 8% 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 44px; margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; color: #666; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { text-decoration: none; font-size: 0.88rem; color: #666; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; color: #666; line-height: 2; }
.footer-contact a { color: #888; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: #444; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--black); padding: 0.9rem 2rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; letter-spacing: 0.5px; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); padding: 0.9rem 2rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; border: 1px solid rgba(255,255,255,0.25); border-radius: 4px; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* SECTION LABELS */
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-title { font-family: 'Bebas Neue', cursive; font-size: clamp(2.5rem,4vw,4rem); letter-spacing: 2px; color: var(--white); margin-bottom: 2rem; }
.section-title span { color: var(--gold); }

/* PAGE HERO (inner pages) */
.page-hero { padding: 9rem 8% 5rem; background: var(--dark); position: relative; overflow: hidden; border-bottom: 1px solid rgba(212,168,67,0.1); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(212,168,67,0.06) 0%, transparent 65%); }
.page-hero h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem,5vw,5.5rem); letter-spacing: 3px; line-height: 1; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1.05rem; color: #aaa; line-height: 1.8; max-width: 560px; margin-top: 1rem; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
