@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --black: #000000;
  --gold: #F5C000;
  --gold-dark: #D4A800;
  --white: #F5F5F5;
  --muted: #666666;
  --border: #1E1E1E;
  --card-bg: #111111;
  --radius: 4px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; flex-direction: column; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, .display { font-family: 'Bebas Neue', sans-serif; line-height: 1.05; letter-spacing: 0.02em; }

/* Sections */
.section { padding: 80px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s ease; letter-spacing: 0.3px; border-radius: var(--radius); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-lg { padding: 18px 48px; font-size: 16px; }
.btn-full { width: 100%; text-align: center; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--black); border-bottom: 3px solid var(--gold); }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 96px; }
.header-logo { display: flex; align-items: center; text-decoration: none; }
.header-logo img { height: 80px; width: auto; max-width: 300px; display: block; object-fit: contain; }
@media (max-width: 480px) { .header-inner { height: 68px; } .header-logo img { height: 52px; max-width: 200px; } }
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); text-decoration: none; letter-spacing: 0.3px; transition: color 0.15s; }
.header-nav a:hover { color: var(--white); }
.header-phone { font-size: 13px; font-weight: 700; color: var(--gold); text-decoration: none; }

/* Mobile hamburger toggle (hidden on desktop) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 9px; background: transparent; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 600px) {
  .header-phone { font-size: 12px; }
  .nav-toggle { display: flex; }
  .header-logo { margin-right: auto; }
  .header-inner { gap: 12px; }
  .header-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black); border-bottom: 3px solid var(--gold);
    padding: 0 20px; box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
  }
  .header-nav.open { max-height: 75vh; opacity: 1; visibility: visible; padding: 4px 20px 12px; }
  .header-nav a { padding: 14px 4px; font-size: 15px; color: var(--white); border-bottom: 1px solid var(--border); }
  .header-nav a:last-child { border-bottom: none; }
}

/* Footer — quick links (shared across all pages) */
.site-footer { background: var(--black); border-top: 1px solid var(--gold); padding: 48px 0 28px; margin-top: auto; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 36px; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.04em; color: var(--gold); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--white); text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-copyright { border-top: 1px solid var(--border); padding-top: 22px; text-align: center; }
.footer-copyright p { font-size: 13px; color: var(--muted); }
/* Tablet: 2 columns */
@media (max-width: 768px) { .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; } }
/* Mobile: 1 column */
@media (max-width: 480px) { .footer-links { grid-template-columns: 1fr; gap: 24px; } }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
