/* ═══════════════════════════════════════════
   JENNY E CHARTERS — Global Stylesheet
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0b1d33;
  --deep-blue: #132d4f;
  --ocean: #1a4a6e;
  --teal: #2a8a8a;
  --seafoam: #5bc0be;
  --sand: #f0e6d3;
  --cream: #faf7f2;
  --gold: #c9a94e;
  --gold-light: #dfc576;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--cream); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(11,29,51,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(90,192,190,0.15); transition: background 0.4s, box-shadow 0.4s; }
.nav.scrolled { background: rgba(11,29,51,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-brand img { height: 44px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.55rem 1.4rem; border-radius: 4px; font-weight: 700 !important; transition: background 0.3s, transform 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-socials { display: flex; gap: 0.75rem; margin-left: 1rem; }
.nav-socials a { color: rgba(255,255,255,0.6); transition: color 0.3s; display: flex; align-items: center; }
.nav-socials a::after { display: none; }
.nav-socials a:hover { color: var(--seafoam); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(11,29,51,0.98); flex-direction: column; align-items: center; padding: 3rem 2rem; gap: 1.5rem; z-index: 999; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.mobile-menu .nav-cta { background: var(--gold); color: var(--navy); padding: 0.7rem 2rem; border-radius: 4px; }
.mobile-socials { display: flex; gap: 1.5rem; margin-top: 1rem; }
.mobile-socials a { color: rgba(255,255,255,0.5); }

/* ── PAGE HERO (subpages) ── */
.page-hero { padding: 8rem 2rem 4rem; background: linear-gradient(165deg, var(--navy), var(--deep-blue), var(--ocean)); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(42,138,138,0.2) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(201,169,78,0.08) 0%, transparent 50%); }
.page-hero .section-label { color: var(--gold); position: relative; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 1rem auto 0; position: relative; }

/* ── SHARED ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); line-height: 1.2; margin-bottom: 1.5rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.3s; }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 4px 20px rgba(201,169,78,0.3); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,169,78,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--seafoam); color: var(--seafoam); }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 3rem 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.footer-brand span { color: var(--gold); }
.footer-copy { font-size: 0.85rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); border: 2px solid rgba(201,169,78,0.4); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 900; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s, transform 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--deep-blue); }

/* ── MOBILE CALL BAR ── */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; background: var(--navy); border-top: 2px solid var(--gold); }
.mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.9rem; color: var(--white); text-decoration: none; font-weight: 700; font-size: 1rem; }
.mobile-call-bar a svg { color: var(--gold); }

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-socials { display: none; }
  .hamburger { display: flex; }
  .mobile-call-bar { display: block; }
  .back-to-top { bottom: 5rem; }
  .footer { padding-bottom: 5rem; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
}
