/* Homepage critical shell. The complete shared stylesheet is loaded
   asynchronously after first paint. Keep this file limited to above-fold UI. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/archivo-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/archivo-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/archivo-black.woff2') format('woff2');
}

:root {
  --navy: #0B4060;
  --navy-mid: #093552;
  --gold: #E1B969;
  --gold-light: #E8C97F;
  --white: #FFFFFF;
  --off-white: #FAF9F5;
  --gray: #4A5464;
  --light-gray: #E5E3DF;
  --dark: #262626;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Archivo', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 100px;
  padding: env(safe-area-inset-top, 0px) 5% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-logo img { height: 85px; width: auto; max-width: 420px; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: var(--navy); text-decoration: none; font-family: 'Archivo Black', sans-serif; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 12px 22px !important; min-height: 44px; display: inline-flex !important; align-items: center; border-radius: 2px; }
.nav-phone { color: var(--navy) !important; font-weight: 600 !important; }
.mobile-btn { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 10px; min-width: 44px; min-height: 44px; }
.mobile-btn span { display: block; width: 25px; height: 2px; background: var(--navy); }
.nav-call-mobile { display: none; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; margin-left: auto; margin-right: 6px; color: var(--navy); border: 2px solid var(--navy); border-radius: 2px; padding: 6px; text-decoration: none; }
.nav-call-mobile svg { width: 22px; height: 22px; }

.sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--navy); border-top: 2px solid var(--gold); padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px)); }
.sticky-call-microcopy { display: block; text-align: center; color: var(--gold); font-family: 'Archivo Black', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.sticky-call-actions { display: flex; gap: 10px; align-items: stretch; }
.sticky-call-btn { flex: 1 1 0; display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px 12px; font-family: 'Archivo Black', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; text-decoration: none; border-radius: 2px; border: 2px solid var(--gold); }
.sticky-call-phone { background: var(--gold); color: var(--navy); }
.sticky-call-text { background: transparent; color: var(--gold); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-btn { display: flex; }
  .nav-call-mobile { display: inline-flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: calc(76px + env(safe-area-inset-top, 0px)); left: 0; right: 0; background: var(--navy); padding: 24px 5% 32px; gap: 20px; border-bottom: 2px solid var(--gold); z-index: 1000; }
  .nav-links.open a { font-size: 18px; color: var(--white); min-height: 44px; display: flex; align-items: center; }
  .nav-links.open .nav-phone { color: var(--gold) !important; }
  .nav-cta { width: 100% !important; justify-content: center; min-height: 52px; }
  .sticky-call { display: block; }
  body { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
}
