/* ── Jobs Page ────────────────────────────────────── */
.jobs {
  position: relative;
  background-color: #12100B;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 10vw, 10rem) 1.5rem clamp(4rem, 6vw, 6rem);
  overflow: hidden;
}

/* ── Atmospheric Background ─────────────────────── */
.jobs__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jobs__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.3) saturate(0.5) blur(2px);
  transform: scale(1.05); /* prevent blur edge bleed */
}

.jobs__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 60% 70% at 50% 45%,
    rgba(18, 16, 11, 0.2) 0%,
    rgba(18, 16, 11, 0.65) 50%,
    rgba(18, 16, 11, 0.92) 100%
  );
}

/* ── Content ────────────────────────────────────── */
.jobs__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.jobs__logo {
  width: clamp(100px, 20vw, 140px);
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
  mix-blend-mode: lighten;
  margin-bottom: 3rem;
}

.jobs__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  text-transform: uppercase;
  color: #C4B9A8;
  margin-bottom: 0;
}

.jobs__rule {
  width: 60px;
  height: 1px;
  margin: 2.5rem auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #C4973B 50%,
    transparent 100%
  );
  opacity: 0.4;
}

.jobs__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.85;
  color: rgba(200, 200, 208, 0.75);
  margin-bottom: 0.6rem;
}

.jobs__intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.85;
  color: rgba(200, 200, 208, 0.75);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.jobs__qualities {
  margin-bottom: 0;
}

.jobs__qualities p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 2.2;
  color: #C4973B;
}

.jobs__closing {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.85;
  color: rgba(200, 200, 208, 0.75);
  margin-bottom: 0.6rem;
}

.jobs__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.jobs__name {
  font-family: 'Sacramento', cursive;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: #C4B9A8;
  margin-bottom: 0.5rem;
}

.jobs__icon {
  width: 0.85em;
  height: 0.85em;
  fill: currentColor;
  vertical-align: -0.05em;
  margin-right: 0.35em;
}

.jobs__link {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 0.12em;
  color: #C4973B;
  text-decoration: none;
  position: relative;
  transition: color 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.jobs__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #C4973B;
  transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), left 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.jobs__link:hover {
  color: #D4A94B;
}

.jobs__link:hover::after {
  width: 100%;
  left: 0;
}

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .jobs__rule {
    width: 50px;
  }

  .jobs__background img {
    object-position: center center;
    filter: brightness(0.25) saturate(0.4) blur(3px);
  }
}
