
    :root {
      --navy: #1a2f45;
      --navy-mid: #243a52;
      --teal: #2a9d8f;
      --teal-light: #3bbfb0;
      --gold: #e2b84a;
      --gold-light: #f0cc6a;
      --white: #ffffff;
      --text-muted: #9aaec5;
      --muted: #9aaec5;
      --border: rgba(226,184,74,0.18);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--navy); color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 300; line-height: 1.75; overflow-x: hidden; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.8rem 4rem; background: rgba(26,47,69,0.92);
      backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
    }
    .nav-logo img { height: 52px; width: auto; border-radius: 50%; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.25s; }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-cta {
      background: transparent; border: 1px solid var(--gold); color: var(--gold) !important;
      padding: 0.5rem 1.4rem; border-radius: 2px; transition: background 0.25s, color 0.25s !important;
      cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none !important;
    }
    .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
    .nav-contact-btns { display: flex; gap: 0.75rem; position: relative; }
    .nav-dropdown { position: relative; }
    .nav-dropdown-btn { white-space: nowrap; cursor: pointer; color: var(--text-muted); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.25s; }
    .nav-dropdown-btn:hover { color: var(--gold-light); }
    .nav-dropdown-menu {
      display: none; position: absolute; top: calc(100% + 0.25rem); left: 50%; transform: translateX(-50%);
      min-width: 180px; background: var(--navy-mid); border: 1px solid var(--border); border-radius: 4px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.5); z-index: 200; padding: 0.75rem 0;
    }
    .nav-dropdown-menu.show { display: block; }
    .nav-dropdown::before { content: ''; position: absolute; top: 0; left: -20px; right: -20px; bottom: -20px; z-index: -1; }
    .nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 200px; height: 0.5rem; background: transparent; z-index: 199; }
    .nav-dropdown-menu a { display: block; padding: 0.8rem 1.2rem; color: var(--white); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s, color 0.2s; }
    .nav-dropdown-menu a:hover { background: rgba(226,184,74,0.15); color: var(--gold); }

    /* HAMBURGER + MOBILE MENU */
    .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 0.4rem; background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s ease; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      display: none; position: fixed; top: 65px; left: 0; right: 0; background: var(--navy-mid);
      border-bottom: 1px solid var(--border); z-index: 99; padding: 1.5rem; flex-direction: column;
      gap: 0; overflow-y: auto; max-height: calc(100vh - 65px); -webkit-overflow-scrolling: touch;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { display: block; padding: 0.85rem 0.5rem; font-size: 0.9rem; letter-spacing: 0.06em; color: var(--text-muted); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
    .mobile-menu a:hover { color: var(--white); }
    .mobile-dropdown { margin: 0.5rem 0; }
    .mobile-dropdown-header { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 0.5rem 0; border-bottom: 1px solid var(--border); margin-bottom: 0.5rem; }
    .mobile-dropdown a { padding: 0.3rem 0 0.3rem 1rem; font-size: 0.8rem; opacity: 0.9; }

    main { padding-top: 78px; }
    section { padding: 5.5rem 2rem; }

    .section-label { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
    .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    h1, h2, h3 { font-family: 'Playfair Display', serif; }
    h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; margin-bottom: 1rem; }

    .btn-primary { display: inline-block; background: var(--gold); color: var(--navy); font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 1rem 2.4rem; border-radius: 2px; transition: background 0.25s, transform 0.2s; }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline { display: inline-block; background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 0.95rem 2.2rem; border-radius: 2px; cursor: pointer; transition: background .2s, color .2s; }
    .btn-outline:hover { background: var(--gold); color: var(--navy); }

    /* HERO */
    .job-hero { position: relative; padding: 6rem 2rem 0; overflow: hidden; border-bottom: 1px solid var(--border); }
    .job-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 20%, rgba(42,157,143,0.10) 0%, transparent 60%); pointer-events: none; }
    .job-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; text-align: left; }
    .job-hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 600; line-height: 1.15; margin-bottom: 1rem; }
    .job-hero h1 em { font-style: italic; color: var(--teal-light); }
    .job-hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin-bottom: 2rem; line-height: 1.7; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

    /* RATE BAR */
    .rate-bar { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: -1px; background: var(--navy-mid); }
    .rate-bar-item { padding: 1.6rem 2rem; text-align: center; }
    .rate-bar-item + .rate-bar-item { border-left: 1px solid var(--border); }
    .rate-bar-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1.1; }
    .rate-bar-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; letter-spacing: 0.03em; }

    /* CHECK LIST */
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
    .check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
    .check-list li span.mark { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
    .check-list li strong { color: var(--white); font-weight: 500; }

    /* INFO GRID */
    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
    .info-block h3 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 1.2rem; }

    /* STAT / FACILITY CARD */
    .stat-block { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
    .stat-item { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 4px; padding: 1.4rem; text-align: center; }
    .stat-item .num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: var(--teal-light); line-height: 1.2; margin-bottom: 0.4rem; }
    .stat-item .label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.03em; line-height: 1.4; }

    .info-card { border: 1px solid var(--border); border-radius: 4px; padding: 1.6rem 1.8rem; background: rgba(255,255,255,0.02); }
    .info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; }
    .info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
    .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

    .cta-box { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 6px; padding: 2.75rem; text-align: center; }
    .cta-box h2 { margin-bottom: 0.75rem; }
    .cta-box p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.75rem; max-width: 520px; margin-left: auto; margin-right: auto; }
    .cta-box .hero-actions { justify-content: center; margin-bottom: 0; }

    hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

    @media (max-width: 900px) {
      nav { padding: 0.8rem 1.5rem; }
      .nav-links, .nav-contact-btns { display: none; }
      .hamburger { display: flex; }
      section { padding: 3.5rem 1.5rem; }
      .job-hero { padding: 6.5rem 1.5rem 0; }
      .info-grid, .card-grid, .rate-bar { grid-template-columns: 1fr; }
      .rate-bar-item + .rate-bar-item { border-left: none; border-top: 1px solid var(--border); }
    }

    /* Sticky scroll CTA banner */
    .sticky-cta {
      position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-mid);
      border-top: 2px solid var(--gold); padding: 1rem 2rem; display: flex; align-items: center;
      justify-content: space-between; gap: 1rem; z-index: 999; transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    }
    .sticky-cta.visible { transform: translateY(0); }
    .sticky-cta-text { flex: 1; }
    .sticky-cta-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
    .sticky-cta-text span { font-size: 0.8rem; color: var(--text-muted); }
    .sticky-cta-btn { background: var(--gold); color: var(--navy); text-decoration: none; padding: 0.7rem 1.6rem; border-radius: 2px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
    .sticky-cta-btn:hover { background: var(--gold-light); }
    .sticky-cta-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.2rem; padding: 0.2rem 0.4rem; flex-shrink: 0; line-height: 1; }
    .sticky-cta-close:hover { color: var(--white); }
    @media (max-width: 640px) {
      .sticky-cta { flex-wrap: wrap; padding: 0.9rem 1.2rem; }
      .sticky-cta-text span { display: none; }
    }
