
    :root {
      --navy: #0D1B2A;
      --gold: #C8963E;
      --white: #FFFFFF;
      --light-gray: #F5F5F5;
      --dark-text: #1A1A2E;
      --text-muted: #6B7280;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--white);
      color: var(--dark-text);
      min-height: 100vh;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4 {
      font-family: 'DM Serif Display', serif;
      line-height: 1.2;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; }
    ul { list-style: none; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(32px, 5vw, 48px);
      color: var(--dark-text);
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.7;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }
    .fade-in-delay-5 { transition-delay: 0.5s; }
    .fade-in-delay-6 { transition-delay: 0.6s; }

    /* NAVIGATION — KEEP DARK */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13, 27, 42, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(13, 27, 42, 0.95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .navbar-logo-bar {
      width: 3px; height: 36px;
      background: linear-gradient(180deg, #C8963E, #E8B85E);
      border-radius: 2px;
    }

    .navbar-logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      color: #FFFFFF;
      letter-spacing: 1.5px;
      line-height: 1.2;
    }

    .navbar-logo-text span {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      color: #C8963E;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 2px;
    }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .navbar-links a {
      font-size: 14px;
      font-weight: 500;
      color: #8899AA;
      transition: color 0.3s ease;
      position: relative;
    }

    .navbar-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: #C8963E;
      transition: width 0.3s ease;
    }

    .navbar-links a:hover,
    .navbar-links a.active { color: #FFFFFF; }

    .navbar-links a:hover::after,
    .navbar-links a.active::after { width: 100%; }

    .navbar-links a:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 4px;
      border-radius: 2px;
    }

    .navbar-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      background: #C8963E;
      color: #FFFFFF;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      transition: background 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .navbar-cta:hover {
      background: #B8862E;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #E0E7EE;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0; bottom: 0;
      background: rgba(13, 27, 42, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      padding: 40px 24px;
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 20px;
      font-weight: 500;
      color: #8899AA;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: color 0.3s ease;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active { color: #FFFFFF; }

    .mobile-menu .navbar-cta {
      margin-top: 24px;
      text-align: center;
      justify-content: center;
      padding: 16px 24px;
      font-size: 16px;
    }

    /* HERO — KEEP DARK */
    .hero {
      position: relative;
      padding: 180px 0 100px;
      overflow: hidden;
      text-align: center;
      background: var(--navy);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #C8963E;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(40px, 6vw, 64px);
      color: #FFFFFF;
      margin-bottom: 24px;
      line-height: 1.1;
    }

    .hero h1 em {
      font-style: italic;
      color: #C8963E;
    }

    .hero-text {
      font-size: 18px;
      color: #8899AA;
      line-height: 1.8;
      max-width: 620px;
      margin: 0 auto;
    }

    .hero-divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #C8963E, #E8B85E);
      border-radius: 2px;
      margin: 40px auto 0;
    }

    /* CTA CARD — KEEP DARK */
    .careers-cta-section {
      padding: 0 0 100px;
      text-align: center;
      background: var(--navy);
    }

    .careers-cta-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 24px;
      padding: 60px 40px;
      position: relative;
      overflow: hidden;
      max-width: 700px;
      margin: 0 auto;
    }

    .careers-cta-box::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .careers-cta-box .cta-icon {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      background: rgba(200, 150, 62, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      position: relative;
      z-index: 1;
    }

    .careers-cta-box h2 {
      font-size: clamp(28px, 4vw, 36px);
      color: #FFFFFF;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .careers-cta-box p {
      font-size: 16px;
      color: #8899AA;
      line-height: 1.8;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .careers-email-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      background: #C8963E;
      color: #FFFFFF;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 1;
    }

    .careers-email-btn:hover {
      background: #B8862E;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(200, 150, 62, 0.3);
    }

    .careers-email-btn:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 4px;
    }

    /* VALUES SECTION — LIGHT */
    .values-section {
      padding: 100px 0;
      position: relative;
      background: var(--light-gray);
    }

    .values-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
    }

    .values-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
      z-index: 1;
    }

    .value-card {
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 16px;
      padding: 36px 28px;
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .value-card:hover {
      transform: translateY(-4px);
      border-color: rgba(200, 150, 62, 0.4);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    }

    .value-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(200, 150, 62, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
    }

    .value-card h3 {
      font-size: 20px;
      color: var(--dark-text);
      margin-bottom: 12px;
    }

    .value-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* FOOTER — KEEP DARK */
    .footer {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 80px 0 40px;
      position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      font-size: 14px;
      color: #667788;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo-bar {
      width: 3px; height: 30px;
      background: linear-gradient(180deg, #C8963E, #E8B85E);
      border-radius: 2px;
    }

    .footer-logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 16px;
      color: #FFFFFF;
      letter-spacing: 1px;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C8963E;
      margin-bottom: 20px;
    }

    .footer-col ul li { margin-bottom: 12px; }

    .footer-col ul li a {
      font-size: 14px;
      color: #667788;
      transition: color 0.3s ease;
    }

    .footer-col ul li a:hover { color: #FFFFFF; }

    .footer-col ul li a:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 2px;
      border-radius: 2px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p { font-size: 13px; color: #4A5568; }

    .footer-bottom-links { display: flex; gap: 24px; }

    .footer-bottom-links a {
      font-size: 13px;
      color: #4A5568;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover { color: #C8963E; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .values-grid { grid-template-columns: repeat(2, 1fr); }
      .values-grid .value-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
      }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .navbar-links, .navbar-cta-desktop { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 140px 0 70px; }
      .hero-text { font-size: 16px; }
      .careers-cta-section { padding: 0 0 70px; }
      .careers-cta-box { padding: 40px 24px; }
      .values-section { padding: 70px 0; }
      .values-grid { grid-template-columns: 1fr; }
      .values-grid .value-card:last-child { max-width: 100%; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 34px; }
      .navbar-inner { padding: 0 16px; }
      .container { padding: 0 16px; }
    }

    .skip-link {
      position: absolute;
      top: -100%; left: 16px;
      background: #C8963E;
      color: #FFFFFF;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      z-index: 10000;
      transition: top 0.3s ease;
    }

    .skip-link:focus { top: 16px; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .fade-in { opacity: 1; transform: none; transition: none; }
      .value-card { transition: none; }
      .navbar-links a::after { transition: none; }
    }
