  /* ============ HEADER — GLASS CREAM ============ */
  body { padding-top: 0; }
  .site-header {
    position: relative; width: 100%;
    background: transparent;
    z-index: 1000;
  }
  .brand-name {
    font-family: var(--font-heading);
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-brown);
    white-space: nowrap;
  }
  .brand-logo { height: 22px; width: auto; display: block; }
  .header-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253, 249, 242, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(236, 217, 184, 0.5);
    transition: box-shadow 0.3s ease;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 40px;
    gap: 24px;
  }
  .header-nav.scrolled { box-shadow: 0 4px 20px rgba(139, 111, 63, 0.1); }
  .header-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .header-right { display: flex; align-items: center; gap: 32px; }
  .header-menu { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
  .header-menu a {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 700;
    color: var(--text-soft); text-decoration: none;
    letter-spacing: 0.04em;
    padding: 4px 0; position: relative;
    transition: color 0.3s ease;
  }
  .header-menu a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--mesh-gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  }
  .header-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-menu a.active { color: var(--antique-gold); }
  .header-menu a.active::after { transform: scaleX(1); }
  .header-utils { display: flex; align-items: center; gap: 8px; }
  .header-icon-btn {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid transparent;
    border-radius: 50%; color: var(--warm-brown);
    cursor: pointer; text-decoration: none;
    transition: all 0.3s ease;
  }
  .header-icon-btn:hover {
    background: var(--mesh-gold-subtle);
    border-color: var(--border); color: var(--antique-gold);
  }
  .header-icon-btn svg { width: 16px; height: 16px; }

  main { padding-top: 0; }

  /* ============ CAREERS PAGE ============ */
  .careers-section {
    padding: 140px 40px 120px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .careers-head {
    text-align: center;
    margin-bottom: 56px;
  }
  .careers-head h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--heading);
    font-weight: 500;
    margin: 0 0 18px;
  }
  .careers-head h1 em {
    font-style: italic; font-weight: 400;
    color: var(--heading);
  }
  .careers-head p {
    font-family: var(--font-body);
    font-size: 15px; line-height: 1.7;
    color: var(--text-soft);
    max-width: 620px; margin: 0 auto;
  }
  .careers-tagline {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--antique-gold);
    margin-bottom: 18px;
  }

  .footer-wrap { width: 100%; padding: 0; }
  .footer-wrap .site-footer { border-radius: 0; }
  .footer-top.footer-top-3col { grid-template-columns: 1.4fr 1fr 1fr; gap: 64px; }

  @media (max-width: 900px) {
    .careers-section { padding: 110px 20px 80px; }
    .careers-head { margin-bottom: 36px; }
    /* Apply button — fit-content on 1 line */
    .job-apply {
      white-space: nowrap;
      letter-spacing: 0.18em !important;
      padding: 11px 20px !important;
      width: auto !important;
      max-width: max-content;
    }
    .footer-top.footer-top-3col { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ============ APPLY MODAL ============ */
  .apply-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: none;
    align-items: center; justify-content: center;
    padding: 24px;
  }
  .apply-modal.is-open { display: flex; }
  .apply-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(46, 30, 18, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .apply-modal__dialog {
    position: relative;
    width: 100%; max-width: 480px;
    background: #FDF9F2;
    border: 1px solid rgba(236, 217, 184, 0.7);
    border-radius: 18px;
    box-shadow: 0 30px 80px -20px rgba(46, 30, 18, 0.35);
    padding: 36px 36px 32px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    animation: applyModalIn 0.32s cubic-bezier(.4,0,.2,1);
  }
  @keyframes applyModalIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .apply-modal__close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid transparent;
    border-radius: 50%; color: var(--warm-brown);
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .apply-modal__close:hover {
    background: var(--mesh-gold-subtle);
    border-color: var(--border);
    color: var(--antique-gold);
  }
  .apply-modal__close svg { width: 16px; height: 16px; }

  .apply-modal__head { text-align: center; margin-bottom: 22px; }
  .apply-modal__tagline {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--antique-gold);
    margin-bottom: 10px;
  }
  .apply-modal__title {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: var(--heading);
    margin: 0 0 8px;
  }
  .apply-modal__position {
    font-family: var(--font-body);
    font-size: 13px; color: var(--text-soft);
    margin: 0;
  }
  .apply-modal__position em {
    font-style: normal; font-weight: 600;
    color: var(--warm-brown);
  }

  .apply-form { display: flex; flex-direction: column; gap: 14px; }
  .apply-field { display: flex; flex-direction: column; gap: 6px; }
  .apply-field label {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--warm-brown);
  }
  .apply-field label span { color: var(--antique-gold); }
  .apply-field input {
    font-family: var(--font-body);
    font-size: 14px; color: var(--text);
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(236, 217, 184, 0.8);
    border-radius: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    box-sizing: border-box;
  }
  .apply-field input::placeholder { color: rgba(139, 111, 63, 0.42); }
  .apply-field input:focus {
    outline: none;
    border-color: var(--antique-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 122, 0.18);
  }
  .apply-field__hint {
    font-family: var(--font-body);
    font-size: 11px; color: var(--text-soft);
  }

  .apply-form__submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 10px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--heading);
    background: var(--btn-gradient);
    border: none; border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
  }
  .apply-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -10px rgba(184, 142, 90, 0.5);
  }
  .apply-form__submit svg { width: 14px; height: 14px; }

  body.apply-modal-open { overflow: hidden; }

  @media (max-width: 600px) {
    .apply-modal { padding: 12px; align-items: flex-start; }
    .apply-modal__dialog {
      padding: 22px 20px 20px;
      border-radius: 14px;
      max-height: calc(100vh - 24px);
      margin-top: 12px;
    }
    .apply-modal__close { top: 8px; right: 8px; width: 32px; height: 32px; }
    .apply-modal__head { margin-bottom: 16px; }
    .apply-modal__tagline { margin-bottom: 6px; font-size: 10px; letter-spacing: 0.32em; }
    .apply-modal__title { font-size: 20px; line-height: 1.2; margin-bottom: 6px; }
    .apply-modal__position { font-size: 12px; }
    .apply-form { gap: 11px; }
    .apply-field { gap: 4px; }
    .apply-field label { font-size: 10px; letter-spacing: 0.1em; }
    .apply-field input { padding: 10px 12px; font-size: 13px; border-radius: 9px; }
    .apply-field__hint { font-size: 10px; line-height: 1.4; }
    .apply-form__submit { margin-top: 4px; padding: 12px 22px; font-size: 11px; }
  }

  /* ============ HOVER — careers section (desktop only) ============ */
  @media (hover: hover) {
    .careers-section .job-item {
      transition: transform 0.45s cubic-bezier(.4,0,.2,1),
                  box-shadow 0.45s ease,
                  border-color 0.45s ease;
    }
    .careers-section .job-item:hover {
      transform: translateY(-4px);
      border-color: var(--antique-gold);
      box-shadow: 0 22px 48px -24px rgba(184, 142, 90, 0.55);
    }

    .careers-section .job-head { transition: background 0.35s ease; }
    .careers-section .job-item:hover .job-head {
      background: rgba(253, 249, 242, 0.55);
    }

    .careers-section .job-title-wrap h4 {
      transition: color 0.35s ease, transform 0.4s cubic-bezier(.4,0,.2,1);
    }
    .careers-section .job-item:hover .job-title-wrap h4 {
      color: var(--warm-brown);
      transform: translateX(2px);
    }

    .careers-section .job-num {
      transition: transform 0.45s cubic-bezier(.34,1.56,.64,1), letter-spacing 0.35s ease;
    }
    .careers-section .job-item:hover .job-num {
      transform: scale(1.1) translateX(2px);
    }

    .careers-section .job-toggle {
      transition: transform 0.4s ease, background 0.35s ease,
                  color 0.35s ease, border-color 0.35s ease;
    }
    .careers-section .job-item:not(.open):hover .job-toggle {
      background: var(--btn-gradient);
      color: var(--deep-brown);
      border-color: transparent;
    }

    .careers-section .job-badge {
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .careers-section .job-item:hover .job-badge {
      transform: translateY(-1px);
      box-shadow: 0 6px 14px -6px rgba(184, 142, 90, 0.45);
    }

    .careers-section .job-apply {
      transition: transform 0.3s ease, box-shadow 0.35s ease, letter-spacing 0.35s ease;
    }
    .careers-section .job-apply:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px -10px rgba(184, 142, 90, 0.55);
      letter-spacing: 0.3em;
    }
  }
