:root {
  --navy: #0d1b2a;
  --navy-light: #1e3050;
  --gold: #c8951f;
  --white: #ffffff;
  --max-width: 1100px;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: #333; background: var(--white); overflow-x: hidden; }

/* REUSABLE CONTAINERS */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; width: 100%; }
.section { padding: 80px 0; }
.section--alt { background: #f7f5f0; }

/* TOP CONTACT BAR */
.contact-bar { background: var(--navy-light); padding: 10px 0; width: 100%; }
.contact-bar .container { display: flex; justify-content: flex-end; gap: 25px; }
.contact-bar a { color: white !important; text-decoration: none; font-size: 0.8rem; font-weight: 600; font-family: 'Montserrat', sans-serif; }

/* FIXED HEADER & LOGO SIZE */
.site-header { background: var(--navy); height: var(--header-h); display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; width: 100%; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-logo { display: block; height: 45px; }
.nav-logo-img { height: 45px; width: auto; display: block; object-fit: contain; }

.nav-links { display: flex; align-items: center; }
.nav-links a { color: white; text-decoration: none; font-size: 0.85rem; font-family: 'Montserrat', sans-serif; font-weight: 600; margin-left: 20px; text-transform: uppercase; }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 10px 15px; border-radius: 4px; }

/* HERO SECTIONS */
.hero { background-size: cover; background-position: center; min-height: 70vh; display: flex; align-items: center; position: relative; color: white; width: 100%; }
.hero-overlay { position: absolute; inset: 0; background: rgba(13, 27, 42, 0.8); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-family: 'Montserrat', sans-serif; margin-bottom: 20px; line-height: 1.2; }

.page-hero { background: var(--navy); color: white; padding: 100px 0; text-align: center; }
.page-hero h1 { font-family: 'Montserrat', sans-serif; margin-bottom: 15px; }

/* FIXED FOOTER LOGO */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0; width: 100%; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; }
.footer-logo-img { height: 45px; width: auto; object-fit: contain; margin-bottom: 20px; display: block; }

/* BUTTONS */
.btn { padding: 14px 28px; text-decoration: none; font-weight: 700; border-radius: 6px; display: inline-block; text-transform: uppercase; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; transition: 0.3s; }
.btn-primary { background: var(--gold); color: var(--navy); border: none; }
.btn-outline { border: 2px solid white; color: white; }